@supernova-studio/client 1.47.1 → 1.47.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -69501,6 +69501,11 @@ declare const DTOFeatureIteration: z$1.ZodObject<{
69501
69501
  * - Timeout: the iteration hasn't been finished in a reasonable time, the iteration cannot be consumed
69502
69502
  */
69503
69503
  state: z$1.ZodOptional<z$1.ZodEnum<["InProgress", "Success", "Error", "Timeout"]>>;
69504
+ /**
69505
+ * Description of a sandbox error if there were any (such as during `npm i` or `npm run dev`).
69506
+ * To be used for "fix with AI"
69507
+ */
69508
+ errorDescription: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
69504
69509
  /**
69505
69510
  * URL of a static preview of the feature
69506
69511
  */
@@ -69591,6 +69596,7 @@ declare const DTOFeatureIteration: z$1.ZodObject<{
69591
69596
  thumbnailUrl?: string | undefined;
69592
69597
  baseIterationId?: string | undefined;
69593
69598
  isInProgress?: boolean | undefined;
69599
+ errorDescription?: string | null | undefined;
69594
69600
  staticPreviewUrl?: string | undefined;
69595
69601
  isBookmarked?: boolean | undefined;
69596
69602
  thumbnail?: {
@@ -69620,6 +69626,7 @@ declare const DTOFeatureIteration: z$1.ZodObject<{
69620
69626
  thumbnailUrl?: string | undefined;
69621
69627
  baseIterationId?: string | undefined;
69622
69628
  isInProgress?: boolean | undefined;
69629
+ errorDescription?: string | null | undefined;
69623
69630
  staticPreviewUrl?: string | undefined;
69624
69631
  isBookmarked?: boolean | undefined;
69625
69632
  thumbnail?: {
@@ -69665,23 +69672,56 @@ declare const DTOFeatureIterationTag: z$1.ZodObject<{
69665
69672
  messageId?: string | undefined;
69666
69673
  }>;
69667
69674
  type DTOFeatureIterationTag = z$1.infer<typeof DTOFeatureIterationTag>;
69675
+ declare const DTOSandboxError: z$1.ZodObject<{
69676
+ /** At what stage the error has occured */
69677
+ stage: z$1.ZodEnum<["PackageInstall", "HealthCheck", "Build", "Unknown"]>;
69678
+ /** We will use this in "fix with AI" */
69679
+ errorDescription: z$1.ZodString;
69680
+ }, "strip", z$1.ZodTypeAny, {
69681
+ errorDescription: string;
69682
+ stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
69683
+ }, {
69684
+ errorDescription: string;
69685
+ stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
69686
+ }>;
69687
+ type DTOSandboxError = z$1.infer<typeof DTOSandboxError>;
69668
69688
  declare const DTOFeatureSandbox: z$1.ZodObject<{
69669
69689
  id: z$1.ZodString;
69670
69690
  url: z$1.ZodString;
69671
69691
  parentMessageId: z$1.ZodOptional<z$1.ZodString>;
69672
69692
  currentIterationId: z$1.ZodString;
69673
69693
  expiresAt: z$1.ZodOptional<z$1.ZodString>;
69694
+ error: z$1.ZodOptional<z$1.ZodObject<{
69695
+ /** At what stage the error has occured */
69696
+ stage: z$1.ZodEnum<["PackageInstall", "HealthCheck", "Build", "Unknown"]>;
69697
+ /** We will use this in "fix with AI" */
69698
+ errorDescription: z$1.ZodString;
69699
+ }, "strip", z$1.ZodTypeAny, {
69700
+ errorDescription: string;
69701
+ stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
69702
+ }, {
69703
+ errorDescription: string;
69704
+ stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
69705
+ }>>;
69674
69706
  }, "strip", z$1.ZodTypeAny, {
69675
69707
  id: string;
69676
69708
  url: string;
69677
69709
  currentIterationId: string;
69678
69710
  expiresAt?: string | undefined;
69711
+ error?: {
69712
+ errorDescription: string;
69713
+ stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
69714
+ } | undefined;
69679
69715
  parentMessageId?: string | undefined;
69680
69716
  }, {
69681
69717
  id: string;
69682
69718
  url: string;
69683
69719
  currentIterationId: string;
69684
69720
  expiresAt?: string | undefined;
69721
+ error?: {
69722
+ errorDescription: string;
69723
+ stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
69724
+ } | undefined;
69685
69725
  parentMessageId?: string | undefined;
69686
69726
  }>;
69687
69727
  type DTOFeatureSandbox = z$1.infer<typeof DTOFeatureSandbox>;
@@ -69887,6 +69927,11 @@ declare const DTOFeatureIterationCreateInput: z$1.ZodObject<Pick<{
69887
69927
  * - Timeout: the iteration hasn't been finished in a reasonable time, the iteration cannot be consumed
69888
69928
  */
69889
69929
  state: z$1.ZodOptional<z$1.ZodEnum<["InProgress", "Success", "Error", "Timeout"]>>;
69930
+ /**
69931
+ * Description of a sandbox error if there were any (such as during `npm i` or `npm run dev`).
69932
+ * To be used for "fix with AI"
69933
+ */
69934
+ errorDescription: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
69890
69935
  /**
69891
69936
  * URL of a static preview of the feature
69892
69937
  */
@@ -70772,6 +70817,11 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
70772
70817
  * - Timeout: the iteration hasn't been finished in a reasonable time, the iteration cannot be consumed
70773
70818
  */
70774
70819
  state: z$1.ZodOptional<z$1.ZodEnum<["InProgress", "Success", "Error", "Timeout"]>>;
70820
+ /**
70821
+ * Description of a sandbox error if there were any (such as during `npm i` or `npm run dev`).
70822
+ * To be used for "fix with AI"
70823
+ */
70824
+ errorDescription: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
70775
70825
  /**
70776
70826
  * URL of a static preview of the feature
70777
70827
  */
@@ -70862,6 +70912,7 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
70862
70912
  thumbnailUrl?: string | undefined;
70863
70913
  baseIterationId?: string | undefined;
70864
70914
  isInProgress?: boolean | undefined;
70915
+ errorDescription?: string | null | undefined;
70865
70916
  staticPreviewUrl?: string | undefined;
70866
70917
  isBookmarked?: boolean | undefined;
70867
70918
  thumbnail?: {
@@ -70891,6 +70942,7 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
70891
70942
  thumbnailUrl?: string | undefined;
70892
70943
  baseIterationId?: string | undefined;
70893
70944
  isInProgress?: boolean | undefined;
70945
+ errorDescription?: string | null | undefined;
70894
70946
  staticPreviewUrl?: string | undefined;
70895
70947
  isBookmarked?: boolean | undefined;
70896
70948
  thumbnail?: {
@@ -70922,6 +70974,7 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
70922
70974
  thumbnailUrl?: string | undefined;
70923
70975
  baseIterationId?: string | undefined;
70924
70976
  isInProgress?: boolean | undefined;
70977
+ errorDescription?: string | null | undefined;
70925
70978
  staticPreviewUrl?: string | undefined;
70926
70979
  isBookmarked?: boolean | undefined;
70927
70980
  thumbnail?: {
@@ -70953,6 +71006,7 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
70953
71006
  thumbnailUrl?: string | undefined;
70954
71007
  baseIterationId?: string | undefined;
70955
71008
  isInProgress?: boolean | undefined;
71009
+ errorDescription?: string | null | undefined;
70956
71010
  staticPreviewUrl?: string | undefined;
70957
71011
  isBookmarked?: boolean | undefined;
70958
71012
  thumbnail?: {
@@ -71006,6 +71060,11 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
71006
71060
  * - Timeout: the iteration hasn't been finished in a reasonable time, the iteration cannot be consumed
71007
71061
  */
71008
71062
  state: z$1.ZodOptional<z$1.ZodEnum<["InProgress", "Success", "Error", "Timeout"]>>;
71063
+ /**
71064
+ * Description of a sandbox error if there were any (such as during `npm i` or `npm run dev`).
71065
+ * To be used for "fix with AI"
71066
+ */
71067
+ errorDescription: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
71009
71068
  /**
71010
71069
  * URL of a static preview of the feature
71011
71070
  */
@@ -71096,6 +71155,7 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
71096
71155
  thumbnailUrl?: string | undefined;
71097
71156
  baseIterationId?: string | undefined;
71098
71157
  isInProgress?: boolean | undefined;
71158
+ errorDescription?: string | null | undefined;
71099
71159
  staticPreviewUrl?: string | undefined;
71100
71160
  isBookmarked?: boolean | undefined;
71101
71161
  thumbnail?: {
@@ -71125,6 +71185,7 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
71125
71185
  thumbnailUrl?: string | undefined;
71126
71186
  baseIterationId?: string | undefined;
71127
71187
  isInProgress?: boolean | undefined;
71188
+ errorDescription?: string | null | undefined;
71128
71189
  staticPreviewUrl?: string | undefined;
71129
71190
  isBookmarked?: boolean | undefined;
71130
71191
  thumbnail?: {
@@ -71156,6 +71217,7 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
71156
71217
  thumbnailUrl?: string | undefined;
71157
71218
  baseIterationId?: string | undefined;
71158
71219
  isInProgress?: boolean | undefined;
71220
+ errorDescription?: string | null | undefined;
71159
71221
  staticPreviewUrl?: string | undefined;
71160
71222
  isBookmarked?: boolean | undefined;
71161
71223
  thumbnail?: {
@@ -71187,6 +71249,7 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
71187
71249
  thumbnailUrl?: string | undefined;
71188
71250
  baseIterationId?: string | undefined;
71189
71251
  isInProgress?: boolean | undefined;
71252
+ errorDescription?: string | null | undefined;
71190
71253
  staticPreviewUrl?: string | undefined;
71191
71254
  isBookmarked?: boolean | undefined;
71192
71255
  thumbnail?: {
@@ -82489,6 +82552,7 @@ declare const DTOForgeProjectActionFeatureCreate: z$1.ZodObject<{
82489
82552
  }>]>;
82490
82553
  body: z$1.ZodString;
82491
82554
  isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
82555
+ isRetry: z$1.ZodOptional<z$1.ZodBoolean>;
82492
82556
  startsNewThread: z$1.ZodOptional<z$1.ZodBoolean>;
82493
82557
  parentMessageId: z$1.ZodOptional<z$1.ZodString>;
82494
82558
  agentResponseTrackerId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
@@ -82827,6 +82891,7 @@ declare const DTOForgeProjectActionArtifactCreate: z$1.ZodObject<{
82827
82891
  }>]>;
82828
82892
  body: z$1.ZodString;
82829
82893
  isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
82894
+ isRetry: z$1.ZodOptional<z$1.ZodBoolean>;
82830
82895
  startsNewThread: z$1.ZodOptional<z$1.ZodBoolean>;
82831
82896
  parentMessageId: z$1.ZodOptional<z$1.ZodString>;
82832
82897
  agentResponseTrackerId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
@@ -83290,6 +83355,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
83290
83355
  }>]>;
83291
83356
  body: z$1.ZodString;
83292
83357
  isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
83358
+ isRetry: z$1.ZodOptional<z$1.ZodBoolean>;
83293
83359
  startsNewThread: z$1.ZodOptional<z$1.ZodBoolean>;
83294
83360
  parentMessageId: z$1.ZodOptional<z$1.ZodString>;
83295
83361
  agentResponseTrackerId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
@@ -83620,6 +83686,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
83620
83686
  }>]>;
83621
83687
  body: z$1.ZodString;
83622
83688
  isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
83689
+ isRetry: z$1.ZodOptional<z$1.ZodBoolean>;
83623
83690
  startsNewThread: z$1.ZodOptional<z$1.ZodBoolean>;
83624
83691
  parentMessageId: z$1.ZodOptional<z$1.ZodString>;
83625
83692
  agentResponseTrackerId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
@@ -84235,6 +84302,7 @@ declare const DTOForgeProjectArtifactCreateInput: z.ZodObject<{
84235
84302
  }>]>;
84236
84303
  body: z.ZodString;
84237
84304
  isPrompt: z.ZodOptional<z.ZodBoolean>;
84305
+ isRetry: z.ZodOptional<z.ZodBoolean>;
84238
84306
  startsNewThread: z.ZodOptional<z.ZodBoolean>;
84239
84307
  parentMessageId: z.ZodOptional<z.ZodString>;
84240
84308
  agentResponseTrackerId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -141536,6 +141604,7 @@ declare const DTOForgeProjectFeatureCreateInput: z$1.ZodObject<{
141536
141604
  }>]>;
141537
141605
  body: z$1.ZodString;
141538
141606
  isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
141607
+ isRetry: z$1.ZodOptional<z$1.ZodBoolean>;
141539
141608
  startsNewThread: z$1.ZodOptional<z$1.ZodBoolean>;
141540
141609
  parentMessageId: z$1.ZodOptional<z$1.ZodString>;
141541
141610
  agentResponseTrackerId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
@@ -178044,6 +178113,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
178044
178113
  }>]>;
178045
178114
  body: z.ZodString;
178046
178115
  isPrompt: z.ZodOptional<z.ZodBoolean>;
178116
+ isRetry: z.ZodOptional<z.ZodBoolean>;
178047
178117
  startsNewThread: z.ZodOptional<z.ZodBoolean>;
178048
178118
  parentMessageId: z.ZodOptional<z.ZodString>;
178049
178119
  agentResponseTrackerId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -178243,6 +178313,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
178243
178313
  }>]>;
178244
178314
  body: z.ZodString;
178245
178315
  isPrompt: z.ZodOptional<z.ZodBoolean>;
178316
+ isRetry: z.ZodOptional<z.ZodBoolean>;
178246
178317
  startsNewThread: z.ZodOptional<z.ZodBoolean>;
178247
178318
  parentMessageId: z.ZodOptional<z.ZodString>;
178248
178319
  agentResponseTrackerId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -178575,6 +178646,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
178575
178646
  }>]>;
