@supernova-studio/client 1.42.1 → 1.42.3

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.ts CHANGED
@@ -66542,7 +66542,7 @@ declare const DTOFileReference: z__default.ZodObject<Pick<{
66542
66542
  } | undefined;
66543
66543
  }>;
66544
66544
  type DTOFileReference = z__default.infer<typeof DTOFileReference>;
66545
- declare const DTOFileUploadBulkInput: z__default.ZodIntersection<z__default.ZodObject<{
66545
+ declare const DTOFileUploadBulkPayload: z__default.ZodIntersection<z__default.ZodObject<{
66546
66546
  files: z__default.ZodArray<z__default.ZodObject<{
66547
66547
  size: z__default.ZodNumber;
66548
66548
  name: z__default.ZodString;
@@ -66568,23 +66568,46 @@ declare const DTOFileUploadBulkInput: z__default.ZodIntersection<z__default.ZodO
66568
66568
  size: number;
66569
66569
  checksum: string;
66570
66570
  }[];
66571
- }>, z__default.ZodDiscriminatedUnion<"uploadTo", [z__default.ZodObject<{
66572
- uploadTo: z__default.ZodLiteral<"User">;
66571
+ }>, z__default.ZodDiscriminatedUnion<"ownerType", [z__default.ZodObject<{
66572
+ ownerType: z__default.ZodLiteral<"User">;
66573
66573
  }, "strip", z__default.ZodTypeAny, {
66574
- uploadTo: "User";
66574
+ ownerType: "User";
66575
66575
  }, {
66576
- uploadTo: "User";
66576
+ ownerType: "User";
66577
66577
  }>, z__default.ZodObject<{
66578
- uploadTo: z__default.ZodLiteral<"Workspace">;
66578
+ ownerType: z__default.ZodLiteral<"Workspace">;
66579
66579
  workspaceId: z__default.ZodString;
66580
66580
  }, "strip", z__default.ZodTypeAny, {
66581
66581
  workspaceId: string;
66582
- uploadTo: "Workspace";
66582
+ ownerType: "Workspace";
66583
66583
  }, {
66584
66584
  workspaceId: string;
66585
- uploadTo: "Workspace";
66585
+ ownerType: "Workspace";
66586
66586
  }>]>>;
66587
- type DTOFileUploadBulkInput = z__default.infer<typeof DTOFileUploadBulkInput>;
66587
+ type DTOFileUploadBulkPayload = z__default.infer<typeof DTOFileUploadBulkPayload>;
66588
+ declare const DTOFileFinalizeBulkPayload: z__default.ZodIntersection<z__default.ZodObject<{
66589
+ fileIds: z__default.ZodArray<z__default.ZodString, "many">;
66590
+ }, "strip", z__default.ZodTypeAny, {
66591
+ fileIds: string[];
66592
+ }, {
66593
+ fileIds: string[];
66594
+ }>, z__default.ZodDiscriminatedUnion<"ownerType", [z__default.ZodObject<{
66595
+ ownerType: z__default.ZodLiteral<"User">;
66596
+ }, "strip", z__default.ZodTypeAny, {
66597
+ ownerType: "User";
66598
+ }, {
66599
+ ownerType: "User";
66600
+ }>, z__default.ZodObject<{
66601
+ ownerType: z__default.ZodLiteral<"Workspace">;
66602
+ workspaceId: z__default.ZodString;
66603
+ }, "strip", z__default.ZodTypeAny, {
66604
+ workspaceId: string;
66605
+ ownerType: "Workspace";
66606
+ }, {
66607
+ workspaceId: string;
66608
+ ownerType: "Workspace";
66609
+ }>]>>;
66610
+ type DTOFileFinalizeBulkPayload = z__default.infer<typeof DTOFileFinalizeBulkPayload>;
66588
66611
  declare const DTOFileListResponse: z__default.ZodObject<{
66589
66612
  files: z__default.ZodArray<z__default.ZodObject<{
66590
66613
  id: z__default.ZodString;
@@ -66801,6 +66824,105 @@ declare const DTOFileUploadBulkResponse: z__default.ZodObject<{
66801
66824
  }[];
66802
66825
  }>;
66803
66826
  type DTOFileUploadBulkResponse = z__default.infer<typeof DTOFileUploadBulkResponse>;
66827
+ declare const DTOFileFinalizeBulkResponse: z__default.ZodObject<{
66828
+ files: z__default.ZodArray<z__default.ZodObject<{
66829
+ id: z__default.ZodString;
66830
+ name: z__default.ZodString;
66831
+ deduplicationKey: z__default.ZodString;
66832
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
66833
+ storagePath: z__default.ZodString;
66834
+ url: z__default.ZodString;
66835
+ size: z__default.ZodNumber;
66836
+ /**
66837
+ * Object describing where did the file come from. Undefined source indicates a file produced by the
66838
+ * system (e.g. thumbnails, etc)
66839
+ */
66840
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
66841
+ type: z__default.ZodLiteral<"UserUpload">;
66842
+ userId: z__default.ZodString;
66843
+ }, "strip", z__default.ZodTypeAny, {
66844
+ type: "UserUpload";
66845
+ userId: string;
66846
+ }, {
66847
+ type: "UserUpload";
66848
+ userId: string;
66849
+ }>, z__default.ZodObject<{
66850
+ type: z__default.ZodLiteral<"Figma">;
66851
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
66852
+ }, "strip", z__default.ZodTypeAny, {
66853
+ type: "Figma";
66854
+ renderMode: "Image" | "HTML";
66855
+ }, {
66856
+ type: "Figma";
66857
+ renderMode: "Image" | "HTML";
66858
+ }>]>>;
66859
+ }, "strip", z__default.ZodTypeAny, {
66860
+ id: string;
66861
+ name: string;
66862
+ url: string;
66863
+ size: number;
66864
+ deduplicationKey: string;
66865
+ storagePath: string;
66866
+ source?: {
66867
+ type: "UserUpload";
66868
+ userId: string;
66869
+ } | {
66870
+ type: "Figma";
66871
+ renderMode: "Image" | "HTML";
66872
+ } | undefined;
66873
+ pendingUpload?: boolean | undefined;
66874
+ }, {
66875
+ id: string;
66876
+ name: string;
66877
+ url: string;
66878
+ size: number;
66879
+ deduplicationKey: string;
66880
+ storagePath: string;
66881
+ source?: {
66882
+ type: "UserUpload";
66883
+ userId: string;
66884
+ } | {
66885
+ type: "Figma";
66886
+ renderMode: "Image" | "HTML";
66887
+ } | undefined;
66888
+ pendingUpload?: boolean | undefined;
66889
+ }>, "many">;
66890
+ }, "strip", z__default.ZodTypeAny, {
66891
+ files: {
66892
+ id: string;
66893
+ name: string;
66894
+ url: string;
66895
+ size: number;
66896
+ deduplicationKey: string;
66897
+ storagePath: string;
66898
+ source?: {
66899
+ type: "UserUpload";
66900
+ userId: string;
66901
+ } | {
66902
+ type: "Figma";
66903
+ renderMode: "Image" | "HTML";
66904
+ } | undefined;
66905
+ pendingUpload?: boolean | undefined;
66906
+ }[];
66907
+ }, {
66908
+ files: {
66909
+ id: string;
66910
+ name: string;
66911
+ url: string;
66912
+ size: number;
66913
+ deduplicationKey: string;
66914
+ storagePath: string;
66915
+ source?: {
66916
+ type: "UserUpload";
66917
+ userId: string;
66918
+ } | {
66919
+ type: "Figma";
66920
+ renderMode: "Image" | "HTML";
66921
+ } | undefined;
66922
+ pendingUpload?: boolean | undefined;
66923
+ }[];
66924
+ }>;
66925
+ type DTOFileFinalizeBulkResponse = z__default.infer<typeof DTOFileFinalizeBulkResponse>;
66804
66926
 
66805
66927
  declare const DTOUGetForgeAgentResponse: z$1.ZodObject<{
66806
66928
  agent: z$1.ZodNullable<z$1.ZodObject<{
@@ -71060,169 +71182,6 @@ declare const DTOFeatureEventReactionsDeleted: z__default.ZodObject<{
71060
71182
  };
71061
71183
  }>;
71062
71184
  type DTOFeatureEventReactionsDeleted = z__default.infer<typeof DTOFeatureEventReactionsDeleted>;
71063
- declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
71064
- type: z__default.ZodLiteral<"AgentResponseFinished">;
71065
- data: z__default.ZodObject<{
71066
- id: z__default.ZodString;
71067
- /**
71068
- * Describes where the message came from
71069
- */
71070
- sender: z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
71071
- type: z__default.ZodLiteral<"User">;
71072
- userId: z__default.ZodString;
71073
- }, "strip", z__default.ZodTypeAny, {
71074
- type: "User";
71075
- userId: string;
71076
- }, {
71077
- type: "User";
71078
- userId: string;
71079
- }>, z__default.ZodObject<{
71080
- type: z__default.ZodLiteral<"Agent">;
71081
- }, "strip", z__default.ZodTypeAny, {
71082
- type: "Agent";
71083
- }, {
71084
- type: "Agent";
71085
- }>, z__default.ZodObject<{
71086
- type: z__default.ZodLiteral<"System">;
71087
- onBehalfOfUserId: z__default.ZodString;
71088
- }, "strip", z__default.ZodTypeAny, {
71089
- type: "System";
71090
- onBehalfOfUserId: string;
71091
- }, {
71092
- type: "System";
71093
- onBehalfOfUserId: string;
71094
- }>]>;
71095
- /**
71096
- * Content of the message
71097
- */
71098
- body: z__default.ZodString;
71099
- /**
71100
- * Indicates if the message was sent in the agentic mode, if so this message will cause an
71101
- * AI agent to generate a response and perform an action within the feature
71102
- */
71103
- isPrompt: z__default.ZodOptional<z__default.ZodBoolean>;
71104
- /**
71105
- * Indicates if the sender requested agent to reply in a thread
71106
- */
71107
- startsNewThread: z__default.ZodOptional<z__default.ZodBoolean>;
71108
- /**
71109
- * If defined, this message is considered to be a reply in a thread under parent message id
71110
- */
71111
- parentMessageId: z__default.ZodOptional<z__default.ZodString>;
71112
- /**
71113
- * Link agent response object describing current state of
71114
- */
71115
- agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
71116
- attachments: z__default.ZodOptional<z__default.ZodObject<{
71117
- iterationId: z__default.ZodOptional<z__default.ZodString>;
71118
- }, "strip", z__default.ZodTypeAny, {
71119
- iterationId?: string | undefined;
71120
- }, {
71121
- iterationId?: string | undefined;
71122
- }>>;
71123
- /**
71124
- * If defined, this message is considered to be a reply to different message
71125
- */
71126
- replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
71127
- createdAt: z__default.ZodString;
71128
- updatedAt: z__default.ZodOptional<z__default.ZodString>;
71129
- }, "strip", z__default.ZodTypeAny, {
71130
- id: string;
71131
- createdAt: string;
71132
- sender: {
71133
- type: "User";
71134
- userId: string;
71135
- } | {
71136
- type: "Agent";
71137
- } | {
71138
- type: "System";
71139
- onBehalfOfUserId: string;
71140
- };
71141
- body: string;
71142
- updatedAt?: string | undefined;
71143
- isPrompt?: boolean | undefined;
71144
- startsNewThread?: boolean | undefined;
71145
- parentMessageId?: string | undefined;
71146
- agentResponseTrackerId?: string | null | undefined;
71147
- attachments?: {
71148
- iterationId?: string | undefined;
71149
- } | undefined;
71150
- replyToMessageId?: string | undefined;
71151
- }, {
71152
- id: string;
71153
- createdAt: string;
71154
- sender: {
71155
- type: "User";
71156
- userId: string;
71157
- } | {
71158
- type: "Agent";
71159
- } | {
71160
- type: "System";
71161
- onBehalfOfUserId: string;
71162
- };
71163
- body: string;
71164
- updatedAt?: string | undefined;
71165
- isPrompt?: boolean | undefined;
71166
- startsNewThread?: boolean | undefined;
71167
- parentMessageId?: string | undefined;
71168
- agentResponseTrackerId?: string | null | undefined;
71169
- attachments?: {
71170
- iterationId?: string | undefined;
71171
- } | undefined;
71172
- replyToMessageId?: string | undefined;
71173
- }>;
71174
- }, "strip", z__default.ZodTypeAny, {
71175
- type: "AgentResponseFinished";
71176
- data: {
71177
- id: string;
71178
- createdAt: string;
71179
- sender: {
71180
- type: "User";
71181
- userId: string;
71182
- } | {
71183
- type: "Agent";
71184
- } | {
71185
- type: "System";
71186
- onBehalfOfUserId: string;
71187
- };
71188
- body: string;
71189
- updatedAt?: string | undefined;
71190
- isPrompt?: boolean | undefined;
71191
- startsNewThread?: boolean | undefined;
71192
- parentMessageId?: string | undefined;
71193
- agentResponseTrackerId?: string | null | undefined;
71194
- attachments?: {
71195
- iterationId?: string | undefined;
71196
- } | undefined;
71197
- replyToMessageId?: string | undefined;
71198
- };
71199
- }, {
71200
- type: "AgentResponseFinished";
71201
- data: {
71202
- id: string;
71203
- createdAt: string;
71204
- sender: {
71205
- type: "User";
71206
- userId: string;
71207
- } | {
71208
- type: "Agent";
71209
- } | {
71210
- type: "System";
71211
- onBehalfOfUserId: string;
71212
- };
71213
- body: string;
71214
- updatedAt?: string | undefined;
71215
- isPrompt?: boolean | undefined;
71216
- startsNewThread?: boolean | undefined;
71217
- parentMessageId?: string | undefined;
71218
- agentResponseTrackerId?: string | null | undefined;
71219
- attachments?: {
71220
- iterationId?: string | undefined;
71221
- } | undefined;
71222
- replyToMessageId?: string | undefined;
71223
- };
71224
- }>;
71225
- type DTOFeatureEventAgentResponseFinished = z__default.infer<typeof DTOFeatureEventAgentResponseFinished>;
71226
71185
  declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
71227
71186
  type: z__default.ZodLiteral<"MessagesSent">;
71228
71187
  data: z__default.ZodArray<z__default.ZodObject<{
@@ -71452,167 +71411,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
71452
71411
  userId: string;
71453
71412
  messageId: string;
71454
71413
  };
71455
- }>, z__default.ZodObject<{
71456
- type: z__default.ZodLiteral<"AgentResponseFinished">;
71457
- data: z__default.ZodObject<{
71458
- id: z__default.ZodString;
71459
- /**
71460
- * Describes where the message came from
71461
- */
71462
- sender: z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
71463
- type: z__default.ZodLiteral<"User">;
71464
- userId: z__default.ZodString;
71465
- }, "strip", z__default.ZodTypeAny, {
71466
- type: "User";
71467
- userId: string;
71468
- }, {
71469
- type: "User";
71470
- userId: string;
71471
- }>, z__default.ZodObject<{
71472
- type: z__default.ZodLiteral<"Agent">;
71473
- }, "strip", z__default.ZodTypeAny, {
71474
- type: "Agent";
71475
- }, {
71476
- type: "Agent";
71477
- }>, z__default.ZodObject<{
71478
- type: z__default.ZodLiteral<"System">;
71479
- onBehalfOfUserId: z__default.ZodString;
71480
- }, "strip", z__default.ZodTypeAny, {
71481
- type: "System";
71482
- onBehalfOfUserId: string;
71483
- }, {
71484
- type: "System";
71485
- onBehalfOfUserId: string;
71486
- }>]>;
71487
- /**
71488
- * Content of the message
71489
- */
71490
- body: z__default.ZodString;
71491
- /**
71492
- * Indicates if the message was sent in the agentic mode, if so this message will cause an
71493
- * AI agent to generate a response and perform an action within the feature
71494
- */
71495
- isPrompt: z__default.ZodOptional<z__default.ZodBoolean>;
71496
- /**
71497
- * Indicates if the sender requested agent to reply in a thread
71498
- */
71499
- startsNewThread: z__default.ZodOptional<z__default.ZodBoolean>;
71500
- /**
71501
- * If defined, this message is considered to be a reply in a thread under parent message id
71502
- */
71503
- parentMessageId: z__default.ZodOptional<z__default.ZodString>;
71504
- /**
71505
- * Link agent response object describing current state of
71506
- */
71507
- agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
71508
- attachments: z__default.ZodOptional<z__default.ZodObject<{
71509
- iterationId: z__default.ZodOptional<z__default.ZodString>;
71510
- }, "strip", z__default.ZodTypeAny, {
71511
- iterationId?: string | undefined;
71512
- }, {
71513
- iterationId?: string | undefined;
71514
- }>>;
71515
- /**
71516
- * If defined, this message is considered to be a reply to different message
71517
- */
71518
- replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
71519
- createdAt: z__default.ZodString;
71520
- updatedAt: z__default.ZodOptional<z__default.ZodString>;
71521
- }, "strip", z__default.ZodTypeAny, {
71522
- id: string;
71523
- createdAt: string;
71524
- sender: {
71525
- type: "User";
71526
- userId: string;
71527
- } | {
71528
- type: "Agent";
71529
- } | {
71530
- type: "System";
71531
- onBehalfOfUserId: string;
71532
- };
71533
- body: string;
71534
- updatedAt?: string | undefined;
71535
- isPrompt?: boolean | undefined;
71536
- startsNewThread?: boolean | undefined;
71537
- parentMessageId?: string | undefined;
71538
- agentResponseTrackerId?: string | null | undefined;
71539
- attachments?: {
71540
- iterationId?: string | undefined;
71541
- } | undefined;
71542
- replyToMessageId?: string | undefined;
71543
- }, {
71544
- id: string;
71545
- createdAt: string;
71546
- sender: {
71547
- type: "User";
71548
- userId: string;
71549
- } | {
71550
- type: "Agent";
71551
- } | {
71552
- type: "System";
71553
- onBehalfOfUserId: string;
71554
- };
71555
- body: string;
71556
- updatedAt?: string | undefined;
71557
- isPrompt?: boolean | undefined;
71558
- startsNewThread?: boolean | undefined;
71559
- parentMessageId?: string | undefined;
71560
- agentResponseTrackerId?: string | null | undefined;
71561
- attachments?: {
71562
- iterationId?: string | undefined;
71563
- } | undefined;
71564
- replyToMessageId?: string | undefined;
71565
- }>;
71566
- }, "strip", z__default.ZodTypeAny, {
71567
- type: "AgentResponseFinished";
71568
- data: {
71569
- id: string;
71570
- createdAt: string;
71571
- sender: {
71572
- type: "User";
71573
- userId: string;
71574
- } | {
71575
- type: "Agent";
71576
- } | {
71577
- type: "System";
71578
- onBehalfOfUserId: string;
71579
- };
71580
- body: string;
71581
- updatedAt?: string | undefined;
71582
- isPrompt?: boolean | undefined;
71583
- startsNewThread?: boolean | undefined;
71584
- parentMessageId?: string | undefined;
71585
- agentResponseTrackerId?: string | null | undefined;
71586
- attachments?: {
71587
- iterationId?: string | undefined;
71588
- } | undefined;
71589
- replyToMessageId?: string | undefined;
71590
- };
71591
- }, {
71592
- type: "AgentResponseFinished";
71593
- data: {
71594
- id: string;
71595
- createdAt: string;
71596
- sender: {
71597
- type: "User";
71598
- userId: string;
71599
- } | {
71600
- type: "Agent";
71601
- } | {
71602
- type: "System";
71603
- onBehalfOfUserId: string;
71604
- };
71605
- body: string;
71606
- updatedAt?: string | undefined;
71607
- isPrompt?: boolean | undefined;
71608
- startsNewThread?: boolean | undefined;
71609
- parentMessageId?: string | undefined;
71610
- agentResponseTrackerId?: string | null | undefined;
71611
- attachments?: {
71612
- iterationId?: string | undefined;
71613
- } | undefined;
71614
- replyToMessageId?: string | undefined;
71615
- };
71616
71414
  }>]>;
71617
71415
  type DTOFeatureEvent = z__default.infer<typeof DTOFeatureEvent>;
71618
71416
 
@@ -235426,10 +235224,13 @@ declare const DTOThreadMessageAttachmentsCreateInput: z__default.ZodObject<{
235426
235224
  type DTOThreadMessageAttachmentsCreateInput = z__default.infer<typeof DTOThreadMessageAttachmentsCreateInput>;
235427
235225
  declare const DTOThreadMessageFinalizeInput: z__default.ZodObject<{
235428
235226
  messageId: z__default.ZodString;
235227
+ agentMessageBody: z__default.ZodOptional<z__default.ZodString>;
235429
235228
  }, "strip", z__default.ZodTypeAny, {
235430
235229
  messageId: string;
235230
+ agentMessageBody?: string | undefined;
235431
235231
  }, {
235432
235232
  messageId: string;
235233
+ agentMessageBody?: string | undefined;
235433
235234
  }>;
235434
235235
  type DTOThreadMessageFinalizeInput = z__default.infer<typeof DTOThreadMessageFinalizeInput>;
235435
235236
  declare const DTOThreadMessageCreateInput: z__default.ZodObject<Pick<{
@@ -237812,546 +237613,1621 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
237812
237613
  }>]>;
237813
237614
  type DTOThreadEvent = z__default.infer<typeof DTOThreadEvent>;
237814
237615
 
