@supernova-studio/model 1.95.5 → 1.96.1

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
@@ -5811,7 +5811,8 @@ var DesignSystemMembershipUpdates = z168.object({
5811
5811
  usersToUpdate: DesignSystemMemberUpdate.array().optional(),
5812
5812
  invitesToUpdate: DesignSystemInviteUpdate.array().optional(),
5813
5813
  removeUserIds: z168.string().array().optional(),
5814
- deleteInvitationIds: z168.string().array().optional()
5814
+ deleteInvitationIds: z168.string().array().optional(),
5815
+ isDeveloperInvite: z168.boolean().optional()
5815
5816
  });
5816
5817
 
5817
5818
  // src/dsm/pipelines/query.ts
@@ -6534,12 +6535,14 @@ import { z as z199 } from "zod";
6534
6535
  var WorkspaceInviteEmailRecipient = z199.object({
6535
6536
  email: z199.string(),
6536
6537
  role: WorkspaceRoleSchema,
6537
- seatType: WorkspaceSeatType
6538
+ seatType: WorkspaceSeatType,
6539
+ isDeveloperInvite: z199.boolean().optional()
6538
6540
  });
6539
6541
  var WorkspaceInviteEmailData = z199.object({
6540
6542
  workspace: Workspace,
6541
6543
  invitedBy: User,
6542
- documentationDomain: z199.string().optional()
6544
+ documentationDomain: z199.string().optional(),
6545
+ designSystemName: z199.string().optional()
6543
6546
  });
6544
6547
 
6545
6548
  // src/events/base.ts