178576
178647
  body: z.ZodString;
178577
178648
  isPrompt: z.ZodOptional<z.ZodBoolean>;
178649
+ isRetry: z.ZodOptional<z.ZodBoolean>;
178578
178650
  startsNewThread: z.ZodOptional<z.ZodBoolean>;
178579
178651
  parentMessageId: z.ZodOptional<z.ZodString>;
178580
178652
  agentResponseTrackerId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -178774,6 +178846,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
178774
178846
  }>]>;
178775
178847
  body: z.ZodString;
178776
178848
  isPrompt: z.ZodOptional<z.ZodBoolean>;
178849
+ isRetry: z.ZodOptional<z.ZodBoolean>;
178777
178850
  startsNewThread: z.ZodOptional<z.ZodBoolean>;
178778
178851
  parentMessageId: z.ZodOptional<z.ZodString>;
178779
178852
  agentResponseTrackerId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -224921,6 +224994,10 @@ declare const DTOThreadMessage: z$1.ZodObject<{
224921
224994
  * AI agent to generate a response and perform an action within the feature
224922
224995
  */
224923
224996
  isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
224997
+ /**
224998
+ * Indicates if the message is an attempt to retry agent message. Only available for agent messages.
224999
+ */
225000
+ isRetry: z$1.ZodOptional<z$1.ZodBoolean>;
224924
225001
  /**
224925
225002
  * Indicates if the sender requested agent to reply in a thread
224926
225003
  */
@@ -225059,6 +225136,7 @@ declare const DTOThreadMessage: z$1.ZodObject<{
225059
225136
  iterationId?: string | undefined;
225060
225137
  } | undefined;
225061
225138
  replyToMessageId?: string | undefined;
225139
+ isRetry?: boolean | undefined;
225062
225140
  promptMetadata?: Record<string, any> | undefined;
225063
225141
  }, {
225064
225142
  id: string;
@@ -225096,6 +225174,7 @@ declare const DTOThreadMessage: z$1.ZodObject<{
225096
225174
  iterationId?: string | undefined;
225097
225175
  } | undefined;
225098
225176
  replyToMessageId?: string | undefined;
225177
+ isRetry?: boolean | undefined;
225099
225178
  promptMetadata?: Record<string, any> | undefined;
225100
225179
  }>;
