@supernova-studio/model 1.96.0 → 1.96.2

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.d.mts CHANGED
@@ -146015,6 +146015,7 @@ declare const DesignSystemMembershipUpdates: z$1.ZodObject<{
146015
146015
  }>, "many">>;
146016
146016
  removeUserIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
146017
146017
  deleteInvitationIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
146018
+ isDeveloperInvite: z$1.ZodOptional<z$1.ZodBoolean>;
146018
146019
  }, "strip", z$1.ZodTypeAny, {
146019
146020
  usersToInvite?: {
146020
146021
  userId: string;
@@ -146039,6 +146040,7 @@ declare const DesignSystemMembershipUpdates: z$1.ZodObject<{
146039
146040
  }[] | undefined;
146040
146041
  removeUserIds?: string[] | undefined;
146041
146042
  deleteInvitationIds?: string[] | undefined;
146043
+ isDeveloperInvite?: boolean | undefined;
146042
146044
  }, {
146043
146045
  usersToInvite?: {
146044
146046
  userId: string;
@@ -146063,6 +146065,7 @@ declare const DesignSystemMembershipUpdates: z$1.ZodObject<{
146063
146065
  }[] | undefined;
146064
146066
  removeUserIds?: string[] | undefined;
146065
146067
  deleteInvitationIds?: string[] | undefined;
146068
+ isDeveloperInvite?: boolean | undefined;
146066
146069
  }>;
146067
146070
  type DesignSystemMembershipUpdates = z$1.infer<typeof DesignSystemMembershipUpdates>;
146068
146071
 
@@ -150475,14 +150478,17 @@ declare const WorkspaceInviteEmailRecipient: z$1.ZodObject<{
150475
150478
  email: z$1.ZodString;
150476
150479
  role: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
150477
150480
  seatType: z$1.ZodEnum<["Full", "Builder", "None"]>;
150481
+ isDeveloperInvite: z$1.ZodOptional<z$1.ZodBoolean>;
150478
150482
  }, "strip", z$1.ZodTypeAny, {
150479
150483
  email: string;
150480
150484
  seatType: "Full" | "Builder" | "None";
150481
150485
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
150486
+ isDeveloperInvite?: boolean | undefined;
150482
150487
  }, {
150483
150488
  email: string;
150484
150489
  seatType: "Full" | "Builder" | "None";
150485
150490
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
150491
+ isDeveloperInvite?: boolean | undefined;
150486
150492
  }>;
150487
150493
  type WorkspaceInviteEmailRecipient = z$1.infer<typeof WorkspaceInviteEmailRecipient>;
150488
150494
  /**
@@ -151418,6 +151424,7 @@ declare const WorkspaceInviteEmailData: z$1.ZodObject<{
151418
151424
  } | undefined;
151419
151425
  }>;
151420
151426
  documentationDomain: z$1.ZodOptional<z$1.ZodString>;
151427
+ designSystemName: z$1.ZodOptional<z$1.ZodString>;
151421
151428
  }, "strip", z$1.ZodTypeAny, {
151422
151429
  workspace: {
151423
151430
  id: string;
@@ -151576,6 +151583,7 @@ declare const WorkspaceInviteEmailData: z$1.ZodObject<{
151576
151583
  marketingEmails: boolean;
151577
151584
  } | undefined;
151578
151585
  };
151586
+ designSystemName?: string | undefined;
151579
151587
  documentationDomain?: string | undefined;
151580
151588
  }, {
151581
151589
  workspace: {
@@ -151735,6 +151743,7 @@ declare const WorkspaceInviteEmailData: z$1.ZodObject<{
151735
151743
  marketingEmails: boolean;
151736
151744
  } | undefined;
151737
151745
  };
151746
+ designSystemName?: string | undefined;
151738
151747
  documentationDomain?: string | undefined;
151739
151748
  }>;
151740
151749
  type WorkspaceInviteEmailData = z$1.infer<typeof WorkspaceInviteEmailData>;
package/dist/index.d.ts CHANGED
@@ -146015,6 +146015,7 @@ declare const DesignSystemMembershipUpdates: z$1.ZodObject<{
146015
146015
  }>, "many">>;
146016
146016
  removeUserIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
146017
146017
  deleteInvitationIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
146018
+ isDeveloperInvite: z$1.ZodOptional<z$1.ZodBoolean>;
146018
146019
  }, "strip", z$1.ZodTypeAny, {
146019
146020
  usersToInvite?: {
146020
146021
  userId: string;
@@ -146039,6 +146040,7 @@ declare const DesignSystemMembershipUpdates: z$1.ZodObject<{
146039
146040
  }[] | undefined;
146040
146041
  removeUserIds?: string[] | undefined;
146041
146042
  deleteInvitationIds?: string[] | undefined;
146043
+ isDeveloperInvite?: boolean | undefined;
146042
146044
  }, {
146043
146045
  usersToInvite?: {
146044
146046
  userId: string;
@@ -146063,6 +146065,7 @@ declare const DesignSystemMembershipUpdates: z$1.ZodObject<{
146063
146065
  }[] | undefined;
146064
146066
  removeUserIds?: string[] | undefined;
146065
146067
  deleteInvitationIds?: string[] | undefined;
146068
+ isDeveloperInvite?: boolean | undefined;
146066
146069
  }>;
146067
146070
  type DesignSystemMembershipUpdates = z$1.infer<typeof DesignSystemMembershipUpdates>;
146068
146071
 
@@ -150475,14 +150478,17 @@ declare const WorkspaceInviteEmailRecipient: z$1.ZodObject<{
150475
150478
  email: z$1.ZodString;
150476
150479
  role: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
150477
150480
  seatType: z$1.ZodEnum<["Full", "Builder", "None"]>;
150481
+ isDeveloperInvite: z$1.ZodOptional<z$1.ZodBoolean>;
150478
150482
  }, "strip", z$1.ZodTypeAny, {
150479
150483
  email: string;
150480
150484
  seatType: "Full" | "Builder" | "None";
150481
150485
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
150486
+ isDeveloperInvite?: boolean | undefined;
150482
150487
  }, {
150483
150488
  email: string;
150484
150489
  seatType: "Full" | "Builder" | "None";
150485
150490
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
150491
+ isDeveloperInvite?: boolean | undefined;
150486
150492
  }>;
150487
150493
  type WorkspaceInviteEmailRecipient = z$1.infer<typeof WorkspaceInviteEmailRecipient>;
150488
150494
  /**
@@ -151418,6 +151424,7 @@ declare const WorkspaceInviteEmailData: z$1.ZodObject<{
151418
151424
  } | undefined;
151419
151425
  }>;
151420
151426
  documentationDomain: z$1.ZodOptional<z$1.ZodString>;
151427
+ designSystemName: z$1.ZodOptional<z$1.ZodString>;
151421
151428
  }, "strip", z$1.ZodTypeAny, {
151422
151429
  workspace: {
151423
151430
  id: string;
@@ -151576,6 +151583,7 @@ declare const WorkspaceInviteEmailData: z$1.ZodObject<{
151576
151583
  marketingEmails: boolean;
151577
151584
  } | undefined;
151578
151585
  };
151586
+ designSystemName?: string | undefined;
151579
151587
  documentationDomain?: string | undefined;
151580
151588
  }, {
151581
151589
  workspace: {
@@ -151735,6 +151743,7 @@ declare const WorkspaceInviteEmailData: z$1.ZodObject<{
151735
151743
  marketingEmails: boolean;
151736
151744
  } | undefined;
151737
151745
  };
151746
+ designSystemName?: string | undefined;
151738
151747
  documentationDomain?: string | undefined;
151739
151748
  }>;
151740
151749
  type WorkspaceInviteEmailData = z$1.infer<typeof WorkspaceInviteEmailData>;
package/dist/index.js CHANGED
@@ -5811,7 +5811,8 @@ var DesignSystemMembershipUpdates = _zod.z.object({
5811
5811
  usersToUpdate: DesignSystemMemberUpdate.array().optional(),
5812
5812
  invitesToUpdate: DesignSystemInviteUpdate.array().optional(),
5813
5813
  removeUserIds: _zod.z.string().array().optional(),
5814
- deleteInvitationIds: _zod.z.string().array().optional()
5814
+ deleteInvitationIds: _zod.z.string().array().optional(),
5815
+ isDeveloperInvite: _zod.z.boolean().optional()
5815
5816
  });
5816
5817
 
5817
5818
  // src/dsm/pipelines/query.ts
@@ -6534,12 +6535,14 @@ var DesignSystemInviteEmailData = _zod.z.object({
6534
6535
  var WorkspaceInviteEmailRecipient = _zod.z.object({
6535
6536
  email: _zod.z.string(),
6536
6537
  role: WorkspaceRoleSchema,
6537
- seatType: WorkspaceSeatType
6538
+ seatType: WorkspaceSeatType,
6539
+ isDeveloperInvite: _zod.z.boolean().optional()
6538
6540
  });
6539
6541
  var WorkspaceInviteEmailData = _zod.z.object({
6540
6542
  workspace: Workspace,
6541
6543
  invitedBy: User,
6542
- documentationDomain: _zod.z.string().optional()
6544
+ documentationDomain: _zod.z.string().optional(),
6545
+ designSystemName: _zod.z.string().optional()
6543
6546
  });
6544
6547
 
6545
6548
  // src/events/base.ts