@supernova-studio/client 1.42.8 → 1.42.10

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
@@ -5785,8 +5785,9 @@ var PageScreenshotInput = z212.object({
5785
5785
  width: z212.number().positive(),
5786
5786
  height: z212.number().positive()
5787
5787
  }).optional(),
5788
- authorization: z212.object({
5789
- supernovaToken: z212.string().optional()
5788
+ supernovaAuth: z212.object({
5789
+ accessToken: z212.string(),
5790
+ authPageUrl: z212.string()
5790
5791
  }).optional()
5791
5792
  });
5792
5793
  var PageScreenshotOutput = z212.discriminatedUnion("success", [
@@ -7187,9 +7188,21 @@ var DTOIntegrationsGetListResponse = z240.object({
7187
7188
 
7188
7189
  // src/api/dto/workspaces/invitations.ts
7189
7190
  import { z as z241 } from "zod";
7191
+ var DTOWorkspaceInvitation = z241.object({
7192
+ id: z241.string(),
7193
+ email: z241.string().email(),
7194
+ createdAt: z241.coerce.date(),
7195
+ resentAt: z241.coerce.date().nullish(),
7196
+ role: DTOWorkspaceRole,
7197
+ seatType: DTOWorkspaceSeatType,
7198
+ workspaceId: z241.string(),
7199
+ invitedBy: z241.string(),
7200
+ effectiveRole: DTOWorkspaceRole,
7201
+ effectiveSeatType: DTOWorkspaceSeatType
7202
+ });
7190
7203
  var DTOWorkspaceInvitationInput = z241.object({
7191
7204
  email: z241.string().email(),
7192
- role: WorkspaceRoleSchema,
7205
+ role: DTOWorkspaceRole,
7193
7206
  seatType: DTOWorkspaceSeatType.optional()
7194
7207
  });
7195
7208
  var DTOWorkspaceInvitationsListInput = z241.object({
@@ -7197,14 +7210,14 @@ var DTOWorkspaceInvitationsListInput = z241.object({
7197
7210
  designSystemId: z241.string().optional()
7198
7211
  });
7199
7212
  var DTOWorkspaceInvitationsResponse = z241.object({
7200
- invitations: WorkspaceInvitation.array()
7213
+ invitations: DTOWorkspaceInvitation.array()
7201
7214
  });
7202
7215
  var DTOWorkspaceInviteUpdate = z241.object({
7203
- role: WorkspaceRoleSchema,
7216
+ role: DTOWorkspaceRole,
7204
7217
  seatType: DTOWorkspaceSeatType.optional()
7205
7218
  });
7206
7219
  var DTOWorkspaceInvitationUpdateResponse = z241.object({
7207
- invitation: WorkspaceInvitation
7220
+ invitation: DTOWorkspaceInvitation
7208
7221
  });
7209
7222
 
7210
7223
  // src/api/dto/workspaces/membership.ts
@@ -19657,6 +19670,7 @@ export {
19657
19670
  DTOWorkspaceIntegrationGetGitObjectsInput,
19658
19671
  DTOWorkspaceIntegrationOauthInput,
19659
19672
  DTOWorkspaceIntegrationPATInput,
19673
+ DTOWorkspaceInvitation,
19660
19674
  DTOWorkspaceInvitationInput,
19661
19675
  DTOWorkspaceInvitationUpdateResponse,
19662
19676
  DTOWorkspaceInvitationsListInput,