@supernova-studio/client 1.87.10 → 1.88.0

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
@@ -16023,6 +16023,188 @@ declare const DTOBrandUpdatePayload: z.ZodObject<{
16023
16023
  }>;
16024
16024
  type DTOBrandUpdatePayload = z.infer<typeof DTOBrandUpdatePayload>;
16025
16025
 
16026
+ declare const DTOCodeComponentPropUsage: z$1.ZodObject<{
16027
+ /** How many times this property has been used in this repository? */
16028
+ usages: z$1.ZodNumber;
16029
+ /** How many times different values have been used with this property? */
16030
+ values: z$1.ZodRecord<z$1.ZodString, z$1.ZodNumber>;
16031
+ /** How many times a value has not been specified? (all component usages - usages with values) */
16032
+ undefinedValue: z$1.ZodNumber;
16033
+ }, "strip", z$1.ZodTypeAny, {
16034
+ values: Record<string, number>;
16035
+ usages: number;
16036
+ undefinedValue: number;
16037
+ }, {
16038
+ values: Record<string, number>;
16039
+ usages: number;
16040
+ undefinedValue: number;
16041
+ }>;
16042
+ type DTOCodeComponentPropUsage = z$1.infer<typeof DTOCodeComponentPropUsage>;
16043
+ declare const DTOCodeComponentUsage: z$1.ZodObject<{
16044
+ /**
16045
+ * Name of the component in its package.
16046
+ * `componentName` and `componentPackageName` uniquely identify a component
16047
+ */
16048
+ componentName: z$1.ZodString;
16049
+ /**
16050
+ * Which package the component is coming from.
16051
+ * `componentName` and `componentPackageName` uniquely identify a component
16052
+ */
16053
+ componentPackageName: z$1.ZodString;
16054
+ /** Which repository this component is used in */
16055
+ usageRepositoryName: z$1.ZodString;
16056
+ /** Which package of the repository the component is used in */
16057
+ usagePackageName: z$1.ZodString;
16058
+ /** How many times this component has been used in this repository? */
16059
+ usages: z$1.ZodNumber;
16060
+ /** How many files has at least one usage of this component? */
16061
+ usageFiles: z$1.ZodNumber;
16062
+ /** Usage data of the component's props */
16063
+ props: z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
16064
+ /** How many times this property has been used in this repository? */
16065
+ usages: z$1.ZodNumber;
16066
+ /** How many times different values have been used with this property? */
16067
+ values: z$1.ZodRecord<z$1.ZodString, z$1.ZodNumber>;
16068
+ /** How many times a value has not been specified? (all component usages - usages with values) */
16069
+ undefinedValue: z$1.ZodNumber;
16070
+ }, "strip", z$1.ZodTypeAny, {
16071
+ values: Record<string, number>;
16072
+ usages: number;
16073
+ undefinedValue: number;
16074
+ }, {
16075
+ values: Record<string, number>;
16076
+ usages: number;
16077
+ undefinedValue: number;
16078
+ }>>;
16079
+ /** Timestamp of the scan that has shapshotted this data */
16080
+ scanTimestamp: z$1.ZodString;
16081
+ }, "strip", z$1.ZodTypeAny, {
16082
+ componentName: string;
16083
+ props: Record<string, {
16084
+ values: Record<string, number>;
16085
+ usages: number;
16086
+ undefinedValue: number;
16087
+ }>;
16088
+ usages: number;
16089
+ componentPackageName: string;
16090
+ usageRepositoryName: string;
16091
+ usagePackageName: string;
16092
+ usageFiles: number;
16093
+ scanTimestamp: string;
16094
+ }, {
16095
+ componentName: string;
16096
+ props: Record<string, {
16097
+ values: Record<string, number>;
16098
+ usages: number;
16099
+ undefinedValue: number;
16100
+ }>;
16101
+ usages: number;
16102
+ componentPackageName: string;
16103
+ usageRepositoryName: string;
16104
+ usagePackageName: string;
16105
+ usageFiles: number;
16106
+ scanTimestamp: string;
16107
+ }>;
16108
+ type DTOCodeComponentUsage = z$1.infer<typeof DTOCodeComponentUsage>;
16109
+ declare const DTOCodeComponentUsageResponse: z$1.ZodObject<{
16110
+ componentUsage: z$1.ZodArray<z$1.ZodObject<{
16111
+ /**
16112
+ * Name of the component in its package.
16113
+ * `componentName` and `componentPackageName` uniquely identify a component
16114
+ */
16115
+ componentName: z$1.ZodString;
16116
+ /**
16117
+ * Which package the component is coming from.
16118
+ * `componentName` and `componentPackageName` uniquely identify a component
16119
+ */
16120
+ componentPackageName: z$1.ZodString;
16121
+ /** Which repository this component is used in */
16122
+ usageRepositoryName: z$1.ZodString;
16123
+ /** Which package of the repository the component is used in */
16124
+ usagePackageName: z$1.ZodString;
16125
+ /** How many times this component has been used in this repository? */
16126
+ usages: z$1.ZodNumber;
16127
+ /** How many files has at least one usage of this component? */
16128
+ usageFiles: z$1.ZodNumber;
16129
+ /** Usage data of the component's props */
16130
+ props: z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
16131
+ /** How many times this property has been used in this repository? */
16132
+ usages: z$1.ZodNumber;
16133
+ /** How many times different values have been used with this property? */
16134
+ values: z$1.ZodRecord<z$1.ZodString, z$1.ZodNumber>;
16135
+ /** How many times a value has not been specified? (all component usages - usages with values) */
16136
+ undefinedValue: z$1.ZodNumber;
16137
+ }, "strip", z$1.ZodTypeAny, {
16138
+ values: Record<string, number>;
16139
+ usages: number;
16140
+ undefinedValue: number;
16141
+ }, {
16142
+ values: Record<string, number>;
16143
+ usages: number;
16144
+ undefinedValue: number;
16145
+ }>>;
16146
+ /** Timestamp of the scan that has shapshotted this data */
16147
+ scanTimestamp: z$1.ZodString;
16148
+ }, "strip", z$1.ZodTypeAny, {
16149
+ componentName: string;
16150
+ props: Record<string, {
16151
+ values: Record<string, number>;
16152
+ usages: number;
16153
+ undefinedValue: number;
16154
+ }>;
16155
+ usages: number;
16156
+ componentPackageName: string;
16157
+ usageRepositoryName: string;
16158
+ usagePackageName: string;
16159
+ usageFiles: number;
16160
+ scanTimestamp: string;
16161
+ }, {
16162
+ componentName: string;
16163
+ props: Record<string, {
16164
+ values: Record<string, number>;
16165
+ usages: number;
16166
+ undefinedValue: number;
16167
+ }>;
16168
+ usages: number;
16169
+ componentPackageName: string;
16170
+ usageRepositoryName: string;
16171
+ usagePackageName: string;
16172
+ usageFiles: number;
16173
+ scanTimestamp: string;
16174
+ }>, "many">;
16175
+ }, "strip", z$1.ZodTypeAny, {
16176
+ componentUsage: {
16177
+ componentName: string;
16178
+ props: Record<string, {
16179
+ values: Record<string, number>;
16180
+ usages: number;
16181
+ undefinedValue: number;
16182
+ }>;
16183
+ usages: number;
16184
+ componentPackageName: string;
16185
+ usageRepositoryName: string;
16186
+ usagePackageName: string;
16187
+ usageFiles: number;
16188
+ scanTimestamp: string;
16189
+ }[];
16190
+ }, {
16191
+ componentUsage: {
16192
+ componentName: string;
16193
+ props: Record<string, {
16194
+ values: Record<string, number>;
16195
+ usages: number;
16196
+ undefinedValue: number;
16197
+ }>;
16198
+ usages: number;
16199
+ componentPackageName: string;
16200
+ usageRepositoryName: string;
16201
+ usagePackageName: string;
16202
+ usageFiles: number;
16203
+ scanTimestamp: string;
16204
+ }[];
16205
+ }>;
16206
+ type DTOCodeComponentUsageResponse = z$1.infer<typeof DTOCodeComponentUsageResponse>;
16207
+
16026
16208
  declare const DTOCodeComponentProperty: z$1.ZodObject<{
16027
16209
  name: z$1.ZodString;
16028
16210
  type: z$1.ZodString;
@@ -16294,188 +16476,6 @@ declare const DTOCodeComponentListResponse: z$1.ZodObject<{
16294
16476
  }>;
16295
16477
  type DTOCodeComponentListResponse = z$1.infer<typeof DTOCodeComponentListResponse>;
16296
16478
 
16297
- declare const DTOCodeComponentPropUsage: z$1.ZodObject<{
16298
- /** How many times this property has been used in this repository? */
16299
- usages: z$1.ZodNumber;
16300
- /** How many times different values have been used with this property? */
16301
- values: z$1.ZodRecord<z$1.ZodString, z$1.ZodNumber>;
16302
- /** How many times a value has not been specified? (all component usages - usages with values) */
16303
- undefinedValue: z$1.ZodNumber;
16304
- }, "strip", z$1.ZodTypeAny, {
16305
- values: Record<string, number>;
16306
- usages: number;
16307
- undefinedValue: number;
16308
- }, {
16309
- values: Record<string, number>;
16310
- usages: number;
16311
- undefinedValue: number;
16312
- }>;
16313
- type DTOCodeComponentPropUsage = z$1.infer<typeof DTOCodeComponentPropUsage>;
16314
- declare const DTOCodeComponentUsage: z$1.ZodObject<{
16315
- /**
16316
- * Name of the component in its package.
16317
- * `componentName` and `componentPackageName` uniquely identify a component
16318
- */
16319
- componentName: z$1.ZodString;
16320
- /**
16321
- * Which package the component is coming from.
16322
- * `componentName` and `componentPackageName` uniquely identify a component
16323
- */
16324
- componentPackageName: z$1.ZodString;
16325
- /** Which repository this component is used in */
16326
- usageRepositoryName: z$1.ZodString;
16327
- /** Which package of the repository the component is used in */
16328
- usagePackageName: z$1.ZodString;
16329
- /** How many times this component has been used in this repository? */
16330
- usages: z$1.ZodNumber;
16331
- /** How many files has at least one usage of this component? */
16332
- usageFiles: z$1.ZodNumber;
16333
- /** Usage data of the component's props */
16334
- props: z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
16335
- /** How many times this property has been used in this repository? */
16336
- usages: z$1.ZodNumber;
16337
- /** How many times different values have been used with this property? */
16338
- values: z$1.ZodRecord<z$1.ZodString, z$1.ZodNumber>;
16339
- /** How many times a value has not been specified? (all component usages - usages with values) */
16340
- undefinedValue: z$1.ZodNumber;
16341
- }, "strip", z$1.ZodTypeAny, {
16342
- values: Record<string, number>;
16343
- usages: number;
16344
- undefinedValue: number;
16345
- }, {
16346
- values: Record<string, number>;
16347
- usages: number;
16348
- undefinedValue: number;
16349
- }>>;
16350
- /** Timestamp of the scan that has shapshotted this data */
16351
- scanTimestamp: z$1.ZodString;
16352
- }, "strip", z$1.ZodTypeAny, {
16353
- componentName: string;
16354
- props: Record<string, {
16355
- values: Record<string, number>;
16356
- usages: number;
16357
- undefinedValue: number;
16358
- }>;
16359
- usages: number;
16360
- componentPackageName: string;
16361
- usageRepositoryName: string;
16362
- usagePackageName: string;
16363
- usageFiles: number;
16364
- scanTimestamp: string;
16365
- }, {
16366
- componentName: string;
16367
- props: Record<string, {
16368
- values: Record<string, number>;
16369
- usages: number;
16370
- undefinedValue: number;
16371
- }>;
16372
- usages: number;
16373
- componentPackageName: string;
16374
- usageRepositoryName: string;
16375
- usagePackageName: string;
16376
- usageFiles: number;
16377
- scanTimestamp: string;
16378
- }>;
16379
- type DTOCodeComponentUsage = z$1.infer<typeof DTOCodeComponentUsage>;
16380
- declare const DTOCodeComponentUsageResponse: z$1.ZodObject<{
16381
- componentUsage: z$1.ZodArray<z$1.ZodObject<{
16382
- /**
16383
- * Name of the component in its package.
16384
- * `componentName` and `componentPackageName` uniquely identify a component
16385
- */
16386
- componentName: z$1.ZodString;
16387
- /**
16388
- * Which package the component is coming from.
16389
- * `componentName` and `componentPackageName` uniquely identify a component
16390
- */
16391
- componentPackageName: z$1.ZodString;
16392
- /** Which repository this component is used in */
16393
- usageRepositoryName: z$1.ZodString;
16394
- /** Which package of the repository the component is used in */
16395
- usagePackageName: z$1.ZodString;
16396
- /** How many times this component has been used in this repository? */
16397
- usages: z$1.ZodNumber;
16398
- /** How many files has at least one usage of this component? */
16399
- usageFiles: z$1.ZodNumber;
16400
- /** Usage data of the component's props */
16401
- props: z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
16402
- /** How many times this property has been used in this repository? */
16403
- usages: z$1.ZodNumber;
16404
- /** How many times different values have been used with this property? */
16405
- values: z$1.ZodRecord<z$1.ZodString, z$1.ZodNumber>;
16406
- /** How many times a value has not been specified? (all component usages - usages with values) */
16407
- undefinedValue: z$1.ZodNumber;
16408
- }, "strip", z$1.ZodTypeAny, {
16409
- values: Record<string, number>;
16410
- usages: number;
16411
- undefinedValue: number;
16412
- }, {
16413
- values: Record<string, number>;
16414
- usages: number;
16415
- undefinedValue: number;
16416
- }>>;
16417
- /** Timestamp of the scan that has shapshotted this data */
16418
- scanTimestamp: z$1.ZodString;
16419
- }, "strip", z$1.ZodTypeAny, {
16420
- componentName: string;
16421
- props: Record<string, {
16422
- values: Record<string, number>;
16423
- usages: number;
16424
- undefinedValue: number;
16425
- }>;
16426
- usages: number;
16427
- componentPackageName: string;
16428
- usageRepositoryName: string;
16429
- usagePackageName: string;
16430
- usageFiles: number;
16431
- scanTimestamp: string;
16432
- }, {
16433
- componentName: string;
16434
- props: Record<string, {
16435
- values: Record<string, number>;
16436
- usages: number;
16437
- undefinedValue: number;
16438
- }>;
16439
- usages: number;
16440
- componentPackageName: string;
16441
- usageRepositoryName: string;
16442
- usagePackageName: string;
16443
- usageFiles: number;
16444
- scanTimestamp: string;
16445
- }>, "many">;
16446
- }, "strip", z$1.ZodTypeAny, {
16447
- componentUsage: {
16448
- componentName: string;
16449
- props: Record<string, {
16450
- values: Record<string, number>;
16451
- usages: number;
16452
- undefinedValue: number;
16453
- }>;
16454
- usages: number;
16455
- componentPackageName: string;
16456
- usageRepositoryName: string;
16457
- usagePackageName: string;
16458
- usageFiles: number;
16459
- scanTimestamp: string;
16460
- }[];
16461
- }, {
16462
- componentUsage: {
16463
- componentName: string;
16464
- props: Record<string, {
16465
- values: Record<string, number>;
16466
- usages: number;
16467
- undefinedValue: number;
16468
- }>;
16469
- usages: number;
16470
- componentPackageName: string;
16471
- usageRepositoryName: string;
16472
- usagePackageName: string;
16473
- usageFiles: number;
16474
- scanTimestamp: string;
16475
- }[];
16476
- }>;
16477
- type DTOCodeComponentUsageResponse = z$1.infer<typeof DTOCodeComponentUsageResponse>;
16478
-
16479
16479
  declare const DTOCodeHistoryQuery: z$1.ZodObject<{
16480
16480
  packageNames: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
16481
16481
  repositoryNames: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
@@ -26078,6 +26078,33 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
26078
26078
  }>;
