@supernova-studio/client 1.87.6 → 1.87.8
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 +64 -153
- package/dist/index.d.ts +64 -153
- package/dist/index.js +11 -14
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -15
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -140117,138 +140117,6 @@ declare const DTOFigmaExportNodeConfiguration: z.ZodObject<{
|
|
|
140117
140117
|
customFontUrls?: string[] | undefined;
|
|
140118
140118
|
}>;
|
|
140119
140119
|
type DTOFigmaExportNodeConfiguration = z.infer<typeof DTOFigmaExportNodeConfiguration>;
|
|
140120
|
-
declare const DTOFigmaExportNodePayload: z.ZodObject<{
|
|
140121
|
-
designSystemId: z.ZodString;
|
|
140122
|
-
figmaUrl: z.ZodString;
|
|
140123
|
-
configuration: z.ZodObject<{
|
|
140124
|
-
format: z.ZodEnum<["HTML", "JSON"]>;
|
|
140125
|
-
minifyOutput: z.ZodOptional<z.ZodBoolean>;
|
|
140126
|
-
customFontUrls: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
140127
|
-
}, "strip", z.ZodTypeAny, {
|
|
140128
|
-
format: "HTML" | "JSON";
|
|
140129
|
-
minifyOutput?: boolean | undefined;
|
|
140130
|
-
customFontUrls?: string[] | undefined;
|
|
140131
|
-
}, {
|
|
140132
|
-
format: "HTML" | "JSON";
|
|
140133
|
-
minifyOutput?: boolean | undefined;
|
|
140134
|
-
customFontUrls?: string[] | undefined;
|
|
140135
|
-
}>;
|
|
140136
|
-
}, "strip", z.ZodTypeAny, {
|
|
140137
|
-
configuration: {
|
|
140138
|
-
format: "HTML" | "JSON";
|
|
140139
|
-
minifyOutput?: boolean | undefined;
|
|
140140
|
-
customFontUrls?: string[] | undefined;
|
|
140141
|
-
};
|
|
140142
|
-
designSystemId: string;
|
|
140143
|
-
figmaUrl: string;
|
|
140144
|
-
}, {
|
|
140145
|
-
configuration: {
|
|
140146
|
-
format: "HTML" | "JSON";
|
|
140147
|
-
minifyOutput?: boolean | undefined;
|
|
140148
|
-
customFontUrls?: string[] | undefined;
|
|
140149
|
-
};
|
|
140150
|
-
designSystemId: string;
|
|
140151
|
-
figmaUrl: string;
|
|
140152
|
-
}>;
|
|
140153
|
-
type DTOFigmaExportNodePayload = z.infer<typeof DTOFigmaExportNodePayload>;
|
|
140154
|
-
declare const DTOFigmaExportNodeResponse: z.ZodObject<{
|
|
140155
|
-
file: z.ZodObject<{
|
|
140156
|
-
id: z.ZodString;
|
|
140157
|
-
name: z.ZodString;
|
|
140158
|
-
deduplicationKey: z.ZodString;
|
|
140159
|
-
pendingUpload: z.ZodOptional<z.ZodBoolean>;
|
|
140160
|
-
storagePath: z.ZodString;
|
|
140161
|
-
url: z.ZodString;
|
|
140162
|
-
size: z.ZodNumber;
|
|
140163
|
-
source: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
140164
|
-
type: z.ZodLiteral<"UserUpload">;
|
|
140165
|
-
userId: z.ZodString;
|
|
140166
|
-
}, "strip", z.ZodTypeAny, {
|
|
140167
|
-
type: "UserUpload";
|
|
140168
|
-
userId: string;
|
|
140169
|
-
}, {
|
|
140170
|
-
type: "UserUpload";
|
|
140171
|
-
userId: string;
|
|
140172
|
-
}>, z.ZodObject<{
|
|
140173
|
-
type: z.ZodLiteral<"Figma">;
|
|
140174
|
-
renderMode: z.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
140175
|
-
}, "strip", z.ZodTypeAny, {
|
|
140176
|
-
type: "Figma";
|
|
140177
|
-
renderMode: "Image" | "HTML" | "JSON";
|
|
140178
|
-
}, {
|
|
140179
|
-
type: "Figma";
|
|
140180
|
-
renderMode: "Image" | "HTML" | "JSON";
|
|
140181
|
-
}>]>>;
|
|
140182
|
-
}, "strip", z.ZodTypeAny, {
|
|
140183
|
-
id: string;
|
|
140184
|
-
name: string;
|
|
140185
|
-
url: string;
|
|
140186
|
-
storagePath: string;
|
|
140187
|
-
size: number;
|
|
140188
|
-
deduplicationKey: string;
|
|
140189
|
-
source?: {
|
|
140190
|
-
type: "UserUpload";
|
|
140191
|
-
userId: string;
|
|
140192
|
-
} | {
|
|
140193
|
-
type: "Figma";
|
|
140194
|
-
renderMode: "Image" | "HTML" | "JSON";
|
|
140195
|
-
} | undefined;
|
|
140196
|
-
pendingUpload?: boolean | undefined;
|
|
140197
|
-
}, {
|
|
140198
|
-
id: string;
|
|
140199
|
-
name: string;
|
|
140200
|
-
url: string;
|
|
140201
|
-
storagePath: string;
|
|
140202
|
-
size: number;
|
|
140203
|
-
deduplicationKey: string;
|
|
140204
|
-
source?: {
|
|
140205
|
-
type: "UserUpload";
|
|
140206
|
-
userId: string;
|
|
140207
|
-
} | {
|
|
140208
|
-
type: "Figma";
|
|
140209
|
-
renderMode: "Image" | "HTML" | "JSON";
|
|
140210
|
-
} | undefined;
|
|
140211
|
-
pendingUpload?: boolean | undefined;
|
|
140212
|
-
}>;
|
|
140213
|
-
scene: z.ZodOptional<z.ZodAny>;
|
|
140214
|
-
}, "strip", z.ZodTypeAny, {
|
|
140215
|
-
file: {
|
|
140216
|
-
id: string;
|
|
140217
|
-
name: string;
|
|
140218
|
-
url: string;
|
|
140219
|
-
storagePath: string;
|
|
140220
|
-
size: number;
|
|
140221
|
-
deduplicationKey: string;
|
|
140222
|
-
source?: {
|
|
140223
|
-
type: "UserUpload";
|
|
140224
|
-
userId: string;
|
|
140225
|
-
} | {
|
|
140226
|
-
type: "Figma";
|
|
140227
|
-
renderMode: "Image" | "HTML" | "JSON";
|
|
140228
|
-
} | undefined;
|
|
140229
|
-
pendingUpload?: boolean | undefined;
|
|
140230
|
-
};
|
|
140231
|
-
scene?: any;
|
|
140232
|
-
}, {
|
|
140233
|
-
file: {
|
|
140234
|
-
id: string;
|
|
140235
|
-
name: string;
|
|
140236
|
-
url: string;
|
|
140237
|
-
storagePath: string;
|
|
140238
|
-
size: number;
|
|
140239
|
-
deduplicationKey: string;
|
|
140240
|
-
source?: {
|
|
140241
|
-
type: "UserUpload";
|
|
140242
|
-
userId: string;
|
|
140243
|
-
} | {
|
|
140244
|
-
type: "Figma";
|
|
140245
|
-
renderMode: "Image" | "HTML" | "JSON";
|
|
140246
|
-
} | undefined;
|
|
140247
|
-
pendingUpload?: boolean | undefined;
|
|
140248
|
-
};
|
|
140249
|
-
scene?: any;
|
|
140250
|
-
}>;
|
|
140251
|
-
type DTOFigmaExportNodeResponse = z.infer<typeof DTOFigmaExportNodeResponse>;
|
|
140252
140120
|
|
|
140253
140121
|
declare const DTOFileFigmaRenderMode: z$1.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
140254
140122
|
type DTOFileFigmaRenderMode = z$1.infer<typeof DTOFileFigmaRenderMode>;
|
|
@@ -146114,6 +145982,7 @@ declare const DTOForgeFeatureRoomResponse: z.ZodObject<{
|
|
|
146114
145982
|
}>;
|
|
146115
145983
|
type DTOForgeFeatureRoomResponse = z.infer<typeof DTOForgeFeatureRoomResponse>;
|
|
146116
145984
|
|
|
145985
|
+
declare const ForgeFigmaNodeLatestVersion: "V2";
|
|
146117
145986
|
declare const DTOForgeFigmaNodeOrigin: z$1.ZodObject<{
|
|
146118
145987
|
/**
|
|
146119
145988
|
* Figma file ID that was passed into the create request as a part of the Figma node URL
|
|
@@ -147044,6 +146913,8 @@ declare const DTOForgeFigmaNodeValidateResponse: z$1.ZodObject<{
|
|
|
147044
146913
|
isValid: boolean;
|
|
147045
146914
|
}>;
|
|
147046
146915
|
type DTOForgeFigmaNodeValidateResponse = z$1.infer<typeof DTOForgeFigmaNodeValidateResponse>;
|
|
146916
|
+
declare const DTOForgeFigmaNodeConversionVersion: z$1.ZodEnum<["V1", "V2"]>;
|
|
146917
|
+
type DTOForgeFigmaNodeConversionVersion = z$1.infer<typeof DTOForgeFigmaNodeConversionVersion>;
|
|
147047
146918
|
|
|
147048
146919
|
declare const DTOForgeIterationMessage: z.ZodObject<Omit<{
|
|
147049
146920
|
id: z.ZodString;
|
|
@@ -338378,7 +338249,9 @@ declare const DTOSandboxTemplateBuild: z$1.ZodObject<{
|
|
|
338378
338249
|
createdAt: z$1.ZodString;
|
|
338379
338250
|
finishedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
338380
338251
|
createdByUserId: z$1.ZodString;
|
|
338381
|
-
|
|
338252
|
+
/** @deprecated use `dockerImageUri` instead */
|
|
338253
|
+
dockerImagePath: z$1.ZodOptional<z$1.ZodString>;
|
|
338254
|
+
dockerImageUri: z$1.ZodString;
|
|
338382
338255
|
error: z$1.ZodOptional<z$1.ZodString>;
|
|
338383
338256
|
state: z$1.ZodEnum<["PendingUpload", "Building", "Success", "Failure", "Timeout"]>;
|
|
338384
338257
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -338390,9 +338263,10 @@ declare const DTOSandboxTemplateBuild: z$1.ZodObject<{
|
|
|
338390
338263
|
workspaceId: string;
|
|
338391
338264
|
designSystemId: string;
|
|
338392
338265
|
createdByUserId: string;
|
|
338393
|
-
|
|
338266
|
+
dockerImageUri: string;
|
|
338394
338267
|
error?: string | undefined;
|
|
338395
338268
|
finishedAt?: string | undefined;
|
|
338269
|
+
dockerImagePath?: string | undefined;
|
|
338396
338270
|
}, {
|
|
338397
338271
|
id: string;
|
|
338398
338272
|
name: string;
|
|
@@ -338402,9 +338276,10 @@ declare const DTOSandboxTemplateBuild: z$1.ZodObject<{
|
|
|
338402
338276
|
workspaceId: string;
|
|
338403
338277
|
designSystemId: string;
|
|
338404
338278
|
createdByUserId: string;
|
|
338405
|
-
|
|
338279
|
+
dockerImageUri: string;
|
|
338406
338280
|
error?: string | undefined;
|
|
338407
338281
|
finishedAt?: string | undefined;
|
|
338282
|
+
dockerImagePath?: string | undefined;
|
|
338408
338283
|
}>;
|
|
338409
338284
|
type DTOSandboxTemplateBuild = z$1.infer<typeof DTOSandboxTemplateBuild>;
|
|
338410
338285
|
declare const DTOSandboxTemplateFile: z$1.ZodObject<{
|
|
@@ -338850,7 +338725,9 @@ declare const DTOSandboxTemplateBuildResponse: z$1.ZodObject<{
|
|
|
338850
338725
|
createdAt: z$1.ZodString;
|
|
338851
338726
|
finishedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
338852
338727
|
createdByUserId: z$1.ZodString;
|
|
338853
|
-
|
|
338728
|
+
/** @deprecated use `dockerImageUri` instead */
|
|
338729
|
+
dockerImagePath: z$1.ZodOptional<z$1.ZodString>;
|
|
338730
|
+
dockerImageUri: z$1.ZodString;
|
|
338854
338731
|
error: z$1.ZodOptional<z$1.ZodString>;
|
|
338855
338732
|
state: z$1.ZodEnum<["PendingUpload", "Building", "Success", "Failure", "Timeout"]>;
|
|
338856
338733
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -338862,9 +338739,10 @@ declare const DTOSandboxTemplateBuildResponse: z$1.ZodObject<{
|
|
|
338862
338739
|
workspaceId: string;
|
|
338863
338740
|
designSystemId: string;
|
|
338864
338741
|
createdByUserId: string;
|
|
338865
|
-
|
|
338742
|
+
dockerImageUri: string;
|
|
338866
338743
|
error?: string | undefined;
|
|
338867
338744
|
finishedAt?: string | undefined;
|
|
338745
|
+
dockerImagePath?: string | undefined;
|
|
338868
338746
|
}, {
|
|
338869
338747
|
id: string;
|
|
338870
338748
|
name: string;
|
|
@@ -338874,9 +338752,10 @@ declare const DTOSandboxTemplateBuildResponse: z$1.ZodObject<{
|
|
|
338874
338752
|
workspaceId: string;
|
|
338875
338753
|
designSystemId: string;
|
|
338876
338754
|
createdByUserId: string;
|
|
338877
|
-
|
|
338755
|
+
dockerImageUri: string;
|
|
338878
338756
|
error?: string | undefined;
|
|
338879
338757
|
finishedAt?: string | undefined;
|
|
338758
|
+
dockerImagePath?: string | undefined;
|
|
338880
338759
|
}>;
|
|
338881
338760
|
}, "strip", z$1.ZodTypeAny, {
|
|
338882
338761
|
build: {
|
|
@@ -338888,9 +338767,10 @@ declare const DTOSandboxTemplateBuildResponse: z$1.ZodObject<{
|
|
|
338888
338767
|
workspaceId: string;
|
|
338889
338768
|
designSystemId: string;
|
|
338890
338769
|
createdByUserId: string;
|
|
338891
|
-
|
|
338770
|
+
dockerImageUri: string;
|
|
338892
338771
|
error?: string | undefined;
|
|
338893
338772
|
finishedAt?: string | undefined;
|
|
338773
|
+
dockerImagePath?: string | undefined;
|
|
338894
338774
|
};
|
|
338895
338775
|
}, {
|
|
338896
338776
|
build: {
|
|
@@ -338902,9 +338782,10 @@ declare const DTOSandboxTemplateBuildResponse: z$1.ZodObject<{
|
|
|
338902
338782
|
workspaceId: string;
|
|
338903
338783
|
designSystemId: string;
|
|
338904
338784
|
createdByUserId: string;
|
|
338905
|
-
|
|
338785
|
+
dockerImageUri: string;
|
|
338906
338786
|
error?: string | undefined;
|
|
338907
338787
|
finishedAt?: string | undefined;
|
|
338788
|
+
dockerImagePath?: string | undefined;
|
|
338908
338789
|
};
|
|
338909
338790
|
}>;
|
|
338910
338791
|
type DTOSandboxTemplateBuildResponse = z$1.infer<typeof DTOSandboxTemplateBuildResponse>;
|
|
@@ -338915,6 +338796,17 @@ declare const DTOSandboxTemplateBuildCreateInput: z$1.ZodObject<{
|
|
|
338915
338796
|
version: z$1.ZodString;
|
|
338916
338797
|
isExistingVersionUpdateAllowed: z$1.ZodBoolean;
|
|
338917
338798
|
hasDesignModePlugin: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
338799
|
+
dockerImageUri: z$1.ZodOptional<z$1.ZodString>;
|
|
338800
|
+
customAuth: z$1.ZodOptional<z$1.ZodObject<{
|
|
338801
|
+
username: z$1.ZodString;
|
|
338802
|
+
password: z$1.ZodString;
|
|
338803
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
338804
|
+
password: string;
|
|
338805
|
+
username: string;
|
|
338806
|
+
}, {
|
|
338807
|
+
password: string;
|
|
338808
|
+
username: string;
|
|
338809
|
+
}>>;
|
|
338918
338810
|
templates: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
338919
338811
|
id: z$1.ZodString;
|
|
338920
338812
|
name: z$1.ZodString;
|
|
@@ -338948,6 +338840,11 @@ declare const DTOSandboxTemplateBuildCreateInput: z$1.ZodObject<{
|
|
|
338948
338840
|
thumbnailUrl?: string | undefined;
|
|
338949
338841
|
}[] | undefined;
|
|
338950
338842
|
hasDesignModePlugin?: boolean | undefined;
|
|
338843
|
+
dockerImageUri?: string | undefined;
|
|
338844
|
+
customAuth?: {
|
|
338845
|
+
password: string;
|
|
338846
|
+
username: string;
|
|
338847
|
+
} | undefined;
|
|
338951
338848
|
}, {
|
|
338952
338849
|
name: string;
|
|
338953
338850
|
version: string;
|
|
@@ -338962,12 +338859,18 @@ declare const DTOSandboxTemplateBuildCreateInput: z$1.ZodObject<{
|
|
|
338962
338859
|
thumbnailUrl?: string | undefined;
|
|
338963
338860
|
}[] | undefined;
|
|
338964
338861
|
hasDesignModePlugin?: boolean | undefined;
|
|
338862
|
+
dockerImageUri?: string | undefined;
|
|
338863
|
+
customAuth?: {
|
|
338864
|
+
password: string;
|
|
338865
|
+
username: string;
|
|
338866
|
+
} | undefined;
|
|
338965
338867
|
}>;
|
|
338966
338868
|
type DTOSandboxTemplateBuildCreateInput = z$1.infer<typeof DTOSandboxTemplateBuildCreateInput>;
|
|
338967
338869
|
declare const DTOSandboxTemplateBuildCreateResponse: z$1.ZodObject<{
|
|
338968
|
-
/** @deprecated use
|
|
338870
|
+
/** @deprecated use build.dockerImageUri */
|
|
338969
338871
|
dockerUrl: z$1.ZodOptional<z$1.ZodString>;
|
|
338970
|
-
|
|
338872
|
+
/** @deprecated use build.dockerImageUri */
|
|
338873
|
+
dockerRegistryDomain: z$1.ZodOptional<z$1.ZodString>;
|
|
338971
338874
|
/** @deprecated use docker-login endpoint */
|
|
338972
338875
|
dockerAccessToken: z$1.ZodOptional<z$1.ZodString>;
|
|
338973
338876
|
build: z$1.ZodObject<{
|
|
@@ -338979,7 +338882,9 @@ declare const DTOSandboxTemplateBuildCreateResponse: z$1.ZodObject<{
|
|
|
338979
338882
|
createdAt: z$1.ZodString;
|
|
338980
338883
|
finishedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
338981
338884
|
createdByUserId: z$1.ZodString;
|
|
338982
|
-
|
|
338885
|
+
/** @deprecated use `dockerImageUri` instead */
|
|
338886
|
+
dockerImagePath: z$1.ZodOptional<z$1.ZodString>;
|
|
338887
|
+
dockerImageUri: z$1.ZodString;
|
|
338983
338888
|
error: z$1.ZodOptional<z$1.ZodString>;
|
|
338984
338889
|
state: z$1.ZodEnum<["PendingUpload", "Building", "Success", "Failure", "Timeout"]>;
|
|
338985
338890
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -338991,9 +338896,10 @@ declare const DTOSandboxTemplateBuildCreateResponse: z$1.ZodObject<{
|
|
|
338991
338896
|
workspaceId: string;
|
|
338992
338897
|
designSystemId: string;
|
|
338993
338898
|
createdByUserId: string;
|
|
338994
|
-
|
|
338899
|
+
dockerImageUri: string;
|
|
338995
338900
|
error?: string | undefined;
|
|
338996
338901
|
finishedAt?: string | undefined;
|
|
338902
|
+
dockerImagePath?: string | undefined;
|
|
338997
338903
|
}, {
|
|
338998
338904
|
id: string;
|
|
338999
338905
|
name: string;
|
|
@@ -339003,9 +338909,10 @@ declare const DTOSandboxTemplateBuildCreateResponse: z$1.ZodObject<{
|
|
|
339003
338909
|
workspaceId: string;
|
|
339004
338910
|
designSystemId: string;
|
|
339005
338911
|
createdByUserId: string;
|
|
339006
|
-
|
|
338912
|
+
dockerImageUri: string;
|
|
339007
338913
|
error?: string | undefined;
|
|
339008
338914
|
finishedAt?: string | undefined;
|
|
338915
|
+
dockerImagePath?: string | undefined;
|
|
339009
338916
|
}>;
|
|
339010
338917
|
}, "strip", z$1.ZodTypeAny, {
|
|
339011
338918
|
build: {
|
|
@@ -339017,12 +338924,13 @@ declare const DTOSandboxTemplateBuildCreateResponse: z$1.ZodObject<{
|
|
|
339017
338924
|
workspaceId: string;
|
|
339018
338925
|
designSystemId: string;
|
|
339019
338926
|
createdByUserId: string;
|
|
339020
|
-
|
|
338927
|
+
dockerImageUri: string;
|
|
339021
338928
|
error?: string | undefined;
|
|
339022
338929
|
finishedAt?: string | undefined;
|
|
338930
|
+
dockerImagePath?: string | undefined;
|
|
339023
338931
|
};
|
|
339024
|
-
dockerRegistryDomain: string;
|
|
339025
338932
|
dockerUrl?: string | undefined;
|
|
338933
|
+
dockerRegistryDomain?: string | undefined;
|
|
339026
338934
|
dockerAccessToken?: string | undefined;
|
|
339027
338935
|
}, {
|
|
339028
338936
|
build: {
|
|
@@ -339034,12 +338942,13 @@ declare const DTOSandboxTemplateBuildCreateResponse: z$1.ZodObject<{
|
|
|
339034
338942
|
workspaceId: string;
|
|
339035
338943
|
designSystemId: string;
|
|
339036
338944
|
createdByUserId: string;
|
|
339037
|
-
|
|
338945
|
+
dockerImageUri: string;
|
|
339038
338946
|
error?: string | undefined;
|
|
339039
338947
|
finishedAt?: string | undefined;
|
|
338948
|
+
dockerImagePath?: string | undefined;
|
|
339040
338949
|
};
|
|
339041
|
-
dockerRegistryDomain: string;
|
|
339042
338950
|
dockerUrl?: string | undefined;
|
|
338951
|
+
dockerRegistryDomain?: string | undefined;
|
|
339043
338952
|
dockerAccessToken?: string | undefined;
|
|
339044
338953
|
}>;
|
|
339045
338954
|
type DTOSandboxTemplateBuildCreateResponse = z$1.infer<typeof DTOSandboxTemplateBuildCreateResponse>;
|
|
@@ -404452,12 +404361,13 @@ declare class SandboxTemplateBuildsEndpoint {
|
|
|
404452
404361
|
workspaceId: string;
|
|
404453
404362
|
designSystemId: string;
|
|
404454
404363
|
createdByUserId: string;
|
|
404455
|
-
|
|
404364
|
+
dockerImageUri: string;
|
|
404456
404365
|
error?: string | undefined;
|
|
404457
404366
|
finishedAt?: string | undefined;
|
|
404367
|
+
dockerImagePath?: string | undefined;
|
|
404458
404368
|
};
|
|
404459
|
-
dockerRegistryDomain: string;
|
|
404460
404369
|
dockerUrl?: string | undefined;
|
|
404370
|
+
dockerRegistryDomain?: string | undefined;
|
|
404461
404371
|
dockerAccessToken?: string | undefined;
|
|
404462
404372
|
}>;
|
|
404463
404373
|
get(buildId: string): Promise<{
|
|
@@ -404470,9 +404380,10 @@ declare class SandboxTemplateBuildsEndpoint {
|
|
|
404470
404380
|
workspaceId: string;
|
|
404471
404381
|
designSystemId: string;
|
|
404472
404382
|
createdByUserId: string;
|
|
404473
|
-
|
|
404383
|
+
dockerImageUri: string;
|
|
404474
404384
|
error?: string | undefined;
|
|
404475
404385
|
finishedAt?: string | undefined;
|
|
404386
|
+
dockerImagePath?: string | undefined;
|
|
404476
404387
|
};
|
|
404477
404388
|
}>;
|
|
404478
404389
|
finalize(buildId: string): Promise<{
|
|
@@ -409213,4 +409124,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
409213
409124
|
reason: ValidationErrorReason | undefined;
|
|
409214
409125
|
};
|
|
409215
409126
|
|
|
409216
|
-
export { AuthTokensEndpoint, BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOCodeSnapshotFinalizePayload, DTOCodeSnapshotFinalizeResponse, DTOCodeSnapshotProcessingRunResponse, DTOCodeSnapshotProcessingRunStatus, DTOCodeSnapshotProcessingRunStatusItem, DTOCodeSnapshotProcessingRunStatusResponse, DTOCodeSnapshotScannerType, DTOCodeSnapshotStartProcessingRunPayload, DTOCodeSnapshotUploadInitPayload, DTOCodeSnapshotUploadInitResponse, DTOCodeSnapshotUploadInitScannerType, DTOCollectionOrigin, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateFeatureSandbox, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemPipelineCreateBody, DTODesignSystemPipelineListQuery, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemUpdateSwitcherInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationConfiguration, DTODocumentationConfigurationResponse, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFVPMigrationsCollectionKeysPayload, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactGetByIdParam, DTOFeatureArtifactListQuery, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureArtifactWithContentResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationError, DTOFeatureIterationErrorType, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureIterationValidateInput, DTOFeatureIterationValidateResponse, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeaturePublishedStateUpdateInput, DTOFeatureSandbox, DTOFeatureSandboxListResponse, DTOFeatureUpdateThemeInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, 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, 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, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOSandboxError, DTOSandboxTemplate, DTOSandboxTemplateBuild, DTOSandboxTemplateBuildCreateInput, DTOSandboxTemplateBuildCreateResponse, DTOSandboxTemplateBuildCreated, DTOSandboxTemplateBuildFinalizeResponse, DTOSandboxTemplateBuildFinished, DTOSandboxTemplateBuildResponse, DTOSandboxTemplateFile, DTOSandboxTemplateListResponse, DTOSandboxTemplatePreset, DTOSandboxTemplateQuery, DTOSandboxTemplateResponse, DTOSandboxTemplateVersion, DTOSandboxTemplateVersionCreated, DTOSandboxTemplateVersionDetail, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSite, DTOStorybookSiteListQuery, DTOStorybookSiteListResponse, DTOStorybookSiteUploadPayload, DTOStorybookSiteUploadResponse, DTOStorybookSiteVersion, DTOStorybookSiteVersionResponse, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpcomingChange, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThemesListQuery, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, 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, 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 };
|
|
409127
|
+
export { AuthTokensEndpoint, BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOCodeSnapshotFinalizePayload, DTOCodeSnapshotFinalizeResponse, DTOCodeSnapshotProcessingRunResponse, DTOCodeSnapshotProcessingRunStatus, DTOCodeSnapshotProcessingRunStatusItem, DTOCodeSnapshotProcessingRunStatusResponse, DTOCodeSnapshotScannerType, DTOCodeSnapshotStartProcessingRunPayload, DTOCodeSnapshotUploadInitPayload, DTOCodeSnapshotUploadInitResponse, DTOCodeSnapshotUploadInitScannerType, DTOCollectionOrigin, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateFeatureSandbox, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemPipelineCreateBody, DTODesignSystemPipelineListQuery, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemUpdateSwitcherInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationConfiguration, DTODocumentationConfigurationResponse, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFVPMigrationsCollectionKeysPayload, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactGetByIdParam, DTOFeatureArtifactListQuery, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureArtifactWithContentResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationError, DTOFeatureIterationErrorType, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureIterationValidateInput, DTOFeatureIterationValidateResponse, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeaturePublishedStateUpdateInput, DTOFeatureSandbox, DTOFeatureSandboxListResponse, DTOFeatureUpdateThemeInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeDocumentGetByIdParam, DTOForgeDocumentGetResponse, DTOForgeEntity, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFigmaNode, DTOForgeFigmaNodeConversionVersion, DTOForgeFigmaNodeCreateRequest, DTOForgeFigmaNodeOrigin, DTOForgeFigmaNodeResponse, DTOForgeFigmaNodeState, DTOForgeFigmaNodeValidateResponse, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeMemoryCreateInput, DTOForgeMemoryDeleteInput, DTOForgeMemoryEntry, DTOForgeMemoryEntryListQuery, DTOForgeMemoryEntryListResponse, DTOForgeMemoryEntryResponse, DTOForgeMemoryUpdateInput, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactContentResponse, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextCreated, DTOForgeProjectContextDeleted, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextUpdated, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreated, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetByIdParam, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeatureSandboxUpdated, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectIterationTagSet, DTOForgeProjectIterationUpdated, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberDeleted, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberListQuery, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMemberUpdated, DTOForgeProjectMembersCreated, DTOForgeProjectMembersListResponse, DTOForgeProjectPublishedFeature, DTOForgeProjectPublishedFeatureGetResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomEvent, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdated, DTOForgeRelation, DTOForgeRelationCreate, DTOForgeRelationDelete, DTOForgeRelationListInput, DTOForgeRelationListResponse, DTOForgeRelationType, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemeKnownPreset, DTOForgeTokenThemeSet, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIPWhitelist, DTOIPWhitelistEntry, DTOIPWhitelistResponse, DTOIPWhitelistUpdate, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOKeepAliveFeatureSandboxResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOLoginScreenSettings, DTOLoginScreenSettingsResponse, DTOLoginScreenSettingsUpdate, DTOMCPStream, DTOMCPStreamResponse, DTOMCPStreamUpdateInput, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONotificationBase, DTONotificationChannel, DTONotificationChatMentionPayload, DTONotificationCreateInput, DTONotificationProjectDocumentCommentPayload, DTONotificationProjectInvitationPayload, DTONotificationType, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineExporterQuery, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, DTOProjectContextOverride, DTOProjectContextOverrideInput, DTOProjectContextOverrideResponse, type DTOPropertyDefinitionBase, DTOProvisionFeatureSandboxInput, DTOProvisionFeatureSandboxResponse, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOSandboxError, DTOSandboxTemplate, DTOSandboxTemplateBuild, DTOSandboxTemplateBuildCreateInput, DTOSandboxTemplateBuildCreateResponse, DTOSandboxTemplateBuildCreated, DTOSandboxTemplateBuildFinalizeResponse, DTOSandboxTemplateBuildFinished, DTOSandboxTemplateBuildResponse, DTOSandboxTemplateFile, DTOSandboxTemplateListResponse, DTOSandboxTemplatePreset, DTOSandboxTemplateQuery, DTOSandboxTemplateResponse, DTOSandboxTemplateVersion, DTOSandboxTemplateVersionCreated, DTOSandboxTemplateVersionDetail, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSite, DTOStorybookSiteListQuery, DTOStorybookSiteListResponse, DTOStorybookSiteUploadPayload, DTOStorybookSiteUploadResponse, DTOStorybookSiteVersion, DTOStorybookSiteVersionResponse, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpcomingChange, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThemesListQuery, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, 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 };
|