@supernova-studio/client 1.96.0 → 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
@@ -5435,7 +5435,8 @@ var DesignSystemMembershipUpdates = z168.object({
5435
5435
  usersToUpdate: DesignSystemMemberUpdate.array().optional(),
5436
5436
  invitesToUpdate: DesignSystemInviteUpdate.array().optional(),
5437
5437
  removeUserIds: z168.string().array().optional(),
5438
- deleteInvitationIds: z168.string().array().optional()
5438
+ deleteInvitationIds: z168.string().array().optional(),
5439
+ isDeveloperInvite: z168.boolean().optional()
5439
5440
  });
5440
5441
 
5441
5442
  // ../model/src/dsm/pipelines/query.ts
@@ -6152,12 +6153,14 @@ import { z as z199 } from "zod";
6152
6153
  var WorkspaceInviteEmailRecipient = z199.object({
6153
6154
  email: z199.string(),
6154
6155
  role: WorkspaceRoleSchema,
6155
- seatType: WorkspaceSeatType
6156
+ seatType: WorkspaceSeatType,
6157
+ isDeveloperInvite: z199.boolean().optional()
6156
6158
  });
6157
6159
  var WorkspaceInviteEmailData = z199.object({
6158
6160
  workspace: Workspace,
6159
6161
  invitedBy: User,
6160
- documentationDomain: z199.string().optional()
6162
+ documentationDomain: z199.string().optional(),
6163
+ designSystemName: z199.string().optional()
6161
6164
  });
6162
6165
 
6163
6166
  // ../model/src/events/base.ts
@@ -8177,7 +8180,8 @@ var DTOWorkspaceInvitation = z252.object({
8177
8180
  var DTOWorkspaceInvitationInput = z252.object({
8178
8181
  email: z252.string().email(),
8179
8182
  role: DTOWorkspaceRole,
8180
- seatType: DTOWorkspaceSeatType.optional()
8183
+ seatType: DTOWorkspaceSeatType.optional(),
8184
+ isDeveloperInvite: z252.boolean().optional()
8181
8185
  });
8182
8186
  var DTOWorkspaceInvitationsListInput = z252.object({
8183
8187
  invites: DTOWorkspaceInvitationInput.array().max(100),