26079
26079
  type DTOUserDesignSystemsResponse = z.infer<typeof DTOUserDesignSystemsResponse>;
26080
26080
 
26081
+ declare const DTODesignSystemVersionRoom: z.ZodObject<{
26082
+ id: z.ZodString;
26083
+ }, "strip", z.ZodTypeAny, {
26084
+ id: string;
26085
+ }, {
26086
+ id: string;
26087
+ }>;
26088
+ type DTODesignSystemVersionRoom = z.infer<typeof DTODesignSystemVersionRoom>;
26089
+ declare const DTODesignSystemVersionRoomResponse: z.ZodObject<{
26090
+ room: z.ZodObject<{
26091
+ id: z.ZodString;
26092
+ }, "strip", z.ZodTypeAny, {
26093
+ id: string;
26094
+ }, {
26095
+ id: string;
26096
+ }>;
26097
+ }, "strip", z.ZodTypeAny, {
26098
+ room: {
26099
+ id: string;
26100
+ };
26101
+ }, {
26102
+ room: {
26103
+ id: string;
26104
+ };
26105
+ }>;
26106
+ type DTODesignSystemVersionRoomResponse = z.infer<typeof DTODesignSystemVersionRoomResponse>;
26107
+
26081
26108
  declare const VersionSQSPayload: z.ZodObject<{
26082
26109
  jobId: z.ZodString;
26083
26110
  designSystemId: z.ZodString;
@@ -26437,33 +26464,6 @@ declare const DTODesignSystemVersionJobStatusResponse: z.ZodObject<{
26437
26464
  }>;
26438
26465
  type DTODesignSystemVersionJobStatusResponse = z.infer<typeof DTODesignSystemVersionJobStatusResponse>;
26439
26466
 
26440
- declare const DTODesignSystemVersionRoom: z.ZodObject<{
26441
- id: z.ZodString;
26442
- }, "strip", z.ZodTypeAny, {
26443
- id: string;
26444
- }, {
26445
- id: string;
26446
- }>;
26447
- type DTODesignSystemVersionRoom = z.infer<typeof DTODesignSystemVersionRoom>;
26448
- declare const DTODesignSystemVersionRoomResponse: z.ZodObject<{
26449
- room: z.ZodObject<{
26450
- id: z.ZodString;
26451
- }, "strip", z.ZodTypeAny, {
26452
- id: string;
26453
- }, {
26454
- id: string;
26455
- }>;
26456
- }, "strip", z.ZodTypeAny, {
26457
- room: {
26458
- id: string;
26459
- };
26460
- }, {
26461
- room: {
26462
- id: string;
26463
- };
26464
- }>;
26465
- type DTODesignSystemVersionRoomResponse = z.infer<typeof DTODesignSystemVersionRoomResponse>;
26466
-
26467
26467
  declare const DTOElementViewColumnSharedAttributes: z.ZodObject<{
26468
26468
  id: z.ZodString;
26469
26469
  persistentId: z.ZodString;
@@ -40375,6 +40375,99 @@ declare const DTODocumentationPageSnapshot: z.ZodObject<{
40375
40375
  }>;
40376
40376
  type DTODocumentationPageSnapshot = z.infer<typeof DTODocumentationPageSnapshot>;
40377
40377
 
40378
+ declare const DTODocumentationMinimalPage: z.ZodObject<{
40379
+ id: z.ZodString;
40380
+ title: z.ZodString;
40381
+ fullPath: z.ZodString;
40382
+ description: z.ZodOptional<z.ZodString>;
40383
+ }, "strip", z.ZodTypeAny, {
40384
+ id: string;
40385
+ title: string;
40386
+ fullPath: string;
40387
+ description?: string | undefined;
40388
+ }, {
40389
+ id: string;
40390
+ title: string;
40391
+ fullPath: string;
40392
+ description?: string | undefined;
40393
+ }>;
40394
+ type DTODocumentationMinimalPage = z.infer<typeof DTODocumentationMinimalPage>;
40395
+ declare const DTODocumentationMinimalPageListResponse: z.ZodObject<{
40396
+ pages: z.ZodArray<z.ZodObject<{
40397
+ id: z.ZodString;
40398
+ title: z.ZodString;
40399
+ fullPath: z.ZodString;
40400
+ description: z.ZodOptional<z.ZodString>;
40401
+ }, "strip", z.ZodTypeAny, {
40402
+ id: string;
40403
+ title: string;
40404
+ fullPath: string;
40405
+ description?: string | undefined;
40406
+ }, {
40407
+ id: string;
40408
+ title: string;
40409
+ fullPath: string;
40410
+ description?: string | undefined;
40411
+ }>, "many">;
40412
+ }, "strip", z.ZodTypeAny, {
40413
+ pages: {
40414
+ id: string;
40415
+ title: string;
40416
+ fullPath: string;
40417
+ description?: string | undefined;
40418
+ }[];
40419
+ }, {
40420
+ pages: {
40421
+ id: string;
40422
+ title: string;
40423
+ fullPath: string;
40424
+ description?: string | undefined;
40425
+ }[];
40426
+ }>;
40427
+ type DTODocumentationMinimalPageListResponse = z.infer<typeof DTODocumentationMinimalPageListResponse>;
40428
+ declare const DTODocumentationContent: z.ZodObject<{
40429
+ id: z.ZodString;
40430
+ markdown: z.ZodString;
40431
+ }, "strip", z.ZodTypeAny, {
40432
+ id: string;
40433
+ markdown: string;
40434
+ }, {
40435
+ id: string;
40436
+ markdown: string;
40437
+ }>;
40438
+ type DTODocumentationContent = z.infer<typeof DTODocumentationContent>;
40439
+ declare const DTODocumentationContentResponse: z.ZodObject<{
40440
+ pageContents: z.ZodArray<z.ZodObject<{
40441
+ id: z.ZodString;
40442
+ markdown: z.ZodString;
40443
+ }, "strip", z.ZodTypeAny, {
40444
+ id: string;
40445
+ markdown: string;
40446
+ }, {
40447
+ id: string;
40448
+ markdown: string;
40449
+ }>, "many">;
40450
+ }, "strip", z.ZodTypeAny, {
40451
+ pageContents: {
40452
+ id: string;
40453
+ markdown: string;
40454
+ }[];
40455
+ }, {
40456
+ pageContents: {
40457
+ id: string;
40458
+ markdown: string;
40459
+ }[];
40460
+ }>;
40461
+ type DTODocumentationContentResponse = z.infer<typeof DTODocumentationContentResponse>;
40462
+ declare const DTODocumentationContentQuery: z.ZodObject<{
40463
+ pageIds: z.ZodPipeline<z.ZodEffects<z.ZodString, string[], string>, z.ZodArray<z.ZodString, "many">>;
40464
+ }, "strip", z.ZodTypeAny, {
40465
+ pageIds: string[];
40466
+ }, {
40467
+ pageIds: string;
40468
+ }>;
40469
+ type DTODocumentationContentQuery = z.infer<typeof DTODocumentationContentQuery>;
40470
+
40378
40471
  declare const DTODocumentationLinkPreviewResponse: z.ZodObject<{
40379
40472
  linkPreview: z.ZodObject<{
40380
40473
  title: z.ZodOptional<z.ZodString>;
@@ -145536,7 +145629,7 @@ declare const DTOForgeFeatureRoomResponse: z.ZodObject<{
145536
145629
  }>;
145537
145630
  type DTOForgeFeatureRoomResponse = z.infer<typeof DTOForgeFeatureRoomResponse>;
145538
145631
 
145539
- declare const ForgeFigmaNodeLatestVersion: "V2";
145632
+ declare const ForgeFigmaNodeLatestVersion: "V7";
145540
145633
  declare const DTOForgeFigmaNodeOrigin: z$1.ZodObject<{
145541
145634
  /**
145542
145635
  * Figma file ID that was passed into the create request as a part of the Figma node URL
@@ -145770,6 +145863,8 @@ declare const DTOForgeFigmaNode: z$1.ZodObject<{
145770
145863
  } | undefined;
145771
145864
  }>;
145772
145865
  /**
145866
+ * @deprecated - Optimizing phase was removed, this field is no longer available.
145867
+ *
145773
145868
  * Code representation of the Figma node. Code gets produced during "Optimizing" phase,
145774
145869
  * it's available when the node reaches "Success" state.
145775
145870
  */
@@ -146165,6 +146260,8 @@ declare const DTOForgeFigmaNodeResponse: z$1.ZodObject<{
146165
146260
  } | undefined;
146166
146261
  }>;
146167
146262
  /**
146263
+ * @deprecated - Optimizing phase was removed, this field is no longer available.
146264
+ *
146168
146265
  * Code representation of the Figma node. Code gets produced during "Optimizing" phase,
146169
146266
  * it's available when the node reaches "Success" state.
146170
146267
  */
@@ -146467,7 +146564,7 @@ declare const DTOForgeFigmaNodeValidateResponse: z$1.ZodObject<{
146467
146564
  isValid: boolean;
146468
146565
  }>;
146469
146566
  type DTOForgeFigmaNodeValidateResponse = z$1.infer<typeof DTOForgeFigmaNodeValidateResponse>;
146470
- declare const DTOForgeFigmaNodeConversionVersion: z$1.ZodEnum<["V1", "V2"]>;
146567
+ declare const DTOForgeFigmaNodeConversionVersion: z$1.ZodEnum<["V1", "V2", "V3", "V4", "V5", "V6", "V7"]>;
146471
146568
  type DTOForgeFigmaNodeConversionVersion = z$1.infer<typeof DTOForgeFigmaNodeConversionVersion>;
146472
146569
 
146473
146570
  declare const DTOForgeIterationMessage: z.ZodObject<Omit<{
@@ -377292,6 +377389,19 @@ declare const DTOSubscription: z$1.ZodObject<{
377292
377389
  errorReason: string;
377293
377390
  enabled: boolean;
377294
377391
  }>;
377392
+ forgeShellTemplates: z$1.ZodObject<{
377393
+ max: z$1.ZodOptional<z$1.ZodNumber>;
377394
+ errorMessage: z$1.ZodString;
377395
+ errorReason: z$1.ZodString;
377396
+ }, "strip", z$1.ZodTypeAny, {
377397
+ errorMessage: string;
377398
+ errorReason: string;
377399
+ max?: number | undefined;
377400
+ }, {
377401
+ errorMessage: string;
377402
+ errorReason: string;
377403
+ max?: number | undefined;
377404
+ }>;
377295
377405
  }, "strip", z$1.ZodTypeAny, {
377296
377406
  analytics: {
377297
377407
  errorMessage: string;
@@ -377480,6 +377590,11 @@ declare const DTOSubscription: z$1.ZodObject<{
377480
377590
  errorReason: string;
377481
377591
  enabled: boolean;
377482
377592
  };
377593
+ forgeShellTemplates: {
377594
+ errorMessage: string;
377595
+ errorReason: string;
377596
+ max?: number | undefined;
377597
+ };
377483
377598
  }, {
377484
377599
  analytics: {
377485
377600
  errorMessage: string;
@@ -377668,6 +377783,11 @@ declare const DTOSubscription: z$1.ZodObject<{
377668
377783
  errorReason: string;
377669
377784
  enabled: boolean;
377670
377785
  };
377786
+ forgeShellTemplates: {
377787
+ errorMessage: string;
377788
+ errorReason: string;
377789
+ max?: number | undefined;
377790
+ };
377671
377791
  }>>;
377672
377792
  allowedRoles: z$1.ZodArray<z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>, "many">;
377673
377793
  /**
@@ -377964,238 +378084,248 @@ declare const DTOSubscription: z$1.ZodObject<{
377964
378084
  errorReason: string;
377965
378085
  enabled: boolean;
377966
378086
  };
377967
- } | undefined;
377968
- stripeSubscriptionMainItemId?: string | undefined;
377969
- billingType?: "Auto" | "Invoice" | undefined;
377970
- daysUntilDue?: number | undefined;
377971
- }, {
377972
- product: "company" | "enterprise" | "free" | "team" | "pro";
377973
- amount: number;
377974
- isTrial: boolean;
377975
- seats: number;
377976
- seatLimit: number;
377977
- builderSeatLimit: number;
377978
- fullSeatLimit: number;
377979
- additionalCredits: number;
377980
- builderSeats: number;
377981
- fullSeats: number;
377982
- planPriceId: string;
377983
- planInterval: "daily" | "monthly" | "yearly";
377984
- fullSeatPriceId: string;
377985
- allowedRoles: ("Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor")[];
377986
- status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
377987
- card?: {
377988
- name?: string | null | undefined;
377989
- cardId?: string | null | undefined;
377990
- last4?: string | null | undefined;
377991
- expiryMonth?: string | null | undefined;
377992
- expiryYear?: string | null | undefined;
377993
- brand?: string | null | undefined;
377994
- } | undefined;
377995
- stripeProductDescription?: string | undefined;
377996
- isPricePerCreator?: boolean | undefined;
377997
- legacyVersion?: string | undefined;
377998
- stripeProductFeatures?: string[] | undefined;
377999
- stripeProductAdditionalFeatures?: string[] | undefined;
378000
- subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
378001
- internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
378002
- stripeSubscriptionId?: string | undefined;
378003
- stripeCustomerId?: string | undefined;
378004
- stripeScheduleId?: string | undefined;
378005
- currentPeriodStart?: string | undefined;
378006
- currentPeriodEnd?: string | undefined;
378007
- cancelAt?: string | null | undefined;
378008
- builderSeatPriceId?: string | undefined;
378009
- additionalCreditsPriceId?: string | undefined;
378010
- subscriptionStatusUpdatedAt?: string | undefined;
378011
- featuresSummary?: {
378012
- analytics: {
378013
- errorMessage: string;
378014
- errorReason: string;
378015
- max?: number | undefined;
378016
- };
378017
- themes: {
378018
- errorMessage: string;
378019
- errorReason: string;
378020
- max?: number | undefined;
378021
- };
378022
- designSystems: {
378023
- errorMessage: string;
378024
- errorReason: string;
378025
- max?: number | undefined;
378026
- };
378027
- designSystemSources: {
378028
- errorMessage: string;
378029
- errorReason: string;
378030
- noImportJobsErrorMessage: string;
378031
- noImportJobsErrorReason: string;
378032
- max?: number | undefined;
378033
- };
378034
- designSystemVersions: {
378035
- errorMessage: string;
378036
- errorReason: string;
378037
- max?: number | undefined;
378038
- };
378039
- brands: {
378040
- errorMessage: string;
378041
- errorReason: string;
378042
- max?: number | undefined;
378043
- };
378044
- codegenSchedules: {
378045
- errorMessage: string;
378046
- errorReason: string;
378047
- max?: number | undefined;
378048
- };
378049
- publicDocumentation: {
378050
- errorMessage: string;
378051
- errorReason: string;
378052
- enabled: boolean;
378053
- };
378054
- customDocumentationUrl: {
378055
- errorMessage: string;
378056
- errorReason: string;
378057
- enabled: boolean;
378058
- };
378059
- customDocumentationViewButton: {
378060
- errorMessage: string;
378061
- errorReason: string;
378062
- enabled: boolean;
378063
- };
378064
- designSystemSourceAutoImport: {
378065
- errorMessage: string;
378066
- errorReason: string;
378067
- enabled: boolean;
378068
- };
378069
- designSystemSlug: {
378070
- errorMessage: string;
378071
- errorReason: string;
378072
- enabled: boolean;
378073
- };
378074
- ipWhitelisting: {
378075
- errorMessage: string;
378076
- errorReason: string;
378077
- enabled: boolean;
378078
- };
378079
- customLogin: {
378080
- errorMessage: string;
378081
- errorReason: string;
378082
- enabled: boolean;
378083
- };
378084
- npmRegistry: {
378085
- errorMessage: string;
378086
- errorReason: string;
378087
- enabled: boolean;
378088
- };
378089
- sso: {
378090
- errorMessage: string;
378091
- errorReason: string;
378092
- enabled: boolean;
378093
- };
378094
- workspacePaidSeats: {
378095
- errorMessage: string;
378096
- errorReason: string;
378097
- max?: number | undefined;
378098
- };
378099
- workspaceViewers: {
378100
- errorMessage: string;
378101
- errorReason: string;
378102
- max?: number | undefined;
378103
- };
378104
- customDocumentationExporter: {
378105
- errorMessage: string;
378106
- errorReason: string;
378107
- enabled: boolean;
378108
- };
378109
- protectedPages: {
378110
- errorMessage: string;
378111
- errorReason: string;
378112
- enabled: boolean;
378113
- };
378114
- approvals: {
378115
- errorMessage: string;
378116
- errorReason: string;
378117
- enabled: boolean;
378118
- };
378119
- selectivePublishing: {
378120
- errorMessage: string;
378121
- errorReason: string;
378122
- enabled: boolean;
378123
- };
378124
- designSystemAccessModes: {
378125
- errorMessage: string;
378126
- errorReason: string;
378127
- enabled: boolean;
378128
- };
378129
- designSystemRoles: {
378130
- errorMessage: string;
378131
- errorReason: string;
378132
- enabled: boolean;
378133
- };
378134
- documentationPageRedirects: {
378135
- errorMessage: string;
378136
- errorReason: string;
378137
- enabled: boolean;
378138
- };
378139
- designSystemFileSize: {
378140
- errorMessage: string;
378141
- errorReason: string;
378142
- max?: number | undefined;
378143
- };
378144
- forgeActiveProjects: {
378145
- errorMessage: string;
378146
- errorReason: string;
378147
- max?: number | undefined;
378148
- };
378149
- forgeProjectFileSize: {
378150
- errorMessage: string;
378151
- errorReason: string;
378152
- max?: number | undefined;
378153
- };
378154
- forgeActiveFeaturesPerProject: {
378155
- errorMessage: string;
378156
- errorReason: string;
378157
- max?: number | undefined;
378158
- };
378159
- forgeActiveDocumentsPerProject: {
378087
+ forgeShellTemplates: {
378088
+ errorMessage: string;
378089
+ errorReason: string;
378090
+ max?: number | undefined;
378091
+ };
378092
+ } | undefined;
378093
+ stripeSubscriptionMainItemId?: string | undefined;
378094
+ billingType?: "Auto" | "Invoice" | undefined;
378095
+ daysUntilDue?: number | undefined;
378096
+ }, {
378097
+ product: "company" | "enterprise" | "free" | "team" | "pro";
378098
+ amount: number;
378099
+ isTrial: boolean;
378100
+ seats: number;
378101
+ seatLimit: number;
378102
+ builderSeatLimit: number;
378103
+ fullSeatLimit: number;
378104
+ additionalCredits: number;
378105
+ builderSeats: number;
378106
+ fullSeats: number;
378107
+ planPriceId: string;
378108
+ planInterval: "daily" | "monthly" | "yearly";
378109
+ fullSeatPriceId: string;
378110
+ allowedRoles: ("Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor")[];
378111
+ status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
378112
+ card?: {
378113
+ name?: string | null | undefined;
378114
+ cardId?: string | null | undefined;
378115
+ last4?: string | null | undefined;
378116
+ expiryMonth?: string | null | undefined;
378117
+ expiryYear?: string | null | undefined;
378118
+ brand?: string | null | undefined;
378119
+ } | undefined;
378120
+ stripeProductDescription?: string | undefined;
378121
+ isPricePerCreator?: boolean | undefined;
378122
+ legacyVersion?: string | undefined;
378123
+ stripeProductFeatures?: string[] | undefined;
378124
+ stripeProductAdditionalFeatures?: string[] | undefined;
378125
+ subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
378126
+ internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
378127
+ stripeSubscriptionId?: string | undefined;
378128
+ stripeCustomerId?: string | undefined;
378129
+ stripeScheduleId?: string | undefined;
378130
+ currentPeriodStart?: string | undefined;
378131
+ currentPeriodEnd?: string | undefined;
378132
+ cancelAt?: string | null | undefined;
378133
+ builderSeatPriceId?: string | undefined;
378134
+ additionalCreditsPriceId?: string | undefined;
378135
+ subscriptionStatusUpdatedAt?: string | undefined;
378136
+ featuresSummary?: {
378137
+ analytics: {
378138
+ errorMessage: string;
378139
+ errorReason: string;
378140
+ max?: number | undefined;
378141
+ };
378142
+ themes: {
378143
+ errorMessage: string;
378144
+ errorReason: string;
378145
+ max?: number | undefined;
378146
+ };
378147
+ designSystems: {
378148
+ errorMessage: string;
378149
+ errorReason: string;
378150
+ max?: number | undefined;
378151
+ };
378152
+ designSystemSources: {
378153
+ errorMessage: string;
378154
+ errorReason: string;
378155
+ noImportJobsErrorMessage: string;
378156
+ noImportJobsErrorReason: string;
378157
+ max?: number | undefined;
378158
+ };
378159
+ designSystemVersions: {
378160
+ errorMessage: string;
378161
+ errorReason: string;
378162
+ max?: number | undefined;
378163
+ };
378164
+ brands: {
378165
+ errorMessage: string;
378166
+ errorReason: string;
378167
+ max?: number | undefined;
378168
+ };
378169
+ codegenSchedules: {
378170
+ errorMessage: string;
378171
+ errorReason: string;
378172
+ max?: number | undefined;
378173
+ };
378174
+ publicDocumentation: {
378175
+ errorMessage: string;
378176
+ errorReason: string;
378177
+ enabled: boolean;
378178
+ };
378179
+ customDocumentationUrl: {
378180
+ errorMessage: string;
378181
+ errorReason: string;
378182
+ enabled: boolean;
378183
+ };
378184
+ customDocumentationViewButton: {
378185
+ errorMessage: string;
378186
+ errorReason: string;
378187
+ enabled: boolean;
378188
+ };
378189
+ designSystemSourceAutoImport: {
378190
+ errorMessage: string;
378191
+ errorReason: string;
378192
+ enabled: boolean;
378193
+ };
378194
+ designSystemSlug: {
378195
+ errorMessage: string;
378196
+ errorReason: string;
378197
+ enabled: boolean;
378198
+ };
378199
+ ipWhitelisting: {
378200
+ errorMessage: string;
378201
+ errorReason: string;
378202
+ enabled: boolean;
378203
+ };
378204
+ customLogin: {
378205
+ errorMessage: string;
378206
+ errorReason: string;
378207
+ enabled: boolean;
378208
+ };
378209
+ npmRegistry: {
378210
+ errorMessage: string;
378211
+ errorReason: string;
378212
+ enabled: boolean;
378213
+ };
378214
+ sso: {
378215
+ errorMessage: string;
378216
+ errorReason: string;
378217
+ enabled: boolean;
378218
+ };
378219
+ workspacePaidSeats: {
378220
+ errorMessage: string;
378221
+ errorReason: string;
378222
+ max?: number | undefined;
378223
+ };
378224
+ workspaceViewers: {
378225
+ errorMessage: string;
378226
+ errorReason: string;
378227
+ max?: number | undefined;
378228
+ };
378229
+ customDocumentationExporter: {
378230
+ errorMessage: string;
378231
+ errorReason: string;
378232
+ enabled: boolean;
378233
+ };
378234
+ protectedPages: {
378235
+ errorMessage: string;
378236
+ errorReason: string;
378237
+ enabled: boolean;
378238
+ };
378239
+ approvals: {
378240
+ errorMessage: string;
378241
+ errorReason: string;
378242
+ enabled: boolean;
378243
+ };
378244
+ selectivePublishing: {
378245
+ errorMessage: string;
378246
+ errorReason: string;
378247
+ enabled: boolean;
378248
+ };
378249
+ designSystemAccessModes: {
378250
+ errorMessage: string;
378251
+ errorReason: string;
378252
+ enabled: boolean;
378253
+ };
378254
+ designSystemRoles: {
378255
+ errorMessage: string;
378256
+ errorReason: string;
378257
+ enabled: boolean;
378258
+ };
378259
+ documentationPageRedirects: {
378260
+ errorMessage: string;
378261
+ errorReason: string;
378262
+ enabled: boolean;
378263
+ };
378264
+ designSystemFileSize: {
378265
+ errorMessage: string;
378266
+ errorReason: string;
378267
+ max?: number | undefined;
378268
+ };
378269
+ forgeActiveProjects: {
378270
+ errorMessage: string;
378271
+ errorReason: string;
378272
+ max?: number | undefined;
378273
+ };
378274
+ forgeProjectFileSize: {
378275
+ errorMessage: string;
378276
+ errorReason: string;
378277
+ max?: number | undefined;
378278
+ };
378279
+ forgeActiveFeaturesPerProject: {
378280
+ errorMessage: string;
378281
+ errorReason: string;
378282
+ max?: number | undefined;
378283
+ };
378284
+ forgeActiveDocumentsPerProject: {
378285
+ errorMessage: string;
378286
+ errorReason: string;
378287
+ max?: number | undefined;
378288
+ };
378289
+ forgePrivateProjects: {
378290
+ errorMessage: string;
378291
+ errorReason: string;
378292
+ enabled: boolean;
378293
+ };
378294
+ forgeAttachFigmaFrames: {
378295
+ errorMessage: string;
378296
+ errorReason: string;
378297
+ enabled: boolean;
378298
+ };
378299
+ forgeActiveProjectContexts: {
378300
+ errorMessage: string;
378301
+ errorReason: string;
378302
+ max?: number | undefined;
378303
+ };
378304
+ forgeFeatureWorkspacePublishing: {
378305
+ errorMessage: string;
378306
+ errorReason: string;
378307
+ enabled: boolean;
378308
+ };
378309
+ forgeFeatureHideSupernovaUI: {
378310
+ errorMessage: string;
378311
+ errorReason: string;
378312
+ enabled: boolean;
378313
+ };
378314
+ documentationPages: {
378315
+ errorMessage: string;
378316
+ errorReason: string;
378317
+ max?: number | undefined;
378318
+ };
378319
+ sandboxTemplates: {
378320
+ errorMessage: string;
378321
+ errorReason: string;
378322
+ enabled: boolean;
378323
+ };
378324
+ forgeShellTemplates: {
378160
378325
  errorMessage: string;
378161
378326
  errorReason: string;
378162
378327
  max?: number | undefined;
378163
378328
  };
378164
- forgePrivateProjects: {
378165
- errorMessage: string;
378166
- errorReason: string;
378167
- enabled: boolean;
378168
- };
378169
- forgeAttachFigmaFrames: {
378170
- errorMessage: string;
378171
- errorReason: string;
378172
- enabled: boolean;
378173
- };
378174
- forgeActiveProjectContexts: {
378175
- errorMessage: string;
378176
- errorReason: string;
378177
- max?: number | undefined;
378178
- };
378179
- forgeFeatureWorkspacePublishing: {
378180
- errorMessage: string;
378181
- errorReason: string;
378182
- enabled: boolean;
378183
- };
378184
- forgeFeatureHideSupernovaUI: {
378185
- errorMessage: string;
378186
- errorReason: string;
378187
- enabled: boolean;
378188
- };
378189
- documentationPages: {
378190
- errorMessage: string;
378191
- errorReason: string;
378192
- max?: number | undefined;
378193
- };
378194
- sandboxTemplates: {
378195
- errorMessage: string;
378196
- errorReason: string;
378197
- enabled: boolean;
378198
- };
378199
378329
  } | undefined;
378200
378330
  stripeSubscriptionMainItemId?: string | undefined;
378201
378331
  billingType?: "Auto" | "Invoice" | undefined;
@@ -378700,6 +378830,19 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
378700
378830
  errorReason: string;
378701
378831
  enabled: boolean;
378702
378832
  }>;
378833
+ forgeShellTemplates: z$1.ZodObject<{
378834
+ max: z$1.ZodOptional<z$1.ZodNumber>;
378835
+ errorMessage: z$1.ZodString;
378836
+ errorReason: z$1.ZodString;
378837
+ }, "strip", z$1.ZodTypeAny, {
378838
+ errorMessage: string;
378839
+ errorReason: string;
378840
+ max?: number | undefined;
378841
+ }, {
378842
+ errorMessage: string;
378843
+ errorReason: string;
378844
+ max?: number | undefined;
378845
+ }>;
378703
378846
  }, "strip", z$1.ZodTypeAny, {
378704
378847
  analytics: {
378705
378848
  errorMessage: string;
@@ -378888,6 +379031,11 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
378888
379031
  errorReason: string;
378889
379032
  enabled: boolean;
378890
379033
  };
379034
+ forgeShellTemplates: {
379035
+ errorMessage: string;
379036
+ errorReason: string;
379037
+ max?: number | undefined;
379038
+ };
378891
379039
  }, {
378892
379040
  analytics: {
378893
379041
  errorMessage: string;
@@ -379076,6 +379224,11 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
379076
379224
  errorReason: string;
379077
379225
  enabled: boolean;
379078
379226
  };
379227
+ forgeShellTemplates: {
379228
+ errorMessage: string;
379229
+ errorReason: string;
379230
+ max?: number | undefined;
379231
+ };
379079
379232
  }>>;
379080
379233
  allowedRoles: z$1.ZodArray<z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>, "many">;
379081
379234
  /**
@@ -379372,6 +379525,11 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
379372
379525
  errorReason: string;
379373
379526
  enabled: boolean;
379374
379527
  };
379528
+ forgeShellTemplates: {
379529
+ errorMessage: string;
379530
+ errorReason: string;
379531
+ max?: number | undefined;
379532
+ };
379375
379533
  } | undefined;
379376
379534
  stripeSubscriptionMainItemId?: string | undefined;
379377
379535
  billingType?: "Auto" | "Invoice" | undefined;
@@ -379604,6 +379762,11 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
379604
379762
  errorReason: string;
379605
379763
  enabled: boolean;
379606
379764
  };
379765
+ forgeShellTemplates: {
379766
+ errorMessage: string;
379767
+ errorReason: string;
379768
+ max?: number | undefined;
379769
+ };
379607
379770
  } | undefined;
379608
379771
  stripeSubscriptionMainItemId?: string | undefined;
379609
379772
  billingType?: "Auto" | "Invoice" | undefined;
@@ -380007,6 +380170,11 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
380007
380170
  errorReason: string;
380008
380171
  enabled: boolean;
380009
380172
  };
380173
+ forgeShellTemplates: {
380174
+ errorMessage: string;
380175
+ errorReason: string;
380176
+ max?: number | undefined;
380177
+ };
380010
380178
  } | undefined;
380011
380179
  stripeSubscriptionMainItemId?: string | undefined;
380012
380180
  billingType?: "Auto" | "Invoice" | undefined;
@@ -380278,6 +380446,11 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
380278
380446
  errorReason: string;
380279
380447
  enabled: boolean;
380280
380448
  };
380449
+ forgeShellTemplates: {
380450
+ errorMessage: string;
380451
+ errorReason: string;
380452
+ max?: number | undefined;
380453
+ };
380281
380454
  } | undefined;
380282
380455
  stripeSubscriptionMainItemId?: string | undefined;
380283
380456
  billingType?: "Auto" | "Invoice" | undefined;
@@ -389223,6 +389396,20 @@ declare class DocumentationEndpoint {
389223
389396
  documentationPageId: string;
389224
389397
  };
389225
389398
  }>;
389399
+ list(dsId: string, versionId: string): Promise<{
389400
+ pages: {
389401
+ id: string;
389402
+ title: string;
389403
+ fullPath: string;
389404
+ description?: string | undefined;
389405
+ }[];
389406
+ }>;
389407
+ getContent(dsId: string, versionId: string, pageIds: string[]): Promise<{
389408
+ pageContents: {
389409
+ id: string;
389410
+ markdown: string;
389411
+ }[];
389412
+ }>;
389226
389413
  }
389227
389414
 
389228
389415
  declare class DesignSystemComponentEndpoint {
@@ -389258,12 +389445,92 @@ declare class DesignSystemComponentEndpoint {
389258
389445
  }>;
389259
389446
  }
389260
389447
 
389261
- type GetElementsQuery = OmitStrict<DTOElementsGetQueryParsed, "responseVersion">;
389262
- declare class ElementsEndpoint {
389448
+ declare class ElementsActionEndpoint {
389263
389449
  private readonly requestExecutor;
389264
389450
  constructor(requestExecutor: RequestExecutor);
389265
- getElementsV1(dsId: string, vId: string, query: GetElementsQuery): Promise<{
389266
- figmaNodes?: {
389451
+ createDocPage(dsId: string, vId: string, input: DTOCreateDocumentationPageInputV2): Promise<{
389452
+ type: "DocumentationGroupCreate";
389453
+ output: {
389454
+ success: true;
389455
+ };
389456
+ } | {
389457
+ type: "DocumentationTabCreate";
389458
+ output: {
389459
+ success: true;
389460
+ };
389461
+ } | {
389462
+ type: "DocumentationGroupUpdate";
389463
+ output: {
389464
+ success: true;
389465
+ };
389466
+ } | {
389467
+ type: "DocumentationGroupMove";
389468
+ output: {
389469
+ success: true;
389470
+ };
389471
+ } | {
389472
+ type: "DocumentationGroupDuplicate";
389473
+ output: {
389474
+ success: true;
389475
+ };
389476
+ } | {
389477
+ type: "DocumentationGroupDelete";
389478
+ output: {
389479
+ success: true;
389480
+ };
389481
+ } | {
389482
+ type: "DocumentationTabGroupDelete";
389483
+ output: {
389484
+ success: true;
389485
+ };
389486
+ } | {
389487
+ type: "DocumentationPageCreate";
389488
+ output: {
389489
+ success: true;
389490
+ };
389491
+ } | {
389492
+ type: "DocumentationPageUpdate";
389493
+ output: {
389494
+ success: true;
389495
+ };
389496
+ } | {
389497
+ type: "DocumentationPageUpdateDocument";
389498
+ output: {
389499
+ success: true;
389500
+ };
389501
+ } | {
389502
+ type: "DocumentationPageMove";
389503
+ output: {
389504
+ success: true;
389505
+ };
389506
+ } | {
389507
+ type: "DocumentationPageDuplicate";
389508
+ output: {
389509
+ success: true;
389510
+ };
389511
+ } | {
389512
+ type: "DocumentationPageDelete";
389513
+ output: {
389514
+ success: true;
389515
+ };
389516
+ } | {
389517
+ type: "DocumentationPageRestore";
389518
+ output: {
389519
+ success: true;
389520
+ };
389521
+ } | {
389522
+ type: "DocumentationGroupRestore";
389523
+ output: {
389524
+ success: true;
389525
+ };
389526
+ } | {
389527
+ type: "DocumentationPageApprovalStateChange";
389528
+ output: {
389529
+ success: true;
389530
+ };
389531
+ } | {
389532
+ type: "FigmaNodeRender";
389533
+ figmaNodes: {
389267
389534
  data: {
389268
389535
  assetId: string;
389269
389536
  assetScale: number;
@@ -389288,10 +389555,161 @@ declare class ElementsEndpoint {
389288
389555
  name: string;
389289
389556
  description?: string | undefined;
389290
389557
  };
389291
- }[] | undefined;
389558
+ }[];
389559
+ } | {
389560
+ type: "FigmaNodeRenderAsync";
389561
+ figmaNodes: {
389562
+ data: {
389563
+ format: "Png" | "Svg";
389564
+ sceneNodeId: string;
389565
+ renderState: "InProgress" | "Success" | "Failed";
389566
+ hasSource: boolean;
389567
+ scale?: number | undefined;
389568
+ renderedImage?: {
389569
+ resourceId: string;
389570
+ format: "Png" | "Svg";
389571
+ url?: string | undefined;
389572
+ width?: number | undefined;
389573
+ height?: number | undefined;
389574
+ originKey?: string | undefined;
389575
+ scale?: number | undefined;
389576
+ } | undefined;
389577
+ renderError?: {
389578
+ type: "MissingIntegration" | "NodeNotFound" | "RenderError";
389579
+ } | undefined;
389580
+ };
389581
+ id: string;
389582
+ createdAt: Date;
389583
+ updatedAt: Date;
389584
+ persistentId: string;
389585
+ designSystemVersionId: string;
389586
+ origin: {
389587
+ sourceId: string;
389588
+ fileId?: string | undefined;
389589
+ parentName?: string | undefined;
389590
+ };
389591
+ meta: {
389592
+ name: string;
389593
+ description?: string | undefined;
389594
+ };
389595
+ }[];
389596
+ } | {
389597
+ type: "ElementPropertyValuesEdit";
389598
+ output: {
389599
+ success: true;
389600
+ };
389292
389601
  }>;
389293
- getElementsV2(dsId: string, vId: string, query: GetElementsQuery): Promise<{
389294
- figmaNodes?: {
389602
+ createDocGroup(dsId: string, vId: string, input: DTOCreateDocumentationGroupInput): Promise<{
389603
+ type: "DocumentationGroupCreate";
389604
+ output: {
389605
+ success: true;
389606
+ };
389607
+ } | {
389608
+ type: "DocumentationTabCreate";
389609
+ output: {
389610
+ success: true;
389611
+ };
389612
+ } | {
389613
+ type: "DocumentationGroupUpdate";
389614
+ output: {
389615
+ success: true;
389616
+ };
389617
+ } | {
389618
+ type: "DocumentationGroupMove";
389619
+ output: {
389620
+ success: true;
389621
+ };
389622
+ } | {
389623
+ type: "DocumentationGroupDuplicate";
389624
+ output: {
389625
+ success: true;
389626
+ };
389627
+ } | {
389628
+ type: "DocumentationGroupDelete";
389629
+ output: {
389630
+ success: true;
389631
+ };
389632
+ } | {
389633
+ type: "DocumentationTabGroupDelete";
389634
+ output: {
389635
+ success: true;
389636
+ };
389637
+ } | {
389638
+ type: "DocumentationPageCreate";
389639
+ output: {
389640
+ success: true;
389641
+ };
389642
+ } | {
389643
+ type: "DocumentationPageUpdate";
389644
+ output: {
389645
+ success: true;
389646
+ };
389647
+ } | {
389648
+ type: "DocumentationPageUpdateDocument";
389649
+ output: {
389650
+ success: true;
389651
+ };
389652
+ } | {
389653
+ type: "DocumentationPageMove";
389654
+ output: {
389655
+ success: true;
389656
+ };
389657
+ } | {
389658
+ type: "DocumentationPageDuplicate";
389659
+ output: {
389660
+ success: true;
389661
+ };
389662
+ } | {
389663
+ type: "DocumentationPageDelete";
389664
+ output: {
389665
+ success: true;
389666
+ };
389667
+ } | {
389668
+ type: "DocumentationPageRestore";
389669
+ output: {
389670
+ success: true;
389671
+ };
389672
+ } | {
389673
+ type: "DocumentationGroupRestore";
389674
+ output: {
389675
+ success: true;
389676
+ };
389677
+ } | {
389678
+ type: "DocumentationPageApprovalStateChange";
389679
+ output: {
389680
+ success: true;
389681
+ };
389682
+ } | {
389683
+ type: "FigmaNodeRender";
389684
+ figmaNodes: {
389685
+ data: {
389686
+ assetId: string;
389687
+ assetScale: number;
389688
+ assetUrl: string;
389689
+ figmaNodeId: string;
389690
+ isValid: boolean;
389691
+ assetFormat: "Png" | "Svg";
389692
+ assetWidth?: number | undefined;
389693
+ assetHeight?: number | undefined;
389694
+ };
389695
+ id: string;
389696
+ createdAt: Date;
389697
+ updatedAt: Date;
389698
+ persistentId: string;
389699
+ designSystemVersionId: string;
389700
+ origin: {
389701
+ sourceId: string;
389702
+ fileId?: string | undefined;
389703
+ parentName?: string | undefined;
389704
+ };
389705
+ meta: {
389706
+ name: string;
389707
+ description?: string | undefined;
389708
+ };
389709
+ }[];
389710
+ } | {
389711
+ type: "FigmaNodeRenderAsync";
389712
+ figmaNodes: {
389295
389713
  data: {
389296
389714
  format: "Png" | "Svg";
389297
389715
  sceneNodeId: string;
@@ -389325,14 +389743,14 @@ declare class ElementsEndpoint {
389325
389743
  name: string;
389326
389744
  description?: string | undefined;
389327
389745
  };
389328
- }[] | undefined;
389746
+ }[];
389747
+ } | {
389748
+ type: "ElementPropertyValuesEdit";
389749
+ output: {
389750
+ success: true;
389751
+ };
389329
389752
  }>;
389330
- }
389331
-
389332
- declare class ElementsActionEndpoint {
389333
- private readonly requestExecutor;
389334
- constructor(requestExecutor: RequestExecutor);
389335
- createDocPage(dsId: string, vId: string, input: DTOCreateDocumentationPageInputV2): Promise<{
389753
+ moveDocGroup(dsId: string, vId: string, input: DTOMoveDocumentationGroupInput): Promise<{
389336
389754
  type: "DocumentationGroupCreate";
389337
389755
  output: {
389338
389756
  success: true;
@@ -389483,7 +389901,7 @@ declare class ElementsActionEndpoint {
389483
389901
  success: true;
389484
389902
  };
389485
389903
  }>;
389486
- createDocGroup(dsId: string, vId: string, input: DTOCreateDocumentationGroupInput): Promise<{
389904
+ updateDocPage(dsId: string, vId: string, input: DTOUpdateDocumentationPageInputV2): Promise<{
389487
389905
  type: "DocumentationGroupCreate";
389488
389906
  output: {
389489
389907
  success: true;
@@ -389634,7 +390052,7 @@ declare class ElementsActionEndpoint {
389634
390052
  success: true;
389635
390053
  };
389636
390054
  }>;
389637
- moveDocGroup(dsId: string, vId: string, input: DTOMoveDocumentationGroupInput): Promise<{
390055
+ updateDocPageDocument(dsId: string, vId: string, input: DTOUpdateDocumentationPageDocumentInputV2): Promise<{
389638
390056
  type: "DocumentationGroupCreate";
389639
390057
  output: {
389640
390058
  success: true;
@@ -389785,7 +390203,7 @@ declare class ElementsActionEndpoint {
389785
390203
  success: true;
389786
390204
  };
389787
390205
  }>;
389788
- updateDocPage(dsId: string, vId: string, input: DTOUpdateDocumentationPageInputV2): Promise<{
390206
+ updateDocGroup(dsId: string, vId: string, input: DTOUpdateDocumentationGroupInput): Promise<{
389789
390207
  type: "DocumentationGroupCreate";
389790
390208
  output: {
389791
390209
  success: true;
@@ -389936,7 +390354,7 @@ declare class ElementsActionEndpoint {
389936
390354
  success: true;
389937
390355
  };
389938
390356
  }>;
389939
- updateDocPageDocument(dsId: string, vId: string, input: DTOUpdateDocumentationPageDocumentInputV2): Promise<{
390357
+ createDocTab(dsId: string, vId: string, input: DTOCreateDocumentationTabInput): Promise<{
389940
390358
  type: "DocumentationGroupCreate";
389941
390359
  output: {
389942
390360
  success: true;
@@ -390087,7 +390505,7 @@ declare class ElementsActionEndpoint {
390087
390505
  success: true;
390088
390506
  };
390089
390507
  }>;
390090
- updateDocGroup(dsId: string, vId: string, input: DTOUpdateDocumentationGroupInput): Promise<{
390508
+ renderNodes(dsId: string, vId: string, input: DTOFigmaNodeRenderIdInput[]): Promise<{
390091
390509
  type: "DocumentationGroupCreate";
390092
390510
  output: {
390093
390511
  success: true;
@@ -390238,7 +390656,7 @@ declare class ElementsActionEndpoint {
390238
390656
  success: true;
390239
390657
  };
390240
390658
  }>;
390241
- createDocTab(dsId: string, vId: string, input: DTOCreateDocumentationTabInput): Promise<{
390659
+ renderNodesAsync(dsId: string, vId: string, nodes: DTOFigmaNodeRenderInput[]): Promise<{
390242
390660
  type: "DocumentationGroupCreate";
390243
390661
  output: {
390244
390662
  success: true;
@@ -390389,7 +390807,7 @@ declare class ElementsActionEndpoint {
390389
390807
  success: true;
390390
390808
  };
390391
390809
  }>;
390392
- renderNodes(dsId: string, vId: string, input: DTOFigmaNodeRenderIdInput[]): Promise<{
390810
+ bulkEditPropertyValues(dsId: string, vId: string, values: DTOElementPropertyValueUpsertPaylod[]): Promise<{
390393
390811
  type: "DocumentationGroupCreate";
390394
390812
  output: {
390395
390813
  success: true;
@@ -390540,89 +390958,15 @@ declare class ElementsActionEndpoint {
390540
390958
  success: true;
390541
390959
  };
390542
390960
  }>;
390543
- renderNodesAsync(dsId: string, vId: string, nodes: DTOFigmaNodeRenderInput[]): Promise<{
390544
- type: "DocumentationGroupCreate";
390545
- output: {
390546
- success: true;
390547
- };
390548
- } | {
390549
- type: "DocumentationTabCreate";
390550
- output: {
390551
- success: true;
390552
- };
390553
- } | {
390554
- type: "DocumentationGroupUpdate";
390555
- output: {
390556
- success: true;
390557
- };
390558
- } | {
390559
- type: "DocumentationGroupMove";
390560
- output: {
390561
- success: true;
390562
- };
390563
- } | {
390564
- type: "DocumentationGroupDuplicate";
390565
- output: {
390566
- success: true;
390567
- };
390568
- } | {
390569
- type: "DocumentationGroupDelete";
390570
- output: {
390571
- success: true;
390572
- };
390573
- } | {
390574
- type: "DocumentationTabGroupDelete";
390575
- output: {
390576
- success: true;
390577
- };
390578
- } | {
390579
- type: "DocumentationPageCreate";
390580
- output: {
390581
- success: true;
390582
- };
390583
- } | {
390584
- type: "DocumentationPageUpdate";
390585
- output: {
390586
- success: true;
390587
- };
390588
- } | {
390589
- type: "DocumentationPageUpdateDocument";
390590
- output: {
390591
- success: true;
390592
- };
390593
- } | {
390594
- type: "DocumentationPageMove";
390595
- output: {
390596
- success: true;
390597
- };
390598
- } | {
390599
- type: "DocumentationPageDuplicate";
390600
- output: {
390601
- success: true;
390602
- };
390603
- } | {
390604
- type: "DocumentationPageDelete";
390605
- output: {
390606
- success: true;
390607
- };
390608
- } | {
390609
- type: "DocumentationPageRestore";
390610
- output: {
390611
- success: true;
390612
- };
390613
- } | {
390614
- type: "DocumentationGroupRestore";
390615
- output: {
390616
- success: true;
390617
- };
390618
- } | {
390619
- type: "DocumentationPageApprovalStateChange";
390620
- output: {
390621
- success: true;
390622
- };
390623
- } | {
390624
- type: "FigmaNodeRender";
390625
- figmaNodes: {
390961
+ private action;
390962
+ }
390963
+
390964
+ type GetElementsQuery = OmitStrict<DTOElementsGetQueryParsed, "responseVersion">;
390965
+ declare class ElementsEndpoint {
390966
+ private readonly requestExecutor;
390967
+ constructor(requestExecutor: RequestExecutor);
390968
+ getElementsV1(dsId: string, vId: string, query: GetElementsQuery): Promise<{
390969
+ figmaNodes?: {
390626
390970
  data: {
390627
390971
  assetId: string;
390628
390972
  assetScale: number;
@@ -390647,161 +390991,10 @@ declare class ElementsActionEndpoint {
390647
390991
  name: string;
390648
390992
  description?: string | undefined;
390649
390993
  };
390650
- }[];
390651
- } | {
390652
- type: "FigmaNodeRenderAsync";
390653
- figmaNodes: {
390654
- data: {
390655
- format: "Png" | "Svg";
390656
- sceneNodeId: string;
390657
- renderState: "InProgress" | "Success" | "Failed";
390658
- hasSource: boolean;
390659
- scale?: number | undefined;
390660
- renderedImage?: {
390661
- resourceId: string;
390662
- format: "Png" | "Svg";
390663
- url?: string | undefined;
390664
- width?: number | undefined;
390665
- height?: number | undefined;
390666
- originKey?: string | undefined;
390667
- scale?: number | undefined;
390668
- } | undefined;
390669
- renderError?: {
390670
- type: "MissingIntegration" | "NodeNotFound" | "RenderError";
390671
- } | undefined;
390672
- };
390673
- id: string;
390674
- createdAt: Date;
390675
- updatedAt: Date;
390676
- persistentId: string;
390677
- designSystemVersionId: string;
390678
- origin: {
390679
- sourceId: string;
390680
- fileId?: string | undefined;
390681
- parentName?: string | undefined;
390682
- };
390683
- meta: {
390684
- name: string;
390685
- description?: string | undefined;
390686
- };
390687
- }[];
390688
- } | {
390689
- type: "ElementPropertyValuesEdit";
390690
- output: {
390691
- success: true;
390692
- };
390994
+ }[] | undefined;
390693
390995
  }>;
390694
- bulkEditPropertyValues(dsId: string, vId: string, values: DTOElementPropertyValueUpsertPaylod[]): Promise<{
390695
- type: "DocumentationGroupCreate";
390696
- output: {
390697
- success: true;
390698
- };
390699
- } | {
390700
- type: "DocumentationTabCreate";
390701
- output: {
390702
- success: true;
390703
- };
390704
- } | {
390705
- type: "DocumentationGroupUpdate";
390706
- output: {
390707
- success: true;
390708
- };
390709
- } | {
390710
- type: "DocumentationGroupMove";
390711
- output: {
390712
- success: true;
390713
- };
390714
- } | {
390715
- type: "DocumentationGroupDuplicate";
390716
- output: {
390717
- success: true;
390718
- };
390719
- } | {
390720
- type: "DocumentationGroupDelete";
390721
- output: {
390722
- success: true;
390723
- };
390724
- } | {
390725
- type: "DocumentationTabGroupDelete";
390726
- output: {
390727
- success: true;
390728
- };
390729
- } | {
390730
- type: "DocumentationPageCreate";
390731
- output: {
390732
- success: true;
390733
- };
390734
- } | {
390735
- type: "DocumentationPageUpdate";
390736
- output: {
390737
- success: true;
390738
- };
390739
- } | {
390740
- type: "DocumentationPageUpdateDocument";
390741
- output: {
390742
- success: true;
390743
- };
390744
- } | {
390745
- type: "DocumentationPageMove";
390746
- output: {
390747
- success: true;
390748
- };
390749
- } | {
390750
- type: "DocumentationPageDuplicate";
390751
- output: {
390752
- success: true;
390753
- };
390754
- } | {
390755
- type: "DocumentationPageDelete";
390756
- output: {
390757
- success: true;
390758
- };
390759
- } | {
390760
- type: "DocumentationPageRestore";
390761
- output: {
390762
- success: true;
390763
- };
390764
- } | {
390765
- type: "DocumentationGroupRestore";
390766
- output: {
390767
- success: true;
390768
- };
390769
- } | {
390770
- type: "DocumentationPageApprovalStateChange";
390771
- output: {
390772
- success: true;
390773
- };
390774
- } | {
390775
- type: "FigmaNodeRender";
390776
- figmaNodes: {
390777
- data: {
390778
- assetId: string;
390779
- assetScale: number;
390780
- assetUrl: string;
390781
- figmaNodeId: string;
390782
- isValid: boolean;
390783
- assetFormat: "Png" | "Svg";
390784
- assetWidth?: number | undefined;
390785
- assetHeight?: number | undefined;
390786
- };
390787
- id: string;
390788
- createdAt: Date;
390789
- updatedAt: Date;
390790
- persistentId: string;
390791
- designSystemVersionId: string;
390792
- origin: {
390793
- sourceId: string;
390794
- fileId?: string | undefined;
390795
- parentName?: string | undefined;
390796
- };
390797
- meta: {
390798
- name: string;
390799
- description?: string | undefined;
390800
- };
390801
- }[];
390802
- } | {
390803
- type: "FigmaNodeRenderAsync";
390804
- figmaNodes: {
390996
+ getElementsV2(dsId: string, vId: string, query: GetElementsQuery): Promise<{
390997
+ figmaNodes?: {
390805
390998
  data: {
390806
390999
  format: "Png" | "Svg";
390807
391000
  sceneNodeId: string;
@@ -390835,14 +391028,8 @@ declare class ElementsActionEndpoint {
390835
391028
  name: string;
390836
391029
  description?: string | undefined;
390837
391030
  };
390838
- }[];
390839
- } | {
390840
- type: "ElementPropertyValuesEdit";
390841
- output: {
390842
- success: true;
390843
- };
391031
+ }[] | undefined;
390844
391032
  }>;
390845
- private action;
390846
391033
  }
390847
391034
 
390848
391035
  declare class FigmaComponentGroupsEndpoint {
@@ -404720,6 +404907,11 @@ declare class WorkspaceSubscriptionEndpoint {
404720
404907
  errorReason: string;
404721
404908
  enabled: boolean;
404722
404909
  };
404910
+ forgeShellTemplates: {
404911
+ errorMessage: string;
404912
+ errorReason: string;
404913
+ max?: number | undefined;
404914
+ };
404723
404915
  } | undefined;
404724
404916
  stripeSubscriptionMainItemId?: string | undefined;
404725
404917
  billingType?: "Auto" | "Invoice" | undefined;
@@ -408614,4 +408806,4 @@ declare function isValidRedirectPath(path: string): {
408614
408806
  reason: ValidationErrorReason | undefined;
408615
408807
  };
408616
408808
 
408617
- export { AuthTokensEndpoint, BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, 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, DTOCodeComponentDocFile, DTOCodeComponentListResponse, DTOCodeComponentPropUsage, DTOCodeComponentProperty, DTOCodeComponentStorybookFile, DTOCodeComponentUsage, DTOCodeComponentUsageResponse, DTOCodeHistoryQuery, DTOCodeHistoryResponse, DTOCodeHistorySnapshot, 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, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemPipelineCreateBody, DTODesignSystemPipelineListQuery, 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, DTODocumentationConfiguration, DTODocumentationConfigurationResponse, 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, 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, DTOForgeFigmaNodeConversionVersion, DTOForgeFigmaNodeCreateRequest, DTOForgeFigmaNodeOrigin, DTOForgeFigmaNodeResponse, DTOForgeFigmaNodeState, DTOForgeFigmaNodeValidateResponse, 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, DTOKeepAliveFeatureSandboxResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOLoginScreenSettings, DTOLoginScreenSettingsResponse, DTOLoginScreenSettingsUpdate, 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, DTOPipelineExporterQuery, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, DTOProjectContextOverride, DTOProjectContextOverrideInput, DTOProjectContextOverrideResponse, type DTOPropertyDefinitionBase, DTOProvisionFeatureSandboxInput, DTOProvisionFeatureSandboxResponse, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, 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, DTOThreadMessageAnnotation, DTOThreadMessageAnnotations, 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, DTOWorkspaceStats, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemCodeSnapshotsEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemPipelinesEndpoint, 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, ForgeFigmaNodeLatestVersion, ForgeMemoryEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, IntegrationOauthCallbackState, IntegrationOauthPlatform, 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, type YJSKeyValueStorage, YJSKeyValueStorageV1, YJSKeyValueStorageV2, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationConfigurationToDto, 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 };
408809
+ export { AuthTokensEndpoint, BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, 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, DTOCodeComponentDocFile, DTOCodeComponentListResponse, DTOCodeComponentPropUsage, DTOCodeComponentProperty, DTOCodeComponentStorybookFile, DTOCodeComponentUsage, DTOCodeComponentUsageResponse, DTOCodeHistoryQuery, DTOCodeHistoryResponse, DTOCodeHistorySnapshot, 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, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemPipelineCreateBody, DTODesignSystemPipelineListQuery, 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, DTODocumentationConfiguration, DTODocumentationConfigurationResponse, DTODocumentationContent, DTODocumentationContentQuery, DTODocumentationContentResponse, 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, DTODocumentationMinimalPage, DTODocumentationMinimalPageListResponse, 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, 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, DTOForgeFigmaNodeConversionVersion, DTOForgeFigmaNodeCreateRequest, DTOForgeFigmaNodeOrigin, DTOForgeFigmaNodeResponse, DTOForgeFigmaNodeState, DTOForgeFigmaNodeValidateResponse, 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, DTOKeepAliveFeatureSandboxResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOLoginScreenSettings, DTOLoginScreenSettingsResponse, DTOLoginScreenSettingsUpdate, 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, DTOPipelineExporterQuery, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, DTOProjectContextOverride, DTOProjectContextOverrideInput, DTOProjectContextOverrideResponse, type DTOPropertyDefinitionBase, DTOProvisionFeatureSandboxInput, DTOProvisionFeatureSandboxResponse, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, 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, DTOThreadMessageAnnotation, DTOThreadMessageAnnotations, 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, DTOWorkspaceStats, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemCodeSnapshotsEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemPipelinesEndpoint, 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, ForgeFigmaNodeLatestVersion, ForgeMemoryEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, IntegrationOauthCallbackState, IntegrationOauthPlatform, 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, type YJSKeyValueStorage, YJSKeyValueStorageV1, YJSKeyValueStorageV2, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationConfigurationToDto, 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 };