237815
- declare const DTOUserOnboardingDepartment: z$1.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>;
237816
- type DTOUserOnboardingDepartment = z$1.infer<typeof DTOUserOnboardingDepartment>;
237817
- declare const DTOUserOnboardingJobLevel: z$1.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>;
237818
- type DTOUserOnboardingJobLevel = z$1.infer<typeof DTOUserOnboardingJobLevel>;
237819
- declare const DTOUserSource: z$1.ZodEnum<["SignUp", "Invite", "SSO"]>;
237820
- type DTOUserSource = z$1.infer<typeof DTOUserSource>;
237821
- declare const DTOUserTheme: z$1.ZodObject<{
237822
- backgroundColor: z$1.ZodOptional<z$1.ZodString>;
237823
- accentColor: z$1.ZodOptional<z$1.ZodString>;
237824
- contrast: z$1.ZodOptional<z$1.ZodNumber>;
237825
- isSecondaryEnabled: z$1.ZodOptional<z$1.ZodBoolean>;
237826
- secondaryBackgroundColor: z$1.ZodOptional<z$1.ZodString>;
237827
- secondaryContrast: z$1.ZodOptional<z$1.ZodNumber>;
237828
- isEditorWhite: z$1.ZodOptional<z$1.ZodBoolean>;
237829
- } & {
237830
- preset: z$1.ZodOptional<z$1.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
237616
+ declare const DTOTrailEvent: z$1.ZodIntersection<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
237617
+ type: z$1.ZodLiteral<"IterationCreated">;
237618
+ payload: z$1.ZodObject<{
237619
+ iterationName: z$1.ZodString;
237620
+ iterationId: z$1.ZodString;
237621
+ featureId: z$1.ZodString;
237622
+ }, "strip", z$1.ZodTypeAny, {
237623
+ iterationId: string;
237624
+ featureId: string;
237625
+ iterationName: string;
237626
+ }, {
237627
+ iterationId: string;
237628
+ featureId: string;
237629
+ iterationName: string;
237630
+ }>;
237831
237631
  }, "strip", z$1.ZodTypeAny, {
237832
- backgroundColor?: string | undefined;
237833
- accentColor?: string | undefined;
237834
- contrast?: number | undefined;
237835
- isSecondaryEnabled?: boolean | undefined;
237836
- secondaryBackgroundColor?: string | undefined;
237837
- secondaryContrast?: number | undefined;
237838
- isEditorWhite?: boolean | undefined;
237839
- preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
237632
+ type: "IterationCreated";
237633
+ payload: {
237634
+ iterationId: string;
237635
+ featureId: string;
237636
+ iterationName: string;
237637
+ };
237840
237638
  }, {
237841
- backgroundColor?: string | undefined;
237842
- accentColor?: string | undefined;
237843
- contrast?: number | undefined;
237844
- isSecondaryEnabled?: boolean | undefined;
237845
- secondaryBackgroundColor?: string | undefined;
237846
- secondaryContrast?: number | undefined;
237847
- isEditorWhite?: boolean | undefined;
237848
- preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
237849
- }>;
237850
- type DTOUserTheme = z$1.infer<typeof DTOUserTheme>;
237851
- declare const DTOUserOnboarding: z$1.ZodObject<{
237852
- companyName: z$1.ZodOptional<z$1.ZodString>;
237853
- numberOfPeopleInOrg: z$1.ZodOptional<z$1.ZodString>;
237854
- numberOfPeopleInDesignTeam: z$1.ZodOptional<z$1.ZodString>;
237855
- department: z$1.ZodOptional<z$1.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
237856
- jobTitle: z$1.ZodOptional<z$1.ZodString>;
237857
- phase: z$1.ZodOptional<z$1.ZodString>;
237858
- jobLevel: z$1.ZodOptional<z$1.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
237859
- designSystemName: z$1.ZodOptional<z$1.ZodString>;
237860
- defaultDestination: z$1.ZodOptional<z$1.ZodString>;
237861
- isPageDraftOnboardingFinished: z$1.ZodOptional<z$1.ZodBoolean>;
237639
+ type: "IterationCreated";
237640
+ payload: {
237641
+ iterationId: string;
237642
+ featureId: string;
237643
+ iterationName: string;
237644
+ };
237645
+ }>, z$1.ZodObject<{
237646
+ type: z$1.ZodLiteral<"IterationBookmarked">;
237647
+ payload: z$1.ZodObject<{
237648
+ iterationId: z$1.ZodString;
237649
+ featureId: z$1.ZodString;
237650
+ iterationName: z$1.ZodString;
237651
+ }, "strip", z$1.ZodTypeAny, {
237652
+ iterationId: string;
237653
+ featureId: string;
237654
+ iterationName: string;
237655
+ }, {
237656
+ iterationId: string;
237657
+ featureId: string;
237658
+ iterationName: string;
237659
+ }>;
237862
237660
  }, "strip", z$1.ZodTypeAny, {
237863
- companyName?: string | undefined;
237864
- numberOfPeopleInOrg?: string | undefined;
237865
- numberOfPeopleInDesignTeam?: string | undefined;
237866
- department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
237867
- jobTitle?: string | undefined;
237868
- phase?: string | undefined;
237869
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
237870
- designSystemName?: string | undefined;
237871
- defaultDestination?: string | undefined;
237872
- isPageDraftOnboardingFinished?: boolean | undefined;
237661
+ type: "IterationBookmarked";
237662
+ payload: {
237663
+ iterationId: string;
237664
+ featureId: string;
237665
+ iterationName: string;
237666
+ };
237873
237667
  }, {
237874
- companyName?: string | undefined;
237875
- numberOfPeopleInOrg?: string | undefined;
237876
- numberOfPeopleInDesignTeam?: string | undefined;
237877
- department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
237878
- jobTitle?: string | undefined;
237879
- phase?: string | undefined;
237880
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
237881
- designSystemName?: string | undefined;
237882
- defaultDestination?: string | undefined;
237883
- isPageDraftOnboardingFinished?: boolean | undefined;
237884
- }>;
237885
- type DTOUserOnboarding = z$1.infer<typeof DTOUserOnboarding>;
237886
- declare const DTOAuthenticatedUserProfile: z$1.ZodObject<{
237887
- name: z$1.ZodString;
237888
- nickname: z$1.ZodOptional<z$1.ZodString>;
237889
- avatar: z$1.ZodOptional<z$1.ZodString>;
237890
- } & {
237891
- onboarding: z$1.ZodOptional<z$1.ZodObject<{
237892
- companyName: z$1.ZodOptional<z$1.ZodString>;
237893
- numberOfPeopleInOrg: z$1.ZodOptional<z$1.ZodString>;
237894
- numberOfPeopleInDesignTeam: z$1.ZodOptional<z$1.ZodString>;
237895
- department: z$1.ZodOptional<z$1.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
237896
- jobTitle: z$1.ZodOptional<z$1.ZodString>;
237897
- phase: z$1.ZodOptional<z$1.ZodString>;
237898
- jobLevel: z$1.ZodOptional<z$1.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
237899
- designSystemName: z$1.ZodOptional<z$1.ZodString>;
237900
- defaultDestination: z$1.ZodOptional<z$1.ZodString>;
237901
- isPageDraftOnboardingFinished: z$1.ZodOptional<z$1.ZodBoolean>;
237668
+ type: "IterationBookmarked";
237669
+ payload: {
237670
+ iterationId: string;
237671
+ featureId: string;
237672
+ iterationName: string;
237673
+ };
237674
+ }>, z$1.ZodObject<{
237675
+ type: z$1.ZodLiteral<"FeatureCreated">;
237676
+ payload: z$1.ZodObject<{
237677
+ featureId: z$1.ZodString;
237678
+ name: z$1.ZodString;
237679
+ description: z$1.ZodOptional<z$1.ZodString>;
237902
237680
  }, "strip", z$1.ZodTypeAny, {
237903
- companyName?: string | undefined;
237904
- numberOfPeopleInOrg?: string | undefined;
237905
- numberOfPeopleInDesignTeam?: string | undefined;
237906
- department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
237907
- jobTitle?: string | undefined;
237908
- phase?: string | undefined;
237909
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
237910
- designSystemName?: string | undefined;
237911
- defaultDestination?: string | undefined;
237912
- isPageDraftOnboardingFinished?: boolean | undefined;
237681
+ name: string;
237682
+ featureId: string;
237683
+ description?: string | undefined;
237913
237684
  }, {
237914
- companyName?: string | undefined;
237915
- numberOfPeopleInOrg?: string | undefined;
237916
- numberOfPeopleInDesignTeam?: string | undefined;
237917
- department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
237918
- jobTitle?: string | undefined;
237919
- phase?: string | undefined;
237920
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
237921
- designSystemName?: string | undefined;
237922
- defaultDestination?: string | undefined;
237923
- isPageDraftOnboardingFinished?: boolean | undefined;
237924
- }>>;
237925
- theme: z$1.ZodOptional<z$1.ZodObject<{
237926
- backgroundColor: z$1.ZodOptional<z$1.ZodString>;
237927
- accentColor: z$1.ZodOptional<z$1.ZodString>;
237928
- contrast: z$1.ZodOptional<z$1.ZodNumber>;
237929
- isSecondaryEnabled: z$1.ZodOptional<z$1.ZodBoolean>;
237930
- secondaryBackgroundColor: z$1.ZodOptional<z$1.ZodString>;
237931
- secondaryContrast: z$1.ZodOptional<z$1.ZodNumber>;
237932
- isEditorWhite: z$1.ZodOptional<z$1.ZodBoolean>;
237933
- } & {
237934
- preset: z$1.ZodOptional<z$1.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
237685
+ name: string;
237686
+ featureId: string;
237687
+ description?: string | undefined;
237688
+ }>;
237689
+ }, "strip", z$1.ZodTypeAny, {
237690
+ type: "FeatureCreated";
237691
+ payload: {
237692
+ name: string;
237693
+ featureId: string;
237694
+ description?: string | undefined;
237695
+ };
237696
+ }, {
237697
+ type: "FeatureCreated";
237698
+ payload: {
237699
+ name: string;
237700
+ featureId: string;
237701
+ description?: string | undefined;
237702
+ };
237703
+ }>, z$1.ZodObject<{
237704
+ type: z$1.ZodLiteral<"FeatureDeleted">;
237705
+ payload: z$1.ZodObject<{
237706
+ featureId: z$1.ZodString;
237707
+ name: z$1.ZodString;
237935
237708
  }, "strip", z$1.ZodTypeAny, {
237936
- backgroundColor?: string | undefined;
237937
- accentColor?: string | undefined;
237938
- contrast?: number | undefined;
237939
- isSecondaryEnabled?: boolean | undefined;
237940
- secondaryBackgroundColor?: string | undefined;
237941
- secondaryContrast?: number | undefined;
237942
- isEditorWhite?: boolean | undefined;
237943
- preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
237709
+ name: string;
237710
+ featureId: string;
237944
237711
  }, {
237945
- backgroundColor?: string | undefined;
237946
- accentColor?: string | undefined;
237947
- contrast?: number | undefined;
237948
- isSecondaryEnabled?: boolean | undefined;
237949
- secondaryBackgroundColor?: string | undefined;
237950
- secondaryContrast?: number | undefined;
237951
- isEditorWhite?: boolean | undefined;
237952
- preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
237953
- }>>;
237712
+ name: string;
237713
+ featureId: string;
237714
+ }>;
237954
237715
  }, "strip", z$1.ZodTypeAny, {
237955
- name: string;
237956
- nickname?: string | undefined;
237957
- avatar?: string | undefined;
237958
- onboarding?: {
237959
- companyName?: string | undefined;
237960
- numberOfPeopleInOrg?: string | undefined;
237961
- numberOfPeopleInDesignTeam?: string | undefined;
237962
- department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
237963
- jobTitle?: string | undefined;
237964
- phase?: string | undefined;
237965
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
237966
- designSystemName?: string | undefined;
237967
- defaultDestination?: string | undefined;
237968
- isPageDraftOnboardingFinished?: boolean | undefined;
237969
- } | undefined;
237970
- theme?: {
237971
- backgroundColor?: string | undefined;
237972
- accentColor?: string | undefined;
237973
- contrast?: number | undefined;
237974
- isSecondaryEnabled?: boolean | undefined;
237975
- secondaryBackgroundColor?: string | undefined;
237976
- secondaryContrast?: number | undefined;
237977
- isEditorWhite?: boolean | undefined;
237978
- preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
237979
- } | undefined;
237716
+ type: "FeatureDeleted";
237717
+ payload: {
237718
+ name: string;
237719
+ featureId: string;
237720
+ };
237980
237721
  }, {
237981
- name: string;
237982
- nickname?: string | undefined;
237983
- avatar?: string | undefined;
237984
- onboarding?: {
237985
- companyName?: string | undefined;
237986
- numberOfPeopleInOrg?: string | undefined;
237987
- numberOfPeopleInDesignTeam?: string | undefined;
237988
- department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
237989
- jobTitle?: string | undefined;
237990
- phase?: string | undefined;
237991
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
237992
- designSystemName?: string | undefined;
237993
- defaultDestination?: string | undefined;
237994
- isPageDraftOnboardingFinished?: boolean | undefined;
237995
- } | undefined;
237996
- theme?: {
237997
- backgroundColor?: string | undefined;
237998
- accentColor?: string | undefined;
237999
- contrast?: number | undefined;
238000
- isSecondaryEnabled?: boolean | undefined;
238001
- secondaryBackgroundColor?: string | undefined;
238002
- secondaryContrast?: number | undefined;
238003
- isEditorWhite?: boolean | undefined;
238004
- preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
238005
- } | undefined;
238006
- }>;
238007
- type DTOAuthenticatedUserProfile = z$1.infer<typeof DTOAuthenticatedUserProfile>;
238008
- declare const DTOAuthenticatedUser: z$1.ZodObject<{
238009
- id: z$1.ZodString;
238010
- email: z$1.ZodString;
238011
- } & {
238012
- profile: z$1.ZodObject<{
237722
+ type: "FeatureDeleted";
237723
+ payload: {
237724
+ name: string;
237725
+ featureId: string;
237726
+ };
237727
+ }>, z$1.ZodObject<{
237728
+ type: z$1.ZodLiteral<"DocumentCreated">;
237729
+ payload: z$1.ZodObject<{
237730
+ documentId: z$1.ZodString;
237731
+ title: z$1.ZodString;
237732
+ sectionId: z$1.ZodOptional<z$1.ZodString>;
237733
+ }, "strip", z$1.ZodTypeAny, {
237734
+ title: string;
237735
+ documentId: string;
237736
+ sectionId?: string | undefined;
237737
+ }, {
237738
+ title: string;
237739
+ documentId: string;
237740
+ sectionId?: string | undefined;
237741
+ }>;
237742
+ }, "strip", z$1.ZodTypeAny, {
237743
+ type: "DocumentCreated";
237744
+ payload: {
237745
+ title: string;
237746
+ documentId: string;
237747
+ sectionId?: string | undefined;
237748
+ };
237749
+ }, {
237750
+ type: "DocumentCreated";
237751
+ payload: {
237752
+ title: string;
237753
+ documentId: string;
237754
+ sectionId?: string | undefined;
237755
+ };
237756
+ }>, z$1.ZodObject<{
237757
+ type: z$1.ZodLiteral<"DocumentDeleted">;
237758
+ payload: z$1.ZodObject<{
237759
+ documentId: z$1.ZodString;
237760
+ title: z$1.ZodString;
237761
+ }, "strip", z$1.ZodTypeAny, {
237762
+ title: string;
237763
+ documentId: string;
237764
+ }, {
237765
+ title: string;
237766
+ documentId: string;
237767
+ }>;
237768
+ }, "strip", z$1.ZodTypeAny, {
237769
+ type: "DocumentDeleted";
237770
+ payload: {
237771
+ title: string;
237772
+ documentId: string;
237773
+ };
237774
+ }, {
237775
+ type: "DocumentDeleted";
237776
+ payload: {
237777
+ title: string;
237778
+ documentId: string;
237779
+ };
237780
+ }>, z$1.ZodObject<{
237781
+ type: z$1.ZodLiteral<"ProjectCreated">;
237782
+ payload: z$1.ZodObject<{
238013
237783
  name: z$1.ZodString;
238014
- nickname: z$1.ZodOptional<z$1.ZodString>;
238015
- avatar: z$1.ZodOptional<z$1.ZodString>;
238016
- } & {
238017
- onboarding: z$1.ZodOptional<z$1.ZodObject<{
238018
- companyName: z$1.ZodOptional<z$1.ZodString>;
238019
- numberOfPeopleInOrg: z$1.ZodOptional<z$1.ZodString>;
238020
- numberOfPeopleInDesignTeam: z$1.ZodOptional<z$1.ZodString>;
238021
- department: z$1.ZodOptional<z$1.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
238022
- jobTitle: z$1.ZodOptional<z$1.ZodString>;
238023
- phase: z$1.ZodOptional<z$1.ZodString>;
238024
- jobLevel: z$1.ZodOptional<z$1.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
238025
- designSystemName: z$1.ZodOptional<z$1.ZodString>;
238026
- defaultDestination: z$1.ZodOptional<z$1.ZodString>;
238027
- isPageDraftOnboardingFinished: z$1.ZodOptional<z$1.ZodBoolean>;
238028
- }, "strip", z$1.ZodTypeAny, {
238029
- companyName?: string | undefined;
238030
- numberOfPeopleInOrg?: string | undefined;
238031
- numberOfPeopleInDesignTeam?: string | undefined;
238032
- department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
238033
- jobTitle?: string | undefined;
238034
- phase?: string | undefined;
238035
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
238036
- designSystemName?: string | undefined;
238037
- defaultDestination?: string | undefined;
238038
- isPageDraftOnboardingFinished?: boolean | undefined;
238039
- }, {
238040
- companyName?: string | undefined;
238041
- numberOfPeopleInOrg?: string | undefined;
238042
- numberOfPeopleInDesignTeam?: string | undefined;
238043
- department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
238044
- jobTitle?: string | undefined;
238045
- phase?: string | undefined;
238046
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
238047
- designSystemName?: string | undefined;
238048
- defaultDestination?: string | undefined;
238049
- isPageDraftOnboardingFinished?: boolean | undefined;
238050
- }>>;
238051
- theme: z$1.ZodOptional<z$1.ZodObject<{
238052
- backgroundColor: z$1.ZodOptional<z$1.ZodString>;
238053
- accentColor: z$1.ZodOptional<z$1.ZodString>;
238054
- contrast: z$1.ZodOptional<z$1.ZodNumber>;
238055
- isSecondaryEnabled: z$1.ZodOptional<z$1.ZodBoolean>;
238056
- secondaryBackgroundColor: z$1.ZodOptional<z$1.ZodString>;
238057
- secondaryContrast: z$1.ZodOptional<z$1.ZodNumber>;
238058
- isEditorWhite: z$1.ZodOptional<z$1.ZodBoolean>;
238059
- } & {
238060
- preset: z$1.ZodOptional<z$1.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
238061
- }, "strip", z$1.ZodTypeAny, {
238062
- backgroundColor?: string | undefined;
238063
- accentColor?: string | undefined;
238064
- contrast?: number | undefined;
238065
- isSecondaryEnabled?: boolean | undefined;
238066
- secondaryBackgroundColor?: string | undefined;
238067
- secondaryContrast?: number | undefined;
238068
- isEditorWhite?: boolean | undefined;
238069
- preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
238070
- }, {
238071
- backgroundColor?: string | undefined;
238072
- accentColor?: string | undefined;
238073
- contrast?: number | undefined;
238074
- isSecondaryEnabled?: boolean | undefined;
238075
- secondaryBackgroundColor?: string | undefined;
238076
- secondaryContrast?: number | undefined;
238077
- isEditorWhite?: boolean | undefined;
238078
- preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
238079
- }>>;
237784
+ description: z$1.ZodOptional<z$1.ZodString>;
238080
237785
  }, "strip", z$1.ZodTypeAny, {
238081
237786
  name: string;
238082
- nickname?: string | undefined;
238083
- avatar?: string | undefined;
238084
- onboarding?: {
238085
- companyName?: string | undefined;
238086
- numberOfPeopleInOrg?: string | undefined;
238087
- numberOfPeopleInDesignTeam?: string | undefined;
238088
- department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
238089
- jobTitle?: string | undefined;
238090
- phase?: string | undefined;
238091
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
238092
- designSystemName?: string | undefined;
238093
- defaultDestination?: string | undefined;
238094
- isPageDraftOnboardingFinished?: boolean | undefined;
238095
- } | undefined;
238096
- theme?: {
238097
- backgroundColor?: string | undefined;
238098
- accentColor?: string | undefined;
238099
- contrast?: number | undefined;
238100
- isSecondaryEnabled?: boolean | undefined;
238101
- secondaryBackgroundColor?: string | undefined;
238102
- secondaryContrast?: number | undefined;
238103
- isEditorWhite?: boolean | undefined;
238104
- preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
238105
- } | undefined;
237787
+ description?: string | undefined;
238106
237788
  }, {
238107
237789
  name: string;
238108
- nickname?: string | undefined;
238109
- avatar?: string | undefined;
238110
- onboarding?: {
238111
- companyName?: string | undefined;
238112
- numberOfPeopleInOrg?: string | undefined;
238113
- numberOfPeopleInDesignTeam?: string | undefined;
238114
- department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
238115
- jobTitle?: string | undefined;
238116
- phase?: string | undefined;
238117
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
238118
- designSystemName?: string | undefined;
238119
- defaultDestination?: string | undefined;
238120
- isPageDraftOnboardingFinished?: boolean | undefined;
238121
- } | undefined;
238122
- theme?: {
238123
- backgroundColor?: string | undefined;
238124
- accentColor?: string | undefined;
238125
- contrast?: number | undefined;
238126
- isSecondaryEnabled?: boolean | undefined;
238127
- secondaryBackgroundColor?: string | undefined;
238128
- secondaryContrast?: number | undefined;
238129
- isEditorWhite?: boolean | undefined;
238130
- preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
238131
- } | undefined;
237790
+ description?: string | undefined;
237791
+ }>;
237792
+ }, "strip", z$1.ZodTypeAny, {
237793
+ type: "ProjectCreated";
237794
+ payload: {
237795
+ name: string;
237796
+ description?: string | undefined;
237797
+ };
237798
+ }, {
237799
+ type: "ProjectCreated";
237800
+ payload: {
237801
+ name: string;
237802
+ description?: string | undefined;
237803
+ };
237804
+ }>, z$1.ZodObject<{
237805
+ type: z$1.ZodLiteral<"ProjectArchived">;
237806
+ payload: z$1.ZodObject<{
237807
+ name: z$1.ZodString;
237808
+ }, "strip", z$1.ZodTypeAny, {
237809
+ name: string;
237810
+ }, {
237811
+ name: string;
237812
+ }>;
237813
+ }, "strip", z$1.ZodTypeAny, {
237814
+ type: "ProjectArchived";
237815
+ payload: {
237816
+ name: string;
237817
+ };
237818
+ }, {
237819
+ type: "ProjectArchived";
237820
+ payload: {
237821
+ name: string;
237822
+ };
237823
+ }>, z$1.ZodObject<{
237824
+ type: z$1.ZodLiteral<"IterationPromoted">;
237825
+ payload: z$1.ZodObject<{
237826
+ iterationId: z$1.ZodString;
237827
+ featureId: z$1.ZodString;
237828
+ iterationName: z$1.ZodString;
237829
+ }, "strip", z$1.ZodTypeAny, {
237830
+ iterationId: string;
237831
+ featureId: string;
237832
+ iterationName: string;
237833
+ }, {
237834
+ iterationId: string;
237835
+ featureId: string;
237836
+ iterationName: string;
237837
+ }>;
237838
+ }, "strip", z$1.ZodTypeAny, {
237839
+ type: "IterationPromoted";
237840
+ payload: {
237841
+ iterationId: string;
237842
+ featureId: string;
237843
+ iterationName: string;
237844
+ };
237845
+ }, {
237846
+ type: "IterationPromoted";
237847
+ payload: {
237848
+ iterationId: string;
237849
+ featureId: string;
237850
+ iterationName: string;
237851
+ };
237852
+ }>, z$1.ZodObject<{
237853
+ type: z$1.ZodLiteral<"ProjectContextCreated">;
237854
+ payload: z$1.ZodObject<{
237855
+ contextId: z$1.ZodNumber;
237856
+ name: z$1.ZodString;
237857
+ description: z$1.ZodOptional<z$1.ZodString>;
237858
+ }, "strip", z$1.ZodTypeAny, {
237859
+ name: string;
237860
+ contextId: number;
237861
+ description?: string | undefined;
237862
+ }, {
237863
+ name: string;
237864
+ contextId: number;
237865
+ description?: string | undefined;
237866
+ }>;
237867
+ }, "strip", z$1.ZodTypeAny, {
237868
+ type: "ProjectContextCreated";
237869
+ payload: {
237870
+ name: string;
237871
+ contextId: number;
237872
+ description?: string | undefined;
237873
+ };
237874
+ }, {
237875
+ type: "ProjectContextCreated";
237876
+ payload: {
237877
+ name: string;
237878
+ contextId: number;
237879
+ description?: string | undefined;
237880
+ };
237881
+ }>, z$1.ZodObject<{
237882
+ type: z$1.ZodLiteral<"ProjectContextArchived">;
237883
+ payload: z$1.ZodObject<{
237884
+ contextId: z$1.ZodNumber;
237885
+ }, "strip", z$1.ZodTypeAny, {
237886
+ contextId: number;
237887
+ }, {
237888
+ contextId: number;
238132
237889
  }>;
237890
+ }, "strip", z$1.ZodTypeAny, {
237891
+ type: "ProjectContextArchived";
237892
+ payload: {
237893
+ contextId: number;
237894
+ };
237895
+ }, {
237896
+ type: "ProjectContextArchived";
237897
+ payload: {
237898
+ contextId: number;
237899
+ };
237900
+ }>]>, z$1.ZodObject<{
237901
+ id: z$1.ZodString;
237902
+ projectId: z$1.ZodString;
237903
+ userId: z$1.ZodString;
238133
237904
  createdAt: z$1.ZodDate;
238134
- loggedOutAt: z$1.ZodOptional<z$1.ZodDate>;
238135
- source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO"]>>;
237905
+ updatedAt: z$1.ZodDate;
238136
237906
  }, "strip", z$1.ZodTypeAny, {
238137
237907
  id: string;
238138
237908
  createdAt: Date;
238139
- email: string;
238140
- profile: {
238141
- name: string;
238142
- nickname?: string | undefined;
238143
- avatar?: string | undefined;
238144
- onboarding?: {
238145
- companyName?: string | undefined;
238146
- numberOfPeopleInOrg?: string | undefined;
238147
- numberOfPeopleInDesignTeam?: string | undefined;
238148
- department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
238149
- jobTitle?: string | undefined;
238150
- phase?: string | undefined;
238151
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
238152
- designSystemName?: string | undefined;
238153
- defaultDestination?: string | undefined;
238154
- isPageDraftOnboardingFinished?: boolean | undefined;
238155
- } | undefined;
238156
- theme?: {
238157
- backgroundColor?: string | undefined;
238158
- accentColor?: string | undefined;
238159
- contrast?: number | undefined;
238160
- isSecondaryEnabled?: boolean | undefined;
238161
- secondaryBackgroundColor?: string | undefined;
238162
- secondaryContrast?: number | undefined;
238163
- isEditorWhite?: boolean | undefined;
238164
- preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
238165
- } | undefined;
238166
- };
238167
- loggedOutAt?: Date | undefined;
238168
- source?: "SignUp" | "Invite" | "SSO" | undefined;
237909
+ updatedAt: Date;
237910
+ userId: string;
237911
+ projectId: string;
238169
237912
  }, {
238170
237913
  id: string;
238171
237914
  createdAt: Date;
238172
- email: string;
238173
- profile: {
238174
- name: string;
238175
- nickname?: string | undefined;
238176
- avatar?: string | undefined;
238177
- onboarding?: {
238178
- companyName?: string | undefined;
238179
- numberOfPeopleInOrg?: string | undefined;
238180
- numberOfPeopleInDesignTeam?: string | undefined;
238181
- department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
238182
- jobTitle?: string | undefined;
238183
- phase?: string | undefined;
238184
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
238185
- designSystemName?: string | undefined;
238186
- defaultDestination?: string | undefined;
238187
- isPageDraftOnboardingFinished?: boolean | undefined;
238188
- } | undefined;
238189
- theme?: {
238190
- backgroundColor?: string | undefined;
238191
- accentColor?: string | undefined;
238192
- contrast?: number | undefined;
238193
- isSecondaryEnabled?: boolean | undefined;
238194
- secondaryBackgroundColor?: string | undefined;
238195
- secondaryContrast?: number | undefined;
238196
- isEditorWhite?: boolean | undefined;
238197
- preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
238198
- } | undefined;
238199
- };
238200
- loggedOutAt?: Date | undefined;
238201
- source?: "SignUp" | "Invite" | "SSO" | undefined;
237915
+ updatedAt: Date;
237916
+ userId: string;
237917
+ projectId: string;
237918
+ }>>;
237919
+ type DTOTrailEvent = z$1.infer<typeof DTOTrailEvent>;
237920
+ declare const DTOTrailEventListInput: z$1.ZodObject<{
237921
+ projectId: z$1.ZodString;
237922
+ }, "strip", z$1.ZodTypeAny, {
237923
+ projectId: string;
237924
+ }, {
237925
+ projectId: string;
238202
237926
  }>;
