@bizmap/sdk 0.0.135 → 0.0.137
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.d.ts +2 -2
- package/dist/main.js +2 -2
- package/package.json +3 -3
package/dist/main.d.ts
CHANGED
|
@@ -1370,7 +1370,7 @@ type UserDetails = z.infer<typeof UserDetails>;
|
|
|
1370
1370
|
declare const UserStorage: z.ZodObject<{
|
|
1371
1371
|
_id: z.ZodUUID;
|
|
1372
1372
|
profile: z.ZodObject<{
|
|
1373
|
-
|
|
1373
|
+
usedBytes: z.ZodNumber;
|
|
1374
1374
|
class: z.ZodString;
|
|
1375
1375
|
lastModified: z.ZodOptional<z.ZodISODateTime>;
|
|
1376
1376
|
}, z.core.$strip>;
|
|
@@ -1383,7 +1383,7 @@ declare const UserStorage: z.ZodObject<{
|
|
|
1383
1383
|
billing: "billing";
|
|
1384
1384
|
staff: "staff";
|
|
1385
1385
|
}>, z.ZodObject<{
|
|
1386
|
-
|
|
1386
|
+
usedBytes: z.ZodNumber;
|
|
1387
1387
|
lastModified: z.ZodOptional<z.ZodISODateTime>;
|
|
1388
1388
|
}, z.core.$strip>>;
|
|
1389
1389
|
}, z.core.$strip>>>;
|
package/dist/main.js
CHANGED
|
@@ -820,7 +820,7 @@ import * as z22 from "zod";
|
|
|
820
820
|
var UserStorage = z22.object({
|
|
821
821
|
_id: UserDetails.shape._id,
|
|
822
822
|
profile: z22.object({
|
|
823
|
-
|
|
823
|
+
usedBytes: z22.number().min(0),
|
|
824
824
|
class: z22.string().trim(),
|
|
825
825
|
lastModified: Timestamp.optional()
|
|
826
826
|
}),
|
|
@@ -831,7 +831,7 @@ var UserStorage = z22.object({
|
|
|
831
831
|
items: z22.record(
|
|
832
832
|
_CompanyDetails.keyof(),
|
|
833
833
|
z22.object({
|
|
834
|
-
|
|
834
|
+
usedBytes: z22.number().min(0),
|
|
835
835
|
lastModified: Timestamp.optional()
|
|
836
836
|
})
|
|
837
837
|
)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bizmap/sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.137",
|
|
4
4
|
"main": "./dist/main.js",
|
|
5
5
|
"types": "./dist/main.d.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -16,13 +16,13 @@
|
|
|
16
16
|
"author": "",
|
|
17
17
|
"license": "MIT",
|
|
18
18
|
"peerDependencies": {
|
|
19
|
-
"@wavy/fn": "^0.0.
|
|
19
|
+
"@wavy/fn": "^0.0.46",
|
|
20
20
|
"@wavy/util": ">=0.0.12",
|
|
21
21
|
"zod": "^4.2.1"
|
|
22
22
|
},
|
|
23
23
|
"description": "",
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@wavy/fn": "^0.0.
|
|
25
|
+
"@wavy/fn": "^0.0.46",
|
|
26
26
|
"@wavy/util": "^0.0.20",
|
|
27
27
|
"tsup": "^8.5.0",
|
|
28
28
|
"typescript": "^5.9.2",
|