@supernova-studio/model 1.43.6 → 1.44.0

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/index.mjs CHANGED
@@ -6682,20 +6682,27 @@ var PortalSettings = z213.object({
6682
6682
  updatedAt: z213.coerce.date()
6683
6683
  });
6684
6684
 
6685
+ // src/sentry/headers.ts
6686
+ import z214 from "zod";
6687
+ var SentryTraceHeaders = z214.object({
6688
+ sentryTrace: z214.string(),
6689
+ baggage: z214.string()
6690
+ });
6691
+
6685
6692
  // src/tokens/personal-access-token.ts
6686
- import { z as z214 } from "zod";
6687
- var PersonalAccessToken = z214.object({
6688
- id: z214.string(),
6689
- userId: z214.string(),
6690
- workspaceId: z214.string().optional(),
6691
- designSystemId: z214.string().optional(),
6693
+ import { z as z215 } from "zod";
6694
+ var PersonalAccessToken = z215.object({
6695
+ id: z215.string(),
6696
+ userId: z215.string(),
6697
+ workspaceId: z215.string().optional(),
6698
+ designSystemId: z215.string().optional(),
6692
6699
  workspaceRole: WorkspaceRoleSchema.optional(),
6693
- name: z214.string(),
6694
- hidden: z214.boolean(),
6695
- token: z214.string(),
6696
- scope: z214.string().optional(),
6697
- createdAt: z214.coerce.date(),
6698
- expireAt: z214.coerce.date().optional()
6700
+ name: z215.string(),
6701
+ hidden: z215.boolean(),
6702
+ token: z215.string(),
6703
+ scope: z215.string().optional(),
6704
+ createdAt: z215.coerce.date(),
6705
+ expireAt: z215.coerce.date().optional()
6699
6706
  });
6700
6707
  export {
6701
6708
  Address,
@@ -7321,6 +7328,7 @@ export {
7321
7328
  RoomTypeSchema,
7322
7329
  SHORT_PERSISTENT_ID_LENGTH,
7323
7330
  SafeIdSchema,
7331
+ SentryTraceHeaders,
7324
7332
  Session,
7325
7333
  SessionData,
7326
7334
  ShadowLayerValue,