225101
225180
  type DTOThreadMessage = z$1.infer<typeof DTOThreadMessage>;
@@ -225219,6 +225298,14 @@ declare const DTOThreadMessageFinalizeInput: z$1.ZodObject<{
225219
225298
  promptState?: "Success" | "Error" | "Timeout" | undefined;
225220
225299
  }>;
225221
225300
  type DTOThreadMessageFinalizeInput = z$1.infer<typeof DTOThreadMessageFinalizeInput>;
225301
+ declare const DTOThreadMessageRetryInput: z$1.ZodObject<{
225302
+ agentMessageId: z$1.ZodString;
225303
+ }, "strip", z$1.ZodTypeAny, {
225304
+ agentMessageId: string;
225305
+ }, {
225306
+ agentMessageId: string;
225307
+ }>;
225308
+ type DTOThreadMessageRetryInput = z$1.infer<typeof DTOThreadMessageRetryInput>;
225222
225309
  declare const DTOThreadMessageCreateInput: z$1.ZodObject<Pick<{
225223
225310
  id: z$1.ZodString;
225224
225311
  threadId: z$1.ZodString;
@@ -225262,6 +225349,10 @@ declare const DTOThreadMessageCreateInput: z$1.ZodObject<Pick<{
225262
225349
  * AI agent to generate a response and perform an action within the feature
225263
225350
  */
225264
225351
  isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
225352
+ /**
225353
+ * Indicates if the message is an attempt to retry agent message. Only available for agent messages.
225354
+ */
225355
+ isRetry: z$1.ZodOptional<z$1.ZodBoolean>;
225265
225356
  /**
225266
225357
  * Indicates if the sender requested agent to reply in a thread
225267
225358
  */
@@ -225442,6 +225533,10 @@ declare const DTOThreadMessageUpdateInput: z$1.ZodObject<Pick<{
225442
225533
  * AI agent to generate a response and perform an action within the feature
225443
225534
  */
225444
225535
  isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
225536
+ /**
225537
+ * Indicates if the message is an attempt to retry agent message. Only available for agent messages.
225538
+ */
225539
+ isRetry: z$1.ZodOptional<z$1.ZodBoolean>;
225445
225540
  /**
225446
225541
  * Indicates if the sender requested agent to reply in a thread
225447
225542
  */
@@ -225736,6 +225831,10 @@ declare const DTOThreadMessageResponse: z$1.ZodObject<{
225736
225831
  * AI agent to generate a response and perform an action within the feature
225737
225832
  */
225738
225833
  isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
225834
+ /**
225835
+ * Indicates if the message is an attempt to retry agent message. Only available for agent messages.
225836
+ */
225837
+ isRetry: z$1.ZodOptional<z$1.ZodBoolean>;
225739
225838
  /**
225740
225839
  * Indicates if the sender requested agent to reply in a thread
225741
225840
  */
@@ -225874,6 +225973,7 @@ declare const DTOThreadMessageResponse: z$1.ZodObject<{
225874
225973
  iterationId?: string | undefined;
225875
225974
  } | undefined;
225876
225975
  replyToMessageId?: string | undefined;
225976
+ isRetry?: boolean | undefined;
225877
225977
  promptMetadata?: Record<string, any> | undefined;
225878
225978
  }, {
225879
225979
  id: string;
@@ -225911,6 +226011,7 @@ declare const DTOThreadMessageResponse: z$1.ZodObject<{
225911
226011
  iterationId?: string | undefined;
225912
226012
  } | undefined;
225913
226013
  replyToMessageId?: string | undefined;
226014
+ isRetry?: boolean | undefined;
225914
226015
  promptMetadata?: Record<string, any> | undefined;
225915
226016
  }>;
225916
226017
  }, "strip", z$1.ZodTypeAny, {
@@ -225950,6 +226051,7 @@ declare const DTOThreadMessageResponse: z$1.ZodObject<{
225950
226051
  iterationId?: string | undefined;
225951
226052
  } | undefined;
225952
226053
  replyToMessageId?: string | undefined;
226054
+ isRetry?: boolean | undefined;
225953
226055
  promptMetadata?: Record<string, any> | undefined;
225954
226056
  };
225955
226057
  }, {
@@ -225989,6 +226091,7 @@ declare const DTOThreadMessageResponse: z$1.ZodObject<{
225989
226091
  iterationId?: string | undefined;
225990
226092
  } | undefined;
225991
226093
  replyToMessageId?: string | undefined;
226094
+ isRetry?: boolean | undefined;
225992
226095
  promptMetadata?: Record<string, any> | undefined;
225993
226096
  };
225994
226097
  }>;