238203
- type DTOAuthenticatedUser = z$1.infer<typeof DTOAuthenticatedUser>;
238204
- declare const DTOAuthenticatedUserResponse: z$1.ZodObject<{
238205
- user: z$1.ZodObject<{
238206
- id: z$1.ZodString;
238207
- email: z$1.ZodString;
238208
- } & {
238209
- profile: z$1.ZodObject<{
237927
+ type DTOTrailEventListInput = z$1.infer<typeof DTOTrailEventListInput>;
237928
+ declare const DTOTrailEventListResponse: z$1.ZodObject<{
237929
+ events: z$1.ZodArray<z$1.ZodIntersection<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
237930
+ type: z$1.ZodLiteral<"IterationCreated">;
237931
+ payload: z$1.ZodObject<{
237932
+ iterationName: z$1.ZodString;
237933
+ iterationId: z$1.ZodString;
237934
+ featureId: z$1.ZodString;
237935
+ }, "strip", z$1.ZodTypeAny, {
237936
+ iterationId: string;
237937
+ featureId: string;
237938
+ iterationName: string;
237939
+ }, {
237940
+ iterationId: string;
237941
+ featureId: string;
237942
+ iterationName: string;
237943
+ }>;
237944
+ }, "strip", z$1.ZodTypeAny, {
237945
+ type: "IterationCreated";
237946
+ payload: {
237947
+ iterationId: string;
237948
+ featureId: string;
237949
+ iterationName: string;
237950
+ };
237951
+ }, {
237952
+ type: "IterationCreated";
237953
+ payload: {
237954
+ iterationId: string;
237955
+ featureId: string;
237956
+ iterationName: string;
237957
+ };
237958
+ }>, z$1.ZodObject<{
237959
+ type: z$1.ZodLiteral<"IterationBookmarked">;
237960
+ payload: z$1.ZodObject<{
237961
+ iterationId: z$1.ZodString;
237962
+ featureId: z$1.ZodString;
237963
+ iterationName: z$1.ZodString;
237964
+ }, "strip", z$1.ZodTypeAny, {
237965
+ iterationId: string;
237966
+ featureId: string;
237967
+ iterationName: string;
237968
+ }, {
237969
+ iterationId: string;
237970
+ featureId: string;
237971
+ iterationName: string;
237972
+ }>;
237973
+ }, "strip", z$1.ZodTypeAny, {
237974
+ type: "IterationBookmarked";
237975
+ payload: {
237976
+ iterationId: string;
237977
+ featureId: string;
237978
+ iterationName: string;
237979
+ };
237980
+ }, {
237981
+ type: "IterationBookmarked";
237982
+ payload: {
237983
+ iterationId: string;
237984
+ featureId: string;
237985
+ iterationName: string;
237986
+ };
237987
+ }>, z$1.ZodObject<{
237988
+ type: z$1.ZodLiteral<"FeatureCreated">;
237989
+ payload: z$1.ZodObject<{
237990
+ featureId: z$1.ZodString;
238210
237991
  name: z$1.ZodString;
238211
- nickname: z$1.ZodOptional<z$1.ZodString>;
238212
- avatar: z$1.ZodOptional<z$1.ZodString>;
238213
- } & {
238214
- onboarding: z$1.ZodOptional<z$1.ZodObject<{
238215
- companyName: z$1.ZodOptional<z$1.ZodString>;
238216
- numberOfPeopleInOrg: z$1.ZodOptional<z$1.ZodString>;
238217
- numberOfPeopleInDesignTeam: z$1.ZodOptional<z$1.ZodString>;
238218
- department: z$1.ZodOptional<z$1.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
238219
- jobTitle: z$1.ZodOptional<z$1.ZodString>;
238220
- phase: z$1.ZodOptional<z$1.ZodString>;
238221
- jobLevel: z$1.ZodOptional<z$1.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
238222
- designSystemName: z$1.ZodOptional<z$1.ZodString>;
238223
- defaultDestination: z$1.ZodOptional<z$1.ZodString>;
238224
- isPageDraftOnboardingFinished: z$1.ZodOptional<z$1.ZodBoolean>;
238225
- }, "strip", z$1.ZodTypeAny, {
238226
- companyName?: string | undefined;
238227
- numberOfPeopleInOrg?: string | undefined;
238228
- numberOfPeopleInDesignTeam?: string | undefined;
238229
- department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
238230
- jobTitle?: string | undefined;
238231
- phase?: string | undefined;
238232
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
238233
- designSystemName?: string | undefined;
238234
- defaultDestination?: string | undefined;
238235
- isPageDraftOnboardingFinished?: boolean | undefined;
238236
- }, {
238237
- companyName?: string | undefined;
238238
- numberOfPeopleInOrg?: string | undefined;
238239
- numberOfPeopleInDesignTeam?: string | undefined;
238240
- department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
238241
- jobTitle?: string | undefined;
238242
- phase?: string | undefined;
238243
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
238244
- designSystemName?: string | undefined;
238245
- defaultDestination?: string | undefined;
238246
- isPageDraftOnboardingFinished?: boolean | undefined;
238247
- }>>;
238248
- theme: z$1.ZodOptional<z$1.ZodObject<{
238249
- backgroundColor: z$1.ZodOptional<z$1.ZodString>;
238250
- accentColor: z$1.ZodOptional<z$1.ZodString>;
238251
- contrast: z$1.ZodOptional<z$1.ZodNumber>;
238252
- isSecondaryEnabled: z$1.ZodOptional<z$1.ZodBoolean>;
238253
- secondaryBackgroundColor: z$1.ZodOptional<z$1.ZodString>;
238254
- secondaryContrast: z$1.ZodOptional<z$1.ZodNumber>;
238255
- isEditorWhite: z$1.ZodOptional<z$1.ZodBoolean>;
238256
- } & {
238257
- preset: z$1.ZodOptional<z$1.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
238258
- }, "strip", z$1.ZodTypeAny, {
238259
- backgroundColor?: string | undefined;
238260
- accentColor?: string | undefined;
238261
- contrast?: number | undefined;
238262
- isSecondaryEnabled?: boolean | undefined;
238263
- secondaryBackgroundColor?: string | undefined;
238264
- secondaryContrast?: number | undefined;
238265
- isEditorWhite?: boolean | undefined;
238266
- preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
238267
- }, {
238268
- backgroundColor?: string | undefined;
238269
- accentColor?: string | undefined;
238270
- contrast?: number | undefined;
238271
- isSecondaryEnabled?: boolean | undefined;
238272
- secondaryBackgroundColor?: string | undefined;
238273
- secondaryContrast?: number | undefined;
238274
- isEditorWhite?: boolean | undefined;
238275
- preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
238276
- }>>;
237992
+ description: z$1.ZodOptional<z$1.ZodString>;
238277
237993
  }, "strip", z$1.ZodTypeAny, {
238278
237994
  name: string;
238279
- nickname?: string | undefined;
238280
- avatar?: string | undefined;
238281
- onboarding?: {
238282
- companyName?: string | undefined;
238283
- numberOfPeopleInOrg?: string | undefined;
238284
- numberOfPeopleInDesignTeam?: string | undefined;
238285
- department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
238286
- jobTitle?: string | undefined;
238287
- phase?: string | undefined;
238288
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
238289
- designSystemName?: string | undefined;
238290
- defaultDestination?: string | undefined;
238291
- isPageDraftOnboardingFinished?: boolean | undefined;
238292
- } | undefined;
238293
- theme?: {
238294
- backgroundColor?: string | undefined;
238295
- accentColor?: string | undefined;
238296
- contrast?: number | undefined;
238297
- isSecondaryEnabled?: boolean | undefined;
238298
- secondaryBackgroundColor?: string | undefined;
238299
- secondaryContrast?: number | undefined;
238300
- isEditorWhite?: boolean | undefined;
238301
- preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
238302
- } | undefined;
237995
+ featureId: string;
237996
+ description?: string | undefined;
238303
237997
  }, {
238304
237998
  name: string;
238305
- nickname?: string | undefined;
238306
- avatar?: string | undefined;
238307
- onboarding?: {
238308
- companyName?: string | undefined;
238309
- numberOfPeopleInOrg?: string | undefined;
238310
- numberOfPeopleInDesignTeam?: string | undefined;
238311
- department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
238312
- jobTitle?: string | undefined;
238313
- phase?: string | undefined;
238314
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
238315
- designSystemName?: string | undefined;
238316
- defaultDestination?: string | undefined;
238317
- isPageDraftOnboardingFinished?: boolean | undefined;
238318
- } | undefined;
238319
- theme?: {
238320
- backgroundColor?: string | undefined;
238321
- accentColor?: string | undefined;
238322
- contrast?: number | undefined;
238323
- isSecondaryEnabled?: boolean | undefined;
238324
- secondaryBackgroundColor?: string | undefined;
238325
- secondaryContrast?: number | undefined;
238326
- isEditorWhite?: boolean | undefined;
238327
- preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
238328
- } | undefined;
237999
+ featureId: string;
238000
+ description?: string | undefined;
238329
238001
  }>;
238330
- createdAt: z$1.ZodDate;
238331
- loggedOutAt: z$1.ZodOptional<z$1.ZodDate>;
238332
- source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO"]>>;
238333
238002
  }, "strip", z$1.ZodTypeAny, {
238334
- id: string;
238335
- createdAt: Date;
238336
- email: string;
238337
- profile: {
238003
+ type: "FeatureCreated";
238004
+ payload: {
238338
238005
  name: string;
238339
- nickname?: string | undefined;
238340
- avatar?: string | undefined;
238341
- onboarding?: {
238342
- companyName?: string | undefined;
238343
- numberOfPeopleInOrg?: string | undefined;
238344
- numberOfPeopleInDesignTeam?: string | undefined;
238345
- department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
238346
- jobTitle?: string | undefined;
238347
- phase?: string | undefined;
238348
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
238349
- designSystemName?: string | undefined;
238350
- defaultDestination?: string | undefined;
238351
- isPageDraftOnboardingFinished?: boolean | undefined;
238352
- } | undefined;
238353
- theme?: {
238354
- backgroundColor?: string | undefined;
238006
+ featureId: string;
238007
+ description?: string | undefined;
238008
+ };
238009
+ }, {
238010
+ type: "FeatureCreated";
238011
+ payload: {
238012
+ name: string;
238013
+ featureId: string;
238014
+ description?: string | undefined;
238015
+ };
238016
+ }>, z$1.ZodObject<{
238017
+ type: z$1.ZodLiteral<"FeatureDeleted">;
238018
+ payload: z$1.ZodObject<{
238019
+ featureId: z$1.ZodString;
238020
+ name: z$1.ZodString;
238021
+ }, "strip", z$1.ZodTypeAny, {
238022
+ name: string;
238023
+ featureId: string;
238024
+ }, {
238025
+ name: string;
238026
+ featureId: string;
238027
+ }>;
238028
+ }, "strip", z$1.ZodTypeAny, {
238029
+ type: "FeatureDeleted";
238030
+ payload: {
238031
+ name: string;
238032
+ featureId: string;
238033
+ };
238034
+ }, {
238035
+ type: "FeatureDeleted";
238036
+ payload: {
238037
+ name: string;
238038
+ featureId: string;
238039
+ };
238040
+ }>, z$1.ZodObject<{
238041
+ type: z$1.ZodLiteral<"DocumentCreated">;
238042
+ payload: z$1.ZodObject<{
238043
+ documentId: z$1.ZodString;
238044
+ title: z$1.ZodString;
238045
+ sectionId: z$1.ZodOptional<z$1.ZodString>;
238046
+ }, "strip", z$1.ZodTypeAny, {
238047
+ title: string;
238048
+ documentId: string;
238049
+ sectionId?: string | undefined;
238050
+ }, {
238051
+ title: string;
238052
+ documentId: string;
238053
+ sectionId?: string | undefined;
238054
+ }>;
238055
+ }, "strip", z$1.ZodTypeAny, {
238056
+ type: "DocumentCreated";
238057
+ payload: {
238058
+ title: string;
238059
+ documentId: string;
238060
+ sectionId?: string | undefined;
238061
+ };
238062
+ }, {
238063
+ type: "DocumentCreated";
238064
+ payload: {
238065
+ title: string;
238066
+ documentId: string;
238067
+ sectionId?: string | undefined;
238068
+ };
238069
+ }>, z$1.ZodObject<{
238070
+ type: z$1.ZodLiteral<"DocumentDeleted">;
238071
+ payload: z$1.ZodObject<{
238072
+ documentId: z$1.ZodString;
238073
+ title: z$1.ZodString;
238074
+ }, "strip", z$1.ZodTypeAny, {
238075
+ title: string;
238076
+ documentId: string;
238077
+ }, {
238078
+ title: string;
238079
+ documentId: string;
238080
+ }>;
238081
+ }, "strip", z$1.ZodTypeAny, {
238082
+ type: "DocumentDeleted";
238083
+ payload: {
238084
+ title: string;
238085
+ documentId: string;
238086
+ };
238087
+ }, {
238088
+ type: "DocumentDeleted";
238089
+ payload: {
238090
+ title: string;
238091
+ documentId: string;
238092
+ };
238093
+ }>, z$1.ZodObject<{
238094
+ type: z$1.ZodLiteral<"ProjectCreated">;
238095
+ payload: z$1.ZodObject<{
238096
+ name: z$1.ZodString;
238097
+ description: z$1.ZodOptional<z$1.ZodString>;
238098
+ }, "strip", z$1.ZodTypeAny, {
238099
+ name: string;
238100
+ description?: string | undefined;
238101
+ }, {
238102
+ name: string;
238103
+ description?: string | undefined;
238104
+ }>;
238105
+ }, "strip", z$1.ZodTypeAny, {
238106
+ type: "ProjectCreated";
238107
+ payload: {
238108
+ name: string;
238109
+ description?: string | undefined;
238110
+ };
238111
+ }, {
238112
+ type: "ProjectCreated";
238113
+ payload: {
238114
+ name: string;
238115
+ description?: string | undefined;
238116
+ };
238117
+ }>, z$1.ZodObject<{
238118
+ type: z$1.ZodLiteral<"ProjectArchived">;
238119
+ payload: z$1.ZodObject<{
238120
+ name: z$1.ZodString;
238121
+ }, "strip", z$1.ZodTypeAny, {
238122
+ name: string;
238123
+ }, {
238124
+ name: string;
238125
+ }>;
238126
+ }, "strip", z$1.ZodTypeAny, {
238127
+ type: "ProjectArchived";
238128
+ payload: {
238129
+ name: string;
238130
+ };
238131
+ }, {
238132
+ type: "ProjectArchived";
238133
+ payload: {
238134
+ name: string;
238135
+ };
238136
+ }>, z$1.ZodObject<{
238137
+ type: z$1.ZodLiteral<"IterationPromoted">;
238138
+ payload: z$1.ZodObject<{
238139
+ iterationId: z$1.ZodString;
238140
+ featureId: z$1.ZodString;
238141
+ iterationName: z$1.ZodString;
238142
+ }, "strip", z$1.ZodTypeAny, {
238143
+ iterationId: string;
238144
+ featureId: string;
238145
+ iterationName: string;
238146
+ }, {
238147
+ iterationId: string;
238148
+ featureId: string;
238149
+ iterationName: string;
238150
+ }>;
238151
+ }, "strip", z$1.ZodTypeAny, {
238152
+ type: "IterationPromoted";
238153
+ payload: {
238154
+ iterationId: string;
238155
+ featureId: string;
238156
+ iterationName: string;
238157
+ };
238158
+ }, {
238159
+ type: "IterationPromoted";
238160
+ payload: {
238161
+ iterationId: string;
238162
+ featureId: string;
238163
+ iterationName: string;
238164
+ };
238165
+ }>, z$1.ZodObject<{
238166
+ type: z$1.ZodLiteral<"ProjectContextCreated">;
238167
+ payload: z$1.ZodObject<{
238168
+ contextId: z$1.ZodNumber;
238169
+ name: z$1.ZodString;
238170
+ description: z$1.ZodOptional<z$1.ZodString>;
238171
+ }, "strip", z$1.ZodTypeAny, {
238172
+ name: string;
238173
+ contextId: number;
238174
+ description?: string | undefined;
238175
+ }, {
238176
+ name: string;
238177
+ contextId: number;
238178
+ description?: string | undefined;
238179
+ }>;
238180
+ }, "strip", z$1.ZodTypeAny, {
238181
+ type: "ProjectContextCreated";
238182
+ payload: {
238183
+ name: string;
238184
+ contextId: number;
238185
+ description?: string | undefined;
238186
+ };
238187
+ }, {
238188
+ type: "ProjectContextCreated";
238189
+ payload: {
238190
+ name: string;
238191
+ contextId: number;
238192
+ description?: string | undefined;
238193
+ };
238194
+ }>, z$1.ZodObject<{
238195
+ type: z$1.ZodLiteral<"ProjectContextArchived">;
238196
+ payload: z$1.ZodObject<{
238197
+ contextId: z$1.ZodNumber;
238198
+ }, "strip", z$1.ZodTypeAny, {
238199
+ contextId: number;
238200
+ }, {
238201
+ contextId: number;
238202
+ }>;
238203
+ }, "strip", z$1.ZodTypeAny, {
238204
+ type: "ProjectContextArchived";
238205
+ payload: {
238206
+ contextId: number;
238207
+ };
238208
+ }, {
238209
+ type: "ProjectContextArchived";
238210
+ payload: {
238211
+ contextId: number;
238212
+ };
238213
+ }>]>, z$1.ZodObject<{
238214
+ id: z$1.ZodString;
238215
+ projectId: z$1.ZodString;
238216
+ userId: z$1.ZodString;
238217
+ createdAt: z$1.ZodDate;
238218
+ updatedAt: z$1.ZodDate;
238219
+ }, "strip", z$1.ZodTypeAny, {
238220
+ id: string;
238221
+ createdAt: Date;
238222
+ updatedAt: Date;
238223
+ userId: string;
238224
+ projectId: string;
238225
+ }, {
238226
+ id: string;
238227
+ createdAt: Date;
238228
+ updatedAt: Date;
238229
+ userId: string;
238230
+ projectId: string;
238231
+ }>>, "many">;
238232
+ }, "strip", z$1.ZodTypeAny, {
238233
+ events: (({
238234
+ type: "IterationCreated";
238235
+ payload: {
238236
+ iterationId: string;
238237
+ featureId: string;
238238
+ iterationName: string;
238239
+ };
238240
+ } | {
238241
+ type: "IterationBookmarked";
238242
+ payload: {
238243
+ iterationId: string;
238244
+ featureId: string;
238245
+ iterationName: string;
238246
+ };
238247
+ } | {
238248
+ type: "FeatureCreated";
238249
+ payload: {
238250
+ name: string;
238251
+ featureId: string;
238252
+ description?: string | undefined;
238253
+ };
238254
+ } | {
238255
+ type: "FeatureDeleted";
238256
+ payload: {
238257
+ name: string;
238258
+ featureId: string;
238259
+ };
238260
+ } | {
238261
+ type: "DocumentCreated";
238262
+ payload: {
238263
+ title: string;
238264
+ documentId: string;
238265
+ sectionId?: string | undefined;
238266
+ };
238267
+ } | {
238268
+ type: "DocumentDeleted";
238269
+ payload: {
238270
+ title: string;
238271
+ documentId: string;
238272
+ };
238273
+ } | {
238274
+ type: "ProjectCreated";
238275
+ payload: {
238276
+ name: string;
238277
+ description?: string | undefined;
238278
+ };
238279
+ } | {
238280
+ type: "ProjectArchived";
238281
+ payload: {
238282
+ name: string;
238283
+ };
238284
+ } | {
238285
+ type: "IterationPromoted";
238286
+ payload: {
238287
+ iterationId: string;
238288
+ featureId: string;
238289
+ iterationName: string;
238290
+ };
238291
+ } | {
238292
+ type: "ProjectContextCreated";
238293
+ payload: {
238294
+ name: string;
238295
+ contextId: number;
238296
+ description?: string | undefined;
238297
+ };
238298
+ } | {
238299
+ type: "ProjectContextArchived";
238300
+ payload: {
238301
+ contextId: number;
238302
+ };
238303
+ }) & {
238304
+ id: string;
238305
+ createdAt: Date;
238306
+ updatedAt: Date;
238307
+ userId: string;
238308
+ projectId: string;
238309
+ })[];
238310
+ }, {
238311
+ events: (({
238312
+ type: "IterationCreated";
238313
+ payload: {
238314
+ iterationId: string;
238315
+ featureId: string;
238316
+ iterationName: string;
238317
+ };
238318
+ } | {
238319
+ type: "IterationBookmarked";
238320
+ payload: {
238321
+ iterationId: string;
238322
+ featureId: string;
238323
+ iterationName: string;
238324
+ };
238325
+ } | {
238326
+ type: "FeatureCreated";
238327
+ payload: {
238328
+ name: string;
238329
+ featureId: string;
238330
+ description?: string | undefined;
238331
+ };
238332
+ } | {
238333
+ type: "FeatureDeleted";
238334
+ payload: {
238335
+ name: string;
238336
+ featureId: string;
238337
+ };
238338
+ } | {
238339
+ type: "DocumentCreated";
238340
+ payload: {
238341
+ title: string;
238342
+ documentId: string;
238343
+ sectionId?: string | undefined;
238344
+ };
238345
+ } | {
238346
+ type: "DocumentDeleted";
238347
+ payload: {
238348
+ title: string;
238349
+ documentId: string;
238350
+ };
238351
+ } | {
238352
+ type: "ProjectCreated";
238353
+ payload: {
238354
+ name: string;
238355
+ description?: string | undefined;
238356
+ };
238357
+ } | {
238358
+ type: "ProjectArchived";
238359
+ payload: {
238360
+ name: string;
238361
+ };
238362
+ } | {
238363
+ type: "IterationPromoted";
238364
+ payload: {
238365
+ iterationId: string;
238366
+ featureId: string;
238367
+ iterationName: string;
238368
+ };
238369
+ } | {
238370
+ type: "ProjectContextCreated";
238371
+ payload: {
238372
+ name: string;
238373
+ contextId: number;
238374
+ description?: string | undefined;
238375
+ };
238376
+ } | {
238377
+ type: "ProjectContextArchived";
238378
+ payload: {
238379
+ contextId: number;
238380
+ };
238381
+ }) & {
238382
+ id: string;
238383
+ createdAt: Date;
238384
+ updatedAt: Date;
238385
+ userId: string;
238386
+ projectId: string;
238387
+ })[];
238388
+ }>;
238389
+ type DTOTrailEventListResponse = z$1.infer<typeof DTOTrailEventListResponse>;
238390
+ declare const DTOTrailEventType: z$1.ZodEnum<["IterationCreated", "IterationBookmarked", "FeatureCreated", "FeatureDeleted", "DocumentCreated", "DocumentDeleted", "ProjectCreated", "ProjectArchived", "IterationPromoted", "ProjectContextCreated", "ProjectContextArchived"]>;
238391
+ type DTOTrailEventType = z$1.infer<typeof DTOTrailEventType>;
238392
+ declare const DTOTrailEventCreate: z$1.ZodIntersection<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
238393
+ type: z$1.ZodLiteral<"IterationCreated">;
238394
+ payload: z$1.ZodObject<{
238395
+ iterationName: z$1.ZodString;
238396
+ iterationId: z$1.ZodString;
238397
+ featureId: z$1.ZodString;
238398
+ }, "strip", z$1.ZodTypeAny, {
238399
+ iterationId: string;
238400
+ featureId: string;
238401
+ iterationName: string;
238402
+ }, {
238403
+ iterationId: string;
238404
+ featureId: string;
238405
+ iterationName: string;
238406
+ }>;
238407
+ }, "strip", z$1.ZodTypeAny, {
238408
+ type: "IterationCreated";
238409
+ payload: {
238410
+ iterationId: string;
238411
+ featureId: string;
238412
+ iterationName: string;
238413
+ };
238414
+ }, {
238415
+ type: "IterationCreated";
238416
+ payload: {
238417
+ iterationId: string;
238418
+ featureId: string;
238419
+ iterationName: string;
238420
+ };
238421
+ }>, z$1.ZodObject<{
238422
+ type: z$1.ZodLiteral<"IterationBookmarked">;
238423
+ payload: z$1.ZodObject<{
238424
+ iterationId: z$1.ZodString;
238425
+ featureId: z$1.ZodString;
238426
+ iterationName: z$1.ZodString;
238427
+ }, "strip", z$1.ZodTypeAny, {
238428
+ iterationId: string;
238429
+ featureId: string;
238430
+ iterationName: string;
238431
+ }, {
238432
+ iterationId: string;
238433
+ featureId: string;
238434
+ iterationName: string;
238435
+ }>;
238436
+ }, "strip", z$1.ZodTypeAny, {
238437
+ type: "IterationBookmarked";
238438
+ payload: {
238439
+ iterationId: string;
238440
+ featureId: string;
238441
+ iterationName: string;
238442
+ };
238443
+ }, {
238444
+ type: "IterationBookmarked";
238445
+ payload: {
238446
+ iterationId: string;
238447
+ featureId: string;
238448
+ iterationName: string;
238449
+ };
238450
+ }>, z$1.ZodObject<{
238451
+ type: z$1.ZodLiteral<"FeatureCreated">;
238452
+ payload: z$1.ZodObject<{
238453
+ featureId: z$1.ZodString;
238454
+ name: z$1.ZodString;
238455
+ description: z$1.ZodOptional<z$1.ZodString>;
238456
+ }, "strip", z$1.ZodTypeAny, {
238457
+ name: string;
238458
+ featureId: string;
238459
+ description?: string | undefined;
238460
+ }, {
238461
+ name: string;
238462
+ featureId: string;
238463
+ description?: string | undefined;
238464
+ }>;
238465
+ }, "strip", z$1.ZodTypeAny, {
238466
+ type: "FeatureCreated";
238467
+ payload: {
238468
+ name: string;
238469
+ featureId: string;
238470
+ description?: string | undefined;
238471
+ };
238472
+ }, {
238473
+ type: "FeatureCreated";
238474
+ payload: {
238475
+ name: string;
238476
+ featureId: string;
238477
+ description?: string | undefined;
238478
+ };
238479
+ }>, z$1.ZodObject<{
238480
+ type: z$1.ZodLiteral<"FeatureDeleted">;
238481
+ payload: z$1.ZodObject<{
238482
+ featureId: z$1.ZodString;
238483
+ name: z$1.ZodString;
238484
+ }, "strip", z$1.ZodTypeAny, {
238485
+ name: string;
238486
+ featureId: string;
238487
+ }, {
238488
+ name: string;
238489
+ featureId: string;
238490
+ }>;
238491
+ }, "strip", z$1.ZodTypeAny, {
238492
+ type: "FeatureDeleted";
238493
+ payload: {
238494
+ name: string;
238495
+ featureId: string;
238496
+ };
238497
+ }, {
238498
+ type: "FeatureDeleted";
238499
+ payload: {
238500
+ name: string;
238501
+ featureId: string;
238502
+ };
238503
+ }>, z$1.ZodObject<{
238504
+ type: z$1.ZodLiteral<"DocumentCreated">;
238505
+ payload: z$1.ZodObject<{
238506
+ documentId: z$1.ZodString;
238507
+ title: z$1.ZodString;
238508
+ sectionId: z$1.ZodOptional<z$1.ZodString>;
238509
+ }, "strip", z$1.ZodTypeAny, {
238510
+ title: string;
238511
+ documentId: string;
238512
+ sectionId?: string | undefined;
238513
+ }, {
238514
+ title: string;
238515
+ documentId: string;
238516
+ sectionId?: string | undefined;
238517
+ }>;
238518
+ }, "strip", z$1.ZodTypeAny, {
238519
+ type: "DocumentCreated";
238520
+ payload: {
238521
+ title: string;
238522
+ documentId: string;
238523
+ sectionId?: string | undefined;
238524
+ };
238525
+ }, {
238526
+ type: "DocumentCreated";
238527
+ payload: {
238528
+ title: string;
238529
+ documentId: string;
238530
+ sectionId?: string | undefined;
238531
+ };
238532
+ }>, z$1.ZodObject<{
238533
+ type: z$1.ZodLiteral<"DocumentDeleted">;
238534
+ payload: z$1.ZodObject<{
238535
+ documentId: z$1.ZodString;
238536
+ title: z$1.ZodString;
238537
+ }, "strip", z$1.ZodTypeAny, {
238538
+ title: string;
238539
+ documentId: string;
238540
+ }, {
238541
+ title: string;
238542
+ documentId: string;
238543
+ }>;
238544
+ }, "strip", z$1.ZodTypeAny, {
238545
+ type: "DocumentDeleted";
238546
+ payload: {
238547
+ title: string;
238548
+ documentId: string;
238549
+ };
238550
+ }, {
238551
+ type: "DocumentDeleted";
238552
+ payload: {
238553
+ title: string;
238554
+ documentId: string;
238555
+ };
238556
+ }>, z$1.ZodObject<{
238557
+ type: z$1.ZodLiteral<"ProjectCreated">;
238558
+ payload: z$1.ZodObject<{
238559
+ name: z$1.ZodString;
238560
+ description: z$1.ZodOptional<z$1.ZodString>;
238561
+ }, "strip", z$1.ZodTypeAny, {
238562
+ name: string;
238563
+ description?: string | undefined;
238564
+ }, {
238565
+ name: string;
238566
+ description?: string | undefined;
238567
+ }>;
238568
+ }, "strip", z$1.ZodTypeAny, {
238569
+ type: "ProjectCreated";
238570
+ payload: {
238571
+ name: string;
238572
+ description?: string | undefined;
238573
+ };
238574
+ }, {
238575
+ type: "ProjectCreated";
238576
+ payload: {
238577
+ name: string;
238578
+ description?: string | undefined;
238579
+ };
238580
+ }>, z$1.ZodObject<{
238581
+ type: z$1.ZodLiteral<"ProjectArchived">;
238582
+ payload: z$1.ZodObject<{
238583
+ name: z$1.ZodString;
238584
+ }, "strip", z$1.ZodTypeAny, {
238585
+ name: string;
238586
+ }, {
238587
+ name: string;
238588
+ }>;
238589
+ }, "strip", z$1.ZodTypeAny, {
238590
+ type: "ProjectArchived";
238591
+ payload: {
238592
+ name: string;
238593
+ };
238594
+ }, {
238595
+ type: "ProjectArchived";
238596
+ payload: {
238597
+ name: string;
238598
+ };
238599
+ }>, z$1.ZodObject<{
238600
+ type: z$1.ZodLiteral<"IterationPromoted">;
238601
+ payload: z$1.ZodObject<{
238602
+ iterationId: z$1.ZodString;
238603
+ featureId: z$1.ZodString;
238604
+ iterationName: z$1.ZodString;
238605
+ }, "strip", z$1.ZodTypeAny, {
238606
+ iterationId: string;
238607
+ featureId: string;
238608
+ iterationName: string;
238609
+ }, {
238610
+ iterationId: string;
238611
+ featureId: string;
238612
+ iterationName: string;
238613
+ }>;
238614
+ }, "strip", z$1.ZodTypeAny, {
238615
+ type: "IterationPromoted";
238616
+ payload: {
238617
+ iterationId: string;
238618
+ featureId: string;
238619
+ iterationName: string;
238620
+ };
238621
+ }, {
238622
+ type: "IterationPromoted";
238623
+ payload: {
238624
+ iterationId: string;
238625
+ featureId: string;
238626
+ iterationName: string;
238627
+ };
238628
+ }>, z$1.ZodObject<{
238629
+ type: z$1.ZodLiteral<"ProjectContextCreated">;
238630
+ payload: z$1.ZodObject<{
238631
+ contextId: z$1.ZodNumber;
238632
+ name: z$1.ZodString;
238633
+ description: z$1.ZodOptional<z$1.ZodString>;
238634
+ }, "strip", z$1.ZodTypeAny, {
238635
+ name: string;
238636
+ contextId: number;
238637
+ description?: string | undefined;
238638
+ }, {
238639
+ name: string;
238640
+ contextId: number;
238641
+ description?: string | undefined;
238642
+ }>;
238643
+ }, "strip", z$1.ZodTypeAny, {
238644
+ type: "ProjectContextCreated";
238645
+ payload: {
238646
+ name: string;
238647
+ contextId: number;
238648
+ description?: string | undefined;
238649
+ };
238650
+ }, {
238651
+ type: "ProjectContextCreated";
238652
+ payload: {
238653
+ name: string;
238654
+ contextId: number;
238655
+ description?: string | undefined;
238656
+ };
238657
+ }>, z$1.ZodObject<{
238658
+ type: z$1.ZodLiteral<"ProjectContextArchived">;
238659
+ payload: z$1.ZodObject<{
238660
+ contextId: z$1.ZodNumber;
238661
+ }, "strip", z$1.ZodTypeAny, {
238662
+ contextId: number;
238663
+ }, {
238664
+ contextId: number;
238665
+ }>;
238666
+ }, "strip", z$1.ZodTypeAny, {
238667
+ type: "ProjectContextArchived";
238668
+ payload: {
238669
+ contextId: number;
238670
+ };
238671
+ }, {
238672
+ type: "ProjectContextArchived";
238673
+ payload: {
238674
+ contextId: number;
238675
+ };
238676
+ }>]>, z$1.ZodObject<Omit<{
238677
+ id: z$1.ZodString;
238678
+ projectId: z$1.ZodString;
238679
+ userId: z$1.ZodString;
238680
+ createdAt: z$1.ZodDate;
238681
+ updatedAt: z$1.ZodDate;
238682
+ }, "id" | "createdAt" | "updatedAt">, "strip", z$1.ZodTypeAny, {
238683
+ userId: string;
238684
+ projectId: string;
238685
+ }, {
238686
+ userId: string;
238687
+ projectId: string;
238688
+ }>>;
238689
+ type DTOTrailEventCreate = z$1.infer<typeof DTOTrailEventCreate>;
238690
+
238691
+ declare const DTOUserOnboardingDepartment: z$1.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>;
238692
+ type DTOUserOnboardingDepartment = z$1.infer<typeof DTOUserOnboardingDepartment>;
238693
+ declare const DTOUserOnboardingJobLevel: z$1.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>;
238694
+ type DTOUserOnboardingJobLevel = z$1.infer<typeof DTOUserOnboardingJobLevel>;
238695
+ declare const DTOUserSource: z$1.ZodEnum<["SignUp", "Invite", "SSO"]>;
238696
+ type DTOUserSource = z$1.infer<typeof DTOUserSource>;
238697
+ declare const DTOUserTheme: z$1.ZodObject<{
238698
+ backgroundColor: z$1.ZodOptional<z$1.ZodString>;
238699
+ accentColor: z$1.ZodOptional<z$1.ZodString>;
238700
+ contrast: z$1.ZodOptional<z$1.ZodNumber>;
238701
+ isSecondaryEnabled: z$1.ZodOptional<z$1.ZodBoolean>;
238702
+ secondaryBackgroundColor: z$1.ZodOptional<z$1.ZodString>;
238703
+ secondaryContrast: z$1.ZodOptional<z$1.ZodNumber>;
238704
+ isEditorWhite: z$1.ZodOptional<z$1.ZodBoolean>;
238705
+ } & {
238706
+ preset: z$1.ZodOptional<z$1.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
238707
+ }, "strip", z$1.ZodTypeAny, {
238708
+ backgroundColor?: string | undefined;
238709
+ accentColor?: string | undefined;
238710
+ contrast?: number | undefined;
238711
+ isSecondaryEnabled?: boolean | undefined;
238712
+ secondaryBackgroundColor?: string | undefined;
238713
+ secondaryContrast?: number | undefined;
238714
+ isEditorWhite?: boolean | undefined;
238715
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
238716
+ }, {
238717
+ backgroundColor?: string | undefined;
238718
+ accentColor?: string | undefined;
238719
+ contrast?: number | undefined;
238720
+ isSecondaryEnabled?: boolean | undefined;
238721
+ secondaryBackgroundColor?: string | undefined;
238722
+ secondaryContrast?: number | undefined;
238723
+ isEditorWhite?: boolean | undefined;
238724
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
238725
+ }>;
238726
+ type DTOUserTheme = z$1.infer<typeof DTOUserTheme>;
238727
+ declare const DTOUserOnboarding: z$1.ZodObject<{
238728
+ companyName: z$1.ZodOptional<z$1.ZodString>;
238729
+ numberOfPeopleInOrg: z$1.ZodOptional<z$1.ZodString>;
238730
+ numberOfPeopleInDesignTeam: z$1.ZodOptional<z$1.ZodString>;
238731
+ department: z$1.ZodOptional<z$1.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
238732
+ jobTitle: z$1.ZodOptional<z$1.ZodString>;
238733
+ phase: z$1.ZodOptional<z$1.ZodString>;
238734
+ jobLevel: z$1.ZodOptional<z$1.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
238735
+ designSystemName: z$1.ZodOptional<z$1.ZodString>;
238736
+ defaultDestination: z$1.ZodOptional<z$1.ZodString>;
238737
+ isPageDraftOnboardingFinished: z$1.ZodOptional<z$1.ZodBoolean>;
238738
+ }, "strip", z$1.ZodTypeAny, {
238739
+ companyName?: string | undefined;
238740
+ numberOfPeopleInOrg?: string | undefined;
238741
+ numberOfPeopleInDesignTeam?: string | undefined;
238742
+ department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
238743
+ jobTitle?: string | undefined;
238744
+ phase?: string | undefined;
238745
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
238746
+ designSystemName?: string | undefined;
238747
+ defaultDestination?: string | undefined;
238748
+ isPageDraftOnboardingFinished?: boolean | undefined;
238749
+ }, {
238750
+ companyName?: string | undefined;
238751
+ numberOfPeopleInOrg?: string | undefined;
238752
+ numberOfPeopleInDesignTeam?: string | undefined;
238753
+ department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
238754
+ jobTitle?: string | undefined;
238755
+ phase?: string | undefined;
238756
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
238757
+ designSystemName?: string | undefined;
238758
+ defaultDestination?: string | undefined;
238759
+ isPageDraftOnboardingFinished?: boolean | undefined;
238760
+ }>;
238761
+ type DTOUserOnboarding = z$1.infer<typeof DTOUserOnboarding>;
238762
+ declare const DTOAuthenticatedUserProfile: z$1.ZodObject<{
238763
+ name: z$1.ZodString;
238764
+ nickname: z$1.ZodOptional<z$1.ZodString>;
238765
+ avatar: z$1.ZodOptional<z$1.ZodString>;
238766
+ } & {
238767
+ onboarding: z$1.ZodOptional<z$1.ZodObject<{
238768
+ companyName: z$1.ZodOptional<z$1.ZodString>;
238769
+ numberOfPeopleInOrg: z$1.ZodOptional<z$1.ZodString>;
238770
+ numberOfPeopleInDesignTeam: z$1.ZodOptional<z$1.ZodString>;
238771
+ department: z$1.ZodOptional<z$1.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
238772
+ jobTitle: z$1.ZodOptional<z$1.ZodString>;
238773
+ phase: z$1.ZodOptional<z$1.ZodString>;
238774
+ jobLevel: z$1.ZodOptional<z$1.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
238775
+ designSystemName: z$1.ZodOptional<z$1.ZodString>;
238776
+ defaultDestination: z$1.ZodOptional<z$1.ZodString>;
238777
+ isPageDraftOnboardingFinished: z$1.ZodOptional<z$1.ZodBoolean>;
238778
+ }, "strip", z$1.ZodTypeAny, {
238779
+ companyName?: string | undefined;
238780
+ numberOfPeopleInOrg?: string | undefined;
238781
+ numberOfPeopleInDesignTeam?: string | undefined;
238782
+ department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
238783
+ jobTitle?: string | undefined;
238784
+ phase?: string | undefined;
238785
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
238786
+ designSystemName?: string | undefined;
238787
+ defaultDestination?: string | undefined;
238788
+ isPageDraftOnboardingFinished?: boolean | undefined;
238789
+ }, {
238790
+ companyName?: string | undefined;
238791
+ numberOfPeopleInOrg?: string | undefined;
238792
+ numberOfPeopleInDesignTeam?: string | undefined;
238793
+ department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
238794
+ jobTitle?: string | undefined;
238795
+ phase?: string | undefined;
238796
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
238797
+ designSystemName?: string | undefined;
238798
+ defaultDestination?: string | undefined;
238799
+ isPageDraftOnboardingFinished?: boolean | undefined;
238800
+ }>>;
238801
+ theme: z$1.ZodOptional<z$1.ZodObject<{
238802
+ backgroundColor: z$1.ZodOptional<z$1.ZodString>;
238803
+ accentColor: z$1.ZodOptional<z$1.ZodString>;
238804
+ contrast: z$1.ZodOptional<z$1.ZodNumber>;
238805
+ isSecondaryEnabled: z$1.ZodOptional<z$1.ZodBoolean>;
238806
+ secondaryBackgroundColor: z$1.ZodOptional<z$1.ZodString>;
238807
+ secondaryContrast: z$1.ZodOptional<z$1.ZodNumber>;
238808
+ isEditorWhite: z$1.ZodOptional<z$1.ZodBoolean>;
238809
+ } & {
238810
+ preset: z$1.ZodOptional<z$1.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
238811
+ }, "strip", z$1.ZodTypeAny, {
238812
+ backgroundColor?: string | undefined;
238813
+ accentColor?: string | undefined;
238814
+ contrast?: number | undefined;
238815
+ isSecondaryEnabled?: boolean | undefined;
238816
+ secondaryBackgroundColor?: string | undefined;
238817
+ secondaryContrast?: number | undefined;
238818
+ isEditorWhite?: boolean | undefined;
238819
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
238820
+ }, {
238821
+ backgroundColor?: string | undefined;
238822
+ accentColor?: string | undefined;
238823
+ contrast?: number | undefined;
238824
+ isSecondaryEnabled?: boolean | undefined;
238825
+ secondaryBackgroundColor?: string | undefined;
238826
+ secondaryContrast?: number | undefined;
238827
+ isEditorWhite?: boolean | undefined;
238828
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
238829
+ }>>;
238830
+ }, "strip", z$1.ZodTypeAny, {
238831
+ name: string;
238832
+ nickname?: string | undefined;
238833
+ avatar?: string | undefined;
238834
+ onboarding?: {
238835
+ companyName?: string | undefined;
238836
+ numberOfPeopleInOrg?: string | undefined;
238837
+ numberOfPeopleInDesignTeam?: string | undefined;
238838
+ department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
238839
+ jobTitle?: string | undefined;
238840
+ phase?: string | undefined;
238841
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
238842
+ designSystemName?: string | undefined;
238843
+ defaultDestination?: string | undefined;
238844
+ isPageDraftOnboardingFinished?: boolean | undefined;
238845
+ } | undefined;
238846
+ theme?: {
238847
+ backgroundColor?: string | undefined;
238848
+ accentColor?: string | undefined;
238849
+ contrast?: number | undefined;
238850
+ isSecondaryEnabled?: boolean | undefined;
238851
+ secondaryBackgroundColor?: string | undefined;
238852
+ secondaryContrast?: number | undefined;
238853
+ isEditorWhite?: boolean | undefined;
238854
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
238855
+ } | undefined;
238856
+ }, {
238857
+ name: string;
238858
+ nickname?: string | undefined;
238859
+ avatar?: string | undefined;
238860
+ onboarding?: {
238861
+ companyName?: string | undefined;
238862
+ numberOfPeopleInOrg?: string | undefined;
238863
+ numberOfPeopleInDesignTeam?: string | undefined;
238864
+ department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
238865
+ jobTitle?: string | undefined;
238866
+ phase?: string | undefined;
238867
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
238868
+ designSystemName?: string | undefined;
238869
+ defaultDestination?: string | undefined;
238870
+ isPageDraftOnboardingFinished?: boolean | undefined;
238871
+ } | undefined;
238872
+ theme?: {
238873
+ backgroundColor?: string | undefined;
238874
+ accentColor?: string | undefined;
238875
+ contrast?: number | undefined;
238876
+ isSecondaryEnabled?: boolean | undefined;
238877
+ secondaryBackgroundColor?: string | undefined;
238878
+ secondaryContrast?: number | undefined;
238879
+ isEditorWhite?: boolean | undefined;
238880
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
238881
+ } | undefined;
238882
+ }>;
238883
+ type DTOAuthenticatedUserProfile = z$1.infer<typeof DTOAuthenticatedUserProfile>;
238884
+ declare const DTOAuthenticatedUser: z$1.ZodObject<{
238885
+ id: z$1.ZodString;
238886
+ email: z$1.ZodString;
238887
+ } & {
238888
+ profile: z$1.ZodObject<{
238889
+ name: z$1.ZodString;
238890
+ nickname: z$1.ZodOptional<z$1.ZodString>;
238891
+ avatar: z$1.ZodOptional<z$1.ZodString>;
238892
+ } & {
238893
+ onboarding: z$1.ZodOptional<z$1.ZodObject<{
238894
+ companyName: z$1.ZodOptional<z$1.ZodString>;
238895
+ numberOfPeopleInOrg: z$1.ZodOptional<z$1.ZodString>;
238896
+ numberOfPeopleInDesignTeam: z$1.ZodOptional<z$1.ZodString>;
238897
+ department: z$1.ZodOptional<z$1.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
238898
+ jobTitle: z$1.ZodOptional<z$1.ZodString>;
238899
+ phase: z$1.ZodOptional<z$1.ZodString>;
238900
+ jobLevel: z$1.ZodOptional<z$1.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
238901
+ designSystemName: z$1.ZodOptional<z$1.ZodString>;
238902
+ defaultDestination: z$1.ZodOptional<z$1.ZodString>;
238903
+ isPageDraftOnboardingFinished: z$1.ZodOptional<z$1.ZodBoolean>;
238904
+ }, "strip", z$1.ZodTypeAny, {
238905
+ companyName?: string | undefined;
238906
+ numberOfPeopleInOrg?: string | undefined;
238907
+ numberOfPeopleInDesignTeam?: string | undefined;
238908
+ department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
238909
+ jobTitle?: string | undefined;
238910
+ phase?: string | undefined;
238911
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
238912
+ designSystemName?: string | undefined;
238913
+ defaultDestination?: string | undefined;
238914
+ isPageDraftOnboardingFinished?: boolean | undefined;
238915
+ }, {
238916
+ companyName?: string | undefined;
238917
+ numberOfPeopleInOrg?: string | undefined;
238918
+ numberOfPeopleInDesignTeam?: string | undefined;
238919
+ department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
238920
+ jobTitle?: string | undefined;
238921
+ phase?: string | undefined;
238922
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
238923
+ designSystemName?: string | undefined;
238924
+ defaultDestination?: string | undefined;
238925
+ isPageDraftOnboardingFinished?: boolean | undefined;
238926
+ }>>;
238927
+ theme: z$1.ZodOptional<z$1.ZodObject<{
238928
+ backgroundColor: z$1.ZodOptional<z$1.ZodString>;
238929
+ accentColor: z$1.ZodOptional<z$1.ZodString>;
238930
+ contrast: z$1.ZodOptional<z$1.ZodNumber>;
238931
+ isSecondaryEnabled: z$1.ZodOptional<z$1.ZodBoolean>;
238932
+ secondaryBackgroundColor: z$1.ZodOptional<z$1.ZodString>;
238933
+ secondaryContrast: z$1.ZodOptional<z$1.ZodNumber>;
238934
+ isEditorWhite: z$1.ZodOptional<z$1.ZodBoolean>;
238935
+ } & {
238936
+ preset: z$1.ZodOptional<z$1.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
238937
+ }, "strip", z$1.ZodTypeAny, {
238938
+ backgroundColor?: string | undefined;
238939
+ accentColor?: string | undefined;
238940
+ contrast?: number | undefined;
238941
+ isSecondaryEnabled?: boolean | undefined;
238942
+ secondaryBackgroundColor?: string | undefined;
238943
+ secondaryContrast?: number | undefined;
238944
+ isEditorWhite?: boolean | undefined;
238945
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
238946
+ }, {
238947
+ backgroundColor?: string | undefined;
238948
+ accentColor?: string | undefined;
238949
+ contrast?: number | undefined;
238950
+ isSecondaryEnabled?: boolean | undefined;
238951
+ secondaryBackgroundColor?: string | undefined;
238952
+ secondaryContrast?: number | undefined;
238953
+ isEditorWhite?: boolean | undefined;
238954
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
238955
+ }>>;
238956
+ }, "strip", z$1.ZodTypeAny, {
238957
+ name: string;
238958
+ nickname?: string | undefined;
238959
+ avatar?: string | undefined;
238960
+ onboarding?: {
238961
+ companyName?: string | undefined;
238962
+ numberOfPeopleInOrg?: string | undefined;
238963
+ numberOfPeopleInDesignTeam?: string | undefined;
238964
+ department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
238965
+ jobTitle?: string | undefined;
238966
+ phase?: string | undefined;
238967
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
238968
+ designSystemName?: string | undefined;
238969
+ defaultDestination?: string | undefined;
238970
+ isPageDraftOnboardingFinished?: boolean | undefined;
238971
+ } | undefined;
238972
+ theme?: {
238973
+ backgroundColor?: string | undefined;
238974
+ accentColor?: string | undefined;
238975
+ contrast?: number | undefined;
238976
+ isSecondaryEnabled?: boolean | undefined;
238977
+ secondaryBackgroundColor?: string | undefined;
238978
+ secondaryContrast?: number | undefined;
238979
+ isEditorWhite?: boolean | undefined;
238980
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
238981
+ } | undefined;
238982
+ }, {
238983
+ name: string;
238984
+ nickname?: string | undefined;
238985
+ avatar?: string | undefined;
238986
+ onboarding?: {
238987
+ companyName?: string | undefined;
238988
+ numberOfPeopleInOrg?: string | undefined;
238989
+ numberOfPeopleInDesignTeam?: string | undefined;
238990
+ department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
238991
+ jobTitle?: string | undefined;
238992
+ phase?: string | undefined;
238993
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
238994
+ designSystemName?: string | undefined;
238995
+ defaultDestination?: string | undefined;
238996
+ isPageDraftOnboardingFinished?: boolean | undefined;
238997
+ } | undefined;
238998
+ theme?: {
238999
+ backgroundColor?: string | undefined;
239000
+ accentColor?: string | undefined;
239001
+ contrast?: number | undefined;
239002
+ isSecondaryEnabled?: boolean | undefined;
239003
+ secondaryBackgroundColor?: string | undefined;
239004
+ secondaryContrast?: number | undefined;
239005
+ isEditorWhite?: boolean | undefined;
239006
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
239007
+ } | undefined;
239008
+ }>;
239009
+ createdAt: z$1.ZodDate;
239010
+ loggedOutAt: z$1.ZodOptional<z$1.ZodDate>;
239011
+ source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO"]>>;
239012
+ }, "strip", z$1.ZodTypeAny, {
239013
+ id: string;
239014
+ createdAt: Date;
239015
+ email: string;
239016
+ profile: {
239017
+ name: string;
239018
+ nickname?: string | undefined;
239019
+ avatar?: string | undefined;
239020
+ onboarding?: {
239021
+ companyName?: string | undefined;
239022
+ numberOfPeopleInOrg?: string | undefined;
239023
+ numberOfPeopleInDesignTeam?: string | undefined;
239024
+ department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
239025
+ jobTitle?: string | undefined;
239026
+ phase?: string | undefined;
239027
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
239028
+ designSystemName?: string | undefined;
239029
+ defaultDestination?: string | undefined;
239030
+ isPageDraftOnboardingFinished?: boolean | undefined;
239031
+ } | undefined;
239032
+ theme?: {
239033
+ backgroundColor?: string | undefined;
239034
+ accentColor?: string | undefined;
239035
+ contrast?: number | undefined;
239036
+ isSecondaryEnabled?: boolean | undefined;
239037
+ secondaryBackgroundColor?: string | undefined;
239038
+ secondaryContrast?: number | undefined;
239039
+ isEditorWhite?: boolean | undefined;
239040
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
239041
+ } | undefined;
239042
+ };
239043
+ loggedOutAt?: Date | undefined;
239044
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
239045
+ }, {
239046
+ id: string;
239047
+ createdAt: Date;
239048
+ email: string;
239049
+ profile: {
239050
+ name: string;
239051
+ nickname?: string | undefined;
239052
+ avatar?: string | undefined;
239053
+ onboarding?: {
239054
+ companyName?: string | undefined;
239055
+ numberOfPeopleInOrg?: string | undefined;
239056
+ numberOfPeopleInDesignTeam?: string | undefined;
239057
+ department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
239058
+ jobTitle?: string | undefined;
239059
+ phase?: string | undefined;
239060
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
239061
+ designSystemName?: string | undefined;
239062
+ defaultDestination?: string | undefined;
239063
+ isPageDraftOnboardingFinished?: boolean | undefined;
239064
+ } | undefined;
239065
+ theme?: {
239066
+ backgroundColor?: string | undefined;
239067
+ accentColor?: string | undefined;
239068
+ contrast?: number | undefined;
239069
+ isSecondaryEnabled?: boolean | undefined;
239070
+ secondaryBackgroundColor?: string | undefined;
239071
+ secondaryContrast?: number | undefined;
239072
+ isEditorWhite?: boolean | undefined;
239073
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
239074
+ } | undefined;
239075
+ };
239076
+ loggedOutAt?: Date | undefined;
239077
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
239078
+ }>;
239079
+ type DTOAuthenticatedUser = z$1.infer<typeof DTOAuthenticatedUser>;
239080
+ declare const DTOAuthenticatedUserResponse: z$1.ZodObject<{
239081
+ user: z$1.ZodObject<{
239082
+ id: z$1.ZodString;
239083
+ email: z$1.ZodString;
239084
+ } & {
239085
+ profile: z$1.ZodObject<{
239086
+ name: z$1.ZodString;
239087
+ nickname: z$1.ZodOptional<z$1.ZodString>;
239088
+ avatar: z$1.ZodOptional<z$1.ZodString>;
239089
+ } & {
239090
+ onboarding: z$1.ZodOptional<z$1.ZodObject<{
239091
+ companyName: z$1.ZodOptional<z$1.ZodString>;
239092
+ numberOfPeopleInOrg: z$1.ZodOptional<z$1.ZodString>;
239093
+ numberOfPeopleInDesignTeam: z$1.ZodOptional<z$1.ZodString>;
239094
+ department: z$1.ZodOptional<z$1.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
239095
+ jobTitle: z$1.ZodOptional<z$1.ZodString>;
239096
+ phase: z$1.ZodOptional<z$1.ZodString>;
239097
+ jobLevel: z$1.ZodOptional<z$1.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
239098
+ designSystemName: z$1.ZodOptional<z$1.ZodString>;
239099
+ defaultDestination: z$1.ZodOptional<z$1.ZodString>;
239100
+ isPageDraftOnboardingFinished: z$1.ZodOptional<z$1.ZodBoolean>;
239101
+ }, "strip", z$1.ZodTypeAny, {
239102
+ companyName?: string | undefined;
239103
+ numberOfPeopleInOrg?: string | undefined;
239104
+ numberOfPeopleInDesignTeam?: string | undefined;
239105
+ department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
239106
+ jobTitle?: string | undefined;
239107
+ phase?: string | undefined;
239108
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
239109
+ designSystemName?: string | undefined;
239110
+ defaultDestination?: string | undefined;
239111
+ isPageDraftOnboardingFinished?: boolean | undefined;
239112
+ }, {
239113
+ companyName?: string | undefined;
239114
+ numberOfPeopleInOrg?: string | undefined;
239115
+ numberOfPeopleInDesignTeam?: string | undefined;
239116
+ department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
239117
+ jobTitle?: string | undefined;
239118
+ phase?: string | undefined;
239119
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
239120
+ designSystemName?: string | undefined;
239121
+ defaultDestination?: string | undefined;
239122
+ isPageDraftOnboardingFinished?: boolean | undefined;
239123
+ }>>;
239124
+ theme: z$1.ZodOptional<z$1.ZodObject<{
239125
+ backgroundColor: z$1.ZodOptional<z$1.ZodString>;
239126
+ accentColor: z$1.ZodOptional<z$1.ZodString>;
239127
+ contrast: z$1.ZodOptional<z$1.ZodNumber>;
239128
+ isSecondaryEnabled: z$1.ZodOptional<z$1.ZodBoolean>;
239129
+ secondaryBackgroundColor: z$1.ZodOptional<z$1.ZodString>;
239130
+ secondaryContrast: z$1.ZodOptional<z$1.ZodNumber>;
239131
+ isEditorWhite: z$1.ZodOptional<z$1.ZodBoolean>;
239132
+ } & {
239133
+ preset: z$1.ZodOptional<z$1.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
239134
+ }, "strip", z$1.ZodTypeAny, {
239135
+ backgroundColor?: string | undefined;
239136
+ accentColor?: string | undefined;
239137
+ contrast?: number | undefined;
239138
+ isSecondaryEnabled?: boolean | undefined;
239139
+ secondaryBackgroundColor?: string | undefined;
239140
+ secondaryContrast?: number | undefined;
239141
+ isEditorWhite?: boolean | undefined;
239142
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
239143
+ }, {
239144
+ backgroundColor?: string | undefined;
239145
+ accentColor?: string | undefined;
239146
+ contrast?: number | undefined;
239147
+ isSecondaryEnabled?: boolean | undefined;
239148
+ secondaryBackgroundColor?: string | undefined;
239149
+ secondaryContrast?: number | undefined;
239150
+ isEditorWhite?: boolean | undefined;
239151
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
239152
+ }>>;
239153
+ }, "strip", z$1.ZodTypeAny, {
239154
+ name: string;
239155
+ nickname?: string | undefined;
239156
+ avatar?: string | undefined;
239157
+ onboarding?: {
239158
+ companyName?: string | undefined;
239159
+ numberOfPeopleInOrg?: string | undefined;
239160
+ numberOfPeopleInDesignTeam?: string | undefined;
239161
+ department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
239162
+ jobTitle?: string | undefined;
239163
+ phase?: string | undefined;
239164
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
239165
+ designSystemName?: string | undefined;
239166
+ defaultDestination?: string | undefined;
239167
+ isPageDraftOnboardingFinished?: boolean | undefined;
239168
+ } | undefined;
239169
+ theme?: {
239170
+ backgroundColor?: string | undefined;
239171
+ accentColor?: string | undefined;
239172
+ contrast?: number | undefined;
239173
+ isSecondaryEnabled?: boolean | undefined;
239174
+ secondaryBackgroundColor?: string | undefined;
239175
+ secondaryContrast?: number | undefined;
239176
+ isEditorWhite?: boolean | undefined;
239177
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
239178
+ } | undefined;
239179
+ }, {
239180
+ name: string;
239181
+ nickname?: string | undefined;
239182
+ avatar?: string | undefined;
239183
+ onboarding?: {
239184
+ companyName?: string | undefined;
239185
+ numberOfPeopleInOrg?: string | undefined;
239186
+ numberOfPeopleInDesignTeam?: string | undefined;
239187
+ department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
239188
+ jobTitle?: string | undefined;
239189
+ phase?: string | undefined;
239190
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
239191
+ designSystemName?: string | undefined;
239192
+ defaultDestination?: string | undefined;
239193
+ isPageDraftOnboardingFinished?: boolean | undefined;
239194
+ } | undefined;
239195
+ theme?: {
239196
+ backgroundColor?: string | undefined;
239197
+ accentColor?: string | undefined;
239198
+ contrast?: number | undefined;
239199
+ isSecondaryEnabled?: boolean | undefined;
239200
+ secondaryBackgroundColor?: string | undefined;
239201
+ secondaryContrast?: number | undefined;
239202
+ isEditorWhite?: boolean | undefined;
239203
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
239204
+ } | undefined;
239205
+ }>;
239206
+ createdAt: z$1.ZodDate;
239207
+ loggedOutAt: z$1.ZodOptional<z$1.ZodDate>;
239208
+ source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO"]>>;
239209
+ }, "strip", z$1.ZodTypeAny, {
239210
+ id: string;
239211
+ createdAt: Date;
239212
+ email: string;
239213
+ profile: {
239214
+ name: string;
239215
+ nickname?: string | undefined;
239216
+ avatar?: string | undefined;
239217
+ onboarding?: {
239218
+ companyName?: string | undefined;
239219
+ numberOfPeopleInOrg?: string | undefined;
239220
+ numberOfPeopleInDesignTeam?: string | undefined;
239221
+ department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
239222
+ jobTitle?: string | undefined;
239223
+ phase?: string | undefined;
239224
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
239225
+ designSystemName?: string | undefined;
239226
+ defaultDestination?: string | undefined;
239227
+ isPageDraftOnboardingFinished?: boolean | undefined;
239228
+ } | undefined;
239229
+ theme?: {
239230
+ backgroundColor?: string | undefined;
238355
239231
  accentColor?: string | undefined;
238356
239232
  contrast?: number | undefined;
238357
239233
  isSecondaryEnabled?: boolean | undefined;
@@ -246800,1485 +247676,410 @@ declare const DTOWorkspaceResponse: z$1.ZodObject<{
246800
247676
  builderSeats: z$1.ZodOptional<z$1.ZodNumber>;
246801
247677
  fullSeats: z$1.ZodOptional<z$1.ZodNumber>;
246802
247678
  status: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z$1.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
246803
- subscriptionStatus: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete", z$1.ZodTypeDef, "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete">>>, NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined, "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined>;
246804
- internalStatus: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z$1.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
246805
- stripeSubscriptionId: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
246806
- stripeCustomerId: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
246807
- product: z$1.ZodEnum<["free", "team", "company", "enterprise", "pro"]>;
246808
- planPriceId: z$1.ZodString;
246809
- planInterval: z$1.ZodEnum<["daily", "monthly", "weekly", "yearly"]>;
246810
- currentPeriodStart: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
246811
- currentPeriodEnd: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
246812
- cancelAt: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
246813
- fullSeatPriceId: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
246814
- builderSeatPriceId: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
246815
- subscriptionStatusUpdatedAt: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
246816
- }, "strip", z$1.ZodTypeAny, {
246817
- product: "company" | "enterprise" | "free" | "team" | "pro";
246818
- seats: number;
246819
- seatLimit: number;
246820
- planPriceId: string;
246821
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
246822
- status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
246823
- card?: {
246824
- name?: string | null | undefined;
246825
- cardId?: string | null | undefined;
246826
- last4?: string | null | undefined;
246827
- expiryMonth?: string | null | undefined;
246828
- expiryYear?: string | null | undefined;
246829
- brand?: string | null | undefined;
246830
- } | undefined;
246831
- monthlyCreditGrantAnchor?: string | undefined;
246832
- monthlyCreditGrantAmount?: number | undefined;
246833
- builderSeatLimit?: number | undefined;
246834
- fullSeatLimit?: number | undefined;
246835
- builderSeats?: number | undefined;
246836
- fullSeats?: number | undefined;
246837
- subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
246838
- internalStatus?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
246839
- stripeSubscriptionId?: string | undefined;
246840
- stripeCustomerId?: string | undefined;
246841
- currentPeriodStart?: string | undefined;
246842
- currentPeriodEnd?: string | undefined;
246843
- cancelAt?: string | undefined;
246844
- fullSeatPriceId?: string | undefined;
246845
- builderSeatPriceId?: string | undefined;
246846
- subscriptionStatusUpdatedAt?: string | undefined;
246847
- }, {
246848
- product: "company" | "enterprise" | "free" | "team" | "pro";
246849
- seats: number;
246850
- seatLimit: number;
246851
- planPriceId: string;
246852
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
246853
- status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
246854
- card?: {
246855
- name?: string | null | undefined;
246856
- cardId?: string | null | undefined;
246857
- last4?: string | null | undefined;
246858
- expiryMonth?: string | null | undefined;
246859
- expiryYear?: string | null | undefined;
246860
- brand?: string | null | undefined;
246861
- } | null | undefined;
246862
- monthlyCreditGrantAnchor?: string | null | undefined;
246863
- monthlyCreditGrantAmount?: number | null | undefined;
246864
- builderSeatLimit?: number | undefined;
246865
- fullSeatLimit?: number | undefined;
246866
- builderSeats?: number | undefined;
246867
- fullSeats?: number | undefined;
246868
- subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
246869
- internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
246870
- stripeSubscriptionId?: string | null | undefined;
246871
- stripeCustomerId?: string | null | undefined;
246872
- currentPeriodStart?: string | null | undefined;
246873
- currentPeriodEnd?: string | null | undefined;
246874
- cancelAt?: string | null | undefined;
246875
- fullSeatPriceId?: string | null | undefined;
246876
- builderSeatPriceId?: string | null | undefined;
246877
- subscriptionStatusUpdatedAt?: string | null | undefined;
246878
- }>;
246879
- npmRegistry: z$1.ZodOptional<z$1.ZodObject<{
246880
- registryType: z$1.ZodEnum<["NPMJS", "GitHub", "AzureDevOps", "Artifactory", "Custom"]>;
246881
- registryUrl: z$1.ZodString;
246882
- customRegistryUrl: z$1.ZodOptional<z$1.ZodString>;
246883
- proxyUrl: z$1.ZodString;
246884
- authType: z$1.ZodEnum<["Basic", "Bearer", "None", "Custom"]>;
246885
- accessToken: z$1.ZodOptional<z$1.ZodLiteral<string>>;
246886
- username: z$1.ZodOptional<z$1.ZodString>;
246887
- password: z$1.ZodOptional<z$1.ZodLiteral<string>>;
246888
- enabledScopes: z$1.ZodArray<z$1.ZodString, "many">;
246889
- bypassProxy: z$1.ZodBoolean;
246890
- }, "strip", z$1.ZodTypeAny, {
246891
- registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
246892
- registryUrl: string;
246893
- proxyUrl: string;
246894
- authType: "Custom" | "None" | "Basic" | "Bearer";
246895
- enabledScopes: string[];
246896
- bypassProxy: boolean;
246897
- accessToken?: string | undefined;
246898
- username?: string | undefined;
246899
- customRegistryUrl?: string | undefined;
246900
- password?: string | undefined;
246901
- }, {
246902
- registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
246903
- registryUrl: string;
246904
- proxyUrl: string;
246905
- authType: "Custom" | "None" | "Basic" | "Bearer";
246906
- enabledScopes: string[];
246907
- bypassProxy: boolean;
246908
- accessToken?: string | undefined;
246909
- username?: string | undefined;
246910
- customRegistryUrl?: string | undefined;
246911
- password?: string | undefined;
246912
- }>>;
246913
- aiFeaturesEnabled: z$1.ZodDefault<z$1.ZodBoolean>;
246914
- aiAskFeaturesEnabled: z$1.ZodDefault<z$1.ZodBoolean>;
246915
- aiCustomInstruction: z$1.ZodOptional<z$1.ZodString>;
246916
- }, "strip", z$1.ZodTypeAny, {
246917
- id: string;
246918
- profile: {
246919
- name: string;
246920
- color: string;
246921
- handle: string;
246922
- avatar?: string | undefined;
246923
- billingDetails?: {
246924
- address?: {
246925
- state?: string | undefined;
246926
- street1?: string | undefined;
246927
- street2?: string | undefined;
246928
- city?: string | undefined;
246929
- postal?: string | undefined;
246930
- country?: string | undefined;
246931
- } | undefined;
246932
- email?: string | undefined;
246933
- notes?: string | undefined;
246934
- companyName?: string | undefined;
246935
- companyId?: string | undefined;
246936
- vat?: string | undefined;
246937
- poNumber?: string | undefined;
246938
- } | undefined;
246939
- };
246940
- subscription: {
246941
- product: "company" | "enterprise" | "free" | "team" | "pro";
246942
- seats: number;
246943
- seatLimit: number;
246944
- planPriceId: string;
246945
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
246946
- status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
246947
- card?: {
246948
- name?: string | null | undefined;
246949
- cardId?: string | null | undefined;
246950
- last4?: string | null | undefined;
246951
- expiryMonth?: string | null | undefined;
246952
- expiryYear?: string | null | undefined;
246953
- brand?: string | null | undefined;
246954
- } | undefined;
246955
- monthlyCreditGrantAnchor?: string | undefined;
246956
- monthlyCreditGrantAmount?: number | undefined;
246957
- builderSeatLimit?: number | undefined;
246958
- fullSeatLimit?: number | undefined;
246959
- builderSeats?: number | undefined;
246960
- fullSeats?: number | undefined;
246961
- subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
246962
- internalStatus?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
246963
- stripeSubscriptionId?: string | undefined;
246964
- stripeCustomerId?: string | undefined;
246965
- currentPeriodStart?: string | undefined;
246966
- currentPeriodEnd?: string | undefined;
246967
- cancelAt?: string | undefined;
246968
- fullSeatPriceId?: string | undefined;
246969
- builderSeatPriceId?: string | undefined;
246970
- subscriptionStatusUpdatedAt?: string | undefined;
246971
- };
246972
- aiFeaturesEnabled: boolean;
246973
- aiAskFeaturesEnabled: boolean;
246974
- npmRegistry?: {
246975
- registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
246976
- registryUrl: string;
246977
- proxyUrl: string;
246978
- authType: "Custom" | "None" | "Basic" | "Bearer";
246979
- enabledScopes: string[];
246980
- bypassProxy: boolean;
246981
- accessToken?: string | undefined;
246982
- username?: string | undefined;
246983
- customRegistryUrl?: string | undefined;
246984
- password?: string | undefined;
246985
- } | undefined;
246986
- aiCustomInstruction?: string | undefined;
246987
- }, {
246988
- id: string;
246989
- profile: {
246990
- name: string;
246991
- color: string;
246992
- handle: string;
246993
- avatar?: string | null | undefined;
246994
- billingDetails?: {
246995
- address?: {
246996
- state?: string | null | undefined;
246997
- street1?: string | null | undefined;
246998
- street2?: string | null | undefined;
246999
- city?: string | null | undefined;
247000
- postal?: string | null | undefined;
247001
- country?: string | null | undefined;
247002
- } | null | undefined;
247003
- email?: string | null | undefined;
247004
- notes?: string | null | undefined;
247005
- companyName?: string | null | undefined;
247006
- companyId?: string | null | undefined;
247007
- vat?: string | null | undefined;
247008
- poNumber?: string | null | undefined;
247009
- } | null | undefined;
247010
- };
247011
- subscription: {
247012
- product: "company" | "enterprise" | "free" | "team" | "pro";
247013
- seats: number;
247014
- seatLimit: number;
247015
- planPriceId: string;
247016
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
247017
- status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
247018
- card?: {
247019
- name?: string | null | undefined;
247020
- cardId?: string | null | undefined;
247021
- last4?: string | null | undefined;
247022
- expiryMonth?: string | null | undefined;
247023
- expiryYear?: string | null | undefined;
247024
- brand?: string | null | undefined;
247025
- } | null | undefined;
247026
- monthlyCreditGrantAnchor?: string | null | undefined;
247027
- monthlyCreditGrantAmount?: number | null | undefined;
247028
- builderSeatLimit?: number | undefined;
247029
- fullSeatLimit?: number | undefined;
247030
- builderSeats?: number | undefined;
247031
- fullSeats?: number | undefined;
247032
- subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
247033
- internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
247034
- stripeSubscriptionId?: string | null | undefined;
247035
- stripeCustomerId?: string | null | undefined;
247036
- currentPeriodStart?: string | null | undefined;
247037
- currentPeriodEnd?: string | null | undefined;
247038
- cancelAt?: string | null | undefined;
247039
- fullSeatPriceId?: string | null | undefined;
247040
- builderSeatPriceId?: string | null | undefined;
247041
- subscriptionStatusUpdatedAt?: string | null | undefined;
247042
- };
247043
- npmRegistry?: {
247044
- registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
247045
- registryUrl: string;
247046
- proxyUrl: string;
247047
- authType: "Custom" | "None" | "Basic" | "Bearer";
247048
- enabledScopes: string[];
247049
- bypassProxy: boolean;
247050
- accessToken?: string | undefined;
247051
- username?: string | undefined;
247052
- customRegistryUrl?: string | undefined;
247053
- password?: string | undefined;
247054
- } | undefined;
247055
- aiFeaturesEnabled?: boolean | undefined;
247056
- aiAskFeaturesEnabled?: boolean | undefined;
247057
- aiCustomInstruction?: string | undefined;
247058
- }>;
247059
- }, "strip", z$1.ZodTypeAny, {
247060
- workspace: {
247061
- id: string;
247062
- profile: {
247063
- name: string;
247064
- color: string;
247065
- handle: string;
247066
- avatar?: string | undefined;
247067
- billingDetails?: {
247068
- address?: {
247069
- state?: string | undefined;
247070
- street1?: string | undefined;
247071
- street2?: string | undefined;
247072
- city?: string | undefined;
247073
- postal?: string | undefined;
247074
- country?: string | undefined;
247075
- } | undefined;
247076
- email?: string | undefined;
247077
- notes?: string | undefined;
247078
- companyName?: string | undefined;
247079
- companyId?: string | undefined;
247080
- vat?: string | undefined;
247081
- poNumber?: string | undefined;
247082
- } | undefined;
247083
- };
247084
- subscription: {
247085
- product: "company" | "enterprise" | "free" | "team" | "pro";
247086
- seats: number;
247087
- seatLimit: number;
247088
- planPriceId: string;
247089
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
247090
- status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
247091
- card?: {
247092
- name?: string | null | undefined;
247093
- cardId?: string | null | undefined;
247094
- last4?: string | null | undefined;
247095
- expiryMonth?: string | null | undefined;
247096
- expiryYear?: string | null | undefined;
247097
- brand?: string | null | undefined;
247098
- } | undefined;
247099
- monthlyCreditGrantAnchor?: string | undefined;
247100
- monthlyCreditGrantAmount?: number | undefined;
247101
- builderSeatLimit?: number | undefined;
247102
- fullSeatLimit?: number | undefined;
247103
- builderSeats?: number | undefined;
247104
- fullSeats?: number | undefined;
247105
- subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
247106
- internalStatus?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
247107
- stripeSubscriptionId?: string | undefined;
247108
- stripeCustomerId?: string | undefined;
247109
- currentPeriodStart?: string | undefined;
247110
- currentPeriodEnd?: string | undefined;
247111
- cancelAt?: string | undefined;
247112
- fullSeatPriceId?: string | undefined;
247113
- builderSeatPriceId?: string | undefined;
247114
- subscriptionStatusUpdatedAt?: string | undefined;
247115
- };
247116
- aiFeaturesEnabled: boolean;
247117
- aiAskFeaturesEnabled: boolean;
247118
- npmRegistry?: {
247119
- registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
247120
- registryUrl: string;
247121
- proxyUrl: string;
247122
- authType: "Custom" | "None" | "Basic" | "Bearer";
247123
- enabledScopes: string[];
247124
- bypassProxy: boolean;
247125
- accessToken?: string | undefined;
247126
- username?: string | undefined;
247127
- customRegistryUrl?: string | undefined;
247128
- password?: string | undefined;
247129
- } | undefined;
247130
- aiCustomInstruction?: string | undefined;
247131
- };
247132
- }, {
247133
- workspace: {
247134
- id: string;
247135
- profile: {
247136
- name: string;
247137
- color: string;
247138
- handle: string;
247139
- avatar?: string | null | undefined;
247140
- billingDetails?: {
247141
- address?: {
247142
- state?: string | null | undefined;
247143
- street1?: string | null | undefined;
247144
- street2?: string | null | undefined;
247145
- city?: string | null | undefined;
247146
- postal?: string | null | undefined;
247147
- country?: string | null | undefined;
247148
- } | null | undefined;
247149
- email?: string | null | undefined;
247150
- notes?: string | null | undefined;
247151
- companyName?: string | null | undefined;
247152
- companyId?: string | null | undefined;
247153
- vat?: string | null | undefined;
247154
- poNumber?: string | null | undefined;
247155
- } | null | undefined;
247156
- };
247157
- subscription: {
247158
- product: "company" | "enterprise" | "free" | "team" | "pro";
247159
- seats: number;
247160
- seatLimit: number;
247161
- planPriceId: string;
247162
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
247163
- status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
247164
- card?: {
247165
- name?: string | null | undefined;
247166
- cardId?: string | null | undefined;
247167
- last4?: string | null | undefined;
247168
- expiryMonth?: string | null | undefined;
247169
- expiryYear?: string | null | undefined;
247170
- brand?: string | null | undefined;
247171
- } | null | undefined;
247172
- monthlyCreditGrantAnchor?: string | null | undefined;
247173
- monthlyCreditGrantAmount?: number | null | undefined;
247174
- builderSeatLimit?: number | undefined;
247175
- fullSeatLimit?: number | undefined;
247176
- builderSeats?: number | undefined;
247177
- fullSeats?: number | undefined;
247178
- subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
247179
- internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
247180
- stripeSubscriptionId?: string | null | undefined;
247181
- stripeCustomerId?: string | null | undefined;
247182
- currentPeriodStart?: string | null | undefined;
247183
- currentPeriodEnd?: string | null | undefined;
247184
- cancelAt?: string | null | undefined;
247185
- fullSeatPriceId?: string | null | undefined;
247186
- builderSeatPriceId?: string | null | undefined;
247187
- subscriptionStatusUpdatedAt?: string | null | undefined;
247188
- };
247189
- npmRegistry?: {
247190
- registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
247191
- registryUrl: string;
247192
- proxyUrl: string;
247193
- authType: "Custom" | "None" | "Basic" | "Bearer";
247194
- enabledScopes: string[];
247195
- bypassProxy: boolean;
247196
- accessToken?: string | undefined;
247197
- username?: string | undefined;
247198
- customRegistryUrl?: string | undefined;
247199
- password?: string | undefined;
247200
- } | undefined;
247201
- aiFeaturesEnabled?: boolean | undefined;
247202
- aiAskFeaturesEnabled?: boolean | undefined;
247203
- aiCustomInstruction?: string | undefined;
247204
- };
247205
- }>;
247206
- type DTOWorkspaceResponse = z$1.infer<typeof DTOWorkspaceResponse>;
247207
-
247208
- declare const DTOTrailEvent: z$1.ZodIntersection<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
247209
- type: z$1.ZodLiteral<"IterationCreated">;
247210
- payload: z$1.ZodObject<{
247211
- iterationName: z$1.ZodString;
247212
- iterationId: z$1.ZodString;
247213
- featureId: z$1.ZodString;
247214
- }, "strip", z$1.ZodTypeAny, {
247215
- iterationId: string;
247216
- featureId: string;
247217
- iterationName: string;
247218
- }, {
247219
- iterationId: string;
247220
- featureId: string;
247221
- iterationName: string;
247222
- }>;
247223
- }, "strip", z$1.ZodTypeAny, {
247224
- type: "IterationCreated";
247225
- payload: {
247226
- iterationId: string;
247227
- featureId: string;
247228
- iterationName: string;
247229
- };
247230
- }, {
247231
- type: "IterationCreated";
247232
- payload: {
247233
- iterationId: string;
247234
- featureId: string;
247235
- iterationName: string;
247236
- };
247237
- }>, z$1.ZodObject<{
247238
- type: z$1.ZodLiteral<"IterationBookmarked">;
247239
- payload: z$1.ZodObject<{
247240
- iterationId: z$1.ZodString;
247241
- featureId: z$1.ZodString;
247242
- iterationName: z$1.ZodString;
247243
- }, "strip", z$1.ZodTypeAny, {
247244
- iterationId: string;
247245
- featureId: string;
247246
- iterationName: string;
247247
- }, {
247248
- iterationId: string;
247249
- featureId: string;
247250
- iterationName: string;
247251
- }>;
247252
- }, "strip", z$1.ZodTypeAny, {
247253
- type: "IterationBookmarked";
247254
- payload: {
247255
- iterationId: string;
247256
- featureId: string;
247257
- iterationName: string;
247258
- };
247259
- }, {
247260
- type: "IterationBookmarked";
247261
- payload: {
247262
- iterationId: string;
247263
- featureId: string;
247264
- iterationName: string;
247265
- };
247266
- }>, z$1.ZodObject<{
247267
- type: z$1.ZodLiteral<"FeatureCreated">;
247268
- payload: z$1.ZodObject<{
247269
- featureId: z$1.ZodString;
247270
- name: z$1.ZodString;
247271
- description: z$1.ZodOptional<z$1.ZodString>;
247272
- }, "strip", z$1.ZodTypeAny, {
247273
- name: string;
247274
- featureId: string;
247275
- description?: string | undefined;
247276
- }, {
247277
- name: string;
247278
- featureId: string;
247279
- description?: string | undefined;
247280
- }>;
247281
- }, "strip", z$1.ZodTypeAny, {
247282
- type: "FeatureCreated";
247283
- payload: {
247284
- name: string;
247285
- featureId: string;
247286
- description?: string | undefined;
247287
- };
247288
- }, {
247289
- type: "FeatureCreated";
247290
- payload: {
247291
- name: string;
247292
- featureId: string;
247293
- description?: string | undefined;
247294
- };
247295
- }>, z$1.ZodObject<{
247296
- type: z$1.ZodLiteral<"FeatureDeleted">;
247297
- payload: z$1.ZodObject<{
247298
- featureId: z$1.ZodString;
247299
- name: z$1.ZodString;
247300
- }, "strip", z$1.ZodTypeAny, {
247301
- name: string;
247302
- featureId: string;
247303
- }, {
247304
- name: string;
247305
- featureId: string;
247306
- }>;
247307
- }, "strip", z$1.ZodTypeAny, {
247308
- type: "FeatureDeleted";
247309
- payload: {
247310
- name: string;
247311
- featureId: string;
247312
- };
247313
- }, {
247314
- type: "FeatureDeleted";
247315
- payload: {
247316
- name: string;
247317
- featureId: string;
247318
- };
247319
- }>, z$1.ZodObject<{
247320
- type: z$1.ZodLiteral<"DocumentCreated">;
247321
- payload: z$1.ZodObject<{
247322
- documentId: z$1.ZodString;
247323
- title: z$1.ZodString;
247324
- sectionId: z$1.ZodOptional<z$1.ZodString>;
247325
- }, "strip", z$1.ZodTypeAny, {
247326
- title: string;
247327
- documentId: string;
247328
- sectionId?: string | undefined;
247329
- }, {
247330
- title: string;
247331
- documentId: string;
247332
- sectionId?: string | undefined;
247333
- }>;
247334
- }, "strip", z$1.ZodTypeAny, {
247335
- type: "DocumentCreated";
247336
- payload: {
247337
- title: string;
247338
- documentId: string;
247339
- sectionId?: string | undefined;
247340
- };
247341
- }, {
247342
- type: "DocumentCreated";
247343
- payload: {
247344
- title: string;
247345
- documentId: string;
247346
- sectionId?: string | undefined;
247347
- };
247348
- }>, z$1.ZodObject<{
247349
- type: z$1.ZodLiteral<"DocumentDeleted">;
247350
- payload: z$1.ZodObject<{
247351
- documentId: z$1.ZodString;
247352
- title: z$1.ZodString;
247353
- }, "strip", z$1.ZodTypeAny, {
247354
- title: string;
247355
- documentId: string;
247356
- }, {
247357
- title: string;
247358
- documentId: string;
247359
- }>;
247360
- }, "strip", z$1.ZodTypeAny, {
247361
- type: "DocumentDeleted";
247362
- payload: {
247363
- title: string;
247364
- documentId: string;
247365
- };
247366
- }, {
247367
- type: "DocumentDeleted";
247368
- payload: {
247369
- title: string;
247370
- documentId: string;
247371
- };
247372
- }>, z$1.ZodObject<{
247373
- type: z$1.ZodLiteral<"ProjectCreated">;
247374
- payload: z$1.ZodObject<{
247375
- name: z$1.ZodString;
247376
- description: z$1.ZodOptional<z$1.ZodString>;
247377
- }, "strip", z$1.ZodTypeAny, {
247378
- name: string;
247379
- description?: string | undefined;
247380
- }, {
247381
- name: string;
247382
- description?: string | undefined;
247383
- }>;
247384
- }, "strip", z$1.ZodTypeAny, {
247385
- type: "ProjectCreated";
247386
- payload: {
247387
- name: string;
247388
- description?: string | undefined;
247389
- };
247390
- }, {
247391
- type: "ProjectCreated";
247392
- payload: {
247393
- name: string;
247394
- description?: string | undefined;
247395
- };
247396
- }>, z$1.ZodObject<{
247397
- type: z$1.ZodLiteral<"ProjectArchived">;
247398
- payload: z$1.ZodObject<{
247399
- name: z$1.ZodString;
247400
- }, "strip", z$1.ZodTypeAny, {
247401
- name: string;
247402
- }, {
247403
- name: string;
247404
- }>;
247405
- }, "strip", z$1.ZodTypeAny, {
247406
- type: "ProjectArchived";
247407
- payload: {
247408
- name: string;
247409
- };
247410
- }, {
247411
- type: "ProjectArchived";
247412
- payload: {
247413
- name: string;
247414
- };
247415
- }>, z$1.ZodObject<{
247416
- type: z$1.ZodLiteral<"IterationPromoted">;
247417
- payload: z$1.ZodObject<{
247418
- iterationId: z$1.ZodString;
247419
- featureId: z$1.ZodString;
247420
- iterationName: z$1.ZodString;
247421
- }, "strip", z$1.ZodTypeAny, {
247422
- iterationId: string;
247423
- featureId: string;
247424
- iterationName: string;
247425
- }, {
247426
- iterationId: string;
247427
- featureId: string;
247428
- iterationName: string;
247429
- }>;
247430
- }, "strip", z$1.ZodTypeAny, {
247431
- type: "IterationPromoted";
247432
- payload: {
247433
- iterationId: string;
247434
- featureId: string;
247435
- iterationName: string;
247436
- };
247437
- }, {
247438
- type: "IterationPromoted";
247439
- payload: {
247440
- iterationId: string;
247441
- featureId: string;
247442
- iterationName: string;
247443
- };
247444
- }>, z$1.ZodObject<{
247445
- type: z$1.ZodLiteral<"ProjectContextCreated">;
247446
- payload: z$1.ZodObject<{
247447
- contextId: z$1.ZodNumber;
247448
- name: z$1.ZodString;
247449
- description: z$1.ZodOptional<z$1.ZodString>;
247450
- }, "strip", z$1.ZodTypeAny, {
247451
- name: string;
247452
- contextId: number;
247453
- description?: string | undefined;
247454
- }, {
247455
- name: string;
247456
- contextId: number;
247457
- description?: string | undefined;
247458
- }>;
247459
- }, "strip", z$1.ZodTypeAny, {
247460
- type: "ProjectContextCreated";
247461
- payload: {
247462
- name: string;
247463
- contextId: number;
247464
- description?: string | undefined;
247465
- };
247466
- }, {
247467
- type: "ProjectContextCreated";
247468
- payload: {
247469
- name: string;
247470
- contextId: number;
247471
- description?: string | undefined;
247472
- };
247473
- }>, z$1.ZodObject<{
247474
- type: z$1.ZodLiteral<"ProjectContextArchived">;
247475
- payload: z$1.ZodObject<{
247476
- contextId: z$1.ZodNumber;
247477
- }, "strip", z$1.ZodTypeAny, {
247478
- contextId: number;
247479
- }, {
247480
- contextId: number;
247481
- }>;
247482
- }, "strip", z$1.ZodTypeAny, {
247483
- type: "ProjectContextArchived";
247484
- payload: {
247485
- contextId: number;
247486
- };
247487
- }, {
247488
- type: "ProjectContextArchived";
247489
- payload: {
247490
- contextId: number;
247491
- };
247492
- }>]>, z$1.ZodObject<{
247493
- id: z$1.ZodString;
247494
- projectId: z$1.ZodString;
247495
- userId: z$1.ZodString;
247496
- createdAt: z$1.ZodDate;
247497
- updatedAt: z$1.ZodDate;
247498
- }, "strip", z$1.ZodTypeAny, {
247499
- id: string;
247500
- createdAt: Date;
247501
- updatedAt: Date;
247502
- userId: string;
247503
- projectId: string;
247504
- }, {
247505
- id: string;
247506
- createdAt: Date;
247507
- updatedAt: Date;
247508
- userId: string;
247509
- projectId: string;
247510
- }>>;
247511
- type DTOTrailEvent = z$1.infer<typeof DTOTrailEvent>;
247512
- declare const DTOTrailEventListInput: z$1.ZodObject<{
247513
- projectId: z$1.ZodString;
247514
- }, "strip", z$1.ZodTypeAny, {
247515
- projectId: string;
247516
- }, {
247517
- projectId: string;
247518
- }>;
247519
- type DTOTrailEventListInput = z$1.infer<typeof DTOTrailEventListInput>;
247520
- declare const DTOTrailEventListResponse: z$1.ZodObject<{
247521
- events: z$1.ZodArray<z$1.ZodIntersection<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
247522
- type: z$1.ZodLiteral<"IterationCreated">;
247523
- payload: z$1.ZodObject<{
247524
- iterationName: z$1.ZodString;
247525
- iterationId: z$1.ZodString;
247526
- featureId: z$1.ZodString;
247527
- }, "strip", z$1.ZodTypeAny, {
247528
- iterationId: string;
247529
- featureId: string;
247530
- iterationName: string;
247531
- }, {
247532
- iterationId: string;
247533
- featureId: string;
247534
- iterationName: string;
247535
- }>;
247536
- }, "strip", z$1.ZodTypeAny, {
247537
- type: "IterationCreated";
247538
- payload: {
247539
- iterationId: string;
247540
- featureId: string;
247541
- iterationName: string;
247542
- };
247543
- }, {
247544
- type: "IterationCreated";
247545
- payload: {
247546
- iterationId: string;
247547
- featureId: string;
247548
- iterationName: string;
247549
- };
247550
- }>, z$1.ZodObject<{
247551
- type: z$1.ZodLiteral<"IterationBookmarked">;
247552
- payload: z$1.ZodObject<{
247553
- iterationId: z$1.ZodString;
247554
- featureId: z$1.ZodString;
247555
- iterationName: z$1.ZodString;
247556
- }, "strip", z$1.ZodTypeAny, {
247557
- iterationId: string;
247558
- featureId: string;
247559
- iterationName: string;
247560
- }, {
247561
- iterationId: string;
247562
- featureId: string;
247563
- iterationName: string;
247564
- }>;
247565
- }, "strip", z$1.ZodTypeAny, {
247566
- type: "IterationBookmarked";
247567
- payload: {
247568
- iterationId: string;
247569
- featureId: string;
247570
- iterationName: string;
247571
- };
247572
- }, {
247573
- type: "IterationBookmarked";
247574
- payload: {
247575
- iterationId: string;
247576
- featureId: string;
247577
- iterationName: string;
247578
- };
247579
- }>, z$1.ZodObject<{
247580
- type: z$1.ZodLiteral<"FeatureCreated">;
247581
- payload: z$1.ZodObject<{
247582
- featureId: z$1.ZodString;
247583
- name: z$1.ZodString;
247584
- description: z$1.ZodOptional<z$1.ZodString>;
247585
- }, "strip", z$1.ZodTypeAny, {
247586
- name: string;
247587
- featureId: string;
247588
- description?: string | undefined;
247589
- }, {
247590
- name: string;
247591
- featureId: string;
247592
- description?: string | undefined;
247593
- }>;
247594
- }, "strip", z$1.ZodTypeAny, {
247595
- type: "FeatureCreated";
247596
- payload: {
247597
- name: string;
247598
- featureId: string;
247599
- description?: string | undefined;
247600
- };
247601
- }, {
247602
- type: "FeatureCreated";
247603
- payload: {
247604
- name: string;
247605
- featureId: string;
247606
- description?: string | undefined;
247607
- };
247608
- }>, z$1.ZodObject<{
247609
- type: z$1.ZodLiteral<"FeatureDeleted">;
247610
- payload: z$1.ZodObject<{
247611
- featureId: z$1.ZodString;
247612
- name: z$1.ZodString;
247613
- }, "strip", z$1.ZodTypeAny, {
247614
- name: string;
247615
- featureId: string;
247616
- }, {
247617
- name: string;
247618
- featureId: string;
247619
- }>;
247620
- }, "strip", z$1.ZodTypeAny, {
247621
- type: "FeatureDeleted";
247622
- payload: {
247623
- name: string;
247624
- featureId: string;
247625
- };
247626
- }, {
247627
- type: "FeatureDeleted";
247628
- payload: {
247629
- name: string;
247630
- featureId: string;
247631
- };
247632
- }>, z$1.ZodObject<{
247633
- type: z$1.ZodLiteral<"DocumentCreated">;
247634
- payload: z$1.ZodObject<{
247635
- documentId: z$1.ZodString;
247636
- title: z$1.ZodString;
247637
- sectionId: z$1.ZodOptional<z$1.ZodString>;
247638
- }, "strip", z$1.ZodTypeAny, {
247639
- title: string;
247640
- documentId: string;
247641
- sectionId?: string | undefined;
247642
- }, {
247643
- title: string;
247644
- documentId: string;
247645
- sectionId?: string | undefined;
247646
- }>;
247647
- }, "strip", z$1.ZodTypeAny, {
247648
- type: "DocumentCreated";
247649
- payload: {
247650
- title: string;
247651
- documentId: string;
247652
- sectionId?: string | undefined;
247653
- };
247654
- }, {
247655
- type: "DocumentCreated";
247656
- payload: {
247657
- title: string;
247658
- documentId: string;
247659
- sectionId?: string | undefined;
247660
- };
247661
- }>, z$1.ZodObject<{
247662
- type: z$1.ZodLiteral<"DocumentDeleted">;
247663
- payload: z$1.ZodObject<{
247664
- documentId: z$1.ZodString;
247665
- title: z$1.ZodString;
247666
- }, "strip", z$1.ZodTypeAny, {
247667
- title: string;
247668
- documentId: string;
247669
- }, {
247670
- title: string;
247671
- documentId: string;
247672
- }>;
247673
- }, "strip", z$1.ZodTypeAny, {
247674
- type: "DocumentDeleted";
247675
- payload: {
247676
- title: string;
247677
- documentId: string;
247678
- };
247679
- }, {
247680
- type: "DocumentDeleted";
247681
- payload: {
247682
- title: string;
247683
- documentId: string;
247684
- };
247685
- }>, z$1.ZodObject<{
247686
- type: z$1.ZodLiteral<"ProjectCreated">;
247687
- payload: z$1.ZodObject<{
247688
- name: z$1.ZodString;
247689
- description: z$1.ZodOptional<z$1.ZodString>;
247690
- }, "strip", z$1.ZodTypeAny, {
247691
- name: string;
247692
- description?: string | undefined;
247693
- }, {
247694
- name: string;
247695
- description?: string | undefined;
247696
- }>;
247697
- }, "strip", z$1.ZodTypeAny, {
247698
- type: "ProjectCreated";
247699
- payload: {
247700
- name: string;
247701
- description?: string | undefined;
247702
- };
247703
- }, {
247704
- type: "ProjectCreated";
247705
- payload: {
247706
- name: string;
247707
- description?: string | undefined;
247708
- };
247709
- }>, z$1.ZodObject<{
247710
- type: z$1.ZodLiteral<"ProjectArchived">;
247711
- payload: z$1.ZodObject<{
247712
- name: z$1.ZodString;
247713
- }, "strip", z$1.ZodTypeAny, {
247714
- name: string;
247715
- }, {
247716
- name: string;
247717
- }>;
247718
- }, "strip", z$1.ZodTypeAny, {
247719
- type: "ProjectArchived";
247720
- payload: {
247721
- name: string;
247722
- };
247723
- }, {
247724
- type: "ProjectArchived";
247725
- payload: {
247726
- name: string;
247727
- };
247728
- }>, z$1.ZodObject<{
247729
- type: z$1.ZodLiteral<"IterationPromoted">;
247730
- payload: z$1.ZodObject<{
247731
- iterationId: z$1.ZodString;
247732
- featureId: z$1.ZodString;
247733
- iterationName: z$1.ZodString;
247734
- }, "strip", z$1.ZodTypeAny, {
247735
- iterationId: string;
247736
- featureId: string;
247737
- iterationName: string;
247738
- }, {
247739
- iterationId: string;
247740
- featureId: string;
247741
- iterationName: string;
247742
- }>;
247743
- }, "strip", z$1.ZodTypeAny, {
247744
- type: "IterationPromoted";
247745
- payload: {
247746
- iterationId: string;
247747
- featureId: string;
247748
- iterationName: string;
247749
- };
247750
- }, {
247751
- type: "IterationPromoted";
247752
- payload: {
247753
- iterationId: string;
247754
- featureId: string;
247755
- iterationName: string;
247756
- };
247757
- }>, z$1.ZodObject<{
247758
- type: z$1.ZodLiteral<"ProjectContextCreated">;
247759
- payload: z$1.ZodObject<{
247760
- contextId: z$1.ZodNumber;
247761
- name: z$1.ZodString;
247762
- description: z$1.ZodOptional<z$1.ZodString>;
247679
+ subscriptionStatus: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete", z$1.ZodTypeDef, "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete">>>, NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined, "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined>;
247680
+ internalStatus: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z$1.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
247681
+ stripeSubscriptionId: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
247682
+ stripeCustomerId: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
247683
+ product: z$1.ZodEnum<["free", "team", "company", "enterprise", "pro"]>;
247684
+ planPriceId: z$1.ZodString;
247685
+ planInterval: z$1.ZodEnum<["daily", "monthly", "weekly", "yearly"]>;
247686
+ currentPeriodStart: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
247687
+ currentPeriodEnd: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
247688
+ cancelAt: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
247689
+ fullSeatPriceId: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
247690
+ builderSeatPriceId: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
247691
+ subscriptionStatusUpdatedAt: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
247763
247692
  }, "strip", z$1.ZodTypeAny, {
247764
- name: string;
247765
- contextId: number;
247766
- description?: string | undefined;
247693
+ product: "company" | "enterprise" | "free" | "team" | "pro";
247694
+ seats: number;
247695
+ seatLimit: number;
247696
+ planPriceId: string;
247697
+ planInterval: "daily" | "monthly" | "weekly" | "yearly";
247698
+ status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
247699
+ card?: {
247700
+ name?: string | null | undefined;
247701
+ cardId?: string | null | undefined;
247702
+ last4?: string | null | undefined;
247703
+ expiryMonth?: string | null | undefined;
247704
+ expiryYear?: string | null | undefined;
247705
+ brand?: string | null | undefined;
247706
+ } | undefined;
247707
+ monthlyCreditGrantAnchor?: string | undefined;
247708
+ monthlyCreditGrantAmount?: number | undefined;
247709
+ builderSeatLimit?: number | undefined;
247710
+ fullSeatLimit?: number | undefined;
247711
+ builderSeats?: number | undefined;
247712
+ fullSeats?: number | undefined;
247713
+ subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
247714
+ internalStatus?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
247715
+ stripeSubscriptionId?: string | undefined;
247716
+ stripeCustomerId?: string | undefined;
247717
+ currentPeriodStart?: string | undefined;
247718
+ currentPeriodEnd?: string | undefined;
247719
+ cancelAt?: string | undefined;
247720
+ fullSeatPriceId?: string | undefined;
247721
+ builderSeatPriceId?: string | undefined;
247722
+ subscriptionStatusUpdatedAt?: string | undefined;
247767
247723
  }, {
247768
- name: string;
247769
- contextId: number;
247770
- description?: string | undefined;
247724
+ product: "company" | "enterprise" | "free" | "team" | "pro";
247725
+ seats: number;
247726
+ seatLimit: number;
247727
+ planPriceId: string;
247728
+ planInterval: "daily" | "monthly" | "weekly" | "yearly";
247729
+ status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
247730
+ card?: {
247731
+ name?: string | null | undefined;
247732
+ cardId?: string | null | undefined;
247733
+ last4?: string | null | undefined;
247734
+ expiryMonth?: string | null | undefined;
247735
+ expiryYear?: string | null | undefined;
247736
+ brand?: string | null | undefined;
247737
+ } | null | undefined;
247738
+ monthlyCreditGrantAnchor?: string | null | undefined;
247739
+ monthlyCreditGrantAmount?: number | null | undefined;
247740
+ builderSeatLimit?: number | undefined;
247741
+ fullSeatLimit?: number | undefined;
247742
+ builderSeats?: number | undefined;
247743
+ fullSeats?: number | undefined;
247744
+ subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
247745
+ internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
247746
+ stripeSubscriptionId?: string | null | undefined;
247747
+ stripeCustomerId?: string | null | undefined;
247748
+ currentPeriodStart?: string | null | undefined;
247749
+ currentPeriodEnd?: string | null | undefined;
247750
+ cancelAt?: string | null | undefined;
247751
+ fullSeatPriceId?: string | null | undefined;
247752
+ builderSeatPriceId?: string | null | undefined;
247753
+ subscriptionStatusUpdatedAt?: string | null | undefined;
247771
247754
  }>;
247772
- }, "strip", z$1.ZodTypeAny, {
247773
- type: "ProjectContextCreated";
247774
- payload: {
247775
- name: string;
247776
- contextId: number;
247777
- description?: string | undefined;
247778
- };
247779
- }, {
247780
- type: "ProjectContextCreated";
247781
- payload: {
247782
- name: string;
247783
- contextId: number;
247784
- description?: string | undefined;
247785
- };
247786
- }>, z$1.ZodObject<{
247787
- type: z$1.ZodLiteral<"ProjectContextArchived">;
247788
- payload: z$1.ZodObject<{
247789
- contextId: z$1.ZodNumber;
247755
+ npmRegistry: z$1.ZodOptional<z$1.ZodObject<{
247756
+ registryType: z$1.ZodEnum<["NPMJS", "GitHub", "AzureDevOps", "Artifactory", "Custom"]>;
247757
+ registryUrl: z$1.ZodString;
247758
+ customRegistryUrl: z$1.ZodOptional<z$1.ZodString>;
247759
+ proxyUrl: z$1.ZodString;
247760
+ authType: z$1.ZodEnum<["Basic", "Bearer", "None", "Custom"]>;
247761
+ accessToken: z$1.ZodOptional<z$1.ZodLiteral<string>>;
247762
+ username: z$1.ZodOptional<z$1.ZodString>;
247763
+ password: z$1.ZodOptional<z$1.ZodLiteral<string>>;
247764
+ enabledScopes: z$1.ZodArray<z$1.ZodString, "many">;
247765
+ bypassProxy: z$1.ZodBoolean;
247790
247766
  }, "strip", z$1.ZodTypeAny, {
247791
- contextId: number;
247767
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
247768
+ registryUrl: string;
247769
+ proxyUrl: string;
247770
+ authType: "Custom" | "None" | "Basic" | "Bearer";
247771
+ enabledScopes: string[];
247772
+ bypassProxy: boolean;
247773
+ accessToken?: string | undefined;
247774
+ username?: string | undefined;
247775
+ customRegistryUrl?: string | undefined;
247776
+ password?: string | undefined;
247792
247777
  }, {
247793
- contextId: number;
247794
- }>;
247795
- }, "strip", z$1.ZodTypeAny, {
247796
- type: "ProjectContextArchived";
247797
- payload: {
247798
- contextId: number;
247799
- };
247800
- }, {
247801
- type: "ProjectContextArchived";
247802
- payload: {
247803
- contextId: number;
247804
- };
247805
- }>]>, z$1.ZodObject<{
247806
- id: z$1.ZodString;
247807
- projectId: z$1.ZodString;
247808
- userId: z$1.ZodString;
247809
- createdAt: z$1.ZodDate;
247810
- updatedAt: z$1.ZodDate;
247778
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
247779
+ registryUrl: string;
247780
+ proxyUrl: string;
247781
+ authType: "Custom" | "None" | "Basic" | "Bearer";
247782
+ enabledScopes: string[];
247783
+ bypassProxy: boolean;
247784
+ accessToken?: string | undefined;
247785
+ username?: string | undefined;
247786
+ customRegistryUrl?: string | undefined;
247787
+ password?: string | undefined;
247788
+ }>>;
247789
+ aiFeaturesEnabled: z$1.ZodDefault<z$1.ZodBoolean>;
247790
+ aiAskFeaturesEnabled: z$1.ZodDefault<z$1.ZodBoolean>;
247791
+ aiCustomInstruction: z$1.ZodOptional<z$1.ZodString>;
247811
247792
  }, "strip", z$1.ZodTypeAny, {
247812
247793
  id: string;
247813
- createdAt: Date;
247814
- updatedAt: Date;
247815
- userId: string;
247816
- projectId: string;
247817
- }, {
247818
- id: string;
247819
- createdAt: Date;
247820
- updatedAt: Date;
247821
- userId: string;
247822
- projectId: string;
247823
- }>>, "many">;
247824
- }, "strip", z$1.ZodTypeAny, {
247825
- events: (({
247826
- type: "IterationCreated";
247827
- payload: {
247828
- iterationId: string;
247829
- featureId: string;
247830
- iterationName: string;
247831
- };
247832
- } | {
247833
- type: "IterationBookmarked";
247834
- payload: {
247835
- iterationId: string;
247836
- featureId: string;
247837
- iterationName: string;
247838
- };
247839
- } | {
247840
- type: "FeatureCreated";
247841
- payload: {
247842
- name: string;
247843
- featureId: string;
247844
- description?: string | undefined;
247845
- };
247846
- } | {
247847
- type: "FeatureDeleted";
247848
- payload: {
247849
- name: string;
247850
- featureId: string;
247851
- };
247852
- } | {
247853
- type: "DocumentCreated";
247854
- payload: {
247855
- title: string;
247856
- documentId: string;
247857
- sectionId?: string | undefined;
247858
- };
247859
- } | {
247860
- type: "DocumentDeleted";
247861
- payload: {
247862
- title: string;
247863
- documentId: string;
247864
- };
247865
- } | {
247866
- type: "ProjectCreated";
247867
- payload: {
247868
- name: string;
247869
- description?: string | undefined;
247870
- };
247871
- } | {
247872
- type: "ProjectArchived";
247873
- payload: {
247874
- name: string;
247875
- };
247876
- } | {
247877
- type: "IterationPromoted";
247878
- payload: {
247879
- iterationId: string;
247880
- featureId: string;
247881
- iterationName: string;
247882
- };
247883
- } | {
247884
- type: "ProjectContextCreated";
247885
- payload: {
247794
+ profile: {
247886
247795
  name: string;
247887
- contextId: number;
247888
- description?: string | undefined;
247796
+ color: string;
247797
+ handle: string;
247798
+ avatar?: string | undefined;
247799
+ billingDetails?: {
247800
+ address?: {
247801
+ state?: string | undefined;
247802
+ street1?: string | undefined;
247803
+ street2?: string | undefined;
247804
+ city?: string | undefined;
247805
+ postal?: string | undefined;
247806
+ country?: string | undefined;
247807
+ } | undefined;
247808
+ email?: string | undefined;
247809
+ notes?: string | undefined;
247810
+ companyName?: string | undefined;
247811
+ companyId?: string | undefined;
247812
+ vat?: string | undefined;
247813
+ poNumber?: string | undefined;
247814
+ } | undefined;
247889
247815
  };
247890
- } | {
247891
- type: "ProjectContextArchived";
247892
- payload: {
247893
- contextId: number;
247816
+ subscription: {
247817
+ product: "company" | "enterprise" | "free" | "team" | "pro";
247818
+ seats: number;
247819
+ seatLimit: number;
247820
+ planPriceId: string;
247821
+ planInterval: "daily" | "monthly" | "weekly" | "yearly";
247822
+ status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
247823
+ card?: {
247824
+ name?: string | null | undefined;
247825
+ cardId?: string | null | undefined;
247826
+ last4?: string | null | undefined;
247827
+ expiryMonth?: string | null | undefined;
247828
+ expiryYear?: string | null | undefined;
247829
+ brand?: string | null | undefined;
247830
+ } | undefined;
247831
+ monthlyCreditGrantAnchor?: string | undefined;
247832
+ monthlyCreditGrantAmount?: number | undefined;
247833
+ builderSeatLimit?: number | undefined;
247834
+ fullSeatLimit?: number | undefined;
247835
+ builderSeats?: number | undefined;
247836
+ fullSeats?: number | undefined;
247837
+ subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
247838
+ internalStatus?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
247839
+ stripeSubscriptionId?: string | undefined;
247840
+ stripeCustomerId?: string | undefined;
247841
+ currentPeriodStart?: string | undefined;
247842
+ currentPeriodEnd?: string | undefined;
247843
+ cancelAt?: string | undefined;
247844
+ fullSeatPriceId?: string | undefined;
247845
+ builderSeatPriceId?: string | undefined;
247846
+ subscriptionStatusUpdatedAt?: string | undefined;
247894
247847
  };
247895
- }) & {
247848
+ aiFeaturesEnabled: boolean;
247849
+ aiAskFeaturesEnabled: boolean;
247850
+ npmRegistry?: {
247851
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
247852
+ registryUrl: string;
247853
+ proxyUrl: string;
247854
+ authType: "Custom" | "None" | "Basic" | "Bearer";
247855
+ enabledScopes: string[];
247856
+ bypassProxy: boolean;
247857
+ accessToken?: string | undefined;
247858
+ username?: string | undefined;
247859
+ customRegistryUrl?: string | undefined;
247860
+ password?: string | undefined;
247861
+ } | undefined;
247862
+ aiCustomInstruction?: string | undefined;
247863
+ }, {
247896
247864
  id: string;
247897
- createdAt: Date;
247898
- updatedAt: Date;
247899
- userId: string;
247900
- projectId: string;
247901
- })[];
247902
- }, {
247903
- events: (({
247904
- type: "IterationCreated";
247905
- payload: {
247906
- iterationId: string;
247907
- featureId: string;
247908
- iterationName: string;
247909
- };
247910
- } | {
247911
- type: "IterationBookmarked";
247912
- payload: {
247913
- iterationId: string;
247914
- featureId: string;
247915
- iterationName: string;
247916
- };
247917
- } | {
247918
- type: "FeatureCreated";
247919
- payload: {
247920
- name: string;
247921
- featureId: string;
247922
- description?: string | undefined;
247923
- };
247924
- } | {
247925
- type: "FeatureDeleted";
247926
- payload: {
247865
+ profile: {
247927
247866
  name: string;
247928
- featureId: string;
247929
- };
247930
- } | {
247931
- type: "DocumentCreated";
247932
- payload: {
247933
- title: string;
247934
- documentId: string;
247935
- sectionId?: string | undefined;
247936
- };
247937
- } | {
247938
- type: "DocumentDeleted";
247939
- payload: {
247940
- title: string;
247941
- documentId: string;
247867
+ color: string;
247868
+ handle: string;
247869
+ avatar?: string | null | undefined;
247870
+ billingDetails?: {
247871
+ address?: {
247872
+ state?: string | null | undefined;
247873
+ street1?: string | null | undefined;
247874
+ street2?: string | null | undefined;
247875
+ city?: string | null | undefined;
247876
+ postal?: string | null | undefined;
247877
+ country?: string | null | undefined;
247878
+ } | null | undefined;
247879
+ email?: string | null | undefined;
247880
+ notes?: string | null | undefined;
247881
+ companyName?: string | null | undefined;
247882
+ companyId?: string | null | undefined;
247883
+ vat?: string | null | undefined;
247884
+ poNumber?: string | null | undefined;
247885
+ } | null | undefined;
247942
247886
  };
247943
- } | {
247944
- type: "ProjectCreated";
247945
- payload: {
247946
- name: string;
247947
- description?: string | undefined;
247887
+ subscription: {
247888
+ product: "company" | "enterprise" | "free" | "team" | "pro";
247889
+ seats: number;
247890
+ seatLimit: number;
247891
+ planPriceId: string;
247892
+ planInterval: "daily" | "monthly" | "weekly" | "yearly";
247893
+ status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
247894
+ card?: {
247895
+ name?: string | null | undefined;
247896
+ cardId?: string | null | undefined;
247897
+ last4?: string | null | undefined;
247898
+ expiryMonth?: string | null | undefined;
247899
+ expiryYear?: string | null | undefined;
247900
+ brand?: string | null | undefined;
247901
+ } | null | undefined;
247902
+ monthlyCreditGrantAnchor?: string | null | undefined;
247903
+ monthlyCreditGrantAmount?: number | null | undefined;
247904
+ builderSeatLimit?: number | undefined;
247905
+ fullSeatLimit?: number | undefined;
247906
+ builderSeats?: number | undefined;
247907
+ fullSeats?: number | undefined;
247908
+ subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
247909
+ internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
247910
+ stripeSubscriptionId?: string | null | undefined;
247911
+ stripeCustomerId?: string | null | undefined;
247912
+ currentPeriodStart?: string | null | undefined;
247913
+ currentPeriodEnd?: string | null | undefined;
247914
+ cancelAt?: string | null | undefined;
247915
+ fullSeatPriceId?: string | null | undefined;
247916
+ builderSeatPriceId?: string | null | undefined;
247917
+ subscriptionStatusUpdatedAt?: string | null | undefined;
247948
247918
  };
247949
- } | {
247950
- type: "ProjectArchived";
247951
- payload: {
247919
+ npmRegistry?: {
247920
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
247921
+ registryUrl: string;
247922
+ proxyUrl: string;
247923
+ authType: "Custom" | "None" | "Basic" | "Bearer";
247924
+ enabledScopes: string[];
247925
+ bypassProxy: boolean;
247926
+ accessToken?: string | undefined;
247927
+ username?: string | undefined;
247928
+ customRegistryUrl?: string | undefined;
247929
+ password?: string | undefined;
247930
+ } | undefined;
247931
+ aiFeaturesEnabled?: boolean | undefined;
247932
+ aiAskFeaturesEnabled?: boolean | undefined;
247933
+ aiCustomInstruction?: string | undefined;
247934
+ }>;
247935
+ }, "strip", z$1.ZodTypeAny, {
247936
+ workspace: {
247937
+ id: string;
247938
+ profile: {
247952
247939
  name: string;
247940
+ color: string;
247941
+ handle: string;
247942
+ avatar?: string | undefined;
247943
+ billingDetails?: {
247944
+ address?: {
247945
+ state?: string | undefined;
247946
+ street1?: string | undefined;
247947
+ street2?: string | undefined;
247948
+ city?: string | undefined;
247949
+ postal?: string | undefined;
247950
+ country?: string | undefined;
247951
+ } | undefined;
247952
+ email?: string | undefined;
247953
+ notes?: string | undefined;
247954
+ companyName?: string | undefined;
247955
+ companyId?: string | undefined;
247956
+ vat?: string | undefined;
247957
+ poNumber?: string | undefined;
247958
+ } | undefined;
247953
247959
  };
247954
- } | {
247955
- type: "IterationPromoted";
247956
- payload: {
247957
- iterationId: string;
247958
- featureId: string;
247959
- iterationName: string;
247960
+ subscription: {
247961
+ product: "company" | "enterprise" | "free" | "team" | "pro";
247962
+ seats: number;
247963
+ seatLimit: number;
247964
+ planPriceId: string;
247965
+ planInterval: "daily" | "monthly" | "weekly" | "yearly";
247966
+ status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
247967
+ card?: {
247968
+ name?: string | null | undefined;
247969
+ cardId?: string | null | undefined;
247970
+ last4?: string | null | undefined;
247971
+ expiryMonth?: string | null | undefined;
247972
+ expiryYear?: string | null | undefined;
247973
+ brand?: string | null | undefined;
247974
+ } | undefined;
247975
+ monthlyCreditGrantAnchor?: string | undefined;
247976
+ monthlyCreditGrantAmount?: number | undefined;
247977
+ builderSeatLimit?: number | undefined;
247978
+ fullSeatLimit?: number | undefined;
247979
+ builderSeats?: number | undefined;
247980
+ fullSeats?: number | undefined;
247981
+ subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
247982
+ internalStatus?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
247983
+ stripeSubscriptionId?: string | undefined;
247984
+ stripeCustomerId?: string | undefined;
247985
+ currentPeriodStart?: string | undefined;
247986
+ currentPeriodEnd?: string | undefined;
247987
+ cancelAt?: string | undefined;
247988
+ fullSeatPriceId?: string | undefined;
247989
+ builderSeatPriceId?: string | undefined;
247990
+ subscriptionStatusUpdatedAt?: string | undefined;
247960
247991
  };
247961
- } | {
247962
- type: "ProjectContextCreated";
247963
- payload: {
247992
+ aiFeaturesEnabled: boolean;
247993
+ aiAskFeaturesEnabled: boolean;
247994
+ npmRegistry?: {
247995
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
247996
+ registryUrl: string;
247997
+ proxyUrl: string;
247998
+ authType: "Custom" | "None" | "Basic" | "Bearer";
247999
+ enabledScopes: string[];
248000
+ bypassProxy: boolean;
248001
+ accessToken?: string | undefined;
248002
+ username?: string | undefined;
248003
+ customRegistryUrl?: string | undefined;
248004
+ password?: string | undefined;
248005
+ } | undefined;
248006
+ aiCustomInstruction?: string | undefined;
248007
+ };
248008
+ }, {
248009
+ workspace: {
248010
+ id: string;
248011
+ profile: {
247964
248012
  name: string;
247965
- contextId: number;
247966
- description?: string | undefined;
248013
+ color: string;
248014
+ handle: string;
248015
+ avatar?: string | null | undefined;
248016
+ billingDetails?: {
248017
+ address?: {
248018
+ state?: string | null | undefined;
248019
+ street1?: string | null | undefined;
248020
+ street2?: string | null | undefined;
248021
+ city?: string | null | undefined;
248022
+ postal?: string | null | undefined;
248023
+ country?: string | null | undefined;
248024
+ } | null | undefined;
248025
+ email?: string | null | undefined;
248026
+ notes?: string | null | undefined;
248027
+ companyName?: string | null | undefined;
248028
+ companyId?: string | null | undefined;
248029
+ vat?: string | null | undefined;
248030
+ poNumber?: string | null | undefined;
248031
+ } | null | undefined;
247967
248032
  };
247968
- } | {
247969
- type: "ProjectContextArchived";
247970
- payload: {
247971
- contextId: number;
248033
+ subscription: {
248034
+ product: "company" | "enterprise" | "free" | "team" | "pro";
248035
+ seats: number;
248036
+ seatLimit: number;
248037
+ planPriceId: string;
248038
+ planInterval: "daily" | "monthly" | "weekly" | "yearly";
248039
+ status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
248040
+ card?: {
248041
+ name?: string | null | undefined;
248042
+ cardId?: string | null | undefined;
248043
+ last4?: string | null | undefined;
248044
+ expiryMonth?: string | null | undefined;
248045
+ expiryYear?: string | null | undefined;
248046
+ brand?: string | null | undefined;
248047
+ } | null | undefined;
248048
+ monthlyCreditGrantAnchor?: string | null | undefined;
248049
+ monthlyCreditGrantAmount?: number | null | undefined;
248050
+ builderSeatLimit?: number | undefined;
248051
+ fullSeatLimit?: number | undefined;
248052
+ builderSeats?: number | undefined;
248053
+ fullSeats?: number | undefined;
248054
+ subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
248055
+ internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
248056
+ stripeSubscriptionId?: string | null | undefined;
248057
+ stripeCustomerId?: string | null | undefined;
248058
+ currentPeriodStart?: string | null | undefined;
248059
+ currentPeriodEnd?: string | null | undefined;
248060
+ cancelAt?: string | null | undefined;
248061
+ fullSeatPriceId?: string | null | undefined;
248062
+ builderSeatPriceId?: string | null | undefined;
248063
+ subscriptionStatusUpdatedAt?: string | null | undefined;
247972
248064
  };
247973
- }) & {
247974
- id: string;
247975
- createdAt: Date;
247976
- updatedAt: Date;
247977
- userId: string;
247978
- projectId: string;
247979
- })[];
247980
- }>;
247981
- type DTOTrailEventListResponse = z$1.infer<typeof DTOTrailEventListResponse>;
247982
- declare const DTOTrailEventType: z$1.ZodEnum<["IterationCreated", "IterationBookmarked", "FeatureCreated", "FeatureDeleted", "DocumentCreated", "DocumentDeleted", "ProjectCreated", "ProjectArchived", "IterationPromoted", "ProjectContextCreated", "ProjectContextArchived"]>;
247983
- type DTOTrailEventType = z$1.infer<typeof DTOTrailEventType>;
247984
- declare const DTOTrailEventCreate: z$1.ZodIntersection<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
247985
- type: z$1.ZodLiteral<"IterationCreated">;
247986
- payload: z$1.ZodObject<{
247987
- iterationName: z$1.ZodString;
247988
- iterationId: z$1.ZodString;
247989
- featureId: z$1.ZodString;
247990
- }, "strip", z$1.ZodTypeAny, {
247991
- iterationId: string;
247992
- featureId: string;
247993
- iterationName: string;
247994
- }, {
247995
- iterationId: string;
247996
- featureId: string;
247997
- iterationName: string;
247998
- }>;
247999
- }, "strip", z$1.ZodTypeAny, {
248000
- type: "IterationCreated";
248001
- payload: {
248002
- iterationId: string;
248003
- featureId: string;
248004
- iterationName: string;
248005
- };
248006
- }, {
248007
- type: "IterationCreated";
248008
- payload: {
248009
- iterationId: string;
248010
- featureId: string;
248011
- iterationName: string;
248012
- };
248013
- }>, z$1.ZodObject<{
248014
- type: z$1.ZodLiteral<"IterationBookmarked">;
248015
- payload: z$1.ZodObject<{
248016
- iterationId: z$1.ZodString;
248017
- featureId: z$1.ZodString;
248018
- iterationName: z$1.ZodString;
248019
- }, "strip", z$1.ZodTypeAny, {
248020
- iterationId: string;
248021
- featureId: string;
248022
- iterationName: string;
248023
- }, {
248024
- iterationId: string;
248025
- featureId: string;
248026
- iterationName: string;
248027
- }>;
248028
- }, "strip", z$1.ZodTypeAny, {
248029
- type: "IterationBookmarked";
248030
- payload: {
248031
- iterationId: string;
248032
- featureId: string;
248033
- iterationName: string;
248034
- };
248035
- }, {
248036
- type: "IterationBookmarked";
248037
- payload: {
248038
- iterationId: string;
248039
- featureId: string;
248040
- iterationName: string;
248041
- };
248042
- }>, z$1.ZodObject<{
248043
- type: z$1.ZodLiteral<"FeatureCreated">;
248044
- payload: z$1.ZodObject<{
248045
- featureId: z$1.ZodString;
248046
- name: z$1.ZodString;
248047
- description: z$1.ZodOptional<z$1.ZodString>;
248048
- }, "strip", z$1.ZodTypeAny, {
248049
- name: string;
248050
- featureId: string;
248051
- description?: string | undefined;
248052
- }, {
248053
- name: string;
248054
- featureId: string;
248055
- description?: string | undefined;
248056
- }>;
248057
- }, "strip", z$1.ZodTypeAny, {
248058
- type: "FeatureCreated";
248059
- payload: {
248060
- name: string;
248061
- featureId: string;
248062
- description?: string | undefined;
248063
- };
248064
- }, {
248065
- type: "FeatureCreated";
248066
- payload: {
248067
- name: string;
248068
- featureId: string;
248069
- description?: string | undefined;
248070
- };
248071
- }>, z$1.ZodObject<{
248072
- type: z$1.ZodLiteral<"FeatureDeleted">;
248073
- payload: z$1.ZodObject<{
248074
- featureId: z$1.ZodString;
248075
- name: z$1.ZodString;
248076
- }, "strip", z$1.ZodTypeAny, {
248077
- name: string;
248078
- featureId: string;
248079
- }, {
248080
- name: string;
248081
- featureId: string;
248082
- }>;
248083
- }, "strip", z$1.ZodTypeAny, {
248084
- type: "FeatureDeleted";
248085
- payload: {
248086
- name: string;
248087
- featureId: string;
248088
- };
248089
- }, {
248090
- type: "FeatureDeleted";
248091
- payload: {
248092
- name: string;
248093
- featureId: string;
248094
- };
248095
- }>, z$1.ZodObject<{
248096
- type: z$1.ZodLiteral<"DocumentCreated">;
248097
- payload: z$1.ZodObject<{
248098
- documentId: z$1.ZodString;
248099
- title: z$1.ZodString;
248100
- sectionId: z$1.ZodOptional<z$1.ZodString>;
248101
- }, "strip", z$1.ZodTypeAny, {
248102
- title: string;
248103
- documentId: string;
248104
- sectionId?: string | undefined;
248105
- }, {
248106
- title: string;
248107
- documentId: string;
248108
- sectionId?: string | undefined;
248109
- }>;
248110
- }, "strip", z$1.ZodTypeAny, {
248111
- type: "DocumentCreated";
248112
- payload: {
248113
- title: string;
248114
- documentId: string;
248115
- sectionId?: string | undefined;
248116
- };
248117
- }, {
248118
- type: "DocumentCreated";
248119
- payload: {
248120
- title: string;
248121
- documentId: string;
248122
- sectionId?: string | undefined;
248123
- };
248124
- }>, z$1.ZodObject<{
248125
- type: z$1.ZodLiteral<"DocumentDeleted">;
248126
- payload: z$1.ZodObject<{
248127
- documentId: z$1.ZodString;
248128
- title: z$1.ZodString;
248129
- }, "strip", z$1.ZodTypeAny, {
248130
- title: string;
248131
- documentId: string;
248132
- }, {
248133
- title: string;
248134
- documentId: string;
248135
- }>;
248136
- }, "strip", z$1.ZodTypeAny, {
248137
- type: "DocumentDeleted";
248138
- payload: {
248139
- title: string;
248140
- documentId: string;
248141
- };
248142
- }, {
248143
- type: "DocumentDeleted";
248144
- payload: {
248145
- title: string;
248146
- documentId: string;
248147
- };
248148
- }>, z$1.ZodObject<{
248149
- type: z$1.ZodLiteral<"ProjectCreated">;
248150
- payload: z$1.ZodObject<{
248151
- name: z$1.ZodString;
248152
- description: z$1.ZodOptional<z$1.ZodString>;
248153
- }, "strip", z$1.ZodTypeAny, {
248154
- name: string;
248155
- description?: string | undefined;
248156
- }, {
248157
- name: string;
248158
- description?: string | undefined;
248159
- }>;
248160
- }, "strip", z$1.ZodTypeAny, {
248161
- type: "ProjectCreated";
248162
- payload: {
248163
- name: string;
248164
- description?: string | undefined;
248165
- };
248166
- }, {
248167
- type: "ProjectCreated";
248168
- payload: {
248169
- name: string;
248170
- description?: string | undefined;
248171
- };
248172
- }>, z$1.ZodObject<{
248173
- type: z$1.ZodLiteral<"ProjectArchived">;
248174
- payload: z$1.ZodObject<{
248175
- name: z$1.ZodString;
248176
- }, "strip", z$1.ZodTypeAny, {
248177
- name: string;
248178
- }, {
248179
- name: string;
248180
- }>;
248181
- }, "strip", z$1.ZodTypeAny, {
248182
- type: "ProjectArchived";
248183
- payload: {
248184
- name: string;
248185
- };
248186
- }, {
248187
- type: "ProjectArchived";
248188
- payload: {
248189
- name: string;
248190
- };
248191
- }>, z$1.ZodObject<{
248192
- type: z$1.ZodLiteral<"IterationPromoted">;
248193
- payload: z$1.ZodObject<{
248194
- iterationId: z$1.ZodString;
248195
- featureId: z$1.ZodString;
248196
- iterationName: z$1.ZodString;
248197
- }, "strip", z$1.ZodTypeAny, {
248198
- iterationId: string;
248199
- featureId: string;
248200
- iterationName: string;
248201
- }, {
248202
- iterationId: string;
248203
- featureId: string;
248204
- iterationName: string;
248205
- }>;
248206
- }, "strip", z$1.ZodTypeAny, {
248207
- type: "IterationPromoted";
248208
- payload: {
248209
- iterationId: string;
248210
- featureId: string;
248211
- iterationName: string;
248212
- };
248213
- }, {
248214
- type: "IterationPromoted";
248215
- payload: {
248216
- iterationId: string;
248217
- featureId: string;
248218
- iterationName: string;
248219
- };
248220
- }>, z$1.ZodObject<{
248221
- type: z$1.ZodLiteral<"ProjectContextCreated">;
248222
- payload: z$1.ZodObject<{
248223
- contextId: z$1.ZodNumber;
248224
- name: z$1.ZodString;
248225
- description: z$1.ZodOptional<z$1.ZodString>;
248226
- }, "strip", z$1.ZodTypeAny, {
248227
- name: string;
248228
- contextId: number;
248229
- description?: string | undefined;
248230
- }, {
248231
- name: string;
248232
- contextId: number;
248233
- description?: string | undefined;
248234
- }>;
248235
- }, "strip", z$1.ZodTypeAny, {
248236
- type: "ProjectContextCreated";
248237
- payload: {
248238
- name: string;
248239
- contextId: number;
248240
- description?: string | undefined;
248241
- };
248242
- }, {
248243
- type: "ProjectContextCreated";
248244
- payload: {
248245
- name: string;
248246
- contextId: number;
248247
- description?: string | undefined;
248248
- };
248249
- }>, z$1.ZodObject<{
248250
- type: z$1.ZodLiteral<"ProjectContextArchived">;
248251
- payload: z$1.ZodObject<{
248252
- contextId: z$1.ZodNumber;
248253
- }, "strip", z$1.ZodTypeAny, {
248254
- contextId: number;
248255
- }, {
248256
- contextId: number;
248257
- }>;
248258
- }, "strip", z$1.ZodTypeAny, {
248259
- type: "ProjectContextArchived";
248260
- payload: {
248261
- contextId: number;
248262
- };
248263
- }, {
248264
- type: "ProjectContextArchived";
248265
- payload: {
248266
- contextId: number;
248065
+ npmRegistry?: {
248066
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
248067
+ registryUrl: string;
248068
+ proxyUrl: string;
248069
+ authType: "Custom" | "None" | "Basic" | "Bearer";
248070
+ enabledScopes: string[];
248071
+ bypassProxy: boolean;
248072
+ accessToken?: string | undefined;
248073
+ username?: string | undefined;
248074
+ customRegistryUrl?: string | undefined;
248075
+ password?: string | undefined;
248076
+ } | undefined;
248077
+ aiFeaturesEnabled?: boolean | undefined;
248078
+ aiAskFeaturesEnabled?: boolean | undefined;
248079
+ aiCustomInstruction?: string | undefined;
248267
248080
  };
248268
- }>]>, z$1.ZodObject<Omit<{
248269
- id: z$1.ZodString;
248270
- projectId: z$1.ZodString;
248271
- userId: z$1.ZodString;
248272
- createdAt: z$1.ZodDate;
248273
- updatedAt: z$1.ZodDate;
248274
- }, "id" | "createdAt" | "updatedAt">, "strip", z$1.ZodTypeAny, {
248275
- userId: string;
248276
- projectId: string;
248277
- }, {
248278
- userId: string;
248279
- projectId: string;
248280
- }>>;
248281
- type DTOTrailEventCreate = z$1.infer<typeof DTOTrailEventCreate>;
248081
+ }>;
248082
+ type DTOWorkspaceResponse = z$1.infer<typeof DTOWorkspaceResponse>;
248282
248083
 
248283
248084
  type PageAnalyticsInput = {
248284
248085
  pagePersistentId: string;
@@ -256179,7 +255980,7 @@ declare class FigmaFrameStructuresEndpoint {
256179
255980
  }>;
256180
255981
  }
256181
255982
 
256182
- declare class FilesEndpoint {
255983
+ declare class DesignSystemFilesEndpoint {
256183
255984
  private readonly requestExecutor;
256184
255985
  constructor(requestExecutor: RequestExecutor);
256185
255986
  upload(designSystemId: string, versionId: string, body: DTOFileUploadPayload): Promise<{
@@ -257953,7 +257754,7 @@ declare class DesignSystemVersionsEndpoint {
257953
257754
  readonly designSystemComponents: DesignSystemComponentEndpoint;
257954
257755
  readonly documentation: DocumentationEndpoint;
257955
257756
  readonly codeComponents: CodeComponentsEndpoint;
257956
- readonly files: FilesEndpoint;
257757
+ readonly files: DesignSystemFilesEndpoint;
257957
257758
  constructor(requestExecutor: RequestExecutor);
257958
257759
  list(dsId: string): Promise<{
257959
257760
  designSystemVersions: {
@@ -265187,6 +264988,51 @@ declare class WorkspacesEndpoint {
265187
264988
  }>;
265188
264989
  }
265189
264990
 
264991
+ declare class FilesEndpoint {
264992
+ private readonly requestExecutor;
264993
+ constructor(requestExecutor: RequestExecutor);
264994
+ upload(body: DTOFileUploadBulkPayload): Promise<{
264995
+ files: {
264996
+ id: string;
264997
+ name: string;
264998
+ url: string;
264999
+ size: number;
265000
+ deduplicationKey: string;
265001
+ storagePath: string;
265002
+ source?: {
265003
+ type: "UserUpload";
265004
+ userId: string;
265005
+ } | {
265006
+ type: "Figma";
265007
+ renderMode: "Image" | "HTML";
265008
+ } | undefined;
265009
+ pendingUpload?: boolean | undefined;
265010
+ }[];
265011
+ uploadUrls: {
265012
+ fileId: string;
265013
+ uploadUrl: string;
265014
+ }[];
265015
+ }>;
265016
+ finalizeUpload(body: DTOFileFinalizeBulkPayload): Promise<{
265017
+ files: {
265018
+ id: string;
265019
+ name: string;
265020
+ url: string;
265021
+ size: number;
265022
+ deduplicationKey: string;
265023
+ storagePath: string;
265024
+ source?: {
265025
+ type: "UserUpload";
265026
+ userId: string;
265027
+ } | {
265028
+ type: "Figma";
265029
+ renderMode: "Image" | "HTML";
265030
+ } | undefined;
265031
+ pendingUpload?: boolean | undefined;
265032
+ }[];
265033
+ }>;
265034
+ }
265035
+
265190
265036
  declare class LiveblocksEndpoint {
265191
265037
  private readonly requestExecutor;
265192
265038
  constructor(requestExecutor: RequestExecutor);
@@ -265195,6 +265041,112 @@ declare class LiveblocksEndpoint {
265195
265041
  }>;
265196
265042
  }
265197
265043
 
265044
+ declare class ThreadsEndpoint {
265045
+ private readonly requestExecutor;
265046
+ constructor(requestExecutor: RequestExecutor);
265047
+ listMessages(threadId: string): Promise<{
265048
+ messages: {
265049
+ id: string;
265050
+ createdAt: string;
265051
+ sender: {
265052
+ type: "User";
265053
+ userId: string;
265054
+ } | {
265055
+ type: "Agent";
265056
+ agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
265057
+ } | {
265058
+ type: "System";
265059
+ onBehalfOfUserId: string;
265060
+ };
265061
+ body: string;
265062
+ threadId: string;
265063
+ updatedAt?: string | undefined;
265064
+ isPrompt?: boolean | undefined;
265065
+ startsNewThread?: boolean | undefined;
265066
+ parentMessageId?: string | undefined;
265067
+ agentResponseTrackerId?: string | null | undefined;
265068
+ attachments?: {
265069
+ files?: {
265070
+ id: string;
265071
+ url: string;
265072
+ source?: {
265073
+ type: "UserUpload";
265074
+ userId: string;
265075
+ } | {
265076
+ type: "Figma";
265077
+ renderMode: "Image" | "HTML";
265078
+ } | undefined;
265079
+ }[] | undefined;
265080
+ iterationId?: string | undefined;
265081
+ } | undefined;
265082
+ replyToMessageId?: string | undefined;
265083
+ }[];
265084
+ reactions: {
265085
+ createdAt: string;
265086
+ emoji: string;
265087
+ userId: string;
265088
+ messageId: string;
265089
+ }[];
265090
+ lastSeenMessageId?: string | undefined;
265091
+ }>;
265092
+ postMessage(threadId: string, body: DTOThreadMessageCreateInput): Promise<{
265093
+ messages: {
265094
+ id: string;
265095
+ createdAt: string;
265096
+ sender: {
265097
+ type: "User";
265098
+ userId: string;
265099
+ } | {
265100
+ type: "Agent";
265101
+ agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
265102
+ } | {
265103
+ type: "System";
265104
+ onBehalfOfUserId: string;
265105
+ };
265106
+ body: string;
265107
+ threadId: string;
265108
+ updatedAt?: string | undefined;
265109
+ isPrompt?: boolean | undefined;
265110
+ startsNewThread?: boolean | undefined;
265111
+ parentMessageId?: string | undefined;
265112
+ agentResponseTrackerId?: string | null | undefined;
265113
+ attachments?: {
265114
+ files?: {
265115
+ id: string;
265116
+ url: string;
265117
+ source?: {
265118
+ type: "UserUpload";
265119
+ userId: string;
265120
+ } | {
265121
+ type: "Figma";
265122
+ renderMode: "Image" | "HTML";
265123
+ } | undefined;
265124
+ }[] | undefined;
265125
+ iterationId?: string | undefined;
265126
+ } | undefined;
265127
+ replyToMessageId?: string | undefined;
265128
+ }[];
265129
+ reactions: {
265130
+ createdAt: string;
265131
+ emoji: string;
265132
+ userId: string;
265133
+ messageId: string;
265134
+ }[];
265135
+ lastSeenMessageId?: string | undefined;
265136
+ }>;
265137
+ postReaction(threadId: string, body: DTOThreadReactionCreateInput): Promise<{
265138
+ reaction: {
265139
+ createdAt: string;
265140
+ emoji: string;
265141
+ userId: string;
265142
+ messageId: string;
265143
+ };
265144
+ }>;
265145
+ deleteReaction(threadId: string, body: DTOThreadReactionDeleteInput): Promise<{
265146
+ ok: true;
265147
+ }>;
265148
+ }
265149
+
265198
265150
  declare class UsersEndpoint {
265199
265151
  private readonly requestExecutor;
265200
265152
  constructor(requestExecutor: RequestExecutor);
@@ -265400,6 +265352,8 @@ declare class SupernovaApiClient {
265400
265352
  readonly codegen: CodegenEndpoint;
265401
265353
  readonly liveblocks: LiveblocksEndpoint;
265402
265354
  readonly forge: ForgeEndpoint;
265355
+ readonly files: FilesEndpoint;
265356
+ readonly threads: ThreadsEndpoint;
265403
265357
  constructor(config: SupernovaApiClientConfig);
265404
265358
  }
265405
265359
 
@@ -268142,4 +268096,4 @@ declare function isValidRedirectPath(path: string): {
268142
268096
  reason: ValidationErrorReason | undefined;
268143
268097
  };
268144
268098
 
268145
- export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventAgentResponseFinished, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkInput, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRemoveResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdateResponse, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemePreset, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy };
268099
+ export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRemoveResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdateResponse, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemePreset, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy };