@bizmap/sdk 0.0.117 → 0.0.119
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 +1 -1
- package/package.json +3 -3
package/dist/main.d.ts
CHANGED
|
@@ -946,10 +946,10 @@ declare const UserDetails: z.ZodObject<{
|
|
|
946
946
|
name: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
947
947
|
photoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
948
948
|
publicKey: z.ZodOptional<z.ZodString>;
|
|
949
|
-
lastSignedIn: z.
|
|
949
|
+
lastSignedIn: z.ZodObject<{
|
|
950
950
|
auto: z.ZodOptional<z.ZodISODateTime>;
|
|
951
951
|
manual: z.ZodOptional<z.ZodISODateTime>;
|
|
952
|
-
}, z.core.$strip
|
|
952
|
+
}, z.core.$strip>;
|
|
953
953
|
companyUids: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>>;
|
|
954
954
|
}, z.core.$strip>;
|
|
955
955
|
type UserDetails = z.infer<typeof UserDetails>;
|
package/dist/main.js
CHANGED
|
@@ -454,7 +454,7 @@ var UserDetails = z14.object({
|
|
|
454
454
|
lastSignedIn: z14.object({
|
|
455
455
|
auto: Timestamp,
|
|
456
456
|
manual: Timestamp
|
|
457
|
-
}).partial()
|
|
457
|
+
}).partial(),
|
|
458
458
|
companyUids: z14.array(CompanyState.shape._id).min(1).optional(),
|
|
459
459
|
// resumeToken: z.uuidv4().optional(),
|
|
460
460
|
...TimeLog.shape
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bizmap/sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.119",
|
|
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.43",
|
|
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.43",
|
|
26
26
|
"@wavy/util": "^0.0.18",
|
|
27
27
|
"tsup": "^8.5.0",
|
|
28
28
|
"typescript": "^5.9.2",
|