@bizmap/sdk 0.0.79 → 0.0.80

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
@@ -774,6 +774,7 @@ declare const CompanyUserSession: z.ZodObject<{
774
774
  cshr: "cshr";
775
775
  founder: "founder";
776
776
  }>>, z.ZodTransform<("doc" | "physAsst" | "rcpst" | "cshr" | "founder")[], ("doc" | "physAsst" | "rcpst" | "cshr" | "founder")[]>>;
777
+ ttl: z.ZodNumber;
777
778
  lastModified: z.ZodNullable<z.ZodInt>;
778
779
  expiresAfter: z.ZodDate;
779
780
  }, z.core.$strip>;
package/dist/main.js CHANGED
@@ -479,6 +479,8 @@ var CompanyUserSession = z14.object({
479
479
  (role, i) => i === 0 || getCompatibleRoles(roles[0]).includes(role)
480
480
  );
481
481
  }, "A user is not allowed to have conflicting roles."),
482
+ /** Stored in millis */
483
+ ttl: z14.number(),
482
484
  lastModified: Timestamp.nullable(),
483
485
  expiresAfter: z14.date()
484
486
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bizmap/sdk",
3
- "version": "0.0.79",
3
+ "version": "0.0.80",
4
4
  "main": "./dist/main.js",
5
5
  "types": "./dist/main.d.ts",
6
6
  "type": "module",