RubyGems
npm
Organizations
Log in
Sign up
npm
@candlerip/shared3
Versions diffs
0.0.151 → 0.0.152
@candlerip/shared3 0.0.151 → 0.0.152
Sign up to get
free
protection for your applications and to get access to all the features.
Files changed (2)
hide
show
package/package.json
+1
-1
package/src/backend/database/mutation/country/get-countries/type.d.ts
+1
-1
package/package.json
CHANGED
Viewed
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "@candlerip/shared3",
3
-
"version": "0.0.
151
",
3
+
"version": "0.0.
152
",
4
4
"type": "module",
5
5
"exports": {
6
6
".": "./src/index.js",
package/src/backend/database/mutation/country/get-countries/type.d.ts
CHANGED
Viewed
@@ -8,7 +8,7 @@ export type GetCountries = <T extends keyof TypeMap = never>(props?: {
8
8
customError: CustomError;
9
9
}>;
10
10
type TypeMap = {
11
-
countries: Country[]
| null
;
11
+
countries: Country[];
12
12
countriesWithPersonsCount: Array<Country & {
13
13
personsCount: number;
14
14
}>;