@bizmap/sdk 0.0.118 → 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 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.ZodOptional<z.ZodObject<{
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().optional(),
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.118",
3
+ "version": "0.0.119",
4
4
  "main": "./dist/main.js",
5
5
  "types": "./dist/main.d.ts",
6
6
  "type": "module",