@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.d.mts CHANGED
@@ -22498,6 +22498,7 @@ declare const DTODesignSystemCreateInput: z.ZodObject<{
22498
22498
  }>, "many">>;
22499
22499
  removeUserIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22500
22500
  deleteInvitationIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22501
+ isDeveloperInvite: z.ZodOptional<z.ZodBoolean>;
22501
22502
  }, "usersToInvite" | "invitesToInvite" | "emailsToInvite">, "strip", z.ZodTypeAny, {
22502
22503
  usersToInvite?: {
22503
22504
  userId: string;
@@ -25007,6 +25008,7 @@ declare const DTODesignSystemMembersUpdatePayload: z.ZodObject<{
25007
25008
  }>, "many">>;
25008
25009
  removeUserIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
25009
25010
  deleteInvitationIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
25011
+ isDeveloperInvite: z.ZodOptional<z.ZodBoolean>;
25010
25012
  }, "strip", z.ZodTypeAny, {
25011
25013
  usersToInvite?: {
25012
25014
  userId: string;
@@ -25031,6 +25033,7 @@ declare const DTODesignSystemMembersUpdatePayload: z.ZodObject<{
25031
25033
  }[] | undefined;
25032
25034
  removeUserIds?: string[] | undefined;
25033
25035
  deleteInvitationIds?: string[] | undefined;
25036
+ isDeveloperInvite?: boolean | undefined;
25034
25037
  }, {
25035
25038
  usersToInvite?: {
25036
25039
  userId: string;
@@ -25055,6 +25058,7 @@ declare const DTODesignSystemMembersUpdatePayload: z.ZodObject<{
25055
25058
  }[] | undefined;
25056
25059
  removeUserIds?: string[] | undefined;
25057
25060
  deleteInvitationIds?: string[] | undefined;
25061
+ isDeveloperInvite?: boolean | undefined;
25058
25062
  }>;
25059
25063
  type DTODesignSystemMembersUpdatePayload = z.infer<typeof DTODesignSystemMembersUpdatePayload>;
25060
25064
 
@@ -330191,14 +330195,17 @@ declare const DTOWorkspaceInvitationInput: z.ZodObject<{
330191
330195
  email: z.ZodString;
330192
330196
  role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
330193
330197
  seatType: z.ZodOptional<z.ZodEnum<["Full", "Builder", "None"]>>;
330198
+ isDeveloperInvite: z.ZodOptional<z.ZodBoolean>;
330194
330199
  }, "strip", z.ZodTypeAny, {
330195
330200
  email: string;
330196
330201
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
330197
330202
  seatType?: "Full" | "Builder" | "None" | undefined;
330203
+ isDeveloperInvite?: boolean | undefined;
330198
330204
  }, {
330199
330205
  email: string;
330200
330206
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
330201
330207
  seatType?: "Full" | "Builder" | "None" | undefined;
330208
+ isDeveloperInvite?: boolean | undefined;
330202
330209
  }>;
330203
330210
  type DTOWorkspaceInvitationInput = z.infer<typeof DTOWorkspaceInvitationInput>;
330204
330211
  declare const DTOWorkspaceInvitationsListInput: z.ZodObject<{
@@ -330206,14 +330213,17 @@ declare const DTOWorkspaceInvitationsListInput: z.ZodObject<{
330206
330213
  email: z.ZodString;
330207
330214
  role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
330208
330215
  seatType: z.ZodOptional<z.ZodEnum<["Full", "Builder", "None"]>>;
330216
+ isDeveloperInvite: z.ZodOptional<z.ZodBoolean>;
330209
330217
  }, "strip", z.ZodTypeAny, {
330210
330218
  email: string;
330211
330219
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
330212
330220
  seatType?: "Full" | "Builder" | "None" | undefined;
330221
+ isDeveloperInvite?: boolean | undefined;
330213
330222
  }, {
330214
330223
  email: string;
330215
330224
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
330216
330225
  seatType?: "Full" | "Builder" | "None" | undefined;
330226
+ isDeveloperInvite?: boolean | undefined;
330217
330227
  }>, "many">;
330218
330228
  designSystemId: z.ZodOptional<z.ZodString>;
330219
330229
  }, "strip", z.ZodTypeAny, {
@@ -330221,6 +330231,7 @@ declare const DTOWorkspaceInvitationsListInput: z.ZodObject<{
330221
330231
  email: string;
330222
330232
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
330223
330233
  seatType?: "Full" | "Builder" | "None" | undefined;
330234
+ isDeveloperInvite?: boolean | undefined;
330224
330235
  }[];
330225
330236
  designSystemId?: string | undefined;
330226
330237
  }, {
@@ -330228,6 +330239,7 @@ declare const DTOWorkspaceInvitationsListInput: z.ZodObject<{
330228
330239
  email: string;
330229
330240
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
330230
330241
  seatType?: "Full" | "Builder" | "None" | undefined;
330242
+ isDeveloperInvite?: boolean | undefined;
330231
330243
  }[];
330232
330244
  designSystemId?: string | undefined;
330233
330245
  }>;
package/dist/index.d.ts CHANGED
@@ -22498,6 +22498,7 @@ declare const DTODesignSystemCreateInput: z.ZodObject<{
22498
22498
  }>, "many">>;
22499
22499
  removeUserIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22500
22500
  deleteInvitationIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22501
+ isDeveloperInvite: z.ZodOptional<z.ZodBoolean>;
22501
22502
  }, "usersToInvite" | "invitesToInvite" | "emailsToInvite">, "strip", z.ZodTypeAny, {
22502
22503
  usersToInvite?: {
22503
22504
  userId: string;
@@ -25007,6 +25008,7 @@ declare const DTODesignSystemMembersUpdatePayload: z.ZodObject<{
25007
25008
  }>, "many">>;
25008
25009
  removeUserIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
25009
25010
  deleteInvitationIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
25011
+ isDeveloperInvite: z.ZodOptional<z.ZodBoolean>;
25010
25012
  }, "strip", z.ZodTypeAny, {
25011
25013
  usersToInvite?: {
25012
25014
  userId: string;
@@ -25031,6 +25033,7 @@ declare const DTODesignSystemMembersUpdatePayload: z.ZodObject<{
25031
25033
  }[] | undefined;
25032
25034
  removeUserIds?: string[] | undefined;
25033
25035
  deleteInvitationIds?: string[] | undefined;
25036
+ isDeveloperInvite?: boolean | undefined;
25034
25037
  }, {
25035
25038
  usersToInvite?: {
25036
25039
  userId: string;
@@ -25055,6 +25058,7 @@ declare const DTODesignSystemMembersUpdatePayload: z.ZodObject<{
25055
25058
  }[] | undefined;
25056
25059
  removeUserIds?: string[] | undefined;
25057
25060
  deleteInvitationIds?: string[] | undefined;
25061
+ isDeveloperInvite?: boolean | undefined;
25058
25062
  }>;
25059
25063
  type DTODesignSystemMembersUpdatePayload = z.infer<typeof DTODesignSystemMembersUpdatePayload>;
25060
25064
 
@@ -330191,14 +330195,17 @@ declare const DTOWorkspaceInvitationInput: z.ZodObject<{
330191
330195
  email: z.ZodString;
330192
330196
  role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
330193
330197
  seatType: z.ZodOptional<z.ZodEnum<["Full", "Builder", "None"]>>;
330198
+ isDeveloperInvite: z.ZodOptional<z.ZodBoolean>;
330194
330199
  }, "strip", z.ZodTypeAny, {
330195
330200
  email: string;
330196
330201
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
330197
330202
  seatType?: "Full" | "Builder" | "None" | undefined;
330203
+ isDeveloperInvite?: boolean | undefined;
330198
330204
  }, {
330199
330205
  email: string;
330200
330206
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
330201
330207
  seatType?: "Full" | "Builder" | "None" | undefined;
330208
+ isDeveloperInvite?: boolean | undefined;
330202
330209
  }>;
330203
330210
  type DTOWorkspaceInvitationInput = z.infer<typeof DTOWorkspaceInvitationInput>;
330204
330211
  declare const DTOWorkspaceInvitationsListInput: z.ZodObject<{
@@ -330206,14 +330213,17 @@ declare const DTOWorkspaceInvitationsListInput: z.ZodObject<{
330206
330213
  email: z.ZodString;
330207
330214
  role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
330208
330215
  seatType: z.ZodOptional<z.ZodEnum<["Full", "Builder", "None"]>>;
330216
+ isDeveloperInvite: z.ZodOptional<z.ZodBoolean>;
330209
330217
  }, "strip", z.ZodTypeAny, {
330210
330218
  email: string;
330211
330219
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
330212
330220
  seatType?: "Full" | "Builder" | "None" | undefined;
330221
+ isDeveloperInvite?: boolean | undefined;
330213
330222
  }, {
330214
330223
  email: string;
330215
330224
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
330216
330225
  seatType?: "Full" | "Builder" | "None" | undefined;
330226
+ isDeveloperInvite?: boolean | undefined;
330217
330227
  }>, "many">;
330218
330228
  designSystemId: z.ZodOptional<z.ZodString>;
330219
330229
  }, "strip", z.ZodTypeAny, {
@@ -330221,6 +330231,7 @@ declare const DTOWorkspaceInvitationsListInput: z.ZodObject<{
330221
330231
  email: string;
330222
330232
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
330223
330233
  seatType?: "Full" | "Builder" | "None" | undefined;
330234
+ isDeveloperInvite?: boolean | undefined;
330224
330235
  }[];
330225
330236
  designSystemId?: string | undefined;
330226
330237
  }, {
@@ -330228,6 +330239,7 @@ declare const DTOWorkspaceInvitationsListInput: z.ZodObject<{
330228
330239
  email: string;
330229
330240
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
330230
330241
  seatType?: "Full" | "Builder" | "None" | undefined;
330242
+ isDeveloperInvite?: boolean | undefined;
330231
330243
  }[];
330232
330244
  designSystemId?: string | undefined;
330233
330245
  }>;
package/dist/index.js CHANGED
@@ -5435,7 +5435,8 @@ var DesignSystemMembershipUpdates = _zod.z.object({
5435
5435
  usersToUpdate: DesignSystemMemberUpdate.array().optional(),
5436
5436
  invitesToUpdate: DesignSystemInviteUpdate.array().optional(),
5437
5437
  removeUserIds: _zod.z.string().array().optional(),
5438
- deleteInvitationIds: _zod.z.string().array().optional()
5438
+ deleteInvitationIds: _zod.z.string().array().optional(),
5439
+ isDeveloperInvite: _zod.z.boolean().optional()
5439
5440
  });
5440
5441
 
5441
5442
  // ../model/src/dsm/pipelines/query.ts
@@ -6152,12 +6153,14 @@ var DesignSystemInviteEmailData = _zod.z.object({
6152
6153
  var WorkspaceInviteEmailRecipient = _zod.z.object({
6153
6154
  email: _zod.z.string(),
6154
6155
  role: WorkspaceRoleSchema,
6155
- seatType: WorkspaceSeatType
6156
+ seatType: WorkspaceSeatType,
6157
+ isDeveloperInvite: _zod.z.boolean().optional()
6156
6158
  });
6157
6159
  var WorkspaceInviteEmailData = _zod.z.object({
6158
6160
  workspace: Workspace,
6159
6161
  invitedBy: User,
6160
- documentationDomain: _zod.z.string().optional()
6162
+ documentationDomain: _zod.z.string().optional(),
6163
+ designSystemName: _zod.z.string().optional()
6161
6164
  });
6162
6165
 
6163
6166
  // ../model/src/events/base.ts
@@ -8177,7 +8180,8 @@ var DTOWorkspaceInvitation = _zod.z.object({
8177
8180
  var DTOWorkspaceInvitationInput = _zod.z.object({
8178
8181
  email: _zod.z.string().email(),
8179
8182
  role: DTOWorkspaceRole,
8180
- seatType: DTOWorkspaceSeatType.optional()
8183
+ seatType: DTOWorkspaceSeatType.optional(),
8184
+ isDeveloperInvite: _zod.z.boolean().optional()
8181
8185
  });
8182
8186
  var DTOWorkspaceInvitationsListInput = _zod.z.object({
8183
8187
  invites: DTOWorkspaceInvitationInput.array().max(100),