@@ -226070,6 +226173,10 @@ declare const DTOThreadMessageListResponse: z$1.ZodObject<{
226070
226173
  * AI agent to generate a response and perform an action within the feature
226071
226174
  */
226072
226175
  isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
226176
+ /**
226177
+ * Indicates if the message is an attempt to retry agent message. Only available for agent messages.
226178
+ */
226179
+ isRetry: z$1.ZodOptional<z$1.ZodBoolean>;
226073
226180
  /**
226074
226181
  * Indicates if the sender requested agent to reply in a thread
226075
226182
  */
@@ -226208,6 +226315,7 @@ declare const DTOThreadMessageListResponse: z$1.ZodObject<{
226208
226315
  iterationId?: string | undefined;
226209
226316
  } | undefined;
226210
226317
  replyToMessageId?: string | undefined;
226318
+ isRetry?: boolean | undefined;
226211
226319
  promptMetadata?: Record<string, any> | undefined;
226212
226320
  }, {
226213
226321
  id: string;
@@ -226245,6 +226353,7 @@ declare const DTOThreadMessageListResponse: z$1.ZodObject<{
226245
226353
  iterationId?: string | undefined;
226246
226354
  } | undefined;
226247
226355
  replyToMessageId?: string | undefined;
226356
+ isRetry?: boolean | undefined;
226248
226357
  promptMetadata?: Record<string, any> | undefined;
226249
226358
  }>, "many">;
