@supernova-studio/client 1.87.10 → 1.87.11
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 +582 -475
- package/dist/index.d.ts +582 -475
- package/dist/index.js +113 -69
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1693 -1649
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
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;
|
|
@@ -41908,6 +41908,99 @@ declare const DTODocumentationPageRoomResponse: z.ZodObject<{
|
|
|
41908
41908
|
}>;
|
|
41909
41909
|
type DTODocumentationPageRoomResponse = z.infer<typeof DTODocumentationPageRoomResponse>;
|
|
41910
41910
|
|
|
41911
|
+
declare const DTODocumentationMinimalPage: z.ZodObject<{
|
|
41912
|
+
id: z.ZodString;
|
|
41913
|
+
title: z.ZodString;
|
|
41914
|
+
fullPath: z.ZodString;
|
|
41915
|
+
description: z.ZodOptional<z.ZodString>;
|
|
41916
|
+
}, "strip", z.ZodTypeAny, {
|
|
41917
|
+
id: string;
|
|
41918
|
+
title: string;
|
|
41919
|
+
fullPath: string;
|
|
41920
|
+
description?: string | undefined;
|
|
41921
|
+
}, {
|
|
41922
|
+
id: string;
|
|
41923
|
+
title: string;
|
|
41924
|
+
fullPath: string;
|
|
41925
|
+
description?: string | undefined;
|
|
41926
|
+
}>;
|
|
41927
|
+
type DTODocumentationMinimalPage = z.infer<typeof DTODocumentationMinimalPage>;
|
|
41928
|
+
declare const DTODocumentationMinimalPageListResponse: z.ZodObject<{
|
|
41929
|
+
pages: z.ZodArray<z.ZodObject<{
|
|
41930
|
+
id: z.ZodString;
|
|
41931
|
+
title: z.ZodString;
|
|
41932
|
+
fullPath: z.ZodString;
|
|
41933
|
+
description: z.ZodOptional<z.ZodString>;
|
|
41934
|
+
}, "strip", z.ZodTypeAny, {
|
|
41935
|
+
id: string;
|
|
41936
|
+
title: string;
|
|
41937
|
+
fullPath: string;
|
|
41938
|
+
description?: string | undefined;
|
|
41939
|
+
}, {
|
|
41940
|
+
id: string;
|
|
41941
|
+
title: string;
|
|
41942
|
+
fullPath: string;
|
|
41943
|
+
description?: string | undefined;
|
|
41944
|
+
}>, "many">;
|
|
41945
|
+
}, "strip", z.ZodTypeAny, {
|
|
41946
|
+
pages: {
|
|
41947
|
+
id: string;
|
|
41948
|
+
title: string;
|
|
41949
|
+
fullPath: string;
|
|
41950
|
+
description?: string | undefined;
|
|
41951
|
+
}[];
|
|
41952
|
+
}, {
|
|
41953
|
+
pages: {
|
|
41954
|
+
id: string;
|
|
41955
|
+
title: string;
|
|
41956
|
+
fullPath: string;
|
|
41957
|
+
description?: string | undefined;
|
|
41958
|
+
}[];
|
|
41959
|
+
}>;
|
|
41960
|
+
type DTODocumentationMinimalPageListResponse = z.infer<typeof DTODocumentationMinimalPageListResponse>;
|
|
41961
|
+
declare const DTODocumentationContent: z.ZodObject<{
|
|
41962
|
+
id: z.ZodString;
|
|
41963
|
+
markdown: z.ZodString;
|
|
41964
|
+
}, "strip", z.ZodTypeAny, {
|
|
41965
|
+
id: string;
|
|
41966
|
+
markdown: string;
|
|
41967
|
+
}, {
|
|
41968
|
+
id: string;
|
|
41969
|
+
markdown: string;
|
|
41970
|
+
}>;
|
|
41971
|
+
type DTODocumentationContent = z.infer<typeof DTODocumentationContent>;
|
|
41972
|
+
declare const DTODocumentationContentResponse: z.ZodObject<{
|
|
41973
|
+
pageContents: z.ZodArray<z.ZodObject<{
|
|
41974
|
+
id: z.ZodString;
|
|
41975
|
+
markdown: z.ZodString;
|
|
41976
|
+
}, "strip", z.ZodTypeAny, {
|
|
41977
|
+
id: string;
|
|
41978
|
+
markdown: string;
|
|
41979
|
+
}, {
|
|
41980
|
+
id: string;
|
|
41981
|
+
markdown: string;
|
|
41982
|
+
}>, "many">;
|
|
41983
|
+
}, "strip", z.ZodTypeAny, {
|
|
41984
|
+
pageContents: {
|
|
41985
|
+
id: string;
|
|
41986
|
+
markdown: string;
|
|
41987
|
+
}[];
|
|
41988
|
+
}, {
|
|
41989
|
+
pageContents: {
|
|
41990
|
+
id: string;
|
|
41991
|
+
markdown: string;
|
|
41992
|
+
}[];
|
|
41993
|
+
}>;
|
|
41994
|
+
type DTODocumentationContentResponse = z.infer<typeof DTODocumentationContentResponse>;
|
|
41995
|
+
declare const DTODocumentationContentQuery: z.ZodObject<{
|
|
41996
|
+
pageIds: z.ZodPipeline<z.ZodEffects<z.ZodString, string[], string>, z.ZodArray<z.ZodString, "many">>;
|
|
41997
|
+
}, "strip", z.ZodTypeAny, {
|
|
41998
|
+
pageIds: string[];
|
|
41999
|
+
}, {
|
|
42000
|
+
pageIds: string;
|
|
42001
|
+
}>;
|
|
42002
|
+
type DTODocumentationContentQuery = z.infer<typeof DTODocumentationContentQuery>;
|
|
42003
|
+
|
|
41911
42004
|
declare const DTOFigmaComponentGroup: z$1.ZodObject<{
|
|
41912
42005
|
id: z$1.ZodString;
|
|
41913
42006
|
designSystemVersionId: z$1.ZodString;
|
|
@@ -389223,6 +389316,20 @@ declare class DocumentationEndpoint {
|
|
|
389223
389316
|
documentationPageId: string;
|
|
389224
389317
|
};
|
|
389225
389318
|
}>;
|
|
389319
|
+
list(dsId: string, versionId: string): Promise<{
|
|
389320
|
+
pages: {
|
|
389321
|
+
id: string;
|
|
389322
|
+
title: string;
|
|
389323
|
+
fullPath: string;
|
|
389324
|
+
description?: string | undefined;
|
|
389325
|
+
}[];
|
|
389326
|
+
}>;
|
|
389327
|
+
getContent(dsId: string, versionId: string, pageIds: string[]): Promise<{
|
|
389328
|
+
pageContents: {
|
|
389329
|
+
id: string;
|
|
389330
|
+
markdown: string;
|
|
389331
|
+
}[];
|
|
389332
|
+
}>;
|
|
389226
389333
|
}
|
|
389227
389334
|
|
|
389228
389335
|
declare class DesignSystemComponentEndpoint {
|
|
@@ -389258,12 +389365,92 @@ declare class DesignSystemComponentEndpoint {
|
|
|
389258
389365
|
}>;
|
|
389259
389366
|
}
|
|
389260
389367
|
|
|
389261
|
-
|
|
389262
|
-
declare class ElementsEndpoint {
|
|
389368
|
+
declare class ElementsActionEndpoint {
|
|
389263
389369
|
private readonly requestExecutor;
|
|
389264
389370
|
constructor(requestExecutor: RequestExecutor);
|
|
389265
|
-
|
|
389266
|
-
|
|
389371
|
+
createDocPage(dsId: string, vId: string, input: DTOCreateDocumentationPageInputV2): Promise<{
|
|
389372
|
+
type: "DocumentationGroupCreate";
|
|
389373
|
+
output: {
|
|
389374
|
+
success: true;
|
|
389375
|
+
};
|
|
389376
|
+
} | {
|
|
389377
|
+
type: "DocumentationTabCreate";
|
|
389378
|
+
output: {
|
|
389379
|
+
success: true;
|
|
389380
|
+
};
|
|
389381
|
+
} | {
|
|
389382
|
+
type: "DocumentationGroupUpdate";
|
|
389383
|
+
output: {
|
|
389384
|
+
success: true;
|
|
389385
|
+
};
|
|
389386
|
+
} | {
|
|
389387
|
+
type: "DocumentationGroupMove";
|
|
389388
|
+
output: {
|
|
389389
|
+
success: true;
|
|
389390
|
+
};
|
|
389391
|
+
} | {
|
|
389392
|
+
type: "DocumentationGroupDuplicate";
|
|
389393
|
+
output: {
|
|
389394
|
+
success: true;
|
|
389395
|
+
};
|
|
389396
|
+
} | {
|
|
389397
|
+
type: "DocumentationGroupDelete";
|
|
389398
|
+
output: {
|
|
389399
|
+
success: true;
|
|
389400
|
+
};
|
|
389401
|
+
} | {
|
|
389402
|
+
type: "DocumentationTabGroupDelete";
|
|
389403
|
+
output: {
|
|
389404
|
+
success: true;
|
|
389405
|
+
};
|
|
389406
|
+
} | {
|
|
389407
|
+
type: "DocumentationPageCreate";
|
|
389408
|
+
output: {
|
|
389409
|
+
success: true;
|
|
389410
|
+
};
|
|
389411
|
+
} | {
|
|
389412
|
+
type: "DocumentationPageUpdate";
|
|
389413
|
+
output: {
|
|
389414
|
+
success: true;
|
|
389415
|
+
};
|
|
389416
|
+
} | {
|
|
389417
|
+
type: "DocumentationPageUpdateDocument";
|
|
389418
|
+
output: {
|
|
389419
|
+
success: true;
|
|
389420
|
+
};
|
|
389421
|
+
} | {
|
|
389422
|
+
type: "DocumentationPageMove";
|
|
389423
|
+
output: {
|
|
389424
|
+
success: true;
|
|
389425
|
+
};
|
|
389426
|
+
} | {
|
|
389427
|
+
type: "DocumentationPageDuplicate";
|
|
389428
|
+
output: {
|
|
389429
|
+
success: true;
|
|
389430
|
+
};
|
|
389431
|
+
} | {
|
|
389432
|
+
type: "DocumentationPageDelete";
|
|
389433
|
+
output: {
|
|
389434
|
+
success: true;
|
|
389435
|
+
};
|
|
389436
|
+
} | {
|
|
389437
|
+
type: "DocumentationPageRestore";
|
|
389438
|
+
output: {
|
|
389439
|
+
success: true;
|
|
389440
|
+
};
|
|
389441
|
+
} | {
|
|
389442
|
+
type: "DocumentationGroupRestore";
|
|
389443
|
+
output: {
|
|
389444
|
+
success: true;
|
|
389445
|
+
};
|
|
389446
|
+
} | {
|
|
389447
|
+
type: "DocumentationPageApprovalStateChange";
|
|
389448
|
+
output: {
|
|
389449
|
+
success: true;
|
|
389450
|
+
};
|
|
389451
|
+
} | {
|
|
389452
|
+
type: "FigmaNodeRender";
|
|
389453
|
+
figmaNodes: {
|
|
389267
389454
|
data: {
|
|
389268
389455
|
assetId: string;
|
|
389269
389456
|
assetScale: number;
|
|
@@ -389288,10 +389475,161 @@ declare class ElementsEndpoint {
|
|
|
389288
389475
|
name: string;
|
|
389289
389476
|
description?: string | undefined;
|
|
389290
389477
|
};
|
|
389291
|
-
}[]
|
|
389478
|
+
}[];
|
|
389479
|
+
} | {
|
|
389480
|
+
type: "FigmaNodeRenderAsync";
|
|
389481
|
+
figmaNodes: {
|
|
389482
|
+
data: {
|
|
389483
|
+
format: "Png" | "Svg";
|
|
389484
|
+
sceneNodeId: string;
|
|
389485
|
+
renderState: "InProgress" | "Success" | "Failed";
|
|
389486
|
+
hasSource: boolean;
|
|
389487
|
+
scale?: number | undefined;
|
|
389488
|
+
renderedImage?: {
|
|
389489
|
+
resourceId: string;
|
|
389490
|
+
format: "Png" | "Svg";
|
|
389491
|
+
url?: string | undefined;
|
|
389492
|
+
width?: number | undefined;
|
|
389493
|
+
height?: number | undefined;
|
|
389494
|
+
originKey?: string | undefined;
|
|
389495
|
+
scale?: number | undefined;
|
|
389496
|
+
} | undefined;
|
|
389497
|
+
renderError?: {
|
|
389498
|
+
type: "MissingIntegration" | "NodeNotFound" | "RenderError";
|
|
389499
|
+
} | undefined;
|
|
389500
|
+
};
|
|
389501
|
+
id: string;
|
|
389502
|
+
createdAt: Date;
|
|
389503
|
+
updatedAt: Date;
|
|
389504
|
+
persistentId: string;
|
|
389505
|
+
designSystemVersionId: string;
|
|
389506
|
+
origin: {
|
|
389507
|
+
sourceId: string;
|
|
389508
|
+
fileId?: string | undefined;
|
|
389509
|
+
parentName?: string | undefined;
|
|
389510
|
+
};
|
|
389511
|
+
meta: {
|
|
389512
|
+
name: string;
|
|
389513
|
+
description?: string | undefined;
|
|
389514
|
+
};
|
|
389515
|
+
}[];
|
|
389516
|
+
} | {
|
|
389517
|
+
type: "ElementPropertyValuesEdit";
|
|
389518
|
+
output: {
|
|
389519
|
+
success: true;
|
|
389520
|
+
};
|
|
389292
389521
|
}>;
|
|
389293
|
-
|
|
389294
|
-
|
|
389522
|
+
createDocGroup(dsId: string, vId: string, input: DTOCreateDocumentationGroupInput): Promise<{
|
|
389523
|
+
type: "DocumentationGroupCreate";
|
|
389524
|
+
output: {
|
|
389525
|
+
success: true;
|
|
389526
|
+
};
|
|
389527
|
+
} | {
|
|
389528
|
+
type: "DocumentationTabCreate";
|
|
389529
|
+
output: {
|
|
389530
|
+
success: true;
|
|
389531
|
+
};
|
|
389532
|
+
} | {
|
|
389533
|
+
type: "DocumentationGroupUpdate";
|
|
389534
|
+
output: {
|
|
389535
|
+
success: true;
|
|
389536
|
+
};
|
|
389537
|
+
} | {
|
|
389538
|
+
type: "DocumentationGroupMove";
|
|
389539
|
+
output: {
|
|
389540
|
+
success: true;
|
|
389541
|
+
};
|
|
389542
|
+
} | {
|
|
389543
|
+
type: "DocumentationGroupDuplicate";
|
|
389544
|
+
output: {
|
|
389545
|
+
success: true;
|
|
389546
|
+
};
|
|
389547
|
+
} | {
|
|
389548
|
+
type: "DocumentationGroupDelete";
|
|
389549
|
+
output: {
|
|
389550
|
+
success: true;
|
|
389551
|
+
};
|
|
389552
|
+
} | {
|
|
389553
|
+
type: "DocumentationTabGroupDelete";
|
|
389554
|
+
output: {
|
|
389555
|
+
success: true;
|
|
389556
|
+
};
|
|
389557
|
+
} | {
|
|
389558
|
+
type: "DocumentationPageCreate";
|
|
389559
|
+
output: {
|
|
389560
|
+
success: true;
|
|
389561
|
+
};
|
|
389562
|
+
} | {
|
|
389563
|
+
type: "DocumentationPageUpdate";
|
|
389564
|
+
output: {
|
|
389565
|
+
success: true;
|
|
389566
|
+
};
|
|
389567
|
+
} | {
|
|
389568
|
+
type: "DocumentationPageUpdateDocument";
|
|
389569
|
+
output: {
|
|
389570
|
+
success: true;
|
|
389571
|
+
};
|
|
389572
|
+
} | {
|
|
389573
|
+
type: "DocumentationPageMove";
|
|
389574
|
+
output: {
|
|
389575
|
+
success: true;
|
|
389576
|
+
};
|
|
389577
|
+
} | {
|
|
389578
|
+
type: "DocumentationPageDuplicate";
|
|
389579
|
+
output: {
|
|
389580
|
+
success: true;
|
|
389581
|
+
};
|
|
389582
|
+
} | {
|
|
389583
|
+
type: "DocumentationPageDelete";
|
|
389584
|
+
output: {
|
|
389585
|
+
success: true;
|
|
389586
|
+
};
|
|
389587
|
+
} | {
|
|
389588
|
+
type: "DocumentationPageRestore";
|
|
389589
|
+
output: {
|
|
389590
|
+
success: true;
|
|
389591
|
+
};
|
|
389592
|
+
} | {
|
|
389593
|
+
type: "DocumentationGroupRestore";
|
|
389594
|
+
output: {
|
|
389595
|
+
success: true;
|
|
389596
|
+
};
|
|
389597
|
+
} | {
|
|
389598
|
+
type: "DocumentationPageApprovalStateChange";
|
|
389599
|
+
output: {
|
|
389600
|
+
success: true;
|
|
389601
|
+
};
|
|
389602
|
+
} | {
|
|
389603
|
+
type: "FigmaNodeRender";
|
|
389604
|
+
figmaNodes: {
|
|
389605
|
+
data: {
|
|
389606
|
+
assetId: string;
|
|
389607
|
+
assetScale: number;
|
|
389608
|
+
assetUrl: string;
|
|
389609
|
+
figmaNodeId: string;
|
|
389610
|
+
isValid: boolean;
|
|
389611
|
+
assetFormat: "Png" | "Svg";
|
|
389612
|
+
assetWidth?: number | undefined;
|
|
389613
|
+
assetHeight?: number | undefined;
|
|
389614
|
+
};
|
|
389615
|
+
id: string;
|
|
389616
|
+
createdAt: Date;
|
|
389617
|
+
updatedAt: Date;
|
|
389618
|
+
persistentId: string;
|
|
389619
|
+
designSystemVersionId: string;
|
|
389620
|
+
origin: {
|
|
389621
|
+
sourceId: string;
|
|
389622
|
+
fileId?: string | undefined;
|
|
389623
|
+
parentName?: string | undefined;
|
|
389624
|
+
};
|
|
389625
|
+
meta: {
|
|
389626
|
+
name: string;
|
|
389627
|
+
description?: string | undefined;
|
|
389628
|
+
};
|
|
389629
|
+
}[];
|
|
389630
|
+
} | {
|
|
389631
|
+
type: "FigmaNodeRenderAsync";
|
|
389632
|
+
figmaNodes: {
|
|
389295
389633
|
data: {
|
|
389296
389634
|
format: "Png" | "Svg";
|
|
389297
389635
|
sceneNodeId: string;
|
|
@@ -389325,14 +389663,14 @@ declare class ElementsEndpoint {
|
|
|
389325
389663
|
name: string;
|
|
389326
389664
|
description?: string | undefined;
|
|
389327
389665
|
};
|
|
389328
|
-
}[]
|
|
389666
|
+
}[];
|
|
389667
|
+
} | {
|
|
389668
|
+
type: "ElementPropertyValuesEdit";
|
|
389669
|
+
output: {
|
|
389670
|
+
success: true;
|
|
389671
|
+
};
|
|
389329
389672
|
}>;
|
|
389330
|
-
|
|
389331
|
-
|
|
389332
|
-
declare class ElementsActionEndpoint {
|
|
389333
|
-
private readonly requestExecutor;
|
|
389334
|
-
constructor(requestExecutor: RequestExecutor);
|
|
389335
|
-
createDocPage(dsId: string, vId: string, input: DTOCreateDocumentationPageInputV2): Promise<{
|
|
389673
|
+
moveDocGroup(dsId: string, vId: string, input: DTOMoveDocumentationGroupInput): Promise<{
|
|
389336
389674
|
type: "DocumentationGroupCreate";
|
|
389337
389675
|
output: {
|
|
389338
389676
|
success: true;
|
|
@@ -389483,7 +389821,7 @@ declare class ElementsActionEndpoint {
|
|
|
389483
389821
|
success: true;
|
|
389484
389822
|
};
|
|
389485
389823
|
}>;
|
|
389486
|
-
|
|
389824
|
+
updateDocPage(dsId: string, vId: string, input: DTOUpdateDocumentationPageInputV2): Promise<{
|
|
389487
389825
|
type: "DocumentationGroupCreate";
|
|
389488
389826
|
output: {
|
|
389489
389827
|
success: true;
|
|
@@ -389634,7 +389972,7 @@ declare class ElementsActionEndpoint {
|
|
|
389634
389972
|
success: true;
|
|
389635
389973
|
};
|
|
389636
389974
|
}>;
|
|
389637
|
-
|
|
389975
|
+
updateDocPageDocument(dsId: string, vId: string, input: DTOUpdateDocumentationPageDocumentInputV2): Promise<{
|
|
389638
389976
|
type: "DocumentationGroupCreate";
|
|
389639
389977
|
output: {
|
|
389640
389978
|
success: true;
|
|
@@ -389785,7 +390123,7 @@ declare class ElementsActionEndpoint {
|
|
|
389785
390123
|
success: true;
|
|
389786
390124
|
};
|
|
389787
390125
|
}>;
|
|
389788
|
-
|
|
390126
|
+
updateDocGroup(dsId: string, vId: string, input: DTOUpdateDocumentationGroupInput): Promise<{
|
|
389789
390127
|
type: "DocumentationGroupCreate";
|
|
389790
390128
|
output: {
|
|
389791
390129
|
success: true;
|
|
@@ -389936,7 +390274,7 @@ declare class ElementsActionEndpoint {
|
|
|
389936
390274
|
success: true;
|
|
389937
390275
|
};
|
|
389938
390276
|
}>;
|
|
389939
|
-
|
|
390277
|
+
createDocTab(dsId: string, vId: string, input: DTOCreateDocumentationTabInput): Promise<{
|
|
389940
390278
|
type: "DocumentationGroupCreate";
|
|
389941
390279
|
output: {
|
|
389942
390280
|
success: true;
|
|
@@ -390087,7 +390425,7 @@ declare class ElementsActionEndpoint {
|
|
|
390087
390425
|
success: true;
|
|
390088
390426
|
};
|
|
390089
390427
|
}>;
|
|
390090
|
-
|
|
390428
|
+
renderNodes(dsId: string, vId: string, input: DTOFigmaNodeRenderIdInput[]): Promise<{
|
|
390091
390429
|
type: "DocumentationGroupCreate";
|
|
390092
390430
|
output: {
|
|
390093
390431
|
success: true;
|
|
@@ -390238,7 +390576,7 @@ declare class ElementsActionEndpoint {
|
|
|
390238
390576
|
success: true;
|
|
390239
390577
|
};
|
|
390240
390578
|
}>;
|
|
390241
|
-
|
|
390579
|
+
renderNodesAsync(dsId: string, vId: string, nodes: DTOFigmaNodeRenderInput[]): Promise<{
|
|
390242
390580
|
type: "DocumentationGroupCreate";
|
|
390243
390581
|
output: {
|
|
390244
390582
|
success: true;
|
|
@@ -390389,7 +390727,7 @@ declare class ElementsActionEndpoint {
|
|
|
390389
390727
|
success: true;
|
|
390390
390728
|
};
|
|
390391
390729
|
}>;
|
|
390392
|
-
|
|
390730
|
+
bulkEditPropertyValues(dsId: string, vId: string, values: DTOElementPropertyValueUpsertPaylod[]): Promise<{
|
|
390393
390731
|
type: "DocumentationGroupCreate";
|
|
390394
390732
|
output: {
|
|
390395
390733
|
success: true;
|
|
@@ -390540,89 +390878,15 @@ declare class ElementsActionEndpoint {
|
|
|
390540
390878
|
success: true;
|
|
390541
390879
|
};
|
|
390542
390880
|
}>;
|
|
390543
|
-
|
|
390544
|
-
|
|
390545
|
-
|
|
390546
|
-
|
|
390547
|
-
|
|
390548
|
-
|
|
390549
|
-
|
|
390550
|
-
|
|
390551
|
-
|
|
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: {
|
|
390881
|
+
private action;
|
|
390882
|
+
}
|
|
390883
|
+
|
|
390884
|
+
type GetElementsQuery = OmitStrict<DTOElementsGetQueryParsed, "responseVersion">;
|
|
390885
|
+
declare class ElementsEndpoint {
|
|
390886
|
+
private readonly requestExecutor;
|
|
390887
|
+
constructor(requestExecutor: RequestExecutor);
|
|
390888
|
+
getElementsV1(dsId: string, vId: string, query: GetElementsQuery): Promise<{
|
|
390889
|
+
figmaNodes?: {
|
|
390626
390890
|
data: {
|
|
390627
390891
|
assetId: string;
|
|
390628
390892
|
assetScale: number;
|
|
@@ -390647,161 +390911,10 @@ declare class ElementsActionEndpoint {
|
|
|
390647
390911
|
name: string;
|
|
390648
390912
|
description?: string | undefined;
|
|
390649
390913
|
};
|
|
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
|
-
};
|
|
390914
|
+
}[] | undefined;
|
|
390693
390915
|
}>;
|
|
390694
|
-
|
|
390695
|
-
|
|
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: {
|
|
390916
|
+
getElementsV2(dsId: string, vId: string, query: GetElementsQuery): Promise<{
|
|
390917
|
+
figmaNodes?: {
|
|
390805
390918
|
data: {
|
|
390806
390919
|
format: "Png" | "Svg";
|
|
390807
390920
|
sceneNodeId: string;
|
|
@@ -390835,14 +390948,8 @@ declare class ElementsActionEndpoint {
|
|
|
390835
390948
|
name: string;
|
|
390836
390949
|
description?: string | undefined;
|
|
390837
390950
|
};
|
|
390838
|
-
}[];
|
|
390839
|
-
} | {
|
|
390840
|
-
type: "ElementPropertyValuesEdit";
|
|
390841
|
-
output: {
|
|
390842
|
-
success: true;
|
|
390843
|
-
};
|
|
390951
|
+
}[] | undefined;
|
|
390844
390952
|
}>;
|
|
390845
|
-
private action;
|
|
390846
390953
|
}
|
|
390847
390954
|
|
|
390848
390955
|
declare class FigmaComponentGroupsEndpoint {
|
|
@@ -408614,4 +408721,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
408614
408721
|
reason: ValidationErrorReason | undefined;
|
|
408615
408722
|
};
|
|
408616
408723
|
|
|
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 };
|
|
408724
|
+
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 };
|