@supernova-studio/client 1.80.2 → 1.81.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -16973,6 +16973,140 @@ declare const DTORegistry: z.ZodObject<{
16973
16973
  }>;
16974
16974
  type DTORegistry = Registry;
16975
16975
 
16976
+ declare const DTOCodeSnapshotScannerType: z.ZodEnum<["Components", "Usage"]>;
16977
+ type DTOCodeSnapshotScannerType = z.infer<typeof DTOCodeSnapshotScannerType>;
16978
+ declare const DTOCodeSnapshotUploadInitResponse: z.ZodObject<{
16979
+ fileId: z.ZodString;
16980
+ snapshotId: z.ZodString;
16981
+ uploadUrl: z.ZodString;
16982
+ }, "strip", z.ZodTypeAny, {
16983
+ fileId: string;
16984
+ uploadUrl: string;
16985
+ snapshotId: string;
16986
+ }, {
16987
+ fileId: string;
16988
+ uploadUrl: string;
16989
+ snapshotId: string;
16990
+ }>;
16991
+ type DTOCodeSnapshotUploadInitResponse = z.infer<typeof DTOCodeSnapshotUploadInitResponse>;
16992
+ declare const DTOCodeSnapshotProcessingRunResponse: z.ZodObject<{
16993
+ processingRunId: z.ZodString;
16994
+ snapshotIds: z.ZodArray<z.ZodString, "many">;
16995
+ }, "strip", z.ZodTypeAny, {
16996
+ processingRunId: string;
16997
+ snapshotIds: string[];
16998
+ }, {
16999
+ processingRunId: string;
17000
+ snapshotIds: string[];
17001
+ }>;
17002
+ type DTOCodeSnapshotProcessingRunResponse = z.infer<typeof DTOCodeSnapshotProcessingRunResponse>;
17003
+ declare const DTOCodeSnapshotFinalizeResponse: z.ZodObject<{
17004
+ ok: z.ZodLiteral<true>;
17005
+ processingRunId: z.ZodNullable<z.ZodString>;
17006
+ snapshotId: z.ZodString;
17007
+ }, "strip", z.ZodTypeAny, {
17008
+ ok: true;
17009
+ snapshotId: string;
17010
+ processingRunId: string | null;
17011
+ }, {
17012
+ ok: true;
17013
+ snapshotId: string;
17014
+ processingRunId: string | null;
17015
+ }>;
17016
+ type DTOCodeSnapshotFinalizeResponse = z.infer<typeof DTOCodeSnapshotFinalizeResponse>;
17017
+ declare const DTOCodeSnapshotProcessingRunStatus: z.ZodEnum<["Processing", "Processed", "Failed"]>;
17018
+ type DTOCodeSnapshotProcessingRunStatus = z.infer<typeof DTOCodeSnapshotProcessingRunStatus>;
17019
+ declare const DTOCodeSnapshotProcessingRunStatusItem: z.ZodObject<{
17020
+ createdAt: z.ZodString;
17021
+ errorSummary: z.ZodNullable<z.ZodString>;
17022
+ failedComponentsCount: z.ZodNumber;
17023
+ finishedAt: z.ZodNullable<z.ZodString>;
17024
+ processingRunId: z.ZodString;
17025
+ snapshotIds: z.ZodArray<z.ZodString, "many">;
17026
+ startedAt: z.ZodString;
17027
+ status: z.ZodEnum<["Processing", "Processed", "Failed"]>;
17028
+ updatedAt: z.ZodString;
17029
+ }, "strip", z.ZodTypeAny, {
17030
+ status: "Failed" | "Processing" | "Processed";
17031
+ createdAt: string;
17032
+ updatedAt: string;
17033
+ finishedAt: string | null;
17034
+ processingRunId: string;
17035
+ snapshotIds: string[];
17036
+ errorSummary: string | null;
17037
+ failedComponentsCount: number;
17038
+ startedAt: string;
17039
+ }, {
17040
+ status: "Failed" | "Processing" | "Processed";
17041
+ createdAt: string;
17042
+ updatedAt: string;
17043
+ finishedAt: string | null;
17044
+ processingRunId: string;
17045
+ snapshotIds: string[];
17046
+ errorSummary: string | null;
17047
+ failedComponentsCount: number;
17048
+ startedAt: string;
17049
+ }>;
17050
+ type DTOCodeSnapshotProcessingRunStatusItem = z.infer<typeof DTOCodeSnapshotProcessingRunStatusItem>;
17051
+ declare const DTOCodeSnapshotProcessingRunStatusResponse: z.ZodObject<{
17052
+ runs: z.ZodArray<z.ZodObject<{
17053
+ createdAt: z.ZodString;
17054
+ errorSummary: z.ZodNullable<z.ZodString>;
17055
+ failedComponentsCount: z.ZodNumber;
17056
+ finishedAt: z.ZodNullable<z.ZodString>;
17057
+ processingRunId: z.ZodString;
17058
+ snapshotIds: z.ZodArray<z.ZodString, "many">;
17059
+ startedAt: z.ZodString;
17060
+ status: z.ZodEnum<["Processing", "Processed", "Failed"]>;
17061
+ updatedAt: z.ZodString;
17062
+ }, "strip", z.ZodTypeAny, {
17063
+ status: "Failed" | "Processing" | "Processed";
17064
+ createdAt: string;
17065
+ updatedAt: string;
17066
+ finishedAt: string | null;
17067
+ processingRunId: string;
17068
+ snapshotIds: string[];
17069
+ errorSummary: string | null;
17070
+ failedComponentsCount: number;
17071
+ startedAt: string;
17072
+ }, {
17073
+ status: "Failed" | "Processing" | "Processed";
17074
+ createdAt: string;
17075
+ updatedAt: string;
17076
+ finishedAt: string | null;
17077
+ processingRunId: string;
17078
+ snapshotIds: string[];
17079
+ errorSummary: string | null;
17080
+ failedComponentsCount: number;
17081
+ startedAt: string;
17082
+ }>, "many">;
17083
+ }, "strip", z.ZodTypeAny, {
17084
+ runs: {
17085
+ status: "Failed" | "Processing" | "Processed";
17086
+ createdAt: string;
17087
+ updatedAt: string;
17088
+ finishedAt: string | null;
17089
+ processingRunId: string;
17090
+ snapshotIds: string[];
17091
+ errorSummary: string | null;
17092
+ failedComponentsCount: number;
17093
+ startedAt: string;
17094
+ }[];
17095
+ }, {
17096
+ runs: {
17097
+ status: "Failed" | "Processing" | "Processed";
17098
+ createdAt: string;
17099
+ updatedAt: string;
17100
+ finishedAt: string | null;
17101
+ processingRunId: string;
17102
+ snapshotIds: string[];
17103
+ errorSummary: string | null;
17104
+ failedComponentsCount: number;
17105
+ startedAt: string;
17106
+ }[];
17107
+ }>;
17108
+ type DTOCodeSnapshotProcessingRunStatusResponse = z.infer<typeof DTOCodeSnapshotProcessingRunStatusResponse>;
17109
+
16976
17110
  declare const DTODesignSystemComponent: z.ZodObject<{
16977
17111
  id: z.ZodString;
16978
17112
  persistentId: z.ZodString;
@@ -145726,6 +145860,7 @@ declare const DTOForgeFigmaNodeOrigin: z$1.ZodObject<{
145726
145860
  * Figma file ID that was passed into the create request as a part of the Figma node URL
145727
145861
  */
145728
145862
  fileId: z$1.ZodString;
145863
+ fileName: z$1.ZodString;
145729
145864
  /**
145730
145865
  * Timestamp of the last edit to the file, can be used for reusing nodes
145731
145866
  * if the file has not changed since
@@ -145735,14 +145870,19 @@ declare const DTOForgeFigmaNodeOrigin: z$1.ZodObject<{
145735
145870
  * Figma node ID that was passed into the create request as a part of the Figma node URL
145736
145871
  */
145737
145872
  nodeId: z$1.ZodString;
145873
+ nodeName: z$1.ZodString;
145738
145874
  }, "strip", z$1.ZodTypeAny, {
145875
+ fileName: string;
145739
145876
  fileId: string;
145740
145877
  nodeId: string;
145741
145878
  fileLastEditedAt: string;
145879
+ nodeName: string;
145742
145880
  }, {
145881
+ fileName: string;
145743
145882
  fileId: string;
145744
145883
  nodeId: string;
145745
145884
  fileLastEditedAt: string;
145885
+ nodeName: string;
145746
145886
  }>;
145747
145887
  type DTOForgeFigmaNodeOrigin = z$1.infer<typeof DTOForgeFigmaNodeOrigin>;
145748
145888
  declare const DTOForgeFigmaNodeState: z$1.ZodEnum<["Optimizing", "Success", "Failed"]>;
@@ -145758,6 +145898,7 @@ declare const DTOForgeFigmaNode: z$1.ZodObject<{
145758
145898
  * Figma file ID that was passed into the create request as a part of the Figma node URL
145759
145899
  */
145760
145900
  fileId: z$1.ZodString;
145901
+ fileName: z$1.ZodString;
145761
145902
  /**
145762
145903
  * Timestamp of the last edit to the file, can be used for reusing nodes
145763
145904
  * if the file has not changed since
@@ -145767,14 +145908,19 @@ declare const DTOForgeFigmaNode: z$1.ZodObject<{
145767
145908
  * Figma node ID that was passed into the create request as a part of the Figma node URL
145768
145909
  */
145769
145910
  nodeId: z$1.ZodString;
145911
+ nodeName: z$1.ZodString;
145770
145912
  }, "strip", z$1.ZodTypeAny, {
145913
+ fileName: string;
145771
145914
  fileId: string;
145772
145915
  nodeId: string;
145773
145916
  fileLastEditedAt: string;
145917
+ nodeName: string;
145774
145918
  }, {
145919
+ fileName: string;
145775
145920
  fileId: string;
145776
145921
  nodeId: string;
145777
145922
  fileLastEditedAt: string;
145923
+ nodeName: string;
145778
145924
  }>;
145779
145925
  /**
145780
145926
  * An image of the node rendered by Figma using render image API.
@@ -146025,9 +146171,11 @@ declare const DTOForgeFigmaNode: z$1.ZodObject<{
146025
146171
  };
146026
146172
  state: "Success" | "Failed" | "Optimizing";
146027
146173
  origin: {
146174
+ fileName: string;
146028
146175
  fileId: string;
146029
146176
  nodeId: string;
146030
146177
  fileLastEditedAt: string;
146178
+ nodeName: string;
146031
146179
  };
146032
146180
  thumbnail: {
146033
146181
  id: string;
@@ -146081,9 +146229,11 @@ declare const DTOForgeFigmaNode: z$1.ZodObject<{
146081
146229
  };
146082
146230
  state: "Success" | "Failed" | "Optimizing";
146083
146231
  origin: {
146232
+ fileName: string;
146084
146233
  fileId: string;
146085
146234
  nodeId: string;
146086
146235
  fileLastEditedAt: string;
146236
+ nodeName: string;
146087
146237
  };
146088
146238
  thumbnail: {
146089
146239
  id: string;
@@ -146143,6 +146293,7 @@ declare const DTOForgeFigmaNodeResponse: z$1.ZodObject<{
146143
146293
  * Figma file ID that was passed into the create request as a part of the Figma node URL
146144
146294
  */
146145
146295
  fileId: z$1.ZodString;
146296
+ fileName: z$1.ZodString;
146146
146297
  /**
146147
146298
  * Timestamp of the last edit to the file, can be used for reusing nodes
146148
146299
  * if the file has not changed since
@@ -146152,14 +146303,19 @@ declare const DTOForgeFigmaNodeResponse: z$1.ZodObject<{
146152
146303
  * Figma node ID that was passed into the create request as a part of the Figma node URL
146153
146304
  */
146154
146305
  nodeId: z$1.ZodString;
146306
+ nodeName: z$1.ZodString;
146155
146307
  }, "strip", z$1.ZodTypeAny, {
146308
+ fileName: string;
146156
146309
  fileId: string;
146157
146310
  nodeId: string;
146158
146311
  fileLastEditedAt: string;
146312
+ nodeName: string;
146159
146313
  }, {
146314
+ fileName: string;
146160
146315
  fileId: string;
146161
146316
  nodeId: string;
146162
146317
  fileLastEditedAt: string;
146318
+ nodeName: string;
146163
146319
  }>;
