@supernova-studio/client 1.87.11 → 1.88.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +190 -97
- package/dist/index.d.ts +190 -97
- package/dist/index.js +84 -31
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +212 -159
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -40375,6 +40375,99 @@ declare const DTODocumentationPageSnapshot: z.ZodObject<{
|
|
|
40375
40375
|
}>;
|
|
40376
40376
|
type DTODocumentationPageSnapshot = z.infer<typeof DTODocumentationPageSnapshot>;
|
|
40377
40377
|
|
|
40378
|
+
declare const DTODocumentationMinimalPage: z.ZodObject<{
|
|
40379
|
+
id: z.ZodString;
|
|
40380
|
+
title: z.ZodString;
|
|
40381
|
+
fullPath: z.ZodString;
|
|
40382
|
+
description: z.ZodOptional<z.ZodString>;
|
|
40383
|
+
}, "strip", z.ZodTypeAny, {
|
|
40384
|
+
id: string;
|
|
40385
|
+
title: string;
|
|
40386
|
+
fullPath: string;
|
|
40387
|
+
description?: string | undefined;
|
|
40388
|
+
}, {
|
|
40389
|
+
id: string;
|
|
40390
|
+
title: string;
|
|
40391
|
+
fullPath: string;
|
|
40392
|
+
description?: string | undefined;
|
|
40393
|
+
}>;
|
|
40394
|
+
type DTODocumentationMinimalPage = z.infer<typeof DTODocumentationMinimalPage>;
|
|
40395
|
+
declare const DTODocumentationMinimalPageListResponse: z.ZodObject<{
|
|
40396
|
+
pages: z.ZodArray<z.ZodObject<{
|
|
40397
|
+
id: z.ZodString;
|
|
40398
|
+
title: z.ZodString;
|
|
40399
|
+
fullPath: z.ZodString;
|
|
40400
|
+
description: z.ZodOptional<z.ZodString>;
|
|
40401
|
+
}, "strip", z.ZodTypeAny, {
|
|
40402
|
+
id: string;
|
|
40403
|
+
title: string;
|
|
40404
|
+
fullPath: string;
|
|
40405
|
+
description?: string | undefined;
|
|
40406
|
+
}, {
|
|
40407
|
+
id: string;
|
|
40408
|
+
title: string;
|
|
40409
|
+
fullPath: string;
|
|
40410
|
+
description?: string | undefined;
|
|
40411
|
+
}>, "many">;
|
|
40412
|
+
}, "strip", z.ZodTypeAny, {
|
|
40413
|
+
pages: {
|
|
40414
|
+
id: string;
|
|
40415
|
+
title: string;
|
|
40416
|
+
fullPath: string;
|
|
40417
|
+
description?: string | undefined;
|
|
40418
|
+
}[];
|
|
40419
|
+
}, {
|
|
40420
|
+
pages: {
|
|
40421
|
+
id: string;
|
|
40422
|
+
title: string;
|
|
40423
|
+
fullPath: string;
|
|
40424
|
+
description?: string | undefined;
|
|
40425
|
+
}[];
|
|
40426
|
+
}>;
|
|
40427
|
+
type DTODocumentationMinimalPageListResponse = z.infer<typeof DTODocumentationMinimalPageListResponse>;
|
|
40428
|
+
declare const DTODocumentationContent: z.ZodObject<{
|
|
40429
|
+
id: z.ZodString;
|
|
40430
|
+
markdown: z.ZodString;
|
|
40431
|
+
}, "strip", z.ZodTypeAny, {
|
|
40432
|
+
id: string;
|
|
40433
|
+
markdown: string;
|
|
40434
|
+
}, {
|
|
40435
|
+
id: string;
|
|
40436
|
+
markdown: string;
|
|
40437
|
+
}>;
|
|
40438
|
+
type DTODocumentationContent = z.infer<typeof DTODocumentationContent>;
|
|
40439
|
+
declare const DTODocumentationContentResponse: z.ZodObject<{
|
|
40440
|
+
pageContents: z.ZodArray<z.ZodObject<{
|
|
40441
|
+
id: z.ZodString;
|
|
40442
|
+
markdown: z.ZodString;
|
|
40443
|
+
}, "strip", z.ZodTypeAny, {
|
|
40444
|
+
id: string;
|
|
40445
|
+
markdown: string;
|
|
40446
|
+
}, {
|
|
40447
|
+
id: string;
|
|
40448
|
+
markdown: string;
|
|
40449
|
+
}>, "many">;
|
|
40450
|
+
}, "strip", z.ZodTypeAny, {
|
|
40451
|
+
pageContents: {
|
|
40452
|
+
id: string;
|
|
40453
|
+
markdown: string;
|
|
40454
|
+
}[];
|
|
40455
|
+
}, {
|
|
40456
|
+
pageContents: {
|
|
40457
|
+
id: string;
|
|
40458
|
+
markdown: string;
|
|
40459
|
+
}[];
|
|
40460
|
+
}>;
|
|
40461
|
+
type DTODocumentationContentResponse = z.infer<typeof DTODocumentationContentResponse>;
|
|
40462
|
+
declare const DTODocumentationContentQuery: z.ZodObject<{
|
|
40463
|
+
pageIds: z.ZodPipeline<z.ZodEffects<z.ZodString, string[], string>, z.ZodArray<z.ZodString, "many">>;
|
|
40464
|
+
}, "strip", z.ZodTypeAny, {
|
|
40465
|
+
pageIds: string[];
|
|
40466
|
+
}, {
|
|
40467
|
+
pageIds: string;
|
|
40468
|
+
}>;
|
|
40469
|
+
type DTODocumentationContentQuery = z.infer<typeof DTODocumentationContentQuery>;
|
|
40470
|
+
|
|
40378
40471
|
declare const DTODocumentationLinkPreviewResponse: z.ZodObject<{
|
|
40379
40472
|
linkPreview: z.ZodObject<{
|
|
40380
40473
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -41908,99 +42001,6 @@ declare const DTODocumentationPageRoomResponse: z.ZodObject<{
|
|
|
41908
42001
|
}>;
|
|
41909
42002
|
type DTODocumentationPageRoomResponse = z.infer<typeof DTODocumentationPageRoomResponse>;
|
|
41910
42003
|
|
|
41911
|
-
declare const DTODocumentationMinimalPage: z.ZodObject<{
|
|
41912
|
-
id: z.ZodString;
|
|
41913
|
-
title: z.ZodString;
|
|
41914
|
-
fullPath: z.ZodString;
|
|
41915
|
-
description: z.ZodOptional<z.ZodString>;
|
|
41916
|
-
}, "strip", z.ZodTypeAny, {
|
|
41917
|
-
id: string;
|
|
41918
|
-
title: string;
|
|
41919
|
-
fullPath: string;
|
|
41920
|
-
description?: string | undefined;
|
|
41921
|
-
}, {
|
|
41922
|
-
id: string;
|
|
41923
|
-
title: string;
|
|
41924
|
-
fullPath: string;
|
|
41925
|
-
description?: string | undefined;
|
|
41926
|
-
}>;
|
|
41927
|
-
type DTODocumentationMinimalPage = z.infer<typeof DTODocumentationMinimalPage>;
|
|
41928
|
-
declare const DTODocumentationMinimalPageListResponse: z.ZodObject<{
|
|
41929
|
-
pages: z.ZodArray<z.ZodObject<{
|
|
41930
|
-
id: z.ZodString;
|
|
41931
|
-
title: z.ZodString;
|
|
41932
|
-
fullPath: z.ZodString;
|
|
41933
|
-
description: z.ZodOptional<z.ZodString>;
|
|
41934
|
-
}, "strip", z.ZodTypeAny, {
|
|
41935
|
-
id: string;
|
|
41936
|
-
title: string;
|
|
41937
|
-
fullPath: string;
|
|
41938
|
-
description?: string | undefined;
|
|
41939
|
-
}, {
|
|
41940
|
-
id: string;
|
|
41941
|
-
title: string;
|
|
41942
|
-
fullPath: string;
|
|
41943
|
-
description?: string | undefined;
|
|
41944
|
-
}>, "many">;
|
|
41945
|
-
}, "strip", z.ZodTypeAny, {
|
|
41946
|
-
pages: {
|
|
41947
|
-
id: string;
|
|
41948
|
-
title: string;
|
|
41949
|
-
fullPath: string;
|
|
41950
|
-
description?: string | undefined;
|
|
41951
|
-
}[];
|
|
41952
|
-
}, {
|
|
41953
|
-
pages: {
|
|
41954
|
-
id: string;
|
|
41955
|
-
title: string;
|
|
41956
|
-
fullPath: string;
|
|
41957
|
-
description?: string | undefined;
|
|
41958
|
-
}[];
|
|
41959
|
-
}>;
|
|
41960
|
-
type DTODocumentationMinimalPageListResponse = z.infer<typeof DTODocumentationMinimalPageListResponse>;
|
|
41961
|
-
declare const DTODocumentationContent: z.ZodObject<{
|
|
41962
|
-
id: z.ZodString;
|
|
41963
|
-
markdown: z.ZodString;
|
|
41964
|
-
}, "strip", z.ZodTypeAny, {
|
|
41965
|
-
id: string;
|
|
41966
|
-
markdown: string;
|
|
41967
|
-
}, {
|
|
41968
|
-
id: string;
|
|
41969
|
-
markdown: string;
|
|
41970
|
-
}>;
|
|
41971
|
-
type DTODocumentationContent = z.infer<typeof DTODocumentationContent>;
|
|
41972
|
-
declare const DTODocumentationContentResponse: z.ZodObject<{
|
|
41973
|
-
pageContents: z.ZodArray<z.ZodObject<{
|
|
41974
|
-
id: z.ZodString;
|
|
41975
|
-
markdown: z.ZodString;
|
|
41976
|
-
}, "strip", z.ZodTypeAny, {
|
|
41977
|
-
id: string;
|
|
41978
|
-
markdown: string;
|
|
41979
|
-
}, {
|
|
41980
|
-
id: string;
|
|
41981
|
-
markdown: string;
|
|
41982
|
-
}>, "many">;
|
|
41983
|
-
}, "strip", z.ZodTypeAny, {
|
|
41984
|
-
pageContents: {
|
|
41985
|
-
id: string;
|
|
41986
|
-
markdown: string;
|
|
41987
|
-
}[];
|
|
41988
|
-
}, {
|
|
41989
|
-
pageContents: {
|
|
41990
|
-
id: string;
|
|
41991
|
-
markdown: string;
|
|
41992
|
-
}[];
|
|
41993
|
-
}>;
|
|
41994
|
-
type DTODocumentationContentResponse = z.infer<typeof DTODocumentationContentResponse>;
|
|
41995
|
-
declare const DTODocumentationContentQuery: z.ZodObject<{
|
|
41996
|
-
pageIds: z.ZodPipeline<z.ZodEffects<z.ZodString, string[], string>, z.ZodArray<z.ZodString, "many">>;
|
|
41997
|
-
}, "strip", z.ZodTypeAny, {
|
|
41998
|
-
pageIds: string[];
|
|
41999
|
-
}, {
|
|
42000
|
-
pageIds: string;
|
|
42001
|
-
}>;
|
|
42002
|
-
type DTODocumentationContentQuery = z.infer<typeof DTODocumentationContentQuery>;
|
|
42003
|
-
|
|
42004
42004
|
declare const DTOFigmaComponentGroup: z$1.ZodObject<{
|
|
42005
42005
|
id: z$1.ZodString;
|
|
42006
42006
|
designSystemVersionId: z$1.ZodString;
|
|
@@ -145629,7 +145629,7 @@ declare const DTOForgeFeatureRoomResponse: z.ZodObject<{
|
|
|
145629
145629
|
}>;
|
|
145630
145630
|
type DTOForgeFeatureRoomResponse = z.infer<typeof DTOForgeFeatureRoomResponse>;
|
|
145631
145631
|
|
|
145632
|
-
declare const ForgeFigmaNodeLatestVersion: "
|
|
145632
|
+
declare const ForgeFigmaNodeLatestVersion: "V7";
|
|
145633
145633
|
declare const DTOForgeFigmaNodeOrigin: z$1.ZodObject<{
|
|
145634
145634
|
/**
|
|
145635
145635
|
* Figma file ID that was passed into the create request as a part of the Figma node URL
|
|
@@ -145863,6 +145863,8 @@ declare const DTOForgeFigmaNode: z$1.ZodObject<{
|
|
|
145863
145863
|
} | undefined;
|
|
145864
145864
|
}>;
|
|
145865
145865
|
/**
|
|
145866
|
+
* @deprecated - Optimizing phase was removed, this field is no longer available.
|
|
145867
|
+
*
|
|
145866
145868
|
* Code representation of the Figma node. Code gets produced during "Optimizing" phase,
|
|
145867
145869
|
* it's available when the node reaches "Success" state.
|
|
145868
145870
|
*/
|
|
@@ -146258,6 +146260,8 @@ declare const DTOForgeFigmaNodeResponse: z$1.ZodObject<{
|
|
|
146258
146260
|
} | undefined;
|
|
146259
146261
|
}>;
|
|
146260
146262
|
/**
|
|
146263
|
+
* @deprecated - Optimizing phase was removed, this field is no longer available.
|
|
146264
|
+
*
|
|
146261
146265
|
* Code representation of the Figma node. Code gets produced during "Optimizing" phase,
|
|
146262
146266
|
* it's available when the node reaches "Success" state.
|
|
146263
146267
|
*/
|
|
@@ -146560,7 +146564,7 @@ declare const DTOForgeFigmaNodeValidateResponse: z$1.ZodObject<{
|
|
|
146560
146564
|
isValid: boolean;
|
|
146561
146565
|
}>;
|
|
146562
146566
|
type DTOForgeFigmaNodeValidateResponse = z$1.infer<typeof DTOForgeFigmaNodeValidateResponse>;
|
|
146563
|
-
declare const DTOForgeFigmaNodeConversionVersion: z$1.ZodEnum<["V1", "V2"]>;
|
|
146567
|
+
declare const DTOForgeFigmaNodeConversionVersion: z$1.ZodEnum<["V1", "V2", "V3", "V4", "V5", "V6", "V7"]>;
|
|
146564
146568
|
type DTOForgeFigmaNodeConversionVersion = z$1.infer<typeof DTOForgeFigmaNodeConversionVersion>;
|
|
146565
146569
|
|
|
146566
146570
|
declare const DTOForgeIterationMessage: z.ZodObject<Omit<{
|
|
@@ -338513,6 +338517,14 @@ declare const DTOSandboxTemplateBuildCreateInput: z$1.ZodObject<{
|
|
|
338513
338517
|
} | undefined;
|
|
338514
338518
|
}>;
|
|
338515
338519
|
type DTOSandboxTemplateBuildCreateInput = z$1.infer<typeof DTOSandboxTemplateBuildCreateInput>;
|
|
338520
|
+
declare const DTOSandboxTemplateBuildTriggerInput: z$1.ZodObject<{
|
|
338521
|
+
imageFileId: z$1.ZodOptional<z$1.ZodString>;
|
|
338522
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
338523
|
+
imageFileId?: string | undefined;
|
|
338524
|
+
}, {
|
|
338525
|
+
imageFileId?: string | undefined;
|
|
338526
|
+
}>;
|
|
338527
|
+
type DTOSandboxTemplateBuildTriggerInput = z$1.infer<typeof DTOSandboxTemplateBuildTriggerInput>;
|
|
338516
338528
|
declare const DTOSandboxTemplateBuildCreateResponse: z$1.ZodObject<{
|
|
338517
338529
|
/** @deprecated use build.dockerImageUri */
|
|
338518
338530
|
dockerUrl: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -377385,6 +377397,19 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
377385
377397
|
errorReason: string;
|
|
377386
377398
|
enabled: boolean;
|
|
377387
377399
|
}>;
|
|
377400
|
+
forgeShellTemplates: z$1.ZodObject<{
|
|
377401
|
+
max: z$1.ZodOptional<z$1.ZodNumber>;
|
|
377402
|
+
errorMessage: z$1.ZodString;
|
|
377403
|
+
errorReason: z$1.ZodString;
|
|
377404
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
377405
|
+
errorMessage: string;
|
|
377406
|
+
errorReason: string;
|
|
377407
|
+
max?: number | undefined;
|
|
377408
|
+
}, {
|
|
377409
|
+
errorMessage: string;
|
|
377410
|
+
errorReason: string;
|
|
377411
|
+
max?: number | undefined;
|
|
377412
|
+
}>;
|
|
377388
377413
|
}, "strip", z$1.ZodTypeAny, {
|
|
377389
377414
|
analytics: {
|
|
377390
377415
|
errorMessage: string;
|
|
@@ -377573,6 +377598,11 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
377573
377598
|
errorReason: string;
|
|
377574
377599
|
enabled: boolean;
|
|
377575
377600
|
};
|
|
377601
|
+
forgeShellTemplates: {
|
|
377602
|
+
errorMessage: string;
|
|
377603
|
+
errorReason: string;
|
|
377604
|
+
max?: number | undefined;
|
|
377605
|
+
};
|
|
377576
377606
|
}, {
|
|
377577
377607
|
analytics: {
|
|
377578
377608
|
errorMessage: string;
|
|
@@ -377761,6 +377791,11 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
377761
377791
|
errorReason: string;
|
|
377762
377792
|
enabled: boolean;
|
|
377763
377793
|
};
|
|
377794
|
+
forgeShellTemplates: {
|
|
377795
|
+
errorMessage: string;
|
|
377796
|
+
errorReason: string;
|
|
377797
|
+
max?: number | undefined;
|
|
377798
|
+
};
|
|
377764
377799
|
}>>;
|
|
377765
377800
|
allowedRoles: z$1.ZodArray<z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>, "many">;
|
|
377766
377801
|
/**
|
|
@@ -378057,6 +378092,11 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
378057
378092
|
errorReason: string;
|
|
378058
378093
|
enabled: boolean;
|
|
378059
378094
|
};
|
|
378095
|
+
forgeShellTemplates: {
|
|
378096
|
+
errorMessage: string;
|
|
378097
|
+
errorReason: string;
|
|
378098
|
+
max?: number | undefined;
|
|
378099
|
+
};
|
|
378060
378100
|
} | undefined;
|
|
378061
378101
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
378062
378102
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
@@ -378289,6 +378329,11 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
378289
378329
|
errorReason: string;
|
|
378290
378330
|
enabled: boolean;
|
|
378291
378331
|
};
|
|
378332
|
+
forgeShellTemplates: {
|
|
378333
|
+
errorMessage: string;
|
|
378334
|
+
errorReason: string;
|
|
378335
|
+
max?: number | undefined;
|
|
378336
|
+
};
|
|
378292
378337
|
} | undefined;
|
|
378293
378338
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
378294
378339
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
@@ -378793,6 +378838,19 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
378793
378838
|
errorReason: string;
|
|
378794
378839
|
enabled: boolean;
|
|
378795
378840
|
}>;
|
|
378841
|
+
forgeShellTemplates: z$1.ZodObject<{
|
|
378842
|
+
max: z$1.ZodOptional<z$1.ZodNumber>;
|
|
378843
|
+
errorMessage: z$1.ZodString;
|
|
378844
|
+
errorReason: z$1.ZodString;
|
|
378845
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
378846
|
+
errorMessage: string;
|
|
378847
|
+
errorReason: string;
|
|
378848
|
+
max?: number | undefined;
|
|
378849
|
+
}, {
|
|
378850
|
+
errorMessage: string;
|
|
378851
|
+
errorReason: string;
|
|
378852
|
+
max?: number | undefined;
|
|
378853
|
+
}>;
|
|
378796
378854
|
}, "strip", z$1.ZodTypeAny, {
|
|
378797
378855
|
analytics: {
|
|
378798
378856
|
errorMessage: string;
|
|
@@ -378981,6 +379039,11 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
378981
379039
|
errorReason: string;
|
|
378982
379040
|
enabled: boolean;
|
|
378983
379041
|
};
|
|
379042
|
+
forgeShellTemplates: {
|
|
379043
|
+
errorMessage: string;
|
|
379044
|
+
errorReason: string;
|
|
379045
|
+
max?: number | undefined;
|
|
379046
|
+
};
|
|
378984
379047
|
}, {
|
|
378985
379048
|
analytics: {
|
|
378986
379049
|
errorMessage: string;
|
|
@@ -379169,6 +379232,11 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
379169
379232
|
errorReason: string;
|
|
379170
379233
|
enabled: boolean;
|
|
379171
379234
|
};
|
|
379235
|
+
forgeShellTemplates: {
|
|
379236
|
+
errorMessage: string;
|
|
379237
|
+
errorReason: string;
|
|
379238
|
+
max?: number | undefined;
|
|
379239
|
+
};
|
|
379172
379240
|
}>>;
|
|
379173
379241
|
allowedRoles: z$1.ZodArray<z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>, "many">;
|
|
379174
379242
|
/**
|
|
@@ -379465,6 +379533,11 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
379465
379533
|
errorReason: string;
|
|
379466
379534
|
enabled: boolean;
|
|
379467
379535
|
};
|
|
379536
|
+
forgeShellTemplates: {
|
|
379537
|
+
errorMessage: string;
|
|
379538
|
+
errorReason: string;
|
|
379539
|
+
max?: number | undefined;
|
|
379540
|
+
};
|
|
379468
379541
|
} | undefined;
|
|
379469
379542
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
379470
379543
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
@@ -379697,6 +379770,11 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
379697
379770
|
errorReason: string;
|
|
379698
379771
|
enabled: boolean;
|
|
379699
379772
|
};
|
|
379773
|
+
forgeShellTemplates: {
|
|
379774
|
+
errorMessage: string;
|
|
379775
|
+
errorReason: string;
|
|
379776
|
+
max?: number | undefined;
|
|
379777
|
+
};
|
|
379700
379778
|
} | undefined;
|
|
379701
379779
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
379702
379780
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
@@ -380100,6 +380178,11 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
380100
380178
|
errorReason: string;
|
|
380101
380179
|
enabled: boolean;
|
|
380102
380180
|
};
|
|
380181
|
+
forgeShellTemplates: {
|
|
380182
|
+
errorMessage: string;
|
|
380183
|
+
errorReason: string;
|
|
380184
|
+
max?: number | undefined;
|
|
380185
|
+
};
|
|
380103
380186
|
} | undefined;
|
|
380104
380187
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
380105
380188
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
@@ -380371,6 +380454,11 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
380371
380454
|
errorReason: string;
|
|
380372
380455
|
enabled: boolean;
|
|
380373
380456
|
};
|
|
380457
|
+
forgeShellTemplates: {
|
|
380458
|
+
errorMessage: string;
|
|
380459
|
+
errorReason: string;
|
|
380460
|
+
max?: number | undefined;
|
|
380461
|
+
};
|
|
380374
380462
|
} | undefined;
|
|
380375
380463
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
380376
380464
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
@@ -403983,7 +404071,7 @@ declare class SandboxTemplateBuildsEndpoint {
|
|
|
403983
404071
|
dockerImagePath?: string | undefined;
|
|
403984
404072
|
};
|
|
403985
404073
|
}>;
|
|
403986
|
-
finalize(buildId: string): Promise<{
|
|
404074
|
+
finalize(buildId: string, body: DTOSandboxTemplateBuildTriggerInput): Promise<{
|
|
403987
404075
|
ok: boolean;
|
|
403988
404076
|
}>;
|
|
403989
404077
|
}
|
|
@@ -404827,6 +404915,11 @@ declare class WorkspaceSubscriptionEndpoint {
|
|
|
404827
404915
|
errorReason: string;
|
|
404828
404916
|
enabled: boolean;
|
|
404829
404917
|
};
|
|
404918
|
+
forgeShellTemplates: {
|
|
404919
|
+
errorMessage: string;
|
|
404920
|
+
errorReason: string;
|
|
404921
|
+
max?: number | undefined;
|
|
404922
|
+
};
|
|
404830
404923
|
} | undefined;
|
|
404831
404924
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
404832
404925
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
@@ -408721,4 +408814,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
408721
408814
|
reason: ValidationErrorReason | undefined;
|
|
408722
408815
|
};
|
|
408723
408816
|
|
|
408724
|
-
export { AuthTokensEndpoint, BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentDocFile, DTOCodeComponentListResponse, DTOCodeComponentPropUsage, DTOCodeComponentProperty, DTOCodeComponentStorybookFile, DTOCodeComponentUsage, DTOCodeComponentUsageResponse, DTOCodeHistoryQuery, DTOCodeHistoryResponse, DTOCodeHistorySnapshot, DTOCodeSnapshotFinalizePayload, DTOCodeSnapshotFinalizeResponse, DTOCodeSnapshotProcessingRunResponse, DTOCodeSnapshotProcessingRunStatus, DTOCodeSnapshotProcessingRunStatusItem, DTOCodeSnapshotProcessingRunStatusResponse, DTOCodeSnapshotScannerType, DTOCodeSnapshotStartProcessingRunPayload, DTOCodeSnapshotUploadInitPayload, DTOCodeSnapshotUploadInitResponse, DTOCodeSnapshotUploadInitScannerType, DTOCollectionOrigin, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateFeatureSandbox, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemPipelineCreateBody, DTODesignSystemPipelineListQuery, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemUpdateSwitcherInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationConfiguration, DTODocumentationConfigurationResponse, DTODocumentationContent, DTODocumentationContentQuery, DTODocumentationContentResponse, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationMinimalPage, DTODocumentationMinimalPageListResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFVPMigrationsCollectionKeysPayload, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactGetByIdParam, DTOFeatureArtifactListQuery, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureArtifactWithContentResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationError, DTOFeatureIterationErrorType, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureIterationValidateInput, DTOFeatureIterationValidateResponse, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeaturePublishedStateUpdateInput, DTOFeatureSandbox, DTOFeatureSandboxListResponse, DTOFeatureUpdateThemeInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeDocumentGetByIdParam, DTOForgeDocumentGetResponse, DTOForgeEntity, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFigmaNode, DTOForgeFigmaNodeConversionVersion, DTOForgeFigmaNodeCreateRequest, DTOForgeFigmaNodeOrigin, DTOForgeFigmaNodeResponse, DTOForgeFigmaNodeState, DTOForgeFigmaNodeValidateResponse, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeMemoryCreateInput, DTOForgeMemoryDeleteInput, DTOForgeMemoryEntry, DTOForgeMemoryEntryListQuery, DTOForgeMemoryEntryListResponse, DTOForgeMemoryEntryResponse, DTOForgeMemoryUpdateInput, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactContentResponse, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextCreated, DTOForgeProjectContextDeleted, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextUpdated, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreated, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetByIdParam, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeatureSandboxUpdated, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectIterationTagSet, DTOForgeProjectIterationUpdated, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberDeleted, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberListQuery, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMemberUpdated, DTOForgeProjectMembersCreated, DTOForgeProjectMembersListResponse, DTOForgeProjectPublishedFeature, DTOForgeProjectPublishedFeatureGetResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomEvent, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdated, DTOForgeRelation, DTOForgeRelationCreate, DTOForgeRelationDelete, DTOForgeRelationListInput, DTOForgeRelationListResponse, DTOForgeRelationType, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemeKnownPreset, DTOForgeTokenThemeSet, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIPWhitelist, DTOIPWhitelistEntry, DTOIPWhitelistResponse, DTOIPWhitelistUpdate, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOKeepAliveFeatureSandboxResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOLoginScreenSettings, DTOLoginScreenSettingsResponse, DTOLoginScreenSettingsUpdate, DTOMCPStream, DTOMCPStreamResponse, DTOMCPStreamUpdateInput, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONotificationBase, DTONotificationChannel, DTONotificationChatMentionPayload, DTONotificationCreateInput, DTONotificationProjectDocumentCommentPayload, DTONotificationProjectInvitationPayload, DTONotificationType, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineExporterQuery, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, DTOProjectContextOverride, DTOProjectContextOverrideInput, DTOProjectContextOverrideResponse, type DTOPropertyDefinitionBase, DTOProvisionFeatureSandboxInput, DTOProvisionFeatureSandboxResponse, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOSandboxError, DTOSandboxTemplate, DTOSandboxTemplateBuild, DTOSandboxTemplateBuildCreateInput, DTOSandboxTemplateBuildCreateResponse, DTOSandboxTemplateBuildCreated, DTOSandboxTemplateBuildFinalizeResponse, DTOSandboxTemplateBuildFinished, DTOSandboxTemplateBuildResponse, DTOSandboxTemplateFile, DTOSandboxTemplateListResponse, DTOSandboxTemplatePreset, DTOSandboxTemplateQuery, DTOSandboxTemplateResponse, DTOSandboxTemplateVersion, DTOSandboxTemplateVersionCreated, DTOSandboxTemplateVersionDetail, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSite, DTOStorybookSiteListQuery, DTOStorybookSiteListResponse, DTOStorybookSiteUploadPayload, DTOStorybookSiteUploadResponse, DTOStorybookSiteVersion, DTOStorybookSiteVersionResponse, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpcomingChange, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThemesListQuery, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAnnotation, DTOThreadMessageAnnotations, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageRetryInput, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadPromptState, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventClientCreate, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTrailEventWithDetails, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateFeatureSandbox, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserEmailSettings, DTOUserEmailSettingsUpdatePayload, DTOUserGetResponse, DTOUserNotificationSettings, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceDefaultProjectAccessMode, DTOWorkspaceDefaultProjectRole, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceRoomEvent, DTOWorkspaceSeatType, DTOWorkspaceStats, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemCodeSnapshotsEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemPipelinesEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeDocumentsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationTagsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeFigmaNodeLatestVersion, ForgeMemoryEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, IntegrationOauthCallbackState, IntegrationOauthPlatform, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, MCPStreamsEndpoint, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, SandboxTemplateBuildsEndpoint, SandboxTemplatesEndpoint, SandboxesEndpoint, StorybookEntriesEndpoint, StorybookSitesEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, type VariableCollections, VariableCollectionsSchema, VariableMode, VariableValue, type Variables, VariablesMapping, VariablesSchema, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceBillingEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspaceSubscriptionEndpoint, WorkspacesEndpoint, type YJSKeyValueStorage, YJSKeyValueStorageV1, YJSKeyValueStorageV2, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationConfigurationToDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, zodQueryBoolean };
|
|
408817
|
+
export { AuthTokensEndpoint, BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentDocFile, DTOCodeComponentListResponse, DTOCodeComponentPropUsage, DTOCodeComponentProperty, DTOCodeComponentStorybookFile, DTOCodeComponentUsage, DTOCodeComponentUsageResponse, DTOCodeHistoryQuery, DTOCodeHistoryResponse, DTOCodeHistorySnapshot, DTOCodeSnapshotFinalizePayload, DTOCodeSnapshotFinalizeResponse, DTOCodeSnapshotProcessingRunResponse, DTOCodeSnapshotProcessingRunStatus, DTOCodeSnapshotProcessingRunStatusItem, DTOCodeSnapshotProcessingRunStatusResponse, DTOCodeSnapshotScannerType, DTOCodeSnapshotStartProcessingRunPayload, DTOCodeSnapshotUploadInitPayload, DTOCodeSnapshotUploadInitResponse, DTOCodeSnapshotUploadInitScannerType, DTOCollectionOrigin, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateFeatureSandbox, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemPipelineCreateBody, DTODesignSystemPipelineListQuery, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemUpdateSwitcherInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationConfiguration, DTODocumentationConfigurationResponse, DTODocumentationContent, DTODocumentationContentQuery, DTODocumentationContentResponse, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationMinimalPage, DTODocumentationMinimalPageListResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFVPMigrationsCollectionKeysPayload, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactGetByIdParam, DTOFeatureArtifactListQuery, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureArtifactWithContentResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationError, DTOFeatureIterationErrorType, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureIterationValidateInput, DTOFeatureIterationValidateResponse, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeaturePublishedStateUpdateInput, DTOFeatureSandbox, DTOFeatureSandboxListResponse, DTOFeatureUpdateThemeInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeDocumentGetByIdParam, DTOForgeDocumentGetResponse, DTOForgeEntity, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFigmaNode, DTOForgeFigmaNodeConversionVersion, DTOForgeFigmaNodeCreateRequest, DTOForgeFigmaNodeOrigin, DTOForgeFigmaNodeResponse, DTOForgeFigmaNodeState, DTOForgeFigmaNodeValidateResponse, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeMemoryCreateInput, DTOForgeMemoryDeleteInput, DTOForgeMemoryEntry, DTOForgeMemoryEntryListQuery, DTOForgeMemoryEntryListResponse, DTOForgeMemoryEntryResponse, DTOForgeMemoryUpdateInput, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactContentResponse, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextCreated, DTOForgeProjectContextDeleted, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextUpdated, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreated, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetByIdParam, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeatureSandboxUpdated, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectIterationTagSet, DTOForgeProjectIterationUpdated, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberDeleted, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberListQuery, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMemberUpdated, DTOForgeProjectMembersCreated, DTOForgeProjectMembersListResponse, DTOForgeProjectPublishedFeature, DTOForgeProjectPublishedFeatureGetResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomEvent, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdated, DTOForgeRelation, DTOForgeRelationCreate, DTOForgeRelationDelete, DTOForgeRelationListInput, DTOForgeRelationListResponse, DTOForgeRelationType, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemeKnownPreset, DTOForgeTokenThemeSet, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIPWhitelist, DTOIPWhitelistEntry, DTOIPWhitelistResponse, DTOIPWhitelistUpdate, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOKeepAliveFeatureSandboxResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOLoginScreenSettings, DTOLoginScreenSettingsResponse, DTOLoginScreenSettingsUpdate, DTOMCPStream, DTOMCPStreamResponse, DTOMCPStreamUpdateInput, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONotificationBase, DTONotificationChannel, DTONotificationChatMentionPayload, DTONotificationCreateInput, DTONotificationProjectDocumentCommentPayload, DTONotificationProjectInvitationPayload, DTONotificationType, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineExporterQuery, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, DTOProjectContextOverride, DTOProjectContextOverrideInput, DTOProjectContextOverrideResponse, type DTOPropertyDefinitionBase, DTOProvisionFeatureSandboxInput, DTOProvisionFeatureSandboxResponse, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOSandboxError, DTOSandboxTemplate, DTOSandboxTemplateBuild, DTOSandboxTemplateBuildCreateInput, DTOSandboxTemplateBuildCreateResponse, DTOSandboxTemplateBuildCreated, DTOSandboxTemplateBuildFinalizeResponse, DTOSandboxTemplateBuildFinished, DTOSandboxTemplateBuildResponse, DTOSandboxTemplateBuildTriggerInput, DTOSandboxTemplateFile, DTOSandboxTemplateListResponse, DTOSandboxTemplatePreset, DTOSandboxTemplateQuery, DTOSandboxTemplateResponse, DTOSandboxTemplateVersion, DTOSandboxTemplateVersionCreated, DTOSandboxTemplateVersionDetail, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSite, DTOStorybookSiteListQuery, DTOStorybookSiteListResponse, DTOStorybookSiteUploadPayload, DTOStorybookSiteUploadResponse, DTOStorybookSiteVersion, DTOStorybookSiteVersionResponse, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpcomingChange, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThemesListQuery, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAnnotation, DTOThreadMessageAnnotations, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageRetryInput, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadPromptState, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventClientCreate, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTrailEventWithDetails, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateFeatureSandbox, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserEmailSettings, DTOUserEmailSettingsUpdatePayload, DTOUserGetResponse, DTOUserNotificationSettings, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceDefaultProjectAccessMode, DTOWorkspaceDefaultProjectRole, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceRoomEvent, DTOWorkspaceSeatType, DTOWorkspaceStats, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemCodeSnapshotsEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemPipelinesEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeDocumentsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationTagsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeFigmaNodeLatestVersion, ForgeMemoryEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, IntegrationOauthCallbackState, IntegrationOauthPlatform, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, MCPStreamsEndpoint, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, SandboxTemplateBuildsEndpoint, SandboxTemplatesEndpoint, SandboxesEndpoint, StorybookEntriesEndpoint, StorybookSitesEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, type VariableCollections, VariableCollectionsSchema, VariableMode, VariableValue, type Variables, VariablesMapping, VariablesSchema, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceBillingEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspaceSubscriptionEndpoint, WorkspacesEndpoint, type YJSKeyValueStorage, YJSKeyValueStorageV1, YJSKeyValueStorageV2, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationConfigurationToDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, zodQueryBoolean };
|