226250
226359
  reactions: z$1.ZodArray<z$1.ZodObject<{
@@ -226301,6 +226410,7 @@ declare const DTOThreadMessageListResponse: z$1.ZodObject<{
226301
226410
  iterationId?: string | undefined;
226302
226411
  } | undefined;
226303
226412
  replyToMessageId?: string | undefined;
226413
+ isRetry?: boolean | undefined;
226304
226414
  promptMetadata?: Record<string, any> | undefined;
226305
226415
  }[];
226306
226416
  reactions: {
@@ -226347,6 +226457,7 @@ declare const DTOThreadMessageListResponse: z$1.ZodObject<{
226347
226457
  iterationId?: string | undefined;
226348
226458
  } | undefined;
226349
226459
  replyToMessageId?: string | undefined;
226460
+ isRetry?: boolean | undefined;
226350
226461
  promptMetadata?: Record<string, any> | undefined;
226351
226462
  }[];
226352
226463
  reactions: {
@@ -226403,6 +226514,10 @@ declare const DTOThreadEventMessagesSent: z$1.ZodObject<{
226403
226514
  * AI agent to generate a response and perform an action within the feature
226404
226515
  */
226405
226516
  isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
226517
+ /**
226518
+ * Indicates if the message is an attempt to retry agent message. Only available for agent messages.
226519
+ */
226520
+ isRetry: z$1.ZodOptional<z$1.ZodBoolean>;
226406
226521
  /**
226407
226522
  * Indicates if the sender requested agent to reply in a thread
226408
226523
  */
@@ -226541,6 +226656,7 @@ declare const DTOThreadEventMessagesSent: z$1.ZodObject<{
226541
226656
  iterationId?: string | undefined;
226542
226657
  } | undefined;
226543
226658
  replyToMessageId?: string | undefined;
226659
+ isRetry?: boolean | undefined;
226544
226660
  promptMetadata?: Record<string, any> | undefined;
226545
226661
  }, {
226546
226662
  id: string;
@@ -226578,6 +226694,7 @@ declare const DTOThreadEventMessagesSent: z$1.ZodObject<{
226578
226694
  iterationId?: string | undefined;
226579
226695
  } | undefined;
226580
226696
  replyToMessageId?: string | undefined;
226697
+ isRetry?: boolean | undefined;
226581
226698
  promptMetadata?: Record<string, any> | undefined;
226582
226699
  }>, "many">;
226583
226700
  }, "strip", z$1.ZodTypeAny, {
@@ -226618,6 +226735,7 @@ declare const DTOThreadEventMessagesSent: z$1.ZodObject<{
226618
226735
  iterationId?: string | undefined;
226619
226736
  } | undefined;
226620
226737
  replyToMessageId?: string | undefined;
226738
+ isRetry?: boolean | undefined;
226621
226739
  promptMetadata?: Record<string, any> | undefined;
226622
226740
  }[];
226623
226741
  }, {
@@ -226658,6 +226776,7 @@ declare const DTOThreadEventMessagesSent: z$1.ZodObject<{
226658
226776
  iterationId?: string | undefined;
226659
226777
  } | undefined;
226660
226778
  replyToMessageId?: string | undefined;
226779
+ isRetry?: boolean | undefined;
226661
226780
  promptMetadata?: Record<string, any> | undefined;
226662
226781
  }[];
226663
226782
  }>;
@@ -226707,6 +226826,10 @@ declare const DTOThreadEventMessagesUpdated: z$1.ZodObject<{
226707
226826
  * AI agent to generate a response and perform an action within the feature
226708
226827
  */
226709
226828
  isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
226829
+ /**
226830
+ * Indicates if the message is an attempt to retry agent message. Only available for agent messages.
226831
+ */
226832
+ isRetry: z$1.ZodOptional<z$1.ZodBoolean>;
226710
226833
  /**
226711
226834
  * Indicates if the sender requested agent to reply in a thread
226712
226835
  */
@@ -226845,6 +226968,7 @@ declare const DTOThreadEventMessagesUpdated: z$1.ZodObject<{
226845
226968
  iterationId?: string | undefined;
226846
226969
  } | undefined;
226847
226970
  replyToMessageId?: string | undefined;
226971
+ isRetry?: boolean | undefined;
226848
226972
  promptMetadata?: Record<string, any> | undefined;
226849
226973
  }, {
226850
226974
  id: string;
@@ -226882,6 +227006,7 @@ declare const DTOThreadEventMessagesUpdated: z$1.ZodObject<{
226882
227006
  iterationId?: string | undefined;
226883
227007
  } | undefined;
226884
227008
  replyToMessageId?: string | undefined;
227009
+ isRetry?: boolean | undefined;
226885
227010
  promptMetadata?: Record<string, any> | undefined;
226886
227011
  }>, "many">;
226887
227012
  }, "strip", z$1.ZodTypeAny, {
@@ -226922,6 +227047,7 @@ declare const DTOThreadEventMessagesUpdated: z$1.ZodObject<{
226922
227047
  iterationId?: string | undefined;
226923
227048
  } | undefined;
226924
227049
  replyToMessageId?: string | undefined;
227050
+ isRetry?: boolean | undefined;
226925
227051
  promptMetadata?: Record<string, any> | undefined;
226926
227052
  }[];
226927
227053
  }, {
@@ -226962,6 +227088,7 @@ declare const DTOThreadEventMessagesUpdated: z$1.ZodObject<{
226962
227088
  iterationId?: string | undefined;
226963
227089
  } | undefined;
226964
227090
  replyToMessageId?: string | undefined;
227091
+ isRetry?: boolean | undefined;
226965
227092
  promptMetadata?: Record<string, any> | undefined;
226966
227093
  }[];
226967
227094
  }>;
@@ -227083,6 +227210,10 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
227083
227210
  * AI agent to generate a response and perform an action within the feature
227084
227211
  */
227085
227212
  isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
227213
+ /**
227214
+ * Indicates if the message is an attempt to retry agent message. Only available for agent messages.
227215
+ */
227216
+ isRetry: z$1.ZodOptional<z$1.ZodBoolean>;
227086
227217
  /**
227087
227218
  * Indicates if the sender requested agent to reply in a thread
227088
227219
  */
@@ -227221,6 +227352,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
227221
227352
  iterationId?: string | undefined;