146164
146320
  /**
146165
146321
  * An image of the node rendered by Figma using render image API.
@@ -146410,9 +146566,11 @@ declare const DTOForgeFigmaNodeResponse: z$1.ZodObject<{
146410
146566
  };
146411
146567
  state: "Success" | "Failed" | "Optimizing";
146412
146568
  origin: {
146569
+ fileName: string;
146413
146570
  fileId: string;
146414
146571
  nodeId: string;
146415
146572
  fileLastEditedAt: string;
146573
+ nodeName: string;
146416
146574
  };
146417
146575
  thumbnail: {
146418
146576
  id: string;
@@ -146466,9 +146624,11 @@ declare const DTOForgeFigmaNodeResponse: z$1.ZodObject<{
146466
146624
  };
146467
146625
  state: "Success" | "Failed" | "Optimizing";
146468
146626
  origin: {
146627
+ fileName: string;
146469
146628
  fileId: string;
146470
146629
  nodeId: string;
146471
146630
  fileLastEditedAt: string;
146631
+ nodeName: string;
146472
146632
  };
146473
146633
  thumbnail: {
146474
146634
  id: string;
@@ -146524,9 +146684,11 @@ declare const DTOForgeFigmaNodeResponse: z$1.ZodObject<{
146524
146684
  };
146525
146685
  state: "Success" | "Failed" | "Optimizing";
146526
146686
  origin: {
146687
+ fileName: string;
146527
146688
  fileId: string;
146528
146689
  nodeId: string;
146529
146690
  fileLastEditedAt: string;
146691
+ nodeName: string;
146530
146692
  };
146531
146693
  thumbnail: {
146532
146694
  id: string;
@@ -146582,9 +146744,11 @@ declare const DTOForgeFigmaNodeResponse: z$1.ZodObject<{
146582
146744
  };
146583
146745
  state: "Success" | "Failed" | "Optimizing";
146584
146746
  origin: {
146747
+ fileName: string;
146585
146748
  fileId: string;
146586
146749
  nodeId: string;
146587
146750
  fileLastEditedAt: string;
146751
+ nodeName: string;
146588
146752
  };
146589
146753
  thumbnail: {
146590
146754
  id: string;
@@ -157570,6 +157734,7 @@ declare const DTOForgeProjectActionFeatureCreate: z$1.ZodObject<{
157570
157734
  } | undefined;
157571
157735
  }>, "many">>;
157572
157736
  templateId: z$1.ZodOptional<z$1.ZodString>;
157737
+ figmaNodeIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
157573
157738
  }, "strip", z$1.ZodTypeAny, {
157574
157739
  files?: {
157575
157740
  id: string;
@@ -157585,6 +157750,7 @@ declare const DTOForgeProjectActionFeatureCreate: z$1.ZodObject<{
157585
157750
  }[] | undefined;
157586
157751
  iterationId?: string | undefined;
157587
157752
  templateId?: string | undefined;
157753
+ figmaNodeIds?: string[] | undefined;
157588
157754
  }, {
157589
157755
  files?: {
157590
157756
  id: string;
@@ -157600,6 +157766,7 @@ declare const DTOForgeProjectActionFeatureCreate: z$1.ZodObject<{
157600
157766
  }[] | undefined;
157601
157767
  iterationId?: string | undefined;
157602
157768
  templateId?: string | undefined;
157769
+ figmaNodeIds?: string[] | undefined;
157603
157770
  }>>;
157604
157771
  replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
157605
157772
  promptMetadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
@@ -157956,6 +158123,7 @@ declare const DTOForgeProjectActionArtifactCreate: z$1.ZodObject<{
157956
158123
  } | undefined;
157957
158124
  }>, "many">>;
157958
158125
  templateId: z$1.ZodOptional<z$1.ZodString>;
158126
+ figmaNodeIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
157959
158127
  }, "strip", z$1.ZodTypeAny, {
157960
158128
  files?: {
157961
158129
  id: string;
@@ -157971,6 +158139,7 @@ declare const DTOForgeProjectActionArtifactCreate: z$1.ZodObject<{
157971
158139
  }[] | undefined;
157972
158140
  iterationId?: string | undefined;
157973
158141
  templateId?: string | undefined;
158142
+ figmaNodeIds?: string[] | undefined;
157974
158143
  }, {
157975
158144
  files?: {
157976
158145
  id: string;
@@ -157986,6 +158155,7 @@ declare const DTOForgeProjectActionArtifactCreate: z$1.ZodObject<{
157986
158155
  }[] | undefined;
157987
158156
  iterationId?: string | undefined;
157988
158157
  templateId?: string | undefined;
158158
+ figmaNodeIds?: string[] | undefined;
157989
158159
  }>>;
157990
158160
  replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
157991
158161
  promptMetadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
@@ -158432,6 +158602,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
158432
158602
  } | undefined;
158433
158603
  }>, "many">>;
158434
158604
  templateId: z$1.ZodOptional<z$1.ZodString>;
158605
+ figmaNodeIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
158435
158606
  }, "strip", z$1.ZodTypeAny, {
158436
158607
  files?: {
158437
158608
  id: string;
@@ -158447,6 +158618,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
158447
158618
  }[] | undefined;
158448
158619
  iterationId?: string | undefined;
158449
158620
  templateId?: string | undefined;
158621
+ figmaNodeIds?: string[] | undefined;
158450
158622
  }, {
158451
158623
  files?: {
158452
158624
  id: string;
@@ -158462,6 +158634,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
158462
158634
  }[] | undefined;
158463
158635
  iterationId?: string | undefined;
158464
158636
  templateId?: string | undefined;
158637
+ figmaNodeIds?: string[] | undefined;
158465
158638
  }>>;
158466
158639
  replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
158467
158640
  promptMetadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
@@ -158810,6 +158983,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
158810
158983
  } | undefined;
158811
158984
  }>, "many">>;
158812
158985
  templateId: z$1.ZodOptional<z$1.ZodString>;
158986
+ figmaNodeIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
158813
158987
  }, "strip", z$1.ZodTypeAny, {
158814
158988
  files?: {
158815
158989
  id: string;
@@ -158825,6 +158999,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
158825
158999
  }[] | undefined;
158826
159000
  iterationId?: string | undefined;
158827
159001
  templateId?: string | undefined;
159002
+ figmaNodeIds?: string[] | undefined;
158828
159003
  }, {
158829
159004
  files?: {
158830
159005
  id: string;
@@ -158840,6 +159015,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
158840
159015
  }[] | undefined;
158841
159016
  iterationId?: string | undefined;
158842
159017
  templateId?: string | undefined;
159018
+ figmaNodeIds?: string[] | undefined;
158843
159019
  }>>;
158844
159020
  replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
158845
159021
  promptMetadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
@@ -159438,6 +159614,7 @@ declare const DTOForgeProjectArtifactCreateInput: z.ZodObject<{
159438
159614
  } | undefined;
159439
159615
  }>, "many">>;
159440
159616
  templateId: z.ZodOptional<z.ZodString>;
159617
+ figmaNodeIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
159441
159618
  }, "strip", z.ZodTypeAny, {
159442
159619
  files?: {
159443
159620
  id: string;
@@ -159453,6 +159630,7 @@ declare const DTOForgeProjectArtifactCreateInput: z.ZodObject<{
159453
159630
  }[] | undefined;
159454
159631
  iterationId?: string | undefined;
159455
159632
  templateId?: string | undefined;
159633
+ figmaNodeIds?: string[] | undefined;
159456
159634
  }, {
159457
159635
  files?: {
159458
159636
  id: string;
@@ -159468,6 +159646,7 @@ declare const DTOForgeProjectArtifactCreateInput: z.ZodObject<{
159468
159646
  }[] | undefined;
159469
159647
  iterationId?: string | undefined;
159470
159648
  templateId?: string | undefined;
159649
+ figmaNodeIds?: string[] | undefined;
159471
159650
  }>>;
159472
159651
  replyToMessageId: z.ZodOptional<z.ZodString>;
159473
159652
  promptMetadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -266141,6 +266320,7 @@ declare const DTOForgeProjectFeatureCreateInput: z$1.ZodObject<{
266141
266320
  } | undefined;
266142
266321
  }>, "many">>;
266143
266322
  templateId: z$1.ZodOptional<z$1.ZodString>;
266323
+ figmaNodeIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
266144
266324
  }, "strip", z$1.ZodTypeAny, {
266145
266325
  files?: {
266146
266326
  id: string;
@@ -266156,6 +266336,7 @@ declare const DTOForgeProjectFeatureCreateInput: z$1.ZodObject<{
266156
266336
  }[] | undefined;
266157
266337
  iterationId?: string | undefined;
266158
266338
  templateId?: string | undefined;
266339
+ figmaNodeIds?: string[] | undefined;
266159
266340
  }, {
266160
266341
  files?: {
266161
266342
  id: string;
@@ -266171,6 +266352,7 @@ declare const DTOForgeProjectFeatureCreateInput: z$1.ZodObject<{
266171
266352
  }[] | undefined;
266172
266353
  iterationId?: string | undefined;
266173
266354
  templateId?: string | undefined;
266355
+ figmaNodeIds?: string[] | undefined;
266174
266356
  }>>;
266175
266357
  replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
266176
266358
  promptMetadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
@@ -303154,6 +303336,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
303154
303336
  } | undefined;
303155
303337
  }>, "many">>;
303156
303338
  templateId: z.ZodOptional<z.ZodString>;
303339
+ figmaNodeIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
303157
303340
  }, "strip", z.ZodTypeAny, {
303158
303341
  files?: {
303159
303342
  id: string;
@@ -303169,6 +303352,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
303169
303352
  }[] | undefined;
303170
303353
  iterationId?: string | undefined;
303171
303354
  templateId?: string | undefined;
303355
+ figmaNodeIds?: string[] | undefined;
303172
303356
  }, {
303173
303357
  files?: {
303174
303358
  id: string;
@@ -303184,6 +303368,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
303184
303368
  }[] | undefined;
303185
303369
  iterationId?: string | undefined;
303186
303370
  templateId?: string | undefined;
303371
+ figmaNodeIds?: string[] | undefined;
303187
303372
  }>>;
303188
303373
  replyToMessageId: z.ZodOptional<z.ZodString>;
303189
303374
  promptMetadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -303364,6 +303549,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
303364
303549
  } | undefined;
303365
303550
  }>, "many">>;
303366
303551
  templateId: z.ZodOptional<z.ZodString>;
303552
+ figmaNodeIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
303367
303553
  }, "strip", z.ZodTypeAny, {
303368
303554
  files?: {
303369
303555
  id: string;
@@ -303379,6 +303565,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
303379
303565
  }[] | undefined;
303380
303566
  iterationId?: string | undefined;
303381
303567
  templateId?: string | undefined;
303568
+ figmaNodeIds?: string[] | undefined;
303382
303569
  }, {
303383
303570
  files?: {
303384
303571
  id: string;
@@ -303394,6 +303581,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
303394
303581
  }[] | undefined;
303395
303582
  iterationId?: string | undefined;
303396
303583
  templateId?: string | undefined;
303584
+ figmaNodeIds?: string[] | undefined;
303397
303585
  }>>;
303398
303586
  replyToMessageId: z.ZodOptional<z.ZodString>;
303399
303587
  promptMetadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -303714,6 +303902,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
303714
303902
  } | undefined;
303715
303903
  }>, "many">>;
303716
303904
  templateId: z.ZodOptional<z.ZodString>;
303905
+ figmaNodeIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
303717
303906
  }, "strip", z.ZodTypeAny, {
303718
303907
  files?: {
303719
303908
  id: string;
@@ -303729,6 +303918,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
303729
303918
  }[] | undefined;
303730
303919
  iterationId?: string | undefined;
303731
303920
  templateId?: string | undefined;
303921
+ figmaNodeIds?: string[] | undefined;
303732
303922
  }, {
303733
303923
  files?: {
303734
303924
  id: string;
@@ -303744,6 +303934,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
303744
303934
  }[] | undefined;
303745
303935
  iterationId?: string | undefined;
303746
303936
  templateId?: string | undefined;
303937
+ figmaNodeIds?: string[] | undefined;
303747
303938
  }>>;
303748
303939
  replyToMessageId: z.ZodOptional<z.ZodString>;
303749
303940
  promptMetadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -303924,6 +304115,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
303924
304115
  } | undefined;
303925
304116
  }>, "many">>;
303926
304117
  templateId: z.ZodOptional<z.ZodString>;
304118
+ figmaNodeIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
303927
304119
  }, "strip", z.ZodTypeAny, {
303928
304120
  files?: {
303929
304121
  id: string;
@@ -303939,6 +304131,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
303939
304131
  }[] | undefined;
303940
304132
  iterationId?: string | undefined;
303941
304133
  templateId?: string | undefined;
304134
+ figmaNodeIds?: string[] | undefined;
303942
304135
  }, {
303943
304136
  files?: {
303944
304137
  id: string;
@@ -303954,6 +304147,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
303954
304147
  }[] | undefined;
303955
304148
  iterationId?: string | undefined;
303956
304149
  templateId?: string | undefined;
304150
+ figmaNodeIds?: string[] | undefined;
303957
304151
  }>>;
303958
304152
  replyToMessageId: z.ZodOptional<z.ZodString>;
303959
304153
  promptMetadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -351997,6 +352191,7 @@ declare const DTOThreadMessage: z$1.ZodObject<{
351997
352191
  } | undefined;
351998
352192
  }>, "many">>;
351999
352193
  templateId: z$1.ZodOptional<z$1.ZodString>;
352194
+ figmaNodeIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
352000
352195
  }, "strip", z$1.ZodTypeAny, {
352001
352196
  files?: {
352002
352197
  id: string;
@@ -352012,6 +352207,7 @@ declare const DTOThreadMessage: z$1.ZodObject<{
352012
352207
  }[] | undefined;
352013
352208
  iterationId?: string | undefined;
352014
352209
  templateId?: string | undefined;
352210
+ figmaNodeIds?: string[] | undefined;
352015
352211
  }, {
352016
352212
  files?: {
352017
352213
  id: string;
@@ -352027,6 +352223,7 @@ declare const DTOThreadMessage: z$1.ZodObject<{
352027
352223
  }[] | undefined;
352028
352224
  iterationId?: string | undefined;
352029
352225
  templateId?: string | undefined;
352226
+ figmaNodeIds?: string[] | undefined;
352030
352227
  }>>;
352031
352228
  /**
352032
352229
  * If defined, this message is considered to be a reply to different message
@@ -352070,6 +352267,7 @@ declare const DTOThreadMessage: z$1.ZodObject<{
352070
352267
  }[] | undefined;
352071
352268
  iterationId?: string | undefined;
352072
352269
  templateId?: string | undefined;
352270
+ figmaNodeIds?: string[] | undefined;
352073
352271
  } | undefined;
352074
352272
  replyToMessageId?: string | undefined;
352075
352273
  isRetry?: boolean | undefined;
@@ -352109,6 +352307,7 @@ declare const DTOThreadMessage: z$1.ZodObject<{
352109
352307
  }[] | undefined;
352110
352308
  iterationId?: string | undefined;
352111
352309
  templateId?: string | undefined;
352310
+ figmaNodeIds?: string[] | undefined;
352112
352311
  } | undefined;
352113
352312
  replyToMessageId?: string | undefined;
352114
352313
  isRetry?: boolean | undefined;
@@ -352170,6 +352369,7 @@ declare const DTOThreadMessageAttachments: z$1.ZodObject<{
352170
352369
  } | undefined;
352171
352370
  }>, "many">>;
352172
352371
  templateId: z$1.ZodOptional<z$1.ZodString>;
352372
+ figmaNodeIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
352173
352373
  }, "strip", z$1.ZodTypeAny, {
352174
352374
  files?: {
352175
352375
  id: string;
@@ -352185,6 +352385,7 @@ declare const DTOThreadMessageAttachments: z$1.ZodObject<{
352185
352385
  }[] | undefined;
352186
352386
  iterationId?: string | undefined;
352187
352387
  templateId?: string | undefined;
352388
+ figmaNodeIds?: string[] | undefined;
352188
352389
  }, {
352189
352390
  files?: {
352190
352391
  id: string;
@@ -352200,6 +352401,7 @@ declare const DTOThreadMessageAttachments: z$1.ZodObject<{
352200
352401
  }[] | undefined;
352201
352402
  iterationId?: string | undefined;
352202
352403
  templateId?: string | undefined;
352404
+ figmaNodeIds?: string[] | undefined;
352203
352405
  }>;
352204
352406
  type DTOThreadMessageAttachments = z$1.infer<typeof DTOThreadMessageAttachments>;
352205
352407
  declare const DTOThreadAgentResponseTracker: z$1.ZodObject<{
@@ -352396,6 +352598,7 @@ declare const DTOThreadMessageRetryInput: z$1.ZodObject<{
352396
352598
  } | undefined;
352397
352599
  }>, "many">>;
352398
352600
  templateId: z$1.ZodOptional<z$1.ZodString>;
352601
+ figmaNodeIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
352399
352602
  }, "strip", z$1.ZodTypeAny, {
352400
352603
  files?: {
352401
352604
  id: string;
@@ -352411,6 +352614,7 @@ declare const DTOThreadMessageRetryInput: z$1.ZodObject<{
352411
352614
  }[] | undefined;
352412
352615
  iterationId?: string | undefined;
352413
352616
  templateId?: string | undefined;
352617
+ figmaNodeIds?: string[] | undefined;
352414
352618
  }, {
352415
352619
  files?: {
352416
352620
  id: string;
@@ -352426,6 +352630,7 @@ declare const DTOThreadMessageRetryInput: z$1.ZodObject<{
352426
352630
  }[] | undefined;
352427
352631
  iterationId?: string | undefined;
352428
352632
  templateId?: string | undefined;
352633
+ figmaNodeIds?: string[] | undefined;
352429
352634
  }>>;
352430
352635
  /**
352431
352636
  * If defined, this message is considered to be a reply to different message
@@ -352573,6 +352778,7 @@ declare const DTOThreadMessageCreateInput: z$1.ZodObject<Pick<{
352573
352778
  } | undefined;
352574
352779
  }>, "many">>;
352575
352780
  templateId: z$1.ZodOptional<z$1.ZodString>;
352781
+ figmaNodeIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
352576
352782
  }, "strip", z$1.ZodTypeAny, {
352577
352783
  files?: {
352578
352784
  id: string;
@@ -352588,6 +352794,7 @@ declare const DTOThreadMessageCreateInput: z$1.ZodObject<Pick<{
352588
352794
  }[] | undefined;
352589
352795
  iterationId?: string | undefined;
352590
352796
  templateId?: string | undefined;
352797
+ figmaNodeIds?: string[] | undefined;
352591
352798
  }, {
352592
352799
  files?: {
352593
352800
  id: string;
@@ -352603,6 +352810,7 @@ declare const DTOThreadMessageCreateInput: z$1.ZodObject<Pick<{
352603
352810
  }[] | undefined;
352604
352811
  iterationId?: string | undefined;
352605
352812
  templateId?: string | undefined;
352813
+ figmaNodeIds?: string[] | undefined;
352606
352814
  }>>;
352607
352815
  /**
352608
352816
  * If defined, this message is considered to be a reply to different message
@@ -352765,6 +352973,7 @@ declare const DTOThreadMessageUpdateInput: z$1.ZodObject<Pick<{
352765
352973
  } | undefined;
352766
352974
  }>, "many">>;
352767
352975
  templateId: z$1.ZodOptional<z$1.ZodString>;
352976
+ figmaNodeIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
352768
352977
  }, "strip", z$1.ZodTypeAny, {
352769
352978
  files?: {
352770
352979
  id: string;
@@ -352780,6 +352989,7 @@ declare const DTOThreadMessageUpdateInput: z$1.ZodObject<Pick<{
352780
352989
  }[] | undefined;
352781
352990
  iterationId?: string | undefined;
352782
352991
  templateId?: string | undefined;
352992
+ figmaNodeIds?: string[] | undefined;
352783
352993
  }, {
352784
352994
  files?: {
352785
352995
  id: string;
@@ -352795,6 +353005,7 @@ declare const DTOThreadMessageUpdateInput: z$1.ZodObject<Pick<{
352795
353005
  }[] | undefined;
352796
353006
  iterationId?: string | undefined;
352797
353007
  templateId?: string | undefined;
353008
+ figmaNodeIds?: string[] | undefined;
352798
353009
  }>>;
352799
353010
  /**
352800
353011
  * If defined, this message is considered to be a reply to different message
@@ -352860,6 +353071,7 @@ declare const DTOThreadMessageUpdateInput: z$1.ZodObject<Pick<{
352860
353071
  } | undefined;
352861
353072
  }>, "many">>;
352862
353073
  templateId: z$1.ZodOptional<z$1.ZodString>;
353074
+ figmaNodeIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
352863
353075
  }, "strip", z$1.ZodTypeAny, {
352864
353076
  files?: {
352865
353077
  id: string;
@@ -352875,6 +353087,7 @@ declare const DTOThreadMessageUpdateInput: z$1.ZodObject<Pick<{
352875
353087
  }[] | undefined;
352876
353088
  iterationId?: string | undefined;
352877
353089
  templateId?: string | undefined;
353090
+ figmaNodeIds?: string[] | undefined;
352878
353091
  }, {
352879
353092
  files?: {
352880
353093
  id: string;
@@ -352890,6 +353103,7 @@ declare const DTOThreadMessageUpdateInput: z$1.ZodObject<Pick<{
352890
353103
  }[] | undefined;
352891
353104
  iterationId?: string | undefined;
352892
353105
  templateId?: string | undefined;
353106
+ figmaNodeIds?: string[] | undefined;
352893
353107
  }>>>;
352894
353108
  agentResponseTrackerId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>>>;
352895
353109
  }, "strip", z$1.ZodTypeAny, {
@@ -352911,6 +353125,7 @@ declare const DTOThreadMessageUpdateInput: z$1.ZodObject<Pick<{
352911
353125
  }[] | undefined;
352912
353126
  iterationId?: string | undefined;
352913
353127
  templateId?: string | undefined;
353128
+ figmaNodeIds?: string[] | undefined;
352914
353129
  } | undefined;
352915
353130
  }, {
352916
353131
  id: string;
@@ -352931,6 +353146,7 @@ declare const DTOThreadMessageUpdateInput: z$1.ZodObject<Pick<{
352931
353146
  }[] | undefined;
352932
353147
  iterationId?: string | undefined;
352933
353148
  templateId?: string | undefined;
353149
+ figmaNodeIds?: string[] | undefined;
352934
353150
  } | undefined;
352935
353151
  }>;
352936
353152
  type DTOThreadMessageUpdateInput = z$1.infer<typeof DTOThreadMessageUpdateInput>;
@@ -353071,6 +353287,7 @@ declare const DTOThreadMessageResponse: z$1.ZodObject<{
353071
353287
  } | undefined;
353072
353288
  }>, "many">>;
353073
353289
  templateId: z$1.ZodOptional<z$1.ZodString>;
353290
+ figmaNodeIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
353074
353291
  }, "strip", z$1.ZodTypeAny, {
353075
353292
  files?: {
353076
353293
  id: string;
@@ -353086,6 +353303,7 @@ declare const DTOThreadMessageResponse: z$1.ZodObject<{
353086
353303
  }[] | undefined;
353087
353304
  iterationId?: string | undefined;
353088
353305
  templateId?: string | undefined;
353306
+ figmaNodeIds?: string[] | undefined;
353089
353307
  }, {
353090
353308
  files?: {
353091
353309
  id: string;
@@ -353101,6 +353319,7 @@ declare const DTOThreadMessageResponse: z$1.ZodObject<{
353101
353319
  }[] | undefined;
353102
353320
  iterationId?: string | undefined;
353103
353321
  templateId?: string | undefined;
353322
+ figmaNodeIds?: string[] | undefined;
353104
353323
  }>>;
353105
353324
  /**
353106
353325
  * If defined, this message is considered to be a reply to different message
@@ -353144,6 +353363,7 @@ declare const DTOThreadMessageResponse: z$1.ZodObject<{
353144
353363
  }[] | undefined;
353145
353364
  iterationId?: string | undefined;
353146
353365
  templateId?: string | undefined;
353366
+ figmaNodeIds?: string[] | undefined;
353147
353367
  } | undefined;
353148
353368
  replyToMessageId?: string | undefined;
353149
353369
  isRetry?: boolean | undefined;
@@ -353183,6 +353403,7 @@ declare const DTOThreadMessageResponse: z$1.ZodObject<{
353183
353403
  }[] | undefined;
353184
353404
  iterationId?: string | undefined;
353185
353405
  templateId?: string | undefined;
353406
+ figmaNodeIds?: string[] | undefined;
353186
353407
  } | undefined;
353187
353408
  replyToMessageId?: string | undefined;
353188
353409
  isRetry?: boolean | undefined;
@@ -353224,6 +353445,7 @@ declare const DTOThreadMessageResponse: z$1.ZodObject<{
353224
353445
  }[] | undefined;
353225
353446
  iterationId?: string | undefined;
353226
353447
  templateId?: string | undefined;
353448
+ figmaNodeIds?: string[] | undefined;
353227
353449
  } | undefined;
353228
353450
  replyToMessageId?: string | undefined;
353229
353451
  isRetry?: boolean | undefined;
@@ -353265,6 +353487,7 @@ declare const DTOThreadMessageResponse: z$1.ZodObject<{
353265
353487
  }[] | undefined;
353266
353488
  iterationId?: string | undefined;
353267
353489
  templateId?: string | undefined;
353490
+ figmaNodeIds?: string[] | undefined;
353268
353491
  } | undefined;
353269
353492
  replyToMessageId?: string | undefined;
353270
353493
  isRetry?: boolean | undefined;
@@ -353420,6 +353643,7 @@ declare const DTOThreadMessageListResponse: z$1.ZodObject<{
353420
353643
  } | undefined;
353421
353644
  }>, "many">>;
353422
353645
  templateId: z$1.ZodOptional<z$1.ZodString>;
353646
+ figmaNodeIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
353423
353647
  }, "strip", z$1.ZodTypeAny, {
353424
353648
  files?: {
353425
353649
  id: string;
@@ -353435,6 +353659,7 @@ declare const DTOThreadMessageListResponse: z$1.ZodObject<{
353435
353659
  }[] | undefined;
353436
353660
  iterationId?: string | undefined;
353437
353661
  templateId?: string | undefined;
353662
+ figmaNodeIds?: string[] | undefined;
353438
353663
  }, {
353439
353664
  files?: {
353440
353665
  id: string;
@@ -353450,6 +353675,7 @@ declare const DTOThreadMessageListResponse: z$1.ZodObject<{
353450
353675
  }[] | undefined;
353451
353676
  iterationId?: string | undefined;
353452
353677
  templateId?: string | undefined;
353678
+ figmaNodeIds?: string[] | undefined;
353453
353679
  }>>;
353454
353680
  /**
353455
353681
  * If defined, this message is considered to be a reply to different message
@@ -353493,6 +353719,7 @@ declare const DTOThreadMessageListResponse: z$1.ZodObject<{
353493
353719
  }[] | undefined;
353494
353720
  iterationId?: string | undefined;
353495
353721
  templateId?: string | undefined;
353722
+ figmaNodeIds?: string[] | undefined;
353496
353723
  } | undefined;
353497
353724
  replyToMessageId?: string | undefined;
353498
353725
  isRetry?: boolean | undefined;
@@ -353532,6 +353759,7 @@ declare const DTOThreadMessageListResponse: z$1.ZodObject<{
353532
353759
  }[] | undefined;
353533
353760
  iterationId?: string | undefined;
353534
353761
  templateId?: string | undefined;
353762
+ figmaNodeIds?: string[] | undefined;
353535
353763
  } | undefined;
353536
353764
  replyToMessageId?: string | undefined;
353537
353765
  isRetry?: boolean | undefined;
@@ -353590,6 +353818,7 @@ declare const DTOThreadMessageListResponse: z$1.ZodObject<{
353590
353818
  }[] | undefined;
353591
353819
  iterationId?: string | undefined;
353592
353820
  templateId?: string | undefined;
353821
+ figmaNodeIds?: string[] | undefined;
353593
353822
  } | undefined;
353594
353823
  replyToMessageId?: string | undefined;
353595
353824
  isRetry?: boolean | undefined;
@@ -353638,6 +353867,7 @@ declare const DTOThreadMessageListResponse: z$1.ZodObject<{
353638
353867
  }[] | undefined;
353639
353868
  iterationId?: string | undefined;
353640
353869
  templateId?: string | undefined;
353870
+ figmaNodeIds?: string[] | undefined;
353641
353871
  } | undefined;
353642
353872
  replyToMessageId?: string | undefined;
353643
353873
  isRetry?: boolean | undefined;
@@ -353768,6 +353998,7 @@ declare const DTOThreadEventMessagesSent: z$1.ZodObject<{
353768
353998
  } | undefined;
353769
353999
  }>, "many">>;
353770
354000
  templateId: z$1.ZodOptional<z$1.ZodString>;
354001
+ figmaNodeIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
353771
354002
  }, "strip", z$1.ZodTypeAny, {
353772
354003
  files?: {
353773
354004
  id: string;
@@ -353783,6 +354014,7 @@ declare const DTOThreadEventMessagesSent: z$1.ZodObject<{
353783
354014
  }[] | undefined;
353784
354015
  iterationId?: string | undefined;
353785
354016
  templateId?: string | undefined;
354017
+ figmaNodeIds?: string[] | undefined;
353786
354018
  }, {
353787
354019
  files?: {
353788
354020
  id: string;
@@ -353798,6 +354030,7 @@ declare const DTOThreadEventMessagesSent: z$1.ZodObject<{
353798
354030
  }[] | undefined;
353799
354031
  iterationId?: string | undefined;
353800
354032
  templateId?: string | undefined;
354033
+ figmaNodeIds?: string[] | undefined;
353801
354034
  }>>;
353802
354035
  /**
353803
354036
  * If defined, this message is considered to be a reply to different message
@@ -353841,6 +354074,7 @@ declare const DTOThreadEventMessagesSent: z$1.ZodObject<{
353841
354074
  }[] | undefined;
353842
354075
  iterationId?: string | undefined;
353843
354076
  templateId?: string | undefined;
354077
+ figmaNodeIds?: string[] | undefined;
353844
354078
  } | undefined;
353845
354079
  replyToMessageId?: string | undefined;
353846
354080
  isRetry?: boolean | undefined;
@@ -353880,6 +354114,7 @@ declare const DTOThreadEventMessagesSent: z$1.ZodObject<{
353880
354114
  }[] | undefined;
353881
354115
  iterationId?: string | undefined;
353882
354116
  templateId?: string | undefined;
354117
+ figmaNodeIds?: string[] | undefined;
353883
354118
  } | undefined;
353884
354119
  replyToMessageId?: string | undefined;
353885
354120
  isRetry?: boolean | undefined;
@@ -353922,6 +354157,7 @@ declare const DTOThreadEventMessagesSent: z$1.ZodObject<{
353922
354157
  }[] | undefined;
353923
354158
  iterationId?: string | undefined;
353924
354159
  templateId?: string | undefined;
354160
+ figmaNodeIds?: string[] | undefined;
353925
354161
  } | undefined;
353926
354162
  replyToMessageId?: string | undefined;
353927
354163
  isRetry?: boolean | undefined;
@@ -353964,6 +354200,7 @@ declare const DTOThreadEventMessagesSent: z$1.ZodObject<{
353964
354200
  }[] | undefined;
353965
354201
  iterationId?: string | undefined;
353966
354202
  templateId?: string | undefined;
354203
+ figmaNodeIds?: string[] | undefined;
353967
354204
  } | undefined;
353968
354205
  replyToMessageId?: string | undefined;
353969
354206
  isRetry?: boolean | undefined;
@@ -354087,6 +354324,7 @@ declare const DTOThreadEventMessagesUpdated: z$1.ZodObject<{
354087
354324
  } | undefined;
354088
354325
  }>, "many">>;
354089
354326
  templateId: z$1.ZodOptional<z$1.ZodString>;
354327
+ figmaNodeIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
354090
354328
  }, "strip", z$1.ZodTypeAny, {
354091
354329
  files?: {
354092
354330
  id: string;
@@ -354102,6 +354340,7 @@ declare const DTOThreadEventMessagesUpdated: z$1.ZodObject<{
354102
354340
  }[] | undefined;
354103
354341
  iterationId?: string | undefined;
354104
354342
  templateId?: string | undefined;
354343
+ figmaNodeIds?: string[] | undefined;
354105
354344
  }, {
354106
354345
  files?: {
354107
354346
  id: string;
@@ -354117,6 +354356,7 @@ declare const DTOThreadEventMessagesUpdated: z$1.ZodObject<{
354117
354356
  }[] | undefined;
354118
354357
  iterationId?: string | undefined;
354119
354358
  templateId?: string | undefined;
354359
+ figmaNodeIds?: string[] | undefined;
354120
354360
  }>>;
354121
354361
  /**
354122
354362
  * If defined, this message is considered to be a reply to different message
@@ -354160,6 +354400,7 @@ declare const DTOThreadEventMessagesUpdated: z$1.ZodObject<{
354160
354400
  }[] | undefined;
354161
354401
  iterationId?: string | undefined;
354162
354402
  templateId?: string | undefined;
354403
+ figmaNodeIds?: string[] | undefined;
354163
354404
  } | undefined;
354164
354405
  replyToMessageId?: string | undefined;
354165
354406
  isRetry?: boolean | undefined;
@@ -354199,6 +354440,7 @@ declare const DTOThreadEventMessagesUpdated: z$1.ZodObject<{
354199
354440
  }[] | undefined;
354200
354441
  iterationId?: string | undefined;
354201
354442
  templateId?: string | undefined;
354443
+ figmaNodeIds?: string[] | undefined;
354202
354444
  } | undefined;
354203
354445
  replyToMessageId?: string | undefined;
354204
354446
  isRetry?: boolean | undefined;
@@ -354241,6 +354483,7 @@ declare const DTOThreadEventMessagesUpdated: z$1.ZodObject<{
354241
354483
  }[] | undefined;
354242
354484
  iterationId?: string | undefined;
354243
354485
  templateId?: string | undefined;
354486
+ figmaNodeIds?: string[] | undefined;
354244
354487
  } | undefined;
354245
354488
  replyToMessageId?: string | undefined;
354246
354489
  isRetry?: boolean | undefined;
@@ -354283,6 +354526,7 @@ declare const DTOThreadEventMessagesUpdated: z$1.ZodObject<{
354283
354526
  }[] | undefined;
354284
354527
  iterationId?: string | undefined;
354285
354528
  templateId?: string | undefined;
354529
+ figmaNodeIds?: string[] | undefined;
354286
354530
  } | undefined;
354287
354531
  replyToMessageId?: string | undefined;
354288
354532
  isRetry?: boolean | undefined;
@@ -354478,6 +354722,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
354478
354722
  } | undefined;
354479
354723
  }>, "many">>;
354480
354724
  templateId: z$1.ZodOptional<z$1.ZodString>;
354725
+ figmaNodeIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
354481
354726
  }, "strip", z$1.ZodTypeAny, {
354482
354727
  files?: {
354483
354728
  id: string;
@@ -354493,6 +354738,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
354493
354738
  }[] | undefined;
354494
354739
  iterationId?: string | undefined;
354495
354740
  templateId?: string | undefined;
354741
+ figmaNodeIds?: string[] | undefined;
354496
354742
  }, {
354497
354743
  files?: {
354498
354744
  id: string;
@@ -354508,6 +354754,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
354508
354754
  }[] | undefined;
354509
354755
  iterationId?: string | undefined;
354510
354756
  templateId?: string | undefined;
354757
+ figmaNodeIds?: string[] | undefined;
354511
354758
  }>>;
354512
354759
  /**
354513
354760
  * If defined, this message is considered to be a reply to different message
@@ -354551,6 +354798,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
354551
354798
  }[] | undefined;
354552
354799
  iterationId?: string | undefined;
354553
354800
  templateId?: string | undefined;
354801
+ figmaNodeIds?: string[] | undefined;
354554
354802
  } | undefined;
354555
354803
  replyToMessageId?: string | undefined;
354556
354804
  isRetry?: boolean | undefined;
@@ -354590,6 +354838,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
354590
354838
  }[] | undefined;
354591
354839
  iterationId?: string | undefined;
354592
354840
  templateId?: string | undefined;
354841
+ figmaNodeIds?: string[] | undefined;
354593
354842
  } | undefined;
354594
354843
  replyToMessageId?: string | undefined;
354595
354844
  isRetry?: boolean | undefined;
@@ -354632,6 +354881,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
354632
354881
  }[] | undefined;
354633
354882
  iterationId?: string | undefined;
354634
354883
  templateId?: string | undefined;
354884
+ figmaNodeIds?: string[] | undefined;
354635
354885
  } | undefined;
354636
354886
  replyToMessageId?: string | undefined;
354637
354887
  isRetry?: boolean | undefined;
@@ -354674,6 +354924,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
354674
354924
  }[] | undefined;
354675
354925
  iterationId?: string | undefined;
354676
354926
  templateId?: string | undefined;
354927
+ figmaNodeIds?: string[] | undefined;
354677
354928
  } | undefined;
354678
354929
  replyToMessageId?: string | undefined;
354679
354930
  isRetry?: boolean | undefined;
@@ -354795,6 +355046,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
354795
355046
  } | undefined;
354796
355047
  }>, "many">>;
354797
355048
  templateId: z$1.ZodOptional<z$1.ZodString>;
355049
+ figmaNodeIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
354798
355050
  }, "strip", z$1.ZodTypeAny, {
354799
355051
  files?: {
354800
355052
  id: string;
@@ -354810,6 +355062,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
354810
355062
  }[] | undefined;
354811
355063
  iterationId?: string | undefined;
354812
355064
  templateId?: string | undefined;
355065
+ figmaNodeIds?: string[] | undefined;
354813
355066
  }, {
354814
355067
  files?: {
354815
355068
  id: string;
@@ -354825,6 +355078,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
354825
355078
  }[] | undefined;
354826
355079
  iterationId?: string | undefined;
354827
355080
  templateId?: string | undefined;
355081
+ figmaNodeIds?: string[] | undefined;
354828
355082
  }>>;
354829
355083
  /**
354830
355084
  * If defined, this message is considered to be a reply to different message
@@ -354868,6 +355122,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
354868
355122
  }[] | undefined;
354869
355123
  iterationId?: string | undefined;
354870
355124
  templateId?: string | undefined;
355125
+ figmaNodeIds?: string[] | undefined;
354871
355126
  } | undefined;
354872
355127
  replyToMessageId?: string | undefined;
354873
355128
  isRetry?: boolean | undefined;
@@ -354907,6 +355162,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
354907
355162
  }[] | undefined;
354908
355163
  iterationId?: string | undefined;
354909
355164
  templateId?: string | undefined;
355165
+ figmaNodeIds?: string[] | undefined;
354910
355166
  } | undefined;
354911
355167
  replyToMessageId?: string | undefined;
354912
355168
  isRetry?: boolean | undefined;
@@ -354949,6 +355205,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
354949
355205
  }[] | undefined;
354950
355206
  iterationId?: string | undefined;
354951
355207
  templateId?: string | undefined;
355208
+ figmaNodeIds?: string[] | undefined;
354952
355209
  } | undefined;
354953
355210
  replyToMessageId?: string | undefined;
354954
355211
  isRetry?: boolean | undefined;
@@ -354991,6 +355248,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
354991
355248
  }[] | undefined;
354992
355249
  iterationId?: string | undefined;
354993
355250
  templateId?: string | undefined;
355251
+ figmaNodeIds?: string[] | undefined;
354994
355252
  } | undefined;
354995
355253
  replyToMessageId?: string | undefined;
354996
355254
  isRetry?: boolean | undefined;
@@ -364060,6 +364318,19 @@ declare const DTOSubscription: z$1.ZodObject<{
364060
364318
  errorReason: string;
364061
364319
  enabled: boolean;
364062
364320
  }>;
364321
+ forgeAttachFigmaFrames: z$1.ZodObject<{
364322
+ enabled: z$1.ZodBoolean;
364323
+ errorMessage: z$1.ZodString;
364324
+ errorReason: z$1.ZodString;
364325
+ }, "strip", z$1.ZodTypeAny, {
364326
+ errorMessage: string;
364327
+ errorReason: string;
364328
+ enabled: boolean;
364329
+ }, {
364330
+ errorMessage: string;
364331
+ errorReason: string;
364332
+ enabled: boolean;
364333
+ }>;
364063
364334
  forgeActiveProjectContexts: z$1.ZodObject<{
364064
364335
  max: z$1.ZodOptional<z$1.ZodNumber>;
364065
364336
  errorMessage: z$1.ZodString;
@@ -364278,6 +364549,11 @@ declare const DTOSubscription: z$1.ZodObject<{
364278
364549
  errorReason: string;
364279
364550
  enabled: boolean;
364280
364551
  };
364552
+ forgeAttachFigmaFrames: {
364553
+ errorMessage: string;
364554
+ errorReason: string;
364555
+ enabled: boolean;
364556
+ };
364281
364557
  forgeActiveProjectContexts: {
364282
364558
  errorMessage: string;
364283
364559
  errorReason: string;
@@ -364456,6 +364732,11 @@ declare const DTOSubscription: z$1.ZodObject<{
364456
364732
  errorReason: string;
364457
364733
  enabled: boolean;
364458
364734
  };
364735
+ forgeAttachFigmaFrames: {
364736
+ errorMessage: string;
364737
+ errorReason: string;
364738
+ enabled: boolean;
364739
+ };
364459
364740
  forgeActiveProjectContexts: {
364460
364741
  errorMessage: string;
364461
364742
  errorReason: string;
@@ -364742,6 +365023,11 @@ declare const DTOSubscription: z$1.ZodObject<{
364742
365023
  errorReason: string;
364743
365024
  enabled: boolean;
364744
365025
  };
365026
+ forgeAttachFigmaFrames: {
365027
+ errorMessage: string;
365028
+ errorReason: string;
365029
+ enabled: boolean;
365030
+ };
364745
365031
  forgeActiveProjectContexts: {
364746
365032
  errorMessage: string;
364747
365033
  errorReason: string;
@@ -364964,6 +365250,11 @@ declare const DTOSubscription: z$1.ZodObject<{
364964
365250
  errorReason: string;
364965
365251
  enabled: boolean;
364966
365252
  };
365253
+ forgeAttachFigmaFrames: {
365254
+ errorMessage: string;
365255
+ errorReason: string;
365256
+ enabled: boolean;
365257
+ };
364967
365258
  forgeActiveProjectContexts: {
364968
365259
  errorMessage: string;
364969
365260
  errorReason: string;
@@ -365402,6 +365693,19 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
365402
365693
  errorReason: string;
365403
365694
  enabled: boolean;
365404
365695
  }>;
365696
+ forgeAttachFigmaFrames: z$1.ZodObject<{
365697
+ enabled: z$1.ZodBoolean;
365698
+ errorMessage: z$1.ZodString;
365699
+ errorReason: z$1.ZodString;
365700
+ }, "strip", z$1.ZodTypeAny, {
365701
+ errorMessage: string;
365702
+ errorReason: string;
365703
+ enabled: boolean;
365704
+ }, {
365705
+ errorMessage: string;
365706
+ errorReason: string;
365707
+ enabled: boolean;
365708
+ }>;
365405
365709
  forgeActiveProjectContexts: z$1.ZodObject<{
365406
365710
  max: z$1.ZodOptional<z$1.ZodNumber>;
365407
365711
  errorMessage: z$1.ZodString;
@@ -365620,6 +365924,11 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
365620
365924
  errorReason: string;
365621
365925
  enabled: boolean;
365622
365926
  };
365927
+ forgeAttachFigmaFrames: {
365928
+ errorMessage: string;
365929
+ errorReason: string;
365930
+ enabled: boolean;
365931
+ };
365623
365932
  forgeActiveProjectContexts: {
365624
365933
  errorMessage: string;
365625
365934
  errorReason: string;
@@ -365798,6 +366107,11 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
365798
366107
  errorReason: string;
365799
366108
  enabled: boolean;
365800
366109
  };
366110
+ forgeAttachFigmaFrames: {
366111
+ errorMessage: string;
366112
+ errorReason: string;
366113
+ enabled: boolean;
366114
+ };
365801
366115
  forgeActiveProjectContexts: {
365802
366116
  errorMessage: string;
365803
366117
  errorReason: string;
@@ -366084,6 +366398,11 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
366084
366398
  errorReason: string;
366085
366399
  enabled: boolean;
366086
366400
  };
366401
+ forgeAttachFigmaFrames: {
366402
+ errorMessage: string;
366403
+ errorReason: string;
366404
+ enabled: boolean;
366405
+ };
366087
366406
  forgeActiveProjectContexts: {
366088
366407
  errorMessage: string;
366089
366408
  errorReason: string;
@@ -366306,6 +366625,11 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
366306
366625
  errorReason: string;
366307
366626
  enabled: boolean;
366308
366627
  };
366628
+ forgeAttachFigmaFrames: {
366629
+ errorMessage: string;
366630
+ errorReason: string;
366631
+ enabled: boolean;
366632
+ };
366309
366633
  forgeActiveProjectContexts: {
366310
366634
  errorMessage: string;
366311
366635
  errorReason: string;
@@ -366699,6 +367023,11 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
366699
367023
  errorReason: string;
366700
367024
  enabled: boolean;
366701
367025
  };
367026
+ forgeAttachFigmaFrames: {
367027
+ errorMessage: string;
367028
+ errorReason: string;
367029
+ enabled: boolean;
367030
+ };
366702
367031
  forgeActiveProjectContexts: {
366703
367032
  errorMessage: string;
366704
367033
  errorReason: string;
@@ -366960,6 +367289,11 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
366960
367289
  errorReason: string;
366961
367290
  enabled: boolean;
366962
367291
  };
367292
+ forgeAttachFigmaFrames: {
367293
+ errorMessage: string;
367294
+ errorReason: string;
367295
+ enabled: boolean;
367296
+ };
366963
367297
  forgeActiveProjectContexts: {
366964
367298
  errorMessage: string;
366965
367299
  errorReason: string;
@@ -369959,6 +370293,45 @@ declare class ExporterJobsEndpoint {
369959
370293
  }>;
369960
370294
  }
369961
370295
 
370296
+ declare const DTOCodeSnapshotUploadInitPayload: z.ZodObject<{
370297
+ archiveChecksum: z.ZodString;
370298
+ archiveName: z.ZodString;
370299
+ archiveSize: z.ZodNumber;
370300
+ designSystemId: z.ZodString;
370301
+ repoId: z.ZodString;
370302
+ repoPackageName: z.ZodString;
370303
+ scannerType: z.ZodEnum<["Components", "Usage"]>;
370304
+ }, "strip", z.ZodTypeAny, {
370305
+ designSystemId: string;
370306
+ archiveChecksum: string;
370307
+ archiveName: string;
370308
+ archiveSize: number;
370309
+ repoId: string;
370310
+ repoPackageName: string;
370311
+ scannerType: "Components" | "Usage";
370312
+ }, {
370313
+ designSystemId: string;
370314
+ archiveChecksum: string;
370315
+ archiveName: string;
370316
+ archiveSize: number;
370317
+ repoId: string;
370318
+ repoPackageName: string;
370319
+ scannerType: "Components" | "Usage";
370320
+ }>;
370321
+ type DTOCodeSnapshotUploadInitPayload = z.infer<typeof DTOCodeSnapshotUploadInitPayload>;
370322
+ declare const DTOCodeSnapshotUploadInitScannerType: z.ZodEnum<["Components", "Usage"]>;
370323
+ type DTOCodeSnapshotUploadInitScannerType = z.infer<typeof DTOCodeSnapshotUploadInitScannerType>;
370324
+ declare const DTOCodeSnapshotFinalizePayload: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
370325
+ type DTOCodeSnapshotFinalizePayload = z.infer<typeof DTOCodeSnapshotFinalizePayload>;
370326
+ declare const DTOCodeSnapshotStartProcessingRunPayload: z.ZodObject<{
370327
+ designSystemId: z.ZodString;
370328
+ }, "strip", z.ZodTypeAny, {
370329
+ designSystemId: string;
370330
+ }, {
370331
+ designSystemId: string;
370332
+ }>;
370333
+ type DTOCodeSnapshotStartProcessingRunPayload = z.infer<typeof DTOCodeSnapshotStartProcessingRunPayload>;
370334
+
369962
370335
  declare const DTODesignSystemUpdateInput: z.ZodObject<{
369963
370336
  name: z.ZodOptional<z.ZodString>;
369964
370337
  description: z.ZodOptional<z.ZodString>;
@@ -378198,6 +378571,38 @@ declare class DesignSystemBffEndpoint {
378198
378571
  }>;
378199
378572
  }
378200
378573
 
378574
+ declare class DesignSystemCodeSnapshotsEndpoint {
378575
+ private readonly requestExecutor;
378576
+ constructor(requestExecutor: RequestExecutor);
378577
+ uploadInit(body: DTOCodeSnapshotUploadInitPayload): Promise<{
378578
+ fileId: string;
378579
+ uploadUrl: string;
378580
+ snapshotId: string;
378581
+ }>;
378582
+ finalize(snapshotId: string, body?: DTOCodeSnapshotFinalizePayload): Promise<{
378583
+ ok: true;
378584
+ snapshotId: string;
378585
+ processingRunId: string | null;
378586
+ }>;
378587
+ startProcessingRun(body: DTOCodeSnapshotStartProcessingRunPayload): Promise<{
378588
+ processingRunId: string;
378589
+ snapshotIds: string[];
378590
+ }>;
378591
+ getProcessingRunStatus(designSystemId: string): Promise<{
378592
+ runs: {
378593
+ status: "Failed" | "Processing" | "Processed";
378594
+ createdAt: string;
378595
+ updatedAt: string;
378596
+ finishedAt: string | null;
378597
+ processingRunId: string;
378598
+ snapshotIds: string[];
378599
+ errorSummary: string | null;
378600
+ failedComponentsCount: number;
378601
+ startedAt: string;
378602
+ }[];
378603
+ }>;
378604
+ }
378605
+
378201
378606
  declare class DesignSystemContactsEndpoint {
378202
378607
  private readonly requestExecutor;
378203
378608
  constructor(requestExecutor: RequestExecutor);
@@ -379131,6 +379536,7 @@ declare class DesignSystemsEndpoint {
379131
379536
  readonly members: DesignSystemMembersEndpoint;
379132
379537
  readonly versions: DesignSystemVersionsEndpoint;
379133
379538
  readonly bff: DesignSystemBffEndpoint;
379539
+ readonly codeSnapshots: DesignSystemCodeSnapshotsEndpoint;
379134
379540
  readonly sources: DesignSystemSourcesEndpoint;
379135
379541
  readonly storybook: StorybookEntriesEndpoint;
379136
379542
  readonly contacts: DesignSystemContactsEndpoint;
@@ -389999,6 +390405,11 @@ declare class WorkspaceSubscriptionEndpoint {
389999
390405
  errorReason: string;
390000
390406
  enabled: boolean;
390001
390407
  };
390408
+ forgeAttachFigmaFrames: {
390409
+ errorMessage: string;
390410
+ errorReason: string;
390411
+ enabled: boolean;
390412
+ };
390002
390413
  forgeActiveProjectContexts: {
390003
390414
  errorMessage: string;
390004
390415
  errorReason: string;
@@ -390614,6 +391025,7 @@ declare class ThreadsEndpoint {
390614
391025
  }[] | undefined;
390615
391026
  iterationId?: string | undefined;
390616
391027
  templateId?: string | undefined;
391028
+ figmaNodeIds?: string[] | undefined;
390617
391029
  } | undefined;
390618
391030
  replyToMessageId?: string | undefined;
390619
391031
  isRetry?: boolean | undefined;
@@ -390663,6 +391075,7 @@ declare class ThreadsEndpoint {
390663
391075
  }[] | undefined;
390664
391076
  iterationId?: string | undefined;
390665
391077
  templateId?: string | undefined;
391078
+ figmaNodeIds?: string[] | undefined;
390666
391079
  } | undefined;
390667
391080
  replyToMessageId?: string | undefined;
390668
391081
  isRetry?: boolean | undefined;
@@ -393725,4 +394138,4 @@ declare function isValidRedirectPath(path: string): {
393725
394138
  reason: ValidationErrorReason | undefined;
393726
394139
  };
393727
394140
 
393728
- 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, DTOCollectionOrigin, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateFeatureSandbox, 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, DTODesignSystemUpdateSwitcherInput, 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, DTOFVPMigrationsCollectionKeysPayload, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactGetByIdParam, DTOFeatureArtifactListQuery, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureArtifactWithContentResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationError, DTOFeatureIterationErrorType, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureIterationValidateInput, DTOFeatureIterationValidateResponse, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeaturePublishedStateUpdateInput, DTOFeatureSandbox, DTOFeatureSandboxListResponse, DTOFeatureUpdateThemeInput, 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, DTOForgeDocumentGetByIdParam, DTOForgeDocumentGetResponse, DTOForgeEntity, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFigmaNode, DTOForgeFigmaNodeCreateRequest, DTOForgeFigmaNodeOrigin, DTOForgeFigmaNodeResponse, DTOForgeFigmaNodeState, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeMemoryCreateInput, DTOForgeMemoryDeleteInput, DTOForgeMemoryEntry, DTOForgeMemoryEntryListQuery, DTOForgeMemoryEntryListResponse, DTOForgeMemoryEntryResponse, DTOForgeMemoryUpdateInput, 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, DTOForgeProjectContextCreated, DTOForgeProjectContextDeleted, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextUpdated, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreated, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetByIdParam, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeatureSandboxUpdated, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectIterationTagSet, DTOForgeProjectIterationUpdated, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberDeleted, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberListQuery, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMemberUpdated, DTOForgeProjectMembersCreated, DTOForgeProjectMembersListResponse, DTOForgeProjectPublishedFeature, DTOForgeProjectPublishedFeatureGetResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomEvent, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdated, 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, DTOIPWhitelist, DTOIPWhitelistEntry, DTOIPWhitelistResponse, DTOIPWhitelistUpdate, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMCPStream, DTOMCPStreamResponse, DTOMCPStreamUpdateInput, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONotificationBase, DTONotificationChannel, DTONotificationChatMentionPayload, DTONotificationCreateInput, DTONotificationProjectDocumentCommentPayload, DTONotificationProjectInvitationPayload, DTONotificationType, 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, DTOProjectContextOverride, DTOProjectContextOverrideInput, DTOProjectContextOverrideResponse, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOSandboxError, DTOSandboxTemplate, DTOSandboxTemplateBuild, DTOSandboxTemplateBuildCreateInput, DTOSandboxTemplateBuildCreateResponse, DTOSandboxTemplateBuildCreated, DTOSandboxTemplateBuildFinalizeResponse, DTOSandboxTemplateBuildFinished, DTOSandboxTemplateBuildResponse, DTOSandboxTemplateFile, DTOSandboxTemplateListResponse, DTOSandboxTemplatePreset, DTOSandboxTemplateQuery, DTOSandboxTemplateResponse, DTOSandboxTemplateVersion, DTOSandboxTemplateVersionCreated, DTOSandboxTemplateVersionDetail, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSite, DTOStorybookSiteListQuery, DTOStorybookSiteListResponse, DTOStorybookSiteUploadPayload, DTOStorybookSiteUploadResponse, DTOStorybookSiteVersion, DTOStorybookSiteVersionResponse, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpcomingChange, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThemesListQuery, 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, DTOUpdateFeatureSandbox, 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, DTOUserNotificationSettings, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceDefaultProjectAccessMode, DTOWorkspaceDefaultProjectRole, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceRoomEvent, 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, ForgeDocumentsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationTagsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeMemoryEndpoint, 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, MCPStreamsEndpoint, 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, SandboxTemplateBuildsEndpoint, SandboxTemplatesEndpoint, SandboxesEndpoint, StorybookEntriesEndpoint, StorybookSitesEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, type VariableCollections, VariableCollectionsSchema, VariableMode, VariableValue, type Variables, VariablesMapping, VariablesSchema, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceBillingEndpoint, 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 };
394141
+ 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, DTOCodeSnapshotFinalizePayload, DTOCodeSnapshotFinalizeResponse, DTOCodeSnapshotProcessingRunResponse, DTOCodeSnapshotProcessingRunStatus, DTOCodeSnapshotProcessingRunStatusItem, DTOCodeSnapshotProcessingRunStatusResponse, DTOCodeSnapshotScannerType, DTOCodeSnapshotStartProcessingRunPayload, DTOCodeSnapshotUploadInitPayload, DTOCodeSnapshotUploadInitResponse, DTOCodeSnapshotUploadInitScannerType, DTOCollectionOrigin, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateFeatureSandbox, 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, DTODesignSystemUpdateSwitcherInput, 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, DTOFVPMigrationsCollectionKeysPayload, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactGetByIdParam, DTOFeatureArtifactListQuery, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureArtifactWithContentResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationError, DTOFeatureIterationErrorType, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureIterationValidateInput, DTOFeatureIterationValidateResponse, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeaturePublishedStateUpdateInput, DTOFeatureSandbox, DTOFeatureSandboxListResponse, DTOFeatureUpdateThemeInput, 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, DTOForgeDocumentGetByIdParam, DTOForgeDocumentGetResponse, DTOForgeEntity, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFigmaNode, DTOForgeFigmaNodeCreateRequest, DTOForgeFigmaNodeOrigin, DTOForgeFigmaNodeResponse, DTOForgeFigmaNodeState, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeMemoryCreateInput, DTOForgeMemoryDeleteInput, DTOForgeMemoryEntry, DTOForgeMemoryEntryListQuery, DTOForgeMemoryEntryListResponse, DTOForgeMemoryEntryResponse, DTOForgeMemoryUpdateInput, 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, DTOForgeProjectContextCreated, DTOForgeProjectContextDeleted, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextUpdated, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreated, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetByIdParam, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeatureSandboxUpdated, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectIterationTagSet, DTOForgeProjectIterationUpdated, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberDeleted, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberListQuery, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMemberUpdated, DTOForgeProjectMembersCreated, DTOForgeProjectMembersListResponse, DTOForgeProjectPublishedFeature, DTOForgeProjectPublishedFeatureGetResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomEvent, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdated, 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, DTOIPWhitelist, DTOIPWhitelistEntry, DTOIPWhitelistResponse, DTOIPWhitelistUpdate, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMCPStream, DTOMCPStreamResponse, DTOMCPStreamUpdateInput, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONotificationBase, DTONotificationChannel, DTONotificationChatMentionPayload, DTONotificationCreateInput, DTONotificationProjectDocumentCommentPayload, DTONotificationProjectInvitationPayload, DTONotificationType, 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, DTOProjectContextOverride, DTOProjectContextOverrideInput, DTOProjectContextOverrideResponse, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOSandboxError, DTOSandboxTemplate, DTOSandboxTemplateBuild, DTOSandboxTemplateBuildCreateInput, DTOSandboxTemplateBuildCreateResponse, DTOSandboxTemplateBuildCreated, DTOSandboxTemplateBuildFinalizeResponse, DTOSandboxTemplateBuildFinished, DTOSandboxTemplateBuildResponse, DTOSandboxTemplateFile, DTOSandboxTemplateListResponse, DTOSandboxTemplatePreset, DTOSandboxTemplateQuery, DTOSandboxTemplateResponse, DTOSandboxTemplateVersion, DTOSandboxTemplateVersionCreated, DTOSandboxTemplateVersionDetail, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSite, DTOStorybookSiteListQuery, DTOStorybookSiteListResponse, DTOStorybookSiteUploadPayload, DTOStorybookSiteUploadResponse, DTOStorybookSiteVersion, DTOStorybookSiteVersionResponse, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpcomingChange, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThemesListQuery, 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, DTOUpdateFeatureSandbox, 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, DTOUserNotificationSettings, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceDefaultProjectAccessMode, DTOWorkspaceDefaultProjectRole, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceRoomEvent, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemCodeSnapshotsEndpoint, 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, ForgeDocumentsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationTagsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeMemoryEndpoint, 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, MCPStreamsEndpoint, 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, SandboxTemplateBuildsEndpoint, SandboxTemplatesEndpoint, SandboxesEndpoint, StorybookEntriesEndpoint, StorybookSitesEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, type VariableCollections, VariableCollectionsSchema, VariableMode, VariableValue, type Variables, VariablesMapping, VariablesSchema, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceBillingEndpoint, 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 };