@supernova-studio/client 1.74.3 → 1.75.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +903 -4
- package/dist/index.d.ts +903 -4
- package/dist/index.js +67 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +908 -842
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -10485,6 +10485,7 @@ declare const DTOBffUploadImportRequestBody: z.ZodObject<{
|
|
|
10485
10485
|
sourceName: z.ZodOptional<z.ZodString>;
|
|
10486
10486
|
remoteId: z.ZodString;
|
|
10487
10487
|
isTokenTypeSplitEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
10488
|
+
version: z.ZodOptional<z.ZodString>;
|
|
10488
10489
|
payload: z.ZodAny;
|
|
10489
10490
|
}, "strip", z.ZodTypeAny, {
|
|
10490
10491
|
type: "FigmaVariablesPlugin";
|
|
@@ -10493,6 +10494,7 @@ declare const DTOBffUploadImportRequestBody: z.ZodObject<{
|
|
|
10493
10494
|
brandPersistentId?: string | undefined;
|
|
10494
10495
|
payload?: any;
|
|
10495
10496
|
sourceName?: string | undefined;
|
|
10497
|
+
version?: string | undefined;
|
|
10496
10498
|
}, {
|
|
10497
10499
|
type: "FigmaVariablesPlugin" | "Upload";
|
|
10498
10500
|
remoteId: string;
|
|
@@ -10500,6 +10502,7 @@ declare const DTOBffUploadImportRequestBody: z.ZodObject<{
|
|
|
10500
10502
|
brandPersistentId?: string | undefined;
|
|
10501
10503
|
payload?: any;
|
|
10502
10504
|
sourceName?: string | undefined;
|
|
10505
|
+
version?: string | undefined;
|
|
10503
10506
|
}>;
|
|
10504
10507
|
type DTOBffUploadImportRequestBody = z.infer<typeof DTOBffUploadImportRequestBody>;
|
|
10505
10508
|
declare const DTOBffImportRequestBody: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -10561,6 +10564,7 @@ declare const DTOBffImportRequestBody: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
10561
10564
|
sourceName: z.ZodOptional<z.ZodString>;
|
|
10562
10565
|
remoteId: z.ZodString;
|
|
10563
10566
|
isTokenTypeSplitEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
10567
|
+
version: z.ZodOptional<z.ZodString>;
|
|
10564
10568
|
payload: z.ZodAny;
|
|
10565
10569
|
}, "strip", z.ZodTypeAny, {
|
|
10566
10570
|
type: "FigmaVariablesPlugin";
|
|
@@ -10569,6 +10573,7 @@ declare const DTOBffImportRequestBody: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
10569
10573
|
brandPersistentId?: string | undefined;
|
|
10570
10574
|
payload?: any;
|
|
10571
10575
|
sourceName?: string | undefined;
|
|
10576
|
+
version?: string | undefined;
|
|
10572
10577
|
}, {
|
|
10573
10578
|
type: "FigmaVariablesPlugin" | "Upload";
|
|
10574
10579
|
remoteId: string;
|
|
@@ -10576,6 +10581,7 @@ declare const DTOBffImportRequestBody: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
10576
10581
|
brandPersistentId?: string | undefined;
|
|
10577
10582
|
payload?: any;
|
|
10578
10583
|
sourceName?: string | undefined;
|
|
10584
|
+
version?: string | undefined;
|
|
10579
10585
|
}>]>;
|
|
10580
10586
|
type DTOBffImportRequestBody = z.infer<typeof DTOBffImportRequestBody>;
|
|
10581
10587
|
|
|
@@ -131293,6 +131299,899 @@ declare const DTOForgeFeatureRoomResponse: z.ZodObject<{
|
|
|
131293
131299
|
}>;
|
|
131294
131300
|
type DTOForgeFeatureRoomResponse = z.infer<typeof DTOForgeFeatureRoomResponse>;
|
|
131295
131301
|
|
|
131302
|
+
declare const DTOForgeFigmaNodeOrigin: z$1.ZodObject<{
|
|
131303
|
+
/**
|
|
131304
|
+
* Figma file ID that was passed into the create request as a part of the Figma node URL
|
|
131305
|
+
*/
|
|
131306
|
+
fileId: z$1.ZodString;
|
|
131307
|
+
/**
|
|
131308
|
+
* Timestamp of the last edit to the file, can be used for reusing nodes
|
|
131309
|
+
* if the file has not changed since
|
|
131310
|
+
*/
|
|
131311
|
+
fileLastEditedAt: z$1.ZodString;
|
|
131312
|
+
/**
|
|
131313
|
+
* Figma node ID that was passed into the create request as a part of the Figma node URL
|
|
131314
|
+
*/
|
|
131315
|
+
nodeId: z$1.ZodString;
|
|
131316
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
131317
|
+
fileId: string;
|
|
131318
|
+
fileLastEditedAt: string;
|
|
131319
|
+
nodeId: string;
|
|
131320
|
+
}, {
|
|
131321
|
+
fileId: string;
|
|
131322
|
+
fileLastEditedAt: string;
|
|
131323
|
+
nodeId: string;
|
|
131324
|
+
}>;
|
|
131325
|
+
type DTOForgeFigmaNodeOrigin = z$1.infer<typeof DTOForgeFigmaNodeOrigin>;
|
|
131326
|
+
declare const DTOForgeFigmaNodeState: z$1.ZodEnum<["Optimizing", "Success", "Failed"]>;
|
|
131327
|
+
type DTOForgeFigmaNodeState = z$1.infer<typeof DTOForgeFigmaNodeState>;
|
|
131328
|
+
declare const DTOForgeFigmaNode: z$1.ZodObject<{
|
|
131329
|
+
id: z$1.ZodString;
|
|
131330
|
+
state: z$1.ZodEnum<["Optimizing", "Success", "Failed"]>;
|
|
131331
|
+
/**
|
|
131332
|
+
* Describes where the frame is coming from
|
|
131333
|
+
*/
|
|
131334
|
+
origin: z$1.ZodObject<{
|
|
131335
|
+
/**
|
|
131336
|
+
* Figma file ID that was passed into the create request as a part of the Figma node URL
|
|
131337
|
+
*/
|
|
131338
|
+
fileId: z$1.ZodString;
|
|
131339
|
+
/**
|
|
131340
|
+
* Timestamp of the last edit to the file, can be used for reusing nodes
|
|
131341
|
+
* if the file has not changed since
|
|
131342
|
+
*/
|
|
131343
|
+
fileLastEditedAt: z$1.ZodString;
|
|
131344
|
+
/**
|
|
131345
|
+
* Figma node ID that was passed into the create request as a part of the Figma node URL
|
|
131346
|
+
*/
|
|
131347
|
+
nodeId: z$1.ZodString;
|
|
131348
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
131349
|
+
fileId: string;
|
|
131350
|
+
fileLastEditedAt: string;
|
|
131351
|
+
nodeId: string;
|
|
131352
|
+
}, {
|
|
131353
|
+
fileId: string;
|
|
131354
|
+
fileLastEditedAt: string;
|
|
131355
|
+
nodeId: string;
|
|
131356
|
+
}>;
|
|
131357
|
+
/**
|
|
131358
|
+
* An image of the node rendered by Figma using render image API.
|
|
131359
|
+
*/
|
|
131360
|
+
thumbnail: z$1.ZodObject<Pick<{
|
|
131361
|
+
id: z$1.ZodString;
|
|
131362
|
+
name: z$1.ZodString;
|
|
131363
|
+
deduplicationKey: z$1.ZodString;
|
|
131364
|
+
pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
131365
|
+
storagePath: z$1.ZodString;
|
|
131366
|
+
url: z$1.ZodString;
|
|
131367
|
+
size: z$1.ZodNumber;
|
|
131368
|
+
source: z$1.ZodOptional<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
131369
|
+
type: z$1.ZodLiteral<"UserUpload">;
|
|
131370
|
+
userId: z$1.ZodString;
|
|
131371
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
131372
|
+
type: "UserUpload";
|
|
131373
|
+
userId: string;
|
|
131374
|
+
}, {
|
|
131375
|
+
type: "UserUpload";
|
|
131376
|
+
userId: string;
|
|
131377
|
+
}>, z$1.ZodObject<{
|
|
131378
|
+
type: z$1.ZodLiteral<"Figma">;
|
|
131379
|
+
renderMode: z$1.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
131380
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
131381
|
+
type: "Figma";
|
|
131382
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131383
|
+
}, {
|
|
131384
|
+
type: "Figma";
|
|
131385
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131386
|
+
}>]>>;
|
|
131387
|
+
}, "id" | "url" | "source"> & {
|
|
131388
|
+
name: z$1.ZodOptional<z$1.ZodString>;
|
|
131389
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
131390
|
+
id: string;
|
|
131391
|
+
url: string;
|
|
131392
|
+
name?: string | undefined;
|
|
131393
|
+
source?: {
|
|
131394
|
+
type: "UserUpload";
|
|
131395
|
+
userId: string;
|
|
131396
|
+
} | {
|
|
131397
|
+
type: "Figma";
|
|
131398
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131399
|
+
} | undefined;
|
|
131400
|
+
}, {
|
|
131401
|
+
id: string;
|
|
131402
|
+
url: string;
|
|
131403
|
+
name?: string | undefined;
|
|
131404
|
+
source?: {
|
|
131405
|
+
type: "UserUpload";
|
|
131406
|
+
userId: string;
|
|
131407
|
+
} | {
|
|
131408
|
+
type: "Figma";
|
|
131409
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131410
|
+
} | undefined;
|
|
131411
|
+
}>;
|
|
131412
|
+
/**
|
|
131413
|
+
* JSON representation of the Figma node, downloaded from Figma API
|
|
131414
|
+
*/
|
|
131415
|
+
json: z$1.ZodObject<Pick<{
|
|
131416
|
+
id: z$1.ZodString;
|
|
131417
|
+
name: z$1.ZodString;
|
|
131418
|
+
deduplicationKey: z$1.ZodString;
|
|
131419
|
+
pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
131420
|
+
storagePath: z$1.ZodString;
|
|
131421
|
+
url: z$1.ZodString;
|
|
131422
|
+
size: z$1.ZodNumber;
|
|
131423
|
+
source: z$1.ZodOptional<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
131424
|
+
type: z$1.ZodLiteral<"UserUpload">;
|
|
131425
|
+
userId: z$1.ZodString;
|
|
131426
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
131427
|
+
type: "UserUpload";
|
|
131428
|
+
userId: string;
|
|
131429
|
+
}, {
|
|
131430
|
+
type: "UserUpload";
|
|
131431
|
+
userId: string;
|
|
131432
|
+
}>, z$1.ZodObject<{
|
|
131433
|
+
type: z$1.ZodLiteral<"Figma">;
|
|
131434
|
+
renderMode: z$1.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
131435
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
131436
|
+
type: "Figma";
|
|
131437
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131438
|
+
}, {
|
|
131439
|
+
type: "Figma";
|
|
131440
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131441
|
+
}>]>>;
|
|
131442
|
+
}, "id" | "url" | "source"> & {
|
|
131443
|
+
name: z$1.ZodOptional<z$1.ZodString>;
|
|
131444
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
131445
|
+
id: string;
|
|
131446
|
+
url: string;
|
|
131447
|
+
name?: string | undefined;
|
|
131448
|
+
source?: {
|
|
131449
|
+
type: "UserUpload";
|
|
131450
|
+
userId: string;
|
|
131451
|
+
} | {
|
|
131452
|
+
type: "Figma";
|
|
131453
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131454
|
+
} | undefined;
|
|
131455
|
+
}, {
|
|
131456
|
+
id: string;
|
|
131457
|
+
url: string;
|
|
131458
|
+
name?: string | undefined;
|
|
131459
|
+
source?: {
|
|
131460
|
+
type: "UserUpload";
|
|
131461
|
+
userId: string;
|
|
131462
|
+
} | {
|
|
131463
|
+
type: "Figma";
|
|
131464
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131465
|
+
} | undefined;
|
|
131466
|
+
}>;
|
|
131467
|
+
/**
|
|
131468
|
+
* HTML representation of the Figma node, converted from JSON
|
|
131469
|
+
*/
|
|
131470
|
+
html: z$1.ZodObject<Pick<{
|
|
131471
|
+
id: z$1.ZodString;
|
|
131472
|
+
name: z$1.ZodString;
|
|
131473
|
+
deduplicationKey: z$1.ZodString;
|
|
131474
|
+
pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
131475
|
+
storagePath: z$1.ZodString;
|
|
131476
|
+
url: z$1.ZodString;
|
|
131477
|
+
size: z$1.ZodNumber;
|
|
131478
|
+
source: z$1.ZodOptional<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
131479
|
+
type: z$1.ZodLiteral<"UserUpload">;
|
|
131480
|
+
userId: z$1.ZodString;
|
|
131481
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
131482
|
+
type: "UserUpload";
|
|
131483
|
+
userId: string;
|
|
131484
|
+
}, {
|
|
131485
|
+
type: "UserUpload";
|
|
131486
|
+
userId: string;
|
|
131487
|
+
}>, z$1.ZodObject<{
|
|
131488
|
+
type: z$1.ZodLiteral<"Figma">;
|
|
131489
|
+
renderMode: z$1.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
131490
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
131491
|
+
type: "Figma";
|
|
131492
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131493
|
+
}, {
|
|
131494
|
+
type: "Figma";
|
|
131495
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131496
|
+
}>]>>;
|
|
131497
|
+
}, "id" | "url" | "source"> & {
|
|
131498
|
+
name: z$1.ZodOptional<z$1.ZodString>;
|
|
131499
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
131500
|
+
id: string;
|
|
131501
|
+
url: string;
|
|
131502
|
+
name?: string | undefined;
|
|
131503
|
+
source?: {
|
|
131504
|
+
type: "UserUpload";
|
|
131505
|
+
userId: string;
|
|
131506
|
+
} | {
|
|
131507
|
+
type: "Figma";
|
|
131508
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131509
|
+
} | undefined;
|
|
131510
|
+
}, {
|
|
131511
|
+
id: string;
|
|
131512
|
+
url: string;
|
|
131513
|
+
name?: string | undefined;
|
|
131514
|
+
source?: {
|
|
131515
|
+
type: "UserUpload";
|
|
131516
|
+
userId: string;
|
|
131517
|
+
} | {
|
|
131518
|
+
type: "Figma";
|
|
131519
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131520
|
+
} | undefined;
|
|
131521
|
+
}>;
|
|
131522
|
+
/**
|
|
131523
|
+
* Code representation of the Figma node. Code gets produced during "Optimizing" phase,
|
|
131524
|
+
* it's available when the node reaches "Success" state.
|
|
131525
|
+
*/
|
|
131526
|
+
code: z$1.ZodOptional<z$1.ZodObject<Pick<{
|
|
131527
|
+
id: z$1.ZodString;
|
|
131528
|
+
name: z$1.ZodString;
|
|
131529
|
+
deduplicationKey: z$1.ZodString;
|
|
131530
|
+
pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
131531
|
+
storagePath: z$1.ZodString;
|
|
131532
|
+
url: z$1.ZodString;
|
|
131533
|
+
size: z$1.ZodNumber;
|
|
131534
|
+
source: z$1.ZodOptional<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
131535
|
+
type: z$1.ZodLiteral<"UserUpload">;
|
|
131536
|
+
userId: z$1.ZodString;
|
|
131537
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
131538
|
+
type: "UserUpload";
|
|
131539
|
+
userId: string;
|
|
131540
|
+
}, {
|
|
131541
|
+
type: "UserUpload";
|
|
131542
|
+
userId: string;
|
|
131543
|
+
}>, z$1.ZodObject<{
|
|
131544
|
+
type: z$1.ZodLiteral<"Figma">;
|
|
131545
|
+
renderMode: z$1.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
131546
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
131547
|
+
type: "Figma";
|
|
131548
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131549
|
+
}, {
|
|
131550
|
+
type: "Figma";
|
|
131551
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131552
|
+
}>]>>;
|
|
131553
|
+
}, "id" | "url" | "source"> & {
|
|
131554
|
+
name: z$1.ZodOptional<z$1.ZodString>;
|
|
131555
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
131556
|
+
id: string;
|
|
131557
|
+
url: string;
|
|
131558
|
+
name?: string | undefined;
|
|
131559
|
+
source?: {
|
|
131560
|
+
type: "UserUpload";
|
|
131561
|
+
userId: string;
|
|
131562
|
+
} | {
|
|
131563
|
+
type: "Figma";
|
|
131564
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131565
|
+
} | undefined;
|
|
131566
|
+
}, {
|
|
131567
|
+
id: string;
|
|
131568
|
+
url: string;
|
|
131569
|
+
name?: string | undefined;
|
|
131570
|
+
source?: {
|
|
131571
|
+
type: "UserUpload";
|
|
131572
|
+
userId: string;
|
|
131573
|
+
} | {
|
|
131574
|
+
type: "Figma";
|
|
131575
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131576
|
+
} | undefined;
|
|
131577
|
+
}>>;
|
|
131578
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
131579
|
+
id: string;
|
|
131580
|
+
state: "Failed" | "Success" | "Optimizing";
|
|
131581
|
+
origin: {
|
|
131582
|
+
fileId: string;
|
|
131583
|
+
fileLastEditedAt: string;
|
|
131584
|
+
nodeId: string;
|
|
131585
|
+
};
|
|
131586
|
+
thumbnail: {
|
|
131587
|
+
id: string;
|
|
131588
|
+
url: string;
|
|
131589
|
+
name?: string | undefined;
|
|
131590
|
+
source?: {
|
|
131591
|
+
type: "UserUpload";
|
|
131592
|
+
userId: string;
|
|
131593
|
+
} | {
|
|
131594
|
+
type: "Figma";
|
|
131595
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131596
|
+
} | undefined;
|
|
131597
|
+
};
|
|
131598
|
+
json: {
|
|
131599
|
+
id: string;
|
|
131600
|
+
url: string;
|
|
131601
|
+
name?: string | undefined;
|
|
131602
|
+
source?: {
|
|
131603
|
+
type: "UserUpload";
|
|
131604
|
+
userId: string;
|
|
131605
|
+
} | {
|
|
131606
|
+
type: "Figma";
|
|
131607
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131608
|
+
} | undefined;
|
|
131609
|
+
};
|
|
131610
|
+
html: {
|
|
131611
|
+
id: string;
|
|
131612
|
+
url: string;
|
|
131613
|
+
name?: string | undefined;
|
|
131614
|
+
source?: {
|
|
131615
|
+
type: "UserUpload";
|
|
131616
|
+
userId: string;
|
|
131617
|
+
} | {
|
|
131618
|
+
type: "Figma";
|
|
131619
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131620
|
+
} | undefined;
|
|
131621
|
+
};
|
|
131622
|
+
code?: {
|
|
131623
|
+
id: string;
|
|
131624
|
+
url: string;
|
|
131625
|
+
name?: string | undefined;
|
|
131626
|
+
source?: {
|
|
131627
|
+
type: "UserUpload";
|
|
131628
|
+
userId: string;
|
|
131629
|
+
} | {
|
|
131630
|
+
type: "Figma";
|
|
131631
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131632
|
+
} | undefined;
|
|
131633
|
+
} | undefined;
|
|
131634
|
+
}, {
|
|
131635
|
+
id: string;
|
|
131636
|
+
state: "Failed" | "Success" | "Optimizing";
|
|
131637
|
+
origin: {
|
|
131638
|
+
fileId: string;
|
|
131639
|
+
fileLastEditedAt: string;
|
|
131640
|
+
nodeId: string;
|
|
131641
|
+
};
|
|
131642
|
+
thumbnail: {
|
|
131643
|
+
id: string;
|
|
131644
|
+
url: string;
|
|
131645
|
+
name?: string | undefined;
|
|
131646
|
+
source?: {
|
|
131647
|
+
type: "UserUpload";
|
|
131648
|
+
userId: string;
|
|
131649
|
+
} | {
|
|
131650
|
+
type: "Figma";
|
|
131651
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131652
|
+
} | undefined;
|
|
131653
|
+
};
|
|
131654
|
+
json: {
|
|
131655
|
+
id: string;
|
|
131656
|
+
url: string;
|
|
131657
|
+
name?: string | undefined;
|
|
131658
|
+
source?: {
|
|
131659
|
+
type: "UserUpload";
|
|
131660
|
+
userId: string;
|
|
131661
|
+
} | {
|
|
131662
|
+
type: "Figma";
|
|
131663
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131664
|
+
} | undefined;
|
|
131665
|
+
};
|
|
131666
|
+
html: {
|
|
131667
|
+
id: string;
|
|
131668
|
+
url: string;
|
|
131669
|
+
name?: string | undefined;
|
|
131670
|
+
source?: {
|
|
131671
|
+
type: "UserUpload";
|
|
131672
|
+
userId: string;
|
|
131673
|
+
} | {
|
|
131674
|
+
type: "Figma";
|
|
131675
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131676
|
+
} | undefined;
|
|
131677
|
+
};
|
|
131678
|
+
code?: {
|
|
131679
|
+
id: string;
|
|
131680
|
+
url: string;
|
|
131681
|
+
name?: string | undefined;
|
|
131682
|
+
source?: {
|
|
131683
|
+
type: "UserUpload";
|
|
131684
|
+
userId: string;
|
|
131685
|
+
} | {
|
|
131686
|
+
type: "Figma";
|
|
131687
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131688
|
+
} | undefined;
|
|
131689
|
+
} | undefined;
|
|
131690
|
+
}>;
|
|
131691
|
+
type DTOForgeFigmaNode = z$1.infer<typeof DTOForgeFigmaNode>;
|
|
131692
|
+
declare const DTOForgeFigmaNodeCreateRequest: z$1.ZodObject<{
|
|
131693
|
+
/**
|
|
131694
|
+
* Workspace ID that will own the node. Figma API keys will be used from this workspace.
|
|
131695
|
+
*/
|
|
131696
|
+
workspaceId: z$1.ZodString;
|
|
131697
|
+
/**
|
|
131698
|
+
* URL that points to a Figma file and a node within the file.
|
|
131699
|
+
* Example: https://www.figma.com/design/If4RI8SKtO2azWx8ytfp03/Child-File?node-id=0-1
|
|
131700
|
+
*
|
|
131701
|
+
* Note that the file must contain `node-id` query param, otherwise the request will be rejected
|
|
131702
|
+
*/
|
|
131703
|
+
figmaNodeUrl: z$1.ZodString;
|
|
131704
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
131705
|
+
workspaceId: string;
|
|
131706
|
+
figmaNodeUrl: string;
|
|
131707
|
+
}, {
|
|
131708
|
+
workspaceId: string;
|
|
131709
|
+
figmaNodeUrl: string;
|
|
131710
|
+
}>;
|
|
131711
|
+
type DTOForgeFigmaNodeCreateRequest = z$1.infer<typeof DTOForgeFigmaNodeCreateRequest>;
|
|
131712
|
+
declare const DTOForgeFigmaNodeResponse: z$1.ZodObject<{
|
|
131713
|
+
figmaNode: z$1.ZodObject<{
|
|
131714
|
+
id: z$1.ZodString;
|
|
131715
|
+
state: z$1.ZodEnum<["Optimizing", "Success", "Failed"]>;
|
|
131716
|
+
/**
|
|
131717
|
+
* Describes where the frame is coming from
|
|
131718
|
+
*/
|
|
131719
|
+
origin: z$1.ZodObject<{
|
|
131720
|
+
/**
|
|
131721
|
+
* Figma file ID that was passed into the create request as a part of the Figma node URL
|
|
131722
|
+
*/
|
|
131723
|
+
fileId: z$1.ZodString;
|
|
131724
|
+
/**
|
|
131725
|
+
* Timestamp of the last edit to the file, can be used for reusing nodes
|
|
131726
|
+
* if the file has not changed since
|
|
131727
|
+
*/
|
|
131728
|
+
fileLastEditedAt: z$1.ZodString;
|
|
131729
|
+
/**
|
|
131730
|
+
* Figma node ID that was passed into the create request as a part of the Figma node URL
|
|
131731
|
+
*/
|
|
131732
|
+
nodeId: z$1.ZodString;
|
|
131733
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
131734
|
+
fileId: string;
|
|
131735
|
+
fileLastEditedAt: string;
|
|
131736
|
+
nodeId: string;
|
|
131737
|
+
}, {
|
|
131738
|
+
fileId: string;
|
|
131739
|
+
fileLastEditedAt: string;
|
|
131740
|
+
nodeId: string;
|
|
131741
|
+
}>;
|
|
131742
|
+
/**
|
|
131743
|
+
* An image of the node rendered by Figma using render image API.
|
|
131744
|
+
*/
|
|
131745
|
+
thumbnail: z$1.ZodObject<Pick<{
|
|
131746
|
+
id: z$1.ZodString;
|
|
131747
|
+
name: z$1.ZodString;
|
|
131748
|
+
deduplicationKey: z$1.ZodString;
|
|
131749
|
+
pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
131750
|
+
storagePath: z$1.ZodString;
|
|
131751
|
+
url: z$1.ZodString;
|
|
131752
|
+
size: z$1.ZodNumber;
|
|
131753
|
+
source: z$1.ZodOptional<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
131754
|
+
type: z$1.ZodLiteral<"UserUpload">;
|
|
131755
|
+
userId: z$1.ZodString;
|
|
131756
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
131757
|
+
type: "UserUpload";
|
|
131758
|
+
userId: string;
|
|
131759
|
+
}, {
|
|
131760
|
+
type: "UserUpload";
|
|
131761
|
+
userId: string;
|
|
131762
|
+
}>, z$1.ZodObject<{
|
|
131763
|
+
type: z$1.ZodLiteral<"Figma">;
|
|
131764
|
+
renderMode: z$1.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
131765
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
131766
|
+
type: "Figma";
|
|
131767
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131768
|
+
}, {
|
|
131769
|
+
type: "Figma";
|
|
131770
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131771
|
+
}>]>>;
|
|
131772
|
+
}, "id" | "url" | "source"> & {
|
|
131773
|
+
name: z$1.ZodOptional<z$1.ZodString>;
|
|
131774
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
131775
|
+
id: string;
|
|
131776
|
+
url: string;
|
|
131777
|
+
name?: string | undefined;
|
|
131778
|
+
source?: {
|
|
131779
|
+
type: "UserUpload";
|
|
131780
|
+
userId: string;
|
|
131781
|
+
} | {
|
|
131782
|
+
type: "Figma";
|
|
131783
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131784
|
+
} | undefined;
|
|
131785
|
+
}, {
|
|
131786
|
+
id: string;
|
|
131787
|
+
url: string;
|
|
131788
|
+
name?: string | undefined;
|
|
131789
|
+
source?: {
|
|
131790
|
+
type: "UserUpload";
|
|
131791
|
+
userId: string;
|
|
131792
|
+
} | {
|
|
131793
|
+
type: "Figma";
|
|
131794
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131795
|
+
} | undefined;
|
|
131796
|
+
}>;
|
|
131797
|
+
/**
|
|
131798
|
+
* JSON representation of the Figma node, downloaded from Figma API
|
|
131799
|
+
*/
|
|
131800
|
+
json: z$1.ZodObject<Pick<{
|
|
131801
|
+
id: z$1.ZodString;
|
|
131802
|
+
name: z$1.ZodString;
|
|
131803
|
+
deduplicationKey: z$1.ZodString;
|
|
131804
|
+
pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
131805
|
+
storagePath: z$1.ZodString;
|
|
131806
|
+
url: z$1.ZodString;
|
|
131807
|
+
size: z$1.ZodNumber;
|
|
131808
|
+
source: z$1.ZodOptional<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
131809
|
+
type: z$1.ZodLiteral<"UserUpload">;
|
|
131810
|
+
userId: z$1.ZodString;
|
|
131811
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
131812
|
+
type: "UserUpload";
|
|
131813
|
+
userId: string;
|
|
131814
|
+
}, {
|
|
131815
|
+
type: "UserUpload";
|
|
131816
|
+
userId: string;
|
|
131817
|
+
}>, z$1.ZodObject<{
|
|
131818
|
+
type: z$1.ZodLiteral<"Figma">;
|
|
131819
|
+
renderMode: z$1.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
131820
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
131821
|
+
type: "Figma";
|
|
131822
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131823
|
+
}, {
|
|
131824
|
+
type: "Figma";
|
|
131825
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131826
|
+
}>]>>;
|
|
131827
|
+
}, "id" | "url" | "source"> & {
|
|
131828
|
+
name: z$1.ZodOptional<z$1.ZodString>;
|
|
131829
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
131830
|
+
id: string;
|
|
131831
|
+
url: string;
|
|
131832
|
+
name?: string | undefined;
|
|
131833
|
+
source?: {
|
|
131834
|
+
type: "UserUpload";
|
|
131835
|
+
userId: string;
|
|
131836
|
+
} | {
|
|
131837
|
+
type: "Figma";
|
|
131838
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131839
|
+
} | undefined;
|
|
131840
|
+
}, {
|
|
131841
|
+
id: string;
|
|
131842
|
+
url: string;
|
|
131843
|
+
name?: string | undefined;
|
|
131844
|
+
source?: {
|
|
131845
|
+
type: "UserUpload";
|
|
131846
|
+
userId: string;
|
|
131847
|
+
} | {
|
|
131848
|
+
type: "Figma";
|
|
131849
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131850
|
+
} | undefined;
|
|
131851
|
+
}>;
|
|
131852
|
+
/**
|
|
131853
|
+
* HTML representation of the Figma node, converted from JSON
|
|
131854
|
+
*/
|
|
131855
|
+
html: z$1.ZodObject<Pick<{
|
|
131856
|
+
id: z$1.ZodString;
|
|
131857
|
+
name: z$1.ZodString;
|
|
131858
|
+
deduplicationKey: z$1.ZodString;
|
|
131859
|
+
pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
131860
|
+
storagePath: z$1.ZodString;
|
|
131861
|
+
url: z$1.ZodString;
|
|
131862
|
+
size: z$1.ZodNumber;
|
|
131863
|
+
source: z$1.ZodOptional<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
131864
|
+
type: z$1.ZodLiteral<"UserUpload">;
|
|
131865
|
+
userId: z$1.ZodString;
|
|
131866
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
131867
|
+
type: "UserUpload";
|
|
131868
|
+
userId: string;
|
|
131869
|
+
}, {
|
|
131870
|
+
type: "UserUpload";
|
|
131871
|
+
userId: string;
|
|
131872
|
+
}>, z$1.ZodObject<{
|
|
131873
|
+
type: z$1.ZodLiteral<"Figma">;
|
|
131874
|
+
renderMode: z$1.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
131875
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
131876
|
+
type: "Figma";
|
|
131877
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131878
|
+
}, {
|
|
131879
|
+
type: "Figma";
|
|
131880
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131881
|
+
}>]>>;
|
|
131882
|
+
}, "id" | "url" | "source"> & {
|
|
131883
|
+
name: z$1.ZodOptional<z$1.ZodString>;
|
|
131884
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
131885
|
+
id: string;
|
|
131886
|
+
url: string;
|
|
131887
|
+
name?: string | undefined;
|
|
131888
|
+
source?: {
|
|
131889
|
+
type: "UserUpload";
|
|
131890
|
+
userId: string;
|
|
131891
|
+
} | {
|
|
131892
|
+
type: "Figma";
|
|
131893
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131894
|
+
} | undefined;
|
|
131895
|
+
}, {
|
|
131896
|
+
id: string;
|
|
131897
|
+
url: string;
|
|
131898
|
+
name?: string | undefined;
|
|
131899
|
+
source?: {
|
|
131900
|
+
type: "UserUpload";
|
|
131901
|
+
userId: string;
|
|
131902
|
+
} | {
|
|
131903
|
+
type: "Figma";
|
|
131904
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131905
|
+
} | undefined;
|
|
131906
|
+
}>;
|
|
131907
|
+
/**
|
|
131908
|
+
* Code representation of the Figma node. Code gets produced during "Optimizing" phase,
|
|
131909
|
+
* it's available when the node reaches "Success" state.
|
|
131910
|
+
*/
|
|
131911
|
+
code: z$1.ZodOptional<z$1.ZodObject<Pick<{
|
|
131912
|
+
id: z$1.ZodString;
|
|
131913
|
+
name: z$1.ZodString;
|
|
131914
|
+
deduplicationKey: z$1.ZodString;
|
|
131915
|
+
pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
131916
|
+
storagePath: z$1.ZodString;
|
|
131917
|
+
url: z$1.ZodString;
|
|
131918
|
+
size: z$1.ZodNumber;
|
|
131919
|
+
source: z$1.ZodOptional<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
131920
|
+
type: z$1.ZodLiteral<"UserUpload">;
|
|
131921
|
+
userId: z$1.ZodString;
|
|
131922
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
131923
|
+
type: "UserUpload";
|
|
131924
|
+
userId: string;
|
|
131925
|
+
}, {
|
|
131926
|
+
type: "UserUpload";
|
|
131927
|
+
userId: string;
|
|
131928
|
+
}>, z$1.ZodObject<{
|
|
131929
|
+
type: z$1.ZodLiteral<"Figma">;
|
|
131930
|
+
renderMode: z$1.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
131931
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
131932
|
+
type: "Figma";
|
|
131933
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131934
|
+
}, {
|
|
131935
|
+
type: "Figma";
|
|
131936
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131937
|
+
}>]>>;
|
|
131938
|
+
}, "id" | "url" | "source"> & {
|
|
131939
|
+
name: z$1.ZodOptional<z$1.ZodString>;
|
|
131940
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
131941
|
+
id: string;
|
|
131942
|
+
url: string;
|
|
131943
|
+
name?: string | undefined;
|
|
131944
|
+
source?: {
|
|
131945
|
+
type: "UserUpload";
|
|
131946
|
+
userId: string;
|
|
131947
|
+
} | {
|
|
131948
|
+
type: "Figma";
|
|
131949
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131950
|
+
} | undefined;
|
|
131951
|
+
}, {
|
|
131952
|
+
id: string;
|
|
131953
|
+
url: string;
|
|
131954
|
+
name?: string | undefined;
|
|
131955
|
+
source?: {
|
|
131956
|
+
type: "UserUpload";
|
|
131957
|
+
userId: string;
|
|
131958
|
+
} | {
|
|
131959
|
+
type: "Figma";
|
|
131960
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131961
|
+
} | undefined;
|
|
131962
|
+
}>>;
|
|
131963
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
131964
|
+
id: string;
|
|
131965
|
+
state: "Failed" | "Success" | "Optimizing";
|
|
131966
|
+
origin: {
|
|
131967
|
+
fileId: string;
|
|
131968
|
+
fileLastEditedAt: string;
|
|
131969
|
+
nodeId: string;
|
|
131970
|
+
};
|
|
131971
|
+
thumbnail: {
|
|
131972
|
+
id: string;
|
|
131973
|
+
url: string;
|
|
131974
|
+
name?: string | undefined;
|
|
131975
|
+
source?: {
|
|
131976
|
+
type: "UserUpload";
|
|
131977
|
+
userId: string;
|
|
131978
|
+
} | {
|
|
131979
|
+
type: "Figma";
|
|
131980
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131981
|
+
} | undefined;
|
|
131982
|
+
};
|
|
131983
|
+
json: {
|
|
131984
|
+
id: string;
|
|
131985
|
+
url: string;
|
|
131986
|
+
name?: string | undefined;
|
|
131987
|
+
source?: {
|
|
131988
|
+
type: "UserUpload";
|
|
131989
|
+
userId: string;
|
|
131990
|
+
} | {
|
|
131991
|
+
type: "Figma";
|
|
131992
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
131993
|
+
} | undefined;
|
|
131994
|
+
};
|
|
131995
|
+
html: {
|
|
131996
|
+
id: string;
|
|
131997
|
+
url: string;
|
|
131998
|
+
name?: string | undefined;
|
|
131999
|
+
source?: {
|
|
132000
|
+
type: "UserUpload";
|
|
132001
|
+
userId: string;
|
|
132002
|
+
} | {
|
|
132003
|
+
type: "Figma";
|
|
132004
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
132005
|
+
} | undefined;
|
|
132006
|
+
};
|
|
132007
|
+
code?: {
|
|
132008
|
+
id: string;
|
|
132009
|
+
url: string;
|
|
132010
|
+
name?: string | undefined;
|
|
132011
|
+
source?: {
|
|
132012
|
+
type: "UserUpload";
|
|
132013
|
+
userId: string;
|
|
132014
|
+
} | {
|
|
132015
|
+
type: "Figma";
|
|
132016
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
132017
|
+
} | undefined;
|
|
132018
|
+
} | undefined;
|
|
132019
|
+
}, {
|
|
132020
|
+
id: string;
|
|
132021
|
+
state: "Failed" | "Success" | "Optimizing";
|
|
132022
|
+
origin: {
|
|
132023
|
+
fileId: string;
|
|
132024
|
+
fileLastEditedAt: string;
|
|
132025
|
+
nodeId: string;
|
|
132026
|
+
};
|
|
132027
|
+
thumbnail: {
|
|
132028
|
+
id: string;
|
|
132029
|
+
url: string;
|
|
132030
|
+
name?: string | undefined;
|
|
132031
|
+
source?: {
|
|
132032
|
+
type: "UserUpload";
|
|
132033
|
+
userId: string;
|
|
132034
|
+
} | {
|
|
132035
|
+
type: "Figma";
|
|
132036
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
132037
|
+
} | undefined;
|
|
132038
|
+
};
|
|
132039
|
+
json: {
|
|
132040
|
+
id: string;
|
|
132041
|
+
url: string;
|
|
132042
|
+
name?: string | undefined;
|
|
132043
|
+
source?: {
|
|
132044
|
+
type: "UserUpload";
|
|
132045
|
+
userId: string;
|
|
132046
|
+
} | {
|
|
132047
|
+
type: "Figma";
|
|
132048
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
132049
|
+
} | undefined;
|
|
132050
|
+
};
|
|
132051
|
+
html: {
|
|
132052
|
+
id: string;
|
|
132053
|
+
url: string;
|
|
132054
|
+
name?: string | undefined;
|
|
132055
|
+
source?: {
|
|
132056
|
+
type: "UserUpload";
|
|
132057
|
+
userId: string;
|
|
132058
|
+
} | {
|
|
132059
|
+
type: "Figma";
|
|
132060
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
132061
|
+
} | undefined;
|
|
132062
|
+
};
|
|
132063
|
+
code?: {
|
|
132064
|
+
id: string;
|
|
132065
|
+
url: string;
|
|
132066
|
+
name?: string | undefined;
|
|
132067
|
+
source?: {
|
|
132068
|
+
type: "UserUpload";
|
|
132069
|
+
userId: string;
|
|
132070
|
+
} | {
|
|
132071
|
+
type: "Figma";
|
|
132072
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
132073
|
+
} | undefined;
|
|
132074
|
+
} | undefined;
|
|
132075
|
+
}>;
|
|
132076
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
132077
|
+
figmaNode: {
|
|
132078
|
+
id: string;
|
|
132079
|
+
state: "Failed" | "Success" | "Optimizing";
|
|
132080
|
+
origin: {
|
|
132081
|
+
fileId: string;
|
|
132082
|
+
fileLastEditedAt: string;
|
|
132083
|
+
nodeId: string;
|
|
132084
|
+
};
|
|
132085
|
+
thumbnail: {
|
|
132086
|
+
id: string;
|
|
132087
|
+
url: string;
|
|
132088
|
+
name?: string | undefined;
|
|
132089
|
+
source?: {
|
|
132090
|
+
type: "UserUpload";
|
|
132091
|
+
userId: string;
|
|
132092
|
+
} | {
|
|
132093
|
+
type: "Figma";
|
|
132094
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
132095
|
+
} | undefined;
|
|
132096
|
+
};
|
|
132097
|
+
json: {
|
|
132098
|
+
id: string;
|
|
132099
|
+
url: string;
|
|
132100
|
+
name?: string | undefined;
|
|
132101
|
+
source?: {
|
|
132102
|
+
type: "UserUpload";
|
|
132103
|
+
userId: string;
|
|
132104
|
+
} | {
|
|
132105
|
+
type: "Figma";
|
|
132106
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
132107
|
+
} | undefined;
|
|
132108
|
+
};
|
|
132109
|
+
html: {
|
|
132110
|
+
id: string;
|
|
132111
|
+
url: string;
|
|
132112
|
+
name?: string | undefined;
|
|
132113
|
+
source?: {
|
|
132114
|
+
type: "UserUpload";
|
|
132115
|
+
userId: string;
|
|
132116
|
+
} | {
|
|
132117
|
+
type: "Figma";
|
|
132118
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
132119
|
+
} | undefined;
|
|
132120
|
+
};
|
|
132121
|
+
code?: {
|
|
132122
|
+
id: string;
|
|
132123
|
+
url: string;
|
|
132124
|
+
name?: string | undefined;
|
|
132125
|
+
source?: {
|
|
132126
|
+
type: "UserUpload";
|
|
132127
|
+
userId: string;
|
|
132128
|
+
} | {
|
|
132129
|
+
type: "Figma";
|
|
132130
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
132131
|
+
} | undefined;
|
|
132132
|
+
} | undefined;
|
|
132133
|
+
};
|
|
132134
|
+
}, {
|
|
132135
|
+
figmaNode: {
|
|
132136
|
+
id: string;
|
|
132137
|
+
state: "Failed" | "Success" | "Optimizing";
|
|
132138
|
+
origin: {
|
|
132139
|
+
fileId: string;
|
|
132140
|
+
fileLastEditedAt: string;
|
|
132141
|
+
nodeId: string;
|
|
132142
|
+
};
|
|
132143
|
+
thumbnail: {
|
|
132144
|
+
id: string;
|
|
132145
|
+
url: string;
|
|
132146
|
+
name?: string | undefined;
|
|
132147
|
+
source?: {
|
|
132148
|
+
type: "UserUpload";
|
|
132149
|
+
userId: string;
|
|
132150
|
+
} | {
|
|
132151
|
+
type: "Figma";
|
|
132152
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
132153
|
+
} | undefined;
|
|
132154
|
+
};
|
|
132155
|
+
json: {
|
|
132156
|
+
id: string;
|
|
132157
|
+
url: string;
|
|
132158
|
+
name?: string | undefined;
|
|
132159
|
+
source?: {
|
|
132160
|
+
type: "UserUpload";
|
|
132161
|
+
userId: string;
|
|
132162
|
+
} | {
|
|
132163
|
+
type: "Figma";
|
|
132164
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
132165
|
+
} | undefined;
|
|
132166
|
+
};
|
|
132167
|
+
html: {
|
|
132168
|
+
id: string;
|
|
132169
|
+
url: string;
|
|
132170
|
+
name?: string | undefined;
|
|
132171
|
+
source?: {
|
|
132172
|
+
type: "UserUpload";
|
|
132173
|
+
userId: string;
|
|
132174
|
+
} | {
|
|
132175
|
+
type: "Figma";
|
|
132176
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
132177
|
+
} | undefined;
|
|
132178
|
+
};
|
|
132179
|
+
code?: {
|
|
132180
|
+
id: string;
|
|
132181
|
+
url: string;
|
|
132182
|
+
name?: string | undefined;
|
|
132183
|
+
source?: {
|
|
132184
|
+
type: "UserUpload";
|
|
132185
|
+
userId: string;
|
|
132186
|
+
} | {
|
|
132187
|
+
type: "Figma";
|
|
132188
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
132189
|
+
} | undefined;
|
|
132190
|
+
} | undefined;
|
|
132191
|
+
};
|
|
132192
|
+
}>;
|
|
132193
|
+
type DTOForgeFigmaNodeResponse = z$1.infer<typeof DTOForgeFigmaNodeResponse>;
|
|
132194
|
+
|
|
131296
132195
|
declare const DTOForgeIterationMessage: z.ZodObject<Omit<{
|
|
131297
132196
|
id: z.ZodString;
|
|
131298
132197
|
createdAt: z.ZodDate;
|
|
@@ -347300,12 +348199,12 @@ declare const DTONpmRegistryAccessTokenResponse: z.ZodObject<{
|
|
|
347300
348199
|
accessToken: z.ZodOptional<z.ZodString>;
|
|
347301
348200
|
registryUrl: z.ZodString;
|
|
347302
348201
|
}, "strip", z.ZodTypeAny, {
|
|
347303
|
-
registryUrl: string;
|
|
347304
348202
|
version: number;
|
|
348203
|
+
registryUrl: string;
|
|
347305
348204
|
accessToken?: string | undefined;
|
|
347306
348205
|
}, {
|
|
347307
|
-
registryUrl: string;
|
|
347308
348206
|
version: number;
|
|
348207
|
+
registryUrl: string;
|
|
347309
348208
|
accessToken?: string | undefined;
|
|
347310
348209
|
}>;
|
|
347311
348210
|
type DTONpmRegistryAccessTokenResponse = z.infer<typeof DTONpmRegistryAccessTokenResponse>;
|
|
@@ -374026,8 +374925,8 @@ declare class WorkspaceNpmRegistryEndpoint {
|
|
|
374026
374925
|
private readonly requestExecutor;
|
|
374027
374926
|
constructor(requestExecutor: RequestExecutor);
|
|
374028
374927
|
getAccessToken(wsId: string): Promise<{
|
|
374029
|
-
registryUrl: string;
|
|
374030
374928
|
version: number;
|
|
374929
|
+
registryUrl: string;
|
|
374031
374930
|
accessToken?: string | undefined;
|
|
374032
374931
|
}>;
|
|
374033
374932
|
update(wsId: string, body: DTOUpdateRegistryInput): Promise<{
|
|
@@ -377967,4 +378866,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
377967
378866
|
reason: ValidationErrorReason | undefined;
|
|
377968
378867
|
};
|
|
377969
378868
|
|
|
377970
|
-
export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateFeatureSandbox, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemUpdateSwitcherInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFVPMigrationsCollectionKeysPayload, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactGetByIdParam, DTOFeatureArtifactListQuery, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureArtifactWithContentResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationError, DTOFeatureIterationErrorType, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureIterationValidateInput, DTOFeatureIterationValidateResponse, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeaturePublishedStateUpdateInput, DTOFeatureSandbox, DTOFeatureSandboxListResponse, DTOFeatureUpdateThemeInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaExportNodePayload, DTOFigmaExportNodeResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeDocumentGetByIdParam, DTOForgeDocumentGetResponse, DTOForgeEntity, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeMemoryCreateInput, DTOForgeMemoryDeleteInput, DTOForgeMemoryEntry, DTOForgeMemoryEntryListQuery, DTOForgeMemoryEntryListResponse, DTOForgeMemoryEntryResponse, DTOForgeMemoryUpdateInput, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactContentResponse, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextCreated, DTOForgeProjectContextDeleted, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextUpdated, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreated, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetByIdParam, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeatureSandboxUpdated, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectIterationTagSet, DTOForgeProjectIterationUpdated, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberDeleted, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberListQuery, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMemberUpdated, DTOForgeProjectMembersCreated, DTOForgeProjectMembersListResponse, DTOForgeProjectPublishedFeature, DTOForgeProjectPublishedFeatureGetResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomEvent, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdated, DTOForgeRelation, DTOForgeRelationCreate, DTOForgeRelationDelete, DTOForgeRelationListInput, DTOForgeRelationListResponse, DTOForgeRelationType, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemeKnownPreset, DTOForgeTokenThemeSet, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIPWhitelist, DTOIPWhitelistEntry, DTOIPWhitelistResponse, DTOIPWhitelistUpdate, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMCPStream, DTOMCPStreamResponse, DTOMCPStreamUpdateInput, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONotificationBase, DTONotificationChannel, DTONotificationChatMentionPayload, DTONotificationCreateInput, DTONotificationProjectDocumentCommentPayload, DTONotificationProjectInvitationPayload, DTONotificationType, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, DTOProjectContextOverride, DTOProjectContextOverrideInput, DTOProjectContextOverrideResponse, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOSandboxError, DTOSandboxTemplate, DTOSandboxTemplateBuild, DTOSandboxTemplateBuildCreateInput, DTOSandboxTemplateBuildCreateResponse, DTOSandboxTemplateBuildCreated, DTOSandboxTemplateBuildFinalizeResponse, DTOSandboxTemplateBuildFinished, DTOSandboxTemplateBuildResponse, DTOSandboxTemplateFile, DTOSandboxTemplateListResponse, DTOSandboxTemplateQuery, DTOSandboxTemplateResponse, DTOSandboxTemplateVersion, DTOSandboxTemplateVersionCreated, DTOSandboxTemplateVersionDetail, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSite, DTOStorybookSiteListQuery, DTOStorybookSiteListResponse, DTOStorybookSiteUploadPayload, DTOStorybookSiteUploadResponse, DTOStorybookSiteVersion, DTOStorybookSiteVersionResponse, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpcomingChange, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThemesListQuery, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageRetryInput, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadPromptState, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventClientCreate, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTrailEventWithDetails, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateFeatureSandbox, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserEmailSettings, DTOUserEmailSettingsUpdatePayload, DTOUserGetResponse, DTOUserNotificationSettings, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceDefaultProjectAccessMode, DTOWorkspaceDefaultProjectRole, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceRoomEvent, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeDocumentsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationTagsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeMemoryEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, MCPStreamsEndpoint, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, SandboxTemplateBuildsEndpoint, SandboxTemplatesEndpoint, SandboxesEndpoint, StorybookEntriesEndpoint, StorybookSitesEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, type VariableCollections, VariableCollectionsSchema, VariableMode, VariableValue, type Variables, VariablesMapping, VariablesSchema, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceBillingEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspaceSubscriptionEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, zodQueryBoolean };
|
|
378869
|
+
export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateFeatureSandbox, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemUpdateSwitcherInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFVPMigrationsCollectionKeysPayload, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactGetByIdParam, DTOFeatureArtifactListQuery, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureArtifactWithContentResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationError, DTOFeatureIterationErrorType, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureIterationValidateInput, DTOFeatureIterationValidateResponse, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeaturePublishedStateUpdateInput, DTOFeatureSandbox, DTOFeatureSandboxListResponse, DTOFeatureUpdateThemeInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaExportNodePayload, DTOFigmaExportNodeResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeDocumentGetByIdParam, DTOForgeDocumentGetResponse, DTOForgeEntity, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFigmaNode, DTOForgeFigmaNodeCreateRequest, DTOForgeFigmaNodeOrigin, DTOForgeFigmaNodeResponse, DTOForgeFigmaNodeState, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeMemoryCreateInput, DTOForgeMemoryDeleteInput, DTOForgeMemoryEntry, DTOForgeMemoryEntryListQuery, DTOForgeMemoryEntryListResponse, DTOForgeMemoryEntryResponse, DTOForgeMemoryUpdateInput, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactContentResponse, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextCreated, DTOForgeProjectContextDeleted, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextUpdated, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreated, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetByIdParam, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeatureSandboxUpdated, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectIterationTagSet, DTOForgeProjectIterationUpdated, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberDeleted, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberListQuery, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMemberUpdated, DTOForgeProjectMembersCreated, DTOForgeProjectMembersListResponse, DTOForgeProjectPublishedFeature, DTOForgeProjectPublishedFeatureGetResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomEvent, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdated, DTOForgeRelation, DTOForgeRelationCreate, DTOForgeRelationDelete, DTOForgeRelationListInput, DTOForgeRelationListResponse, DTOForgeRelationType, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemeKnownPreset, DTOForgeTokenThemeSet, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIPWhitelist, DTOIPWhitelistEntry, DTOIPWhitelistResponse, DTOIPWhitelistUpdate, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMCPStream, DTOMCPStreamResponse, DTOMCPStreamUpdateInput, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONotificationBase, DTONotificationChannel, DTONotificationChatMentionPayload, DTONotificationCreateInput, DTONotificationProjectDocumentCommentPayload, DTONotificationProjectInvitationPayload, DTONotificationType, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, DTOProjectContextOverride, DTOProjectContextOverrideInput, DTOProjectContextOverrideResponse, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOSandboxError, DTOSandboxTemplate, DTOSandboxTemplateBuild, DTOSandboxTemplateBuildCreateInput, DTOSandboxTemplateBuildCreateResponse, DTOSandboxTemplateBuildCreated, DTOSandboxTemplateBuildFinalizeResponse, DTOSandboxTemplateBuildFinished, DTOSandboxTemplateBuildResponse, DTOSandboxTemplateFile, DTOSandboxTemplateListResponse, DTOSandboxTemplateQuery, DTOSandboxTemplateResponse, DTOSandboxTemplateVersion, DTOSandboxTemplateVersionCreated, DTOSandboxTemplateVersionDetail, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSite, DTOStorybookSiteListQuery, DTOStorybookSiteListResponse, DTOStorybookSiteUploadPayload, DTOStorybookSiteUploadResponse, DTOStorybookSiteVersion, DTOStorybookSiteVersionResponse, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpcomingChange, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThemesListQuery, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageRetryInput, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadPromptState, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventClientCreate, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTrailEventWithDetails, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateFeatureSandbox, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserEmailSettings, DTOUserEmailSettingsUpdatePayload, DTOUserGetResponse, DTOUserNotificationSettings, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceDefaultProjectAccessMode, DTOWorkspaceDefaultProjectRole, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceRoomEvent, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeDocumentsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationTagsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeMemoryEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, MCPStreamsEndpoint, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, SandboxTemplateBuildsEndpoint, SandboxTemplatesEndpoint, SandboxesEndpoint, StorybookEntriesEndpoint, StorybookSitesEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, type VariableCollections, VariableCollectionsSchema, VariableMode, VariableValue, type Variables, VariablesMapping, VariablesSchema, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceBillingEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspaceSubscriptionEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, zodQueryBoolean };
|