227222
227353
  } | undefined;
227223
227354
  replyToMessageId?: string | undefined;
227355
+ isRetry?: boolean | undefined;
227224
227356
  promptMetadata?: Record<string, any> | undefined;
227225
227357
  }, {
227226
227358
  id: string;
@@ -227258,6 +227390,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
227258
227390
  iterationId?: string | undefined;
227259
227391
  } | undefined;
227260
227392
  replyToMessageId?: string | undefined;
227393
+ isRetry?: boolean | undefined;
227261
227394
  promptMetadata?: Record<string, any> | undefined;
227262
227395
  }>, "many">;
227263
227396
  }, "strip", z$1.ZodTypeAny, {
@@ -227298,6 +227431,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
227298
227431
  iterationId?: string | undefined;
227299
227432
  } | undefined;
227300
227433
  replyToMessageId?: string | undefined;
227434
+ isRetry?: boolean | undefined;
227301
227435
  promptMetadata?: Record<string, any> | undefined;
227302
227436
  }[];
227303
227437
  }, {
@@ -227338,6 +227472,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
227338
227472
  iterationId?: string | undefined;
227339
227473
  } | undefined;
227340
227474
  replyToMessageId?: string | undefined;
227475
+ isRetry?: boolean | undefined;
227341
227476
  promptMetadata?: Record<string, any> | undefined;
227342
227477
  }[];
227343
227478
  }>, z$1.ZodObject<{
@@ -227385,6 +227520,10 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
227385
227520
  * AI agent to generate a response and perform an action within the feature
227386
227521
  */
227387
227522
  isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
227523
+ /**
227524
+ * Indicates if the message is an attempt to retry agent message. Only available for agent messages.
227525
+ */
227526
+ isRetry: z$1.ZodOptional<z$1.ZodBoolean>;
227388
227527
  /**
227389
227528
  * Indicates if the sender requested agent to reply in a thread
227390
227529
  */
@@ -227523,6 +227662,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
227523
227662
  iterationId?: string | undefined;
227524
227663
  } | undefined;
227525
227664
  replyToMessageId?: string | undefined;
227665
+ isRetry?: boolean | undefined;
227526
227666
  promptMetadata?: Record<string, any> | undefined;
227527
227667
  }, {
227528
227668
  id: string;
@@ -227560,6 +227700,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
227560
227700
  iterationId?: string | undefined;
227561
227701
  } | undefined;
227562
227702
  replyToMessageId?: string | undefined;
227703
+ isRetry?: boolean | undefined;
227563
227704
  promptMetadata?: Record<string, any> | undefined;
227564
227705
  }>, "many">;
227565
227706
  }, "strip", z$1.ZodTypeAny, {
@@ -227600,6 +227741,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
227600
227741
  iterationId?: string | undefined;
227601
227742
  } | undefined;
227602
227743
  replyToMessageId?: string | undefined;
227744
+ isRetry?: boolean | undefined;
227603
227745
  promptMetadata?: Record<string, any> | undefined;
227604
227746
  }[];
227605
227747
  }, {
@@ -227640,6 +227782,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
227640
227782
  iterationId?: string | undefined;
227641
227783
  } | undefined;
227642
227784
  replyToMessageId?: string | undefined;
227785
+ isRetry?: boolean | undefined;
227643
227786
  promptMetadata?: Record<string, any> | undefined;
227644
227787
  }[];
227645
227788
  }>, z$1.ZodObject<{
@@ -236225,15 +236368,30 @@ declare const DTOSubscription: z$1.ZodObject<{
236225
236368
  max?: number | undefined;
236226
236369
  };
236227
236370
  }>>;
236371
+ /**
236372
+ * @deprecated get available-products for this information
236373
+ */
236228
236374
  stripeProductDescription: z$1.ZodOptional<z$1.ZodString>;
236375
+ /**
236376
+ * @deprecated get available-products for this information
236377
+ */
236229
236378
  stripeProductFeatures: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
236379
+ /**
236380
+ * @deprecated get available-products for this information
236381
+ */
236230
236382
  stripeProductAdditionalFeatures: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
236383
+ /**
236384
+ * @deprecated always undefined
236385
+ */
236231
236386
  stripeSubscriptionMainItemId: z$1.ZodOptional<z$1.ZodString>;
236232
236387
  /**
236233
236388
  * @deprecated use `fullSeatPriceId` or `builderSeatPriceId`
236234
236389
  */
236235
236390
  planPriceId: z$1.ZodString;
236236
236391
  planInterval: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
236392
+ /**
236393
+ * @deprecated All subscriptions were migrated to work as "price per creator"
236394
+ */
236237
236395
  isPricePerCreator: z$1.ZodOptional<z$1.ZodBoolean>;
236238
236396
  legacyVersion: z$1.ZodOptional<z$1.ZodString>;
236239
236397
  seats: z$1.ZodNumber;
@@ -237417,15 +237575,30 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
237417
237575
  max?: number | undefined;
237418
237576
  };
237419
237577
  }>>;
237578
+ /**
237579
+ * @deprecated get available-products for this information
237580
+ */
237420
237581
  stripeProductDescription: z$1.ZodOptional<z$1.ZodString>;
237582
+ /**
237583
+ * @deprecated get available-products for this information
237584
+ */
237421
237585
  stripeProductFeatures: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
237586
+ /**
237587
+ * @deprecated get available-products for this information
237588
+ */
237422
237589
  stripeProductAdditionalFeatures: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
237590
+ /**
237591
+ * @deprecated always undefined
237592
+ */
237423
237593
  stripeSubscriptionMainItemId: z$1.ZodOptional<z$1.ZodString>;
237424
237594
  /**
237425
237595
  * @deprecated use `fullSeatPriceId` or `builderSeatPriceId`
237426
237596
  */
237427
237597
  planPriceId: z$1.ZodString;
237428
237598
  planInterval: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
237599
+ /**
237600
+ * @deprecated All subscriptions were migrated to work as "price per creator"
237601
+ */
237429
237602
  isPricePerCreator: z$1.ZodOptional<z$1.ZodBoolean>;
237430
237603
  legacyVersion: z$1.ZodOptional<z$1.ZodString>;
237431
237604
  seats: z$1.ZodNumber;
@@ -250894,6 +251067,7 @@ declare class ForgeFeatureIterationsEndpoint {
250894
251067
  thumbnailUrl?: string | undefined;
250895
251068
  baseIterationId?: string | undefined;
250896
251069
  isInProgress?: boolean | undefined;
251070
+ errorDescription?: string | null | undefined;
250897
251071
  staticPreviewUrl?: string | undefined;
250898
251072
  isBookmarked?: boolean | undefined;
250899
251073
  thumbnail?: {
@@ -251079,6 +251253,7 @@ declare class ForgeProjectFeaturesEndpoint {
251079
251253
  thumbnailUrl?: string | undefined;
251080
251254
  baseIterationId?: string | undefined;
251081
251255
  isInProgress?: boolean | undefined;
251256
+ errorDescription?: string | null | undefined;
251082
251257
  staticPreviewUrl?: string | undefined;
251083
251258
  isBookmarked?: boolean | undefined;
251084
251259
  thumbnail?: {
@@ -258257,6 +258432,7 @@ declare class ThreadsEndpoint {
258257
258432
  iterationId?: string | undefined;
258258
258433
  } | undefined;
258259
258434
  replyToMessageId?: string | undefined;
258435
+ isRetry?: boolean | undefined;
258260
258436
  promptMetadata?: Record<string, any> | undefined;
258261
258437
  }[];
258262
258438
  reactions: {
@@ -258304,6 +258480,7 @@ declare class ThreadsEndpoint {
258304
258480
  iterationId?: string | undefined;
258305
258481
  } | undefined;
258306
258482
  replyToMessageId?: string | undefined;
258483
+ isRetry?: boolean | undefined;
258307
258484
  promptMetadata?: Record<string, any> | undefined;
258308
258485
  }[];
258309
258486
  reactions: {
@@ -261380,4 +261557,4 @@ declare function isValidRedirectPath(path: string): {
261380
261557
  reason: ValidationErrorReason | undefined;
261381
261558
  };
261382
261559
 
261383
- 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, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, 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, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaExportNodePayload, DTOFigmaExportNodeResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, 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, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactContentResponse, 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, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeRelation, DTOForgeRelationCreate, DTOForgeRelationDelete, DTOForgeRelationListInput, DTOForgeRelationListResponse, DTOForgeRelationType, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemeKnownPreset, DTOForgeTokenThemeSet, 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, DTOSubscriptionUpcomingChange, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, 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, DTOThreadPromptState, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventClientCreate, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTrailEventWithDetails, 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, DTOUserEmailSettings, DTOUserEmailSettingsUpdatePayload, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, 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, WorkspaceSubscriptionEndpoint, 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, zodQueryBoolean };
261560
+ 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, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, 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, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaExportNodePayload, DTOFigmaExportNodeResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, 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, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactContentResponse, 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, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeRelation, DTOForgeRelationCreate, DTOForgeRelationDelete, DTOForgeRelationListInput, DTOForgeRelationListResponse, DTOForgeRelationType, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemeKnownPreset, DTOForgeTokenThemeSet, 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, DTOSandboxError, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpcomingChange, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageRetryInput, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadPromptState, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventClientCreate, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTrailEventWithDetails, 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, DTOUserEmailSettings, DTOUserEmailSettingsUpdatePayload, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, 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, WorkspaceSubscriptionEndpoint, 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, zodQueryBoolean };