@supernova-studio/client 1.72.1 → 1.73.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +360 -146
- package/dist/index.d.ts +360 -146
- package/dist/index.js +79 -59
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +280 -260
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -11176,58 +11176,6 @@ declare const DTOStorybookEntryResponse: z.ZodObject<{
|
|
|
11176
11176
|
};
|
|
11177
11177
|
}>;
|
|
11178
11178
|
type DTOStorybookEntryResponse = z.infer<typeof DTOStorybookEntryResponse>;
|
|
11179
|
-
declare const DTOStorybookUploadUrlRequest: z.ZodObject<{
|
|
11180
|
-
name: z.ZodString;
|
|
11181
|
-
}, "strip", z.ZodTypeAny, {
|
|
11182
|
-
name: string;
|
|
11183
|
-
}, {
|
|
11184
|
-
name: string;
|
|
11185
|
-
}>;
|
|
11186
|
-
type DTOStorybookUploadUrlRequest = z.infer<typeof DTOStorybookUploadUrlRequest>;
|
|
11187
|
-
declare const DTOStorybookUploadUrlResponse: z.ZodObject<{
|
|
11188
|
-
signedUrl: z.ZodString;
|
|
11189
|
-
storybookUploadId: z.ZodString;
|
|
11190
|
-
}, "strip", z.ZodTypeAny, {
|
|
11191
|
-
signedUrl: string;
|
|
11192
|
-
storybookUploadId: string;
|
|
11193
|
-
}, {
|
|
11194
|
-
signedUrl: string;
|
|
11195
|
-
storybookUploadId: string;
|
|
11196
|
-
}>;
|
|
11197
|
-
type DTOStorybookUploadUrlResponse = z.infer<typeof DTOStorybookUploadUrlResponse>;
|
|
11198
|
-
declare const DTOStorybookAccessTokenResponse: z.ZodObject<{
|
|
11199
|
-
accessToken: z.ZodString;
|
|
11200
|
-
}, "strip", z.ZodTypeAny, {
|
|
11201
|
-
accessToken: string;
|
|
11202
|
-
}, {
|
|
11203
|
-
accessToken: string;
|
|
11204
|
-
}>;
|
|
11205
|
-
type DTOStorybookAccessTokenResponse = z.infer<typeof DTOStorybookAccessTokenResponse>;
|
|
11206
|
-
declare const DTOStorybookAccessTokenPayload: z.ZodObject<{
|
|
11207
|
-
designSystemId: z.ZodString;
|
|
11208
|
-
storybookUploadId: z.ZodString;
|
|
11209
|
-
}, "strip", z.ZodTypeAny, {
|
|
11210
|
-
designSystemId: string;
|
|
11211
|
-
storybookUploadId: string;
|
|
11212
|
-
}, {
|
|
11213
|
-
designSystemId: string;
|
|
11214
|
-
storybookUploadId: string;
|
|
11215
|
-
}>;
|
|
11216
|
-
type DTOStorybookAccessTokenPayload = z.infer<typeof DTOStorybookAccessTokenPayload>;
|
|
11217
|
-
declare const DTOStorybookUploadStatus: z.ZodObject<{
|
|
11218
|
-
status: z.ZodEnum<["Failed", "InProgress", "Completed", "Unknown"]>;
|
|
11219
|
-
timestamp: z.ZodOptional<z.ZodNumber>;
|
|
11220
|
-
reason: z.ZodOptional<z.ZodString>;
|
|
11221
|
-
}, "strip", z.ZodTypeAny, {
|
|
11222
|
-
status: "InProgress" | "Failed" | "Completed" | "Unknown";
|
|
11223
|
-
timestamp?: number | undefined;
|
|
11224
|
-
reason?: string | undefined;
|
|
11225
|
-
}, {
|
|
11226
|
-
status: "InProgress" | "Failed" | "Completed" | "Unknown";
|
|
11227
|
-
timestamp?: number | undefined;
|
|
11228
|
-
reason?: string | undefined;
|
|
11229
|
-
}>;
|
|
11230
|
-
type DTOStorybookUploadStatus = z.infer<typeof DTOStorybookUploadStatus>;
|
|
11231
11179
|
|
|
11232
11180
|
declare const DTOUserDesignSystemsResponse: z.ZodObject<{
|
|
11233
11181
|
designSystems: z.ZodArray<z.ZodObject<Omit<{
|
|
@@ -26073,7 +26021,6 @@ declare const DTODocumentationPageSnapshot: z.ZodObject<{
|
|
|
26073
26021
|
createdAt: string;
|
|
26074
26022
|
designSystemVersionId: string;
|
|
26075
26023
|
updatedAt: string;
|
|
26076
|
-
reason: "Publish" | "Deletion";
|
|
26077
26024
|
documentationPage: {
|
|
26078
26025
|
id: string;
|
|
26079
26026
|
createdAt: Date;
|
|
@@ -26178,12 +26125,12 @@ declare const DTODocumentationPageSnapshot: z.ZodObject<{
|
|
|
26178
26125
|
liveblocksRoomId?: string | undefined;
|
|
26179
26126
|
};
|
|
26180
26127
|
pageContentHash: string;
|
|
26128
|
+
reason: "Publish" | "Deletion";
|
|
26181
26129
|
}, {
|
|
26182
26130
|
id: string;
|
|
26183
26131
|
createdAt: string;
|
|
26184
26132
|
designSystemVersionId: string;
|
|
26185
26133
|
updatedAt: string;
|
|
26186
|
-
reason: "Publish" | "Deletion";
|
|
26187
26134
|
documentationPage: {
|
|
26188
26135
|
id: string;
|
|
26189
26136
|
createdAt: Date;
|
|
@@ -26288,6 +26235,7 @@ declare const DTODocumentationPageSnapshot: z.ZodObject<{
|
|
|
26288
26235
|
liveblocksRoomId?: string | undefined;
|
|
26289
26236
|
};
|
|
26290
26237
|
pageContentHash: string;
|
|
26238
|
+
reason: "Publish" | "Deletion";
|
|
26291
26239
|
}>;
|
|
26292
26240
|
type DTODocumentationPageSnapshot = z.infer<typeof DTODocumentationPageSnapshot>;
|
|
26293
26241
|
|
|
@@ -54265,10 +54213,10 @@ declare const DTOForgeProjectFeatureSandboxUpdated: z$1.ZodObject<{
|
|
|
54265
54213
|
errorDescription: z$1.ZodString;
|
|
54266
54214
|
}, "strip", z$1.ZodTypeAny, {
|
|
54267
54215
|
errorDescription: string;
|
|
54268
|
-
stage: "
|
|
54216
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
54269
54217
|
}, {
|
|
54270
54218
|
errorDescription: string;
|
|
54271
|
-
stage: "
|
|
54219
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
54272
54220
|
}>>;
|
|
54273
54221
|
}, "strip", z$1.ZodTypeAny, {
|
|
54274
54222
|
id: string;
|
|
@@ -54277,7 +54225,7 @@ declare const DTOForgeProjectFeatureSandboxUpdated: z$1.ZodObject<{
|
|
|
54277
54225
|
expiresAt?: string | undefined;
|
|
54278
54226
|
error?: {
|
|
54279
54227
|
errorDescription: string;
|
|
54280
|
-
stage: "
|
|
54228
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
54281
54229
|
} | undefined;
|
|
54282
54230
|
parentMessageId?: string | undefined;
|
|
54283
54231
|
featureId?: string | undefined;
|
|
@@ -54288,7 +54236,7 @@ declare const DTOForgeProjectFeatureSandboxUpdated: z$1.ZodObject<{
|
|
|
54288
54236
|
expiresAt?: string | undefined;
|
|
54289
54237
|
error?: {
|
|
54290
54238
|
errorDescription: string;
|
|
54291
|
-
stage: "
|
|
54239
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
54292
54240
|
} | undefined;
|
|
54293
54241
|
parentMessageId?: string | undefined;
|
|
54294
54242
|
featureId?: string | undefined;
|
|
@@ -54302,7 +54250,7 @@ declare const DTOForgeProjectFeatureSandboxUpdated: z$1.ZodObject<{
|
|
|
54302
54250
|
expiresAt?: string | undefined;
|
|
54303
54251
|
error?: {
|
|
54304
54252
|
errorDescription: string;
|
|
54305
|
-
stage: "
|
|
54253
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
54306
54254
|
} | undefined;
|
|
54307
54255
|
parentMessageId?: string | undefined;
|
|
54308
54256
|
featureId?: string | undefined;
|
|
@@ -54316,7 +54264,7 @@ declare const DTOForgeProjectFeatureSandboxUpdated: z$1.ZodObject<{
|
|
|
54316
54264
|
expiresAt?: string | undefined;
|
|
54317
54265
|
error?: {
|
|
54318
54266
|
errorDescription: string;
|
|
54319
|
-
stage: "
|
|
54267
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
54320
54268
|
} | undefined;
|
|
54321
54269
|
parentMessageId?: string | undefined;
|
|
54322
54270
|
featureId?: string | undefined;
|
|
@@ -54337,10 +54285,10 @@ declare const DTOForgeProjectIterationUpdated: z$1.ZodObject<{
|
|
|
54337
54285
|
description: z$1.ZodString;
|
|
54338
54286
|
type: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown", "Runtime"]>;
|
|
54339
54287
|
}, "strip", z$1.ZodTypeAny, {
|
|
54340
|
-
type: "
|
|
54288
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
54341
54289
|
description: string;
|
|
54342
54290
|
}, {
|
|
54343
|
-
type: "
|
|
54291
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
54344
54292
|
description: string;
|
|
54345
54293
|
}>>;
|
|
54346
54294
|
creditsCost: z$1.ZodOptional<z$1.ZodNumber>;
|
|
@@ -54425,7 +54373,7 @@ declare const DTOForgeProjectIterationUpdated: z$1.ZodObject<{
|
|
|
54425
54373
|
updatedAt?: string | undefined;
|
|
54426
54374
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
54427
54375
|
error?: {
|
|
54428
|
-
type: "
|
|
54376
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
54429
54377
|
description: string;
|
|
54430
54378
|
} | undefined;
|
|
54431
54379
|
thumbnailUrl?: string | undefined;
|
|
@@ -54461,7 +54409,7 @@ declare const DTOForgeProjectIterationUpdated: z$1.ZodObject<{
|
|
|
54461
54409
|
updatedAt?: string | undefined;
|
|
54462
54410
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
54463
54411
|
error?: {
|
|
54464
|
-
type: "
|
|
54412
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
54465
54413
|
description: string;
|
|
54466
54414
|
} | undefined;
|
|
54467
54415
|
thumbnailUrl?: string | undefined;
|
|
@@ -54500,7 +54448,7 @@ declare const DTOForgeProjectIterationUpdated: z$1.ZodObject<{
|
|
|
54500
54448
|
updatedAt?: string | undefined;
|
|
54501
54449
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
54502
54450
|
error?: {
|
|
54503
|
-
type: "
|
|
54451
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
54504
54452
|
description: string;
|
|
54505
54453
|
} | undefined;
|
|
54506
54454
|
thumbnailUrl?: string | undefined;
|
|
@@ -54539,7 +54487,7 @@ declare const DTOForgeProjectIterationUpdated: z$1.ZodObject<{
|
|
|
54539
54487
|
updatedAt?: string | undefined;
|
|
54540
54488
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
54541
54489
|
error?: {
|
|
54542
|
-
type: "
|
|
54490
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
54543
54491
|
description: string;
|
|
54544
54492
|
} | undefined;
|
|
54545
54493
|
thumbnailUrl?: string | undefined;
|
|
@@ -54914,10 +54862,10 @@ declare const DTOForgeProjectRoomEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.Z
|
|
|
54914
54862
|
errorDescription: z$1.ZodString;
|
|
54915
54863
|
}, "strip", z$1.ZodTypeAny, {
|
|
54916
54864
|
errorDescription: string;
|
|
54917
|
-
stage: "
|
|
54865
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
54918
54866
|
}, {
|
|
54919
54867
|
errorDescription: string;
|
|
54920
|
-
stage: "
|
|
54868
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
54921
54869
|
}>>;
|
|
54922
54870
|
}, "strip", z$1.ZodTypeAny, {
|
|
54923
54871
|
id: string;
|
|
@@ -54926,7 +54874,7 @@ declare const DTOForgeProjectRoomEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.Z
|
|
|
54926
54874
|
expiresAt?: string | undefined;
|
|
54927
54875
|
error?: {
|
|
54928
54876
|
errorDescription: string;
|
|
54929
|
-
stage: "
|
|
54877
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
54930
54878
|
} | undefined;
|
|
54931
54879
|
parentMessageId?: string | undefined;
|
|
54932
54880
|
featureId?: string | undefined;
|
|
@@ -54937,7 +54885,7 @@ declare const DTOForgeProjectRoomEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.Z
|
|
|
54937
54885
|
expiresAt?: string | undefined;
|
|
54938
54886
|
error?: {
|
|
54939
54887
|
errorDescription: string;
|
|
54940
|
-
stage: "
|
|
54888
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
54941
54889
|
} | undefined;
|
|
54942
54890
|
parentMessageId?: string | undefined;
|
|
54943
54891
|
featureId?: string | undefined;
|
|
@@ -54951,7 +54899,7 @@ declare const DTOForgeProjectRoomEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.Z
|
|
|
54951
54899
|
expiresAt?: string | undefined;
|
|
54952
54900
|
error?: {
|
|
54953
54901
|
errorDescription: string;
|
|
54954
|
-
stage: "
|
|
54902
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
54955
54903
|
} | undefined;
|
|
54956
54904
|
parentMessageId?: string | undefined;
|
|
54957
54905
|
featureId?: string | undefined;
|
|
@@ -54965,7 +54913,7 @@ declare const DTOForgeProjectRoomEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.Z
|
|
|
54965
54913
|
expiresAt?: string | undefined;
|
|
54966
54914
|
error?: {
|
|
54967
54915
|
errorDescription: string;
|
|
54968
|
-
stage: "
|
|
54916
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
54969
54917
|
} | undefined;
|
|
54970
54918
|
parentMessageId?: string | undefined;
|
|
54971
54919
|
featureId?: string | undefined;
|
|
@@ -54984,10 +54932,10 @@ declare const DTOForgeProjectRoomEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.Z
|
|
|
54984
54932
|
description: z$1.ZodString;
|
|
54985
54933
|
type: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown", "Runtime"]>;
|
|
54986
54934
|
}, "strip", z$1.ZodTypeAny, {
|
|
54987
|
-
type: "
|
|
54935
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
54988
54936
|
description: string;
|
|
54989
54937
|
}, {
|
|
54990
|
-
type: "
|
|
54938
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
54991
54939
|
description: string;
|
|
54992
54940
|
}>>;
|
|
54993
54941
|
creditsCost: z$1.ZodOptional<z$1.ZodNumber>;
|
|
@@ -55072,7 +55020,7 @@ declare const DTOForgeProjectRoomEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.Z
|
|
|
55072
55020
|
updatedAt?: string | undefined;
|
|
55073
55021
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
55074
55022
|
error?: {
|
|
55075
|
-
type: "
|
|
55023
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
55076
55024
|
description: string;
|
|
55077
55025
|
} | undefined;
|
|
55078
55026
|
thumbnailUrl?: string | undefined;
|
|
@@ -55108,7 +55056,7 @@ declare const DTOForgeProjectRoomEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.Z
|
|
|
55108
55056
|
updatedAt?: string | undefined;
|
|
55109
55057
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
55110
55058
|
error?: {
|
|
55111
|
-
type: "
|
|
55059
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
55112
55060
|
description: string;
|
|
55113
55061
|
} | undefined;
|
|
55114
55062
|
thumbnailUrl?: string | undefined;
|
|
@@ -55147,7 +55095,7 @@ declare const DTOForgeProjectRoomEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.Z
|
|
|
55147
55095
|
updatedAt?: string | undefined;
|
|
55148
55096
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
55149
55097
|
error?: {
|
|
55150
|
-
type: "
|
|
55098
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
55151
55099
|
description: string;
|
|
55152
55100
|
} | undefined;
|
|
55153
55101
|
thumbnailUrl?: string | undefined;
|
|
@@ -55186,7 +55134,7 @@ declare const DTOForgeProjectRoomEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.Z
|
|
|
55186
55134
|
updatedAt?: string | undefined;
|
|
55187
55135
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
55188
55136
|
error?: {
|
|
55189
|
-
type: "
|
|
55137
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
55190
55138
|
description: string;
|
|
55191
55139
|
} | undefined;
|
|
55192
55140
|
thumbnailUrl?: string | undefined;
|
|
@@ -128492,10 +128440,10 @@ declare const DTOFeatureIterationError: z$1.ZodObject<{
|
|
|
128492
128440
|
description: z$1.ZodString;
|
|
128493
128441
|
type: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown", "Runtime"]>;
|
|
128494
128442
|
}, "strip", z$1.ZodTypeAny, {
|
|
128495
|
-
type: "
|
|
128443
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
128496
128444
|
description: string;
|
|
128497
128445
|
}, {
|
|
128498
|
-
type: "
|
|
128446
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
128499
128447
|
description: string;
|
|
128500
128448
|
}>;
|
|
128501
128449
|
type DTOFeatureIterationError = z$1.infer<typeof DTOFeatureIterationError>;
|
|
@@ -128544,10 +128492,10 @@ declare const DTOFeatureIteration: z$1.ZodObject<{
|
|
|
128544
128492
|
description: z$1.ZodString;
|
|
128545
128493
|
type: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown", "Runtime"]>;
|
|
128546
128494
|
}, "strip", z$1.ZodTypeAny, {
|
|
128547
|
-
type: "
|
|
128495
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
128548
128496
|
description: string;
|
|
128549
128497
|
}, {
|
|
128550
|
-
type: "
|
|
128498
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
128551
128499
|
description: string;
|
|
128552
128500
|
}>>;
|
|
128553
128501
|
/**
|
|
@@ -128642,7 +128590,7 @@ declare const DTOFeatureIteration: z$1.ZodObject<{
|
|
|
128642
128590
|
updatedAt?: string | undefined;
|
|
128643
128591
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
128644
128592
|
error?: {
|
|
128645
|
-
type: "
|
|
128593
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
128646
128594
|
description: string;
|
|
128647
128595
|
} | undefined;
|
|
128648
128596
|
thumbnailUrl?: string | undefined;
|
|
@@ -128677,7 +128625,7 @@ declare const DTOFeatureIteration: z$1.ZodObject<{
|
|
|
128677
128625
|
updatedAt?: string | undefined;
|
|
128678
128626
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
128679
128627
|
error?: {
|
|
128680
|
-
type: "
|
|
128628
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
128681
128629
|
description: string;
|
|
128682
128630
|
} | undefined;
|
|
128683
128631
|
thumbnailUrl?: string | undefined;
|
|
@@ -128737,10 +128685,10 @@ declare const DTOSandboxError: z$1.ZodObject<{
|
|
|
128737
128685
|
errorDescription: z$1.ZodString;
|
|
128738
128686
|
}, "strip", z$1.ZodTypeAny, {
|
|
128739
128687
|
errorDescription: string;
|
|
128740
|
-
stage: "
|
|
128688
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
128741
128689
|
}, {
|
|
128742
128690
|
errorDescription: string;
|
|
128743
|
-
stage: "
|
|
128691
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
128744
128692
|
}>;
|
|
128745
128693
|
type DTOSandboxError = z$1.infer<typeof DTOSandboxError>;
|
|
128746
128694
|
declare const DTOFeatureSandbox: z$1.ZodObject<{
|
|
@@ -128757,10 +128705,10 @@ declare const DTOFeatureSandbox: z$1.ZodObject<{
|
|
|
128757
128705
|
errorDescription: z$1.ZodString;
|
|
128758
128706
|
}, "strip", z$1.ZodTypeAny, {
|
|
128759
128707
|
errorDescription: string;
|
|
128760
|
-
stage: "
|
|
128708
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
128761
128709
|
}, {
|
|
128762
128710
|
errorDescription: string;
|
|
128763
|
-
stage: "
|
|
128711
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
128764
128712
|
}>>;
|
|
128765
128713
|
}, "strip", z$1.ZodTypeAny, {
|
|
128766
128714
|
id: string;
|
|
@@ -128769,7 +128717,7 @@ declare const DTOFeatureSandbox: z$1.ZodObject<{
|
|
|
128769
128717
|
expiresAt?: string | undefined;
|
|
128770
128718
|
error?: {
|
|
128771
128719
|
errorDescription: string;
|
|
128772
|
-
stage: "
|
|
128720
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
128773
128721
|
} | undefined;
|
|
128774
128722
|
parentMessageId?: string | undefined;
|
|
128775
128723
|
featureId?: string | undefined;
|
|
@@ -128780,7 +128728,7 @@ declare const DTOFeatureSandbox: z$1.ZodObject<{
|
|
|
128780
128728
|
expiresAt?: string | undefined;
|
|
128781
128729
|
error?: {
|
|
128782
128730
|
errorDescription: string;
|
|
128783
|
-
stage: "
|
|
128731
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
128784
128732
|
} | undefined;
|
|
128785
128733
|
parentMessageId?: string | undefined;
|
|
128786
128734
|
featureId?: string | undefined;
|
|
@@ -128799,10 +128747,10 @@ declare const DTOCreateFeatureSandbox: z$1.ZodObject<{
|
|
|
128799
128747
|
errorDescription: z$1.ZodString;
|
|
128800
128748
|
}, "strip", z$1.ZodTypeAny, {
|
|
128801
128749
|
errorDescription: string;
|
|
128802
|
-
stage: "
|
|
128750
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
128803
128751
|
}, {
|
|
128804
128752
|
errorDescription: string;
|
|
128805
|
-
stage: "
|
|
128753
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
128806
128754
|
}>>;
|
|
128807
128755
|
} & {
|
|
128808
128756
|
featureId: z$1.ZodString;
|
|
@@ -128814,7 +128762,7 @@ declare const DTOCreateFeatureSandbox: z$1.ZodObject<{
|
|
|
128814
128762
|
expiresAt?: string | undefined;
|
|
128815
128763
|
error?: {
|
|
128816
128764
|
errorDescription: string;
|
|
128817
|
-
stage: "
|
|
128765
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
128818
128766
|
} | undefined;
|
|
128819
128767
|
parentMessageId?: string | undefined;
|
|
128820
128768
|
}, {
|
|
@@ -128825,7 +128773,7 @@ declare const DTOCreateFeatureSandbox: z$1.ZodObject<{
|
|
|
128825
128773
|
expiresAt?: string | undefined;
|
|
128826
128774
|
error?: {
|
|
128827
128775
|
errorDescription: string;
|
|
128828
|
-
stage: "
|
|
128776
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
128829
128777
|
} | undefined;
|
|
128830
128778
|
parentMessageId?: string | undefined;
|
|
128831
128779
|
}>;
|
|
@@ -128845,10 +128793,10 @@ declare const DTOUpdateFeatureSandbox: z$1.ZodObject<{
|
|
|
128845
128793
|
errorDescription: z$1.ZodString;
|
|
128846
128794
|
}, "strip", z$1.ZodTypeAny, {
|
|
128847
128795
|
errorDescription: string;
|
|
128848
|
-
stage: "
|
|
128796
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
128849
128797
|
}, {
|
|
128850
128798
|
errorDescription: string;
|
|
128851
|
-
stage: "
|
|
128799
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
128852
128800
|
}>>>;
|
|
128853
128801
|
}, "strip", z$1.ZodTypeAny, {
|
|
128854
128802
|
id: string;
|
|
@@ -128856,7 +128804,7 @@ declare const DTOUpdateFeatureSandbox: z$1.ZodObject<{
|
|
|
128856
128804
|
expiresAt?: string | null | undefined;
|
|
128857
128805
|
error?: {
|
|
128858
128806
|
errorDescription: string;
|
|
128859
|
-
stage: "
|
|
128807
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
128860
128808
|
} | null | undefined;
|
|
128861
128809
|
parentMessageId?: string | null | undefined;
|
|
128862
128810
|
featureId?: string | undefined;
|
|
@@ -128867,7 +128815,7 @@ declare const DTOUpdateFeatureSandbox: z$1.ZodObject<{
|
|
|
128867
128815
|
expiresAt?: string | null | undefined;
|
|
128868
128816
|
error?: {
|
|
128869
128817
|
errorDescription: string;
|
|
128870
|
-
stage: "
|
|
128818
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
128871
128819
|
} | null | undefined;
|
|
128872
128820
|
parentMessageId?: string | null | undefined;
|
|
128873
128821
|
featureId?: string | undefined;
|
|
@@ -128889,10 +128837,10 @@ declare const DTOFeatureSandboxListResponse: z$1.ZodObject<{
|
|
|
128889
128837
|
errorDescription: z$1.ZodString;
|
|
128890
128838
|
}, "strip", z$1.ZodTypeAny, {
|
|
128891
128839
|
errorDescription: string;
|
|
128892
|
-
stage: "
|
|
128840
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
128893
128841
|
}, {
|
|
128894
128842
|
errorDescription: string;
|
|
128895
|
-
stage: "
|
|
128843
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
128896
128844
|
}>>;
|
|
128897
128845
|
}, "strip", z$1.ZodTypeAny, {
|
|
128898
128846
|
id: string;
|
|
@@ -128901,7 +128849,7 @@ declare const DTOFeatureSandboxListResponse: z$1.ZodObject<{
|
|
|
128901
128849
|
expiresAt?: string | undefined;
|
|
128902
128850
|
error?: {
|
|
128903
128851
|
errorDescription: string;
|
|
128904
|
-
stage: "
|
|
128852
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
128905
128853
|
} | undefined;
|
|
128906
128854
|
parentMessageId?: string | undefined;
|
|
128907
128855
|
featureId?: string | undefined;
|
|
@@ -128912,7 +128860,7 @@ declare const DTOFeatureSandboxListResponse: z$1.ZodObject<{
|
|
|
128912
128860
|
expiresAt?: string | undefined;
|
|
128913
128861
|
error?: {
|
|
128914
128862
|
errorDescription: string;
|
|
128915
|
-
stage: "
|
|
128863
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
128916
128864
|
} | undefined;
|
|
128917
128865
|
parentMessageId?: string | undefined;
|
|
128918
128866
|
featureId?: string | undefined;
|
|
@@ -128925,7 +128873,7 @@ declare const DTOFeatureSandboxListResponse: z$1.ZodObject<{
|
|
|
128925
128873
|
expiresAt?: string | undefined;
|
|
128926
128874
|
error?: {
|
|
128927
128875
|
errorDescription: string;
|
|
128928
|
-
stage: "
|
|
128876
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
128929
128877
|
} | undefined;
|
|
128930
128878
|
parentMessageId?: string | undefined;
|
|
128931
128879
|
featureId?: string | undefined;
|
|
@@ -128938,7 +128886,7 @@ declare const DTOFeatureSandboxListResponse: z$1.ZodObject<{
|
|
|
128938
128886
|
expiresAt?: string | undefined;
|
|
128939
128887
|
error?: {
|
|
128940
128888
|
errorDescription: string;
|
|
128941
|
-
stage: "
|
|
128889
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
128942
128890
|
} | undefined;
|
|
128943
128891
|
parentMessageId?: string | undefined;
|
|
128944
128892
|
featureId?: string | undefined;
|
|
@@ -129162,10 +129110,10 @@ declare const DTOFeatureIterationCreateInput: z$1.ZodObject<Pick<{
|
|
|
129162
129110
|
description: z$1.ZodString;
|
|
129163
129111
|
type: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown", "Runtime"]>;
|
|
129164
129112
|
}, "strip", z$1.ZodTypeAny, {
|
|
129165
|
-
type: "
|
|
129113
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
129166
129114
|
description: string;
|
|
129167
129115
|
}, {
|
|
129168
|
-
type: "
|
|
129116
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
129169
129117
|
description: string;
|
|
129170
129118
|
}>>;
|
|
129171
129119
|
/**
|
|
@@ -130173,10 +130121,10 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
130173
130121
|
description: z$1.ZodString;
|
|
130174
130122
|
type: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown", "Runtime"]>;
|
|
130175
130123
|
}, "strip", z$1.ZodTypeAny, {
|
|
130176
|
-
type: "
|
|
130124
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
130177
130125
|
description: string;
|
|
130178
130126
|
}, {
|
|
130179
|
-
type: "
|
|
130127
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
130180
130128
|
description: string;
|
|
130181
130129
|
}>>;
|
|
130182
130130
|
/**
|
|
@@ -130271,7 +130219,7 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
130271
130219
|
updatedAt?: string | undefined;
|
|
130272
130220
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
130273
130221
|
error?: {
|
|
130274
|
-
type: "
|
|
130222
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
130275
130223
|
description: string;
|
|
130276
130224
|
} | undefined;
|
|
130277
130225
|
thumbnailUrl?: string | undefined;
|
|
@@ -130306,7 +130254,7 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
130306
130254
|
updatedAt?: string | undefined;
|
|
130307
130255
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
130308
130256
|
error?: {
|
|
130309
|
-
type: "
|
|
130257
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
130310
130258
|
description: string;
|
|
130311
130259
|
} | undefined;
|
|
130312
130260
|
thumbnailUrl?: string | undefined;
|
|
@@ -130343,7 +130291,7 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
130343
130291
|
updatedAt?: string | undefined;
|
|
130344
130292
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
130345
130293
|
error?: {
|
|
130346
|
-
type: "
|
|
130294
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
130347
130295
|
description: string;
|
|
130348
130296
|
} | undefined;
|
|
130349
130297
|
thumbnailUrl?: string | undefined;
|
|
@@ -130380,7 +130328,7 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
130380
130328
|
updatedAt?: string | undefined;
|
|
130381
130329
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
130382
130330
|
error?: {
|
|
130383
|
-
type: "
|
|
130331
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
130384
130332
|
description: string;
|
|
130385
130333
|
} | undefined;
|
|
130386
130334
|
thumbnailUrl?: string | undefined;
|
|
@@ -130422,22 +130370,22 @@ declare const DTOFeatureIterationValidateResponse: z$1.ZodDiscriminatedUnion<"su
|
|
|
130422
130370
|
description: z$1.ZodString;
|
|
130423
130371
|
type: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown", "Runtime"]>;
|
|
130424
130372
|
}, "strip", z$1.ZodTypeAny, {
|
|
130425
|
-
type: "
|
|
130373
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
130426
130374
|
description: string;
|
|
130427
130375
|
}, {
|
|
130428
|
-
type: "
|
|
130376
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
130429
130377
|
description: string;
|
|
130430
130378
|
}>;
|
|
130431
130379
|
}, "strip", z$1.ZodTypeAny, {
|
|
130432
130380
|
success: false;
|
|
130433
130381
|
error: {
|
|
130434
|
-
type: "
|
|
130382
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
130435
130383
|
description: string;
|
|
130436
130384
|
};
|
|
130437
130385
|
}, {
|
|
130438
130386
|
success: false;
|
|
130439
130387
|
error: {
|
|
130440
|
-
type: "
|
|
130388
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
130441
130389
|
description: string;
|
|
130442
130390
|
};
|
|
130443
130391
|
}>]>;
|
|
@@ -130488,10 +130436,10 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
|
130488
130436
|
description: z$1.ZodString;
|
|
130489
130437
|
type: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown", "Runtime"]>;
|
|
130490
130438
|
}, "strip", z$1.ZodTypeAny, {
|
|
130491
|
-
type: "
|
|
130439
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
130492
130440
|
description: string;
|
|
130493
130441
|
}, {
|
|
130494
|
-
type: "
|
|
130442
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
130495
130443
|
description: string;
|
|
130496
130444
|
}>>;
|
|
130497
130445
|
/**
|
|
@@ -130586,7 +130534,7 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
|
130586
130534
|
updatedAt?: string | undefined;
|
|
130587
130535
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
130588
130536
|
error?: {
|
|
130589
|
-
type: "
|
|
130537
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
130590
130538
|
description: string;
|
|
130591
130539
|
} | undefined;
|
|
130592
130540
|
thumbnailUrl?: string | undefined;
|
|
@@ -130621,7 +130569,7 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
|
130621
130569
|
updatedAt?: string | undefined;
|
|
130622
130570
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
130623
130571
|
error?: {
|
|
130624
|
-
type: "
|
|
130572
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
130625
130573
|
description: string;
|
|
130626
130574
|
} | undefined;
|
|
130627
130575
|
thumbnailUrl?: string | undefined;
|
|
@@ -130658,7 +130606,7 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
|
130658
130606
|
updatedAt?: string | undefined;
|
|
130659
130607
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
130660
130608
|
error?: {
|
|
130661
|
-
type: "
|
|
130609
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
130662
130610
|
description: string;
|
|
130663
130611
|
} | undefined;
|
|
130664
130612
|
thumbnailUrl?: string | undefined;
|
|
@@ -130695,7 +130643,7 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
|
130695
130643
|
updatedAt?: string | undefined;
|
|
130696
130644
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
130697
130645
|
error?: {
|
|
130698
|
-
type: "
|
|
130646
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
130699
130647
|
description: string;
|
|
130700
130648
|
} | undefined;
|
|
130701
130649
|
thumbnailUrl?: string | undefined;
|
|
@@ -317455,6 +317403,243 @@ declare const DTOSandboxTemplateBuildFinalizeResponse: z$1.ZodObject<{
|
|
|
317455
317403
|
}>;
|
|
317456
317404
|
type DTOSandboxTemplateBuildFinalizeResponse = z$1.infer<typeof DTOSandboxTemplateBuildFinalizeResponse>;
|
|
317457
317405
|
|
|
317406
|
+
declare const DTOStorybookUploadStatus: z.ZodEnum<["PendingUpload", "Failed", "InProgress", "Completed", "Timeout"]>;
|
|
317407
|
+
type DTOStorybookUploadStatus = z.infer<typeof DTOStorybookUploadStatus>;
|
|
317408
|
+
declare const DTOStorybookSiteVersion: z.ZodObject<{
|
|
317409
|
+
id: z.ZodString;
|
|
317410
|
+
isPublic: z.ZodBoolean;
|
|
317411
|
+
createdAt: z.ZodString;
|
|
317412
|
+
uploadStatus: z.ZodEnum<["PendingUpload", "Failed", "InProgress", "Completed", "Timeout"]>;
|
|
317413
|
+
}, "strip", z.ZodTypeAny, {
|
|
317414
|
+
id: string;
|
|
317415
|
+
createdAt: string;
|
|
317416
|
+
isPublic: boolean;
|
|
317417
|
+
uploadStatus: "InProgress" | "Failed" | "Timeout" | "PendingUpload" | "Completed";
|
|
317418
|
+
}, {
|
|
317419
|
+
id: string;
|
|
317420
|
+
createdAt: string;
|
|
317421
|
+
isPublic: boolean;
|
|
317422
|
+
uploadStatus: "InProgress" | "Failed" | "Timeout" | "PendingUpload" | "Completed";
|
|
317423
|
+
}>;
|
|
317424
|
+
type DTOStorybookSiteVersion = z.infer<typeof DTOStorybookSiteVersion>;
|
|
317425
|
+
declare const DTOStorybookSite: z.ZodObject<{
|
|
317426
|
+
id: z.ZodString;
|
|
317427
|
+
designSystemId: z.ZodString;
|
|
317428
|
+
name: z.ZodString;
|
|
317429
|
+
indexPageUrl: z.ZodString;
|
|
317430
|
+
createdAt: z.ZodString;
|
|
317431
|
+
currentVersion: z.ZodObject<{
|
|
317432
|
+
id: z.ZodString;
|
|
317433
|
+
isPublic: z.ZodBoolean;
|
|
317434
|
+
createdAt: z.ZodString;
|
|
317435
|
+
uploadStatus: z.ZodEnum<["PendingUpload", "Failed", "InProgress", "Completed", "Timeout"]>;
|
|
317436
|
+
}, "strip", z.ZodTypeAny, {
|
|
317437
|
+
id: string;
|
|
317438
|
+
createdAt: string;
|
|
317439
|
+
isPublic: boolean;
|
|
317440
|
+
uploadStatus: "InProgress" | "Failed" | "Timeout" | "PendingUpload" | "Completed";
|
|
317441
|
+
}, {
|
|
317442
|
+
id: string;
|
|
317443
|
+
createdAt: string;
|
|
317444
|
+
isPublic: boolean;
|
|
317445
|
+
uploadStatus: "InProgress" | "Failed" | "Timeout" | "PendingUpload" | "Completed";
|
|
317446
|
+
}>;
|
|
317447
|
+
}, "strip", z.ZodTypeAny, {
|
|
317448
|
+
id: string;
|
|
317449
|
+
createdAt: string;
|
|
317450
|
+
name: string;
|
|
317451
|
+
designSystemId: string;
|
|
317452
|
+
indexPageUrl: string;
|
|
317453
|
+
currentVersion: {
|
|
317454
|
+
id: string;
|
|
317455
|
+
createdAt: string;
|
|
317456
|
+
isPublic: boolean;
|
|
317457
|
+
uploadStatus: "InProgress" | "Failed" | "Timeout" | "PendingUpload" | "Completed";
|
|
317458
|
+
};
|
|
317459
|
+
}, {
|
|
317460
|
+
id: string;
|
|
317461
|
+
createdAt: string;
|
|
317462
|
+
name: string;
|
|
317463
|
+
designSystemId: string;
|
|
317464
|
+
indexPageUrl: string;
|
|
317465
|
+
currentVersion: {
|
|
317466
|
+
id: string;
|
|
317467
|
+
createdAt: string;
|
|
317468
|
+
isPublic: boolean;
|
|
317469
|
+
uploadStatus: "InProgress" | "Failed" | "Timeout" | "PendingUpload" | "Completed";
|
|
317470
|
+
};
|
|
317471
|
+
}>;
|
|
317472
|
+
type DTOStorybookSite = z.infer<typeof DTOStorybookSite>;
|
|
317473
|
+
declare const DTOStorybookSiteListQuery: z.ZodObject<{
|
|
317474
|
+
designSystemId: z.ZodString;
|
|
317475
|
+
}, "strip", z.ZodTypeAny, {
|
|
317476
|
+
designSystemId: string;
|
|
317477
|
+
}, {
|
|
317478
|
+
designSystemId: string;
|
|
317479
|
+
}>;
|
|
317480
|
+
type DTOStorybookSiteListQuery = z.infer<typeof DTOStorybookSiteListQuery>;
|
|
317481
|
+
declare const DTOStorybookSiteListResponse: z.ZodObject<{
|
|
317482
|
+
sites: z.ZodArray<z.ZodObject<{
|
|
317483
|
+
id: z.ZodString;
|
|
317484
|
+
designSystemId: z.ZodString;
|
|
317485
|
+
name: z.ZodString;
|
|
317486
|
+
indexPageUrl: z.ZodString;
|
|
317487
|
+
createdAt: z.ZodString;
|
|
317488
|
+
currentVersion: z.ZodObject<{
|
|
317489
|
+
id: z.ZodString;
|
|
317490
|
+
isPublic: z.ZodBoolean;
|
|
317491
|
+
createdAt: z.ZodString;
|
|
317492
|
+
uploadStatus: z.ZodEnum<["PendingUpload", "Failed", "InProgress", "Completed", "Timeout"]>;
|
|
317493
|
+
}, "strip", z.ZodTypeAny, {
|
|
317494
|
+
id: string;
|
|
317495
|
+
createdAt: string;
|
|
317496
|
+
isPublic: boolean;
|
|
317497
|
+
uploadStatus: "InProgress" | "Failed" | "Timeout" | "PendingUpload" | "Completed";
|
|
317498
|
+
}, {
|
|
317499
|
+
id: string;
|
|
317500
|
+
createdAt: string;
|
|
317501
|
+
isPublic: boolean;
|
|
317502
|
+
uploadStatus: "InProgress" | "Failed" | "Timeout" | "PendingUpload" | "Completed";
|
|
317503
|
+
}>;
|
|
317504
|
+
}, "strip", z.ZodTypeAny, {
|
|
317505
|
+
id: string;
|
|
317506
|
+
createdAt: string;
|
|
317507
|
+
name: string;
|
|
317508
|
+
designSystemId: string;
|
|
317509
|
+
indexPageUrl: string;
|
|
317510
|
+
currentVersion: {
|
|
317511
|
+
id: string;
|
|
317512
|
+
createdAt: string;
|
|
317513
|
+
isPublic: boolean;
|
|
317514
|
+
uploadStatus: "InProgress" | "Failed" | "Timeout" | "PendingUpload" | "Completed";
|
|
317515
|
+
};
|
|
317516
|
+
}, {
|
|
317517
|
+
id: string;
|
|
317518
|
+
createdAt: string;
|
|
317519
|
+
name: string;
|
|
317520
|
+
designSystemId: string;
|
|
317521
|
+
indexPageUrl: string;
|
|
317522
|
+
currentVersion: {
|
|
317523
|
+
id: string;
|
|
317524
|
+
createdAt: string;
|
|
317525
|
+
isPublic: boolean;
|
|
317526
|
+
uploadStatus: "InProgress" | "Failed" | "Timeout" | "PendingUpload" | "Completed";
|
|
317527
|
+
};
|
|
317528
|
+
}>, "many">;
|
|
317529
|
+
}, "strip", z.ZodTypeAny, {
|
|
317530
|
+
sites: {
|
|
317531
|
+
id: string;
|
|
317532
|
+
createdAt: string;
|
|
317533
|
+
name: string;
|
|
317534
|
+
designSystemId: string;
|
|
317535
|
+
indexPageUrl: string;
|
|
317536
|
+
currentVersion: {
|
|
317537
|
+
id: string;
|
|
317538
|
+
createdAt: string;
|
|
317539
|
+
isPublic: boolean;
|
|
317540
|
+
uploadStatus: "InProgress" | "Failed" | "Timeout" | "PendingUpload" | "Completed";
|
|
317541
|
+
};
|
|
317542
|
+
}[];
|
|
317543
|
+
}, {
|
|
317544
|
+
sites: {
|
|
317545
|
+
id: string;
|
|
317546
|
+
createdAt: string;
|
|
317547
|
+
name: string;
|
|
317548
|
+
designSystemId: string;
|
|
317549
|
+
indexPageUrl: string;
|
|
317550
|
+
currentVersion: {
|
|
317551
|
+
id: string;
|
|
317552
|
+
createdAt: string;
|
|
317553
|
+
isPublic: boolean;
|
|
317554
|
+
uploadStatus: "InProgress" | "Failed" | "Timeout" | "PendingUpload" | "Completed";
|
|
317555
|
+
};
|
|
317556
|
+
}[];
|
|
317557
|
+
}>;
|
|
317558
|
+
type DTOStorybookSiteListResponse = z.infer<typeof DTOStorybookSiteListResponse>;
|
|
317559
|
+
declare const DTOStorybookSiteUploadPayload: z.ZodObject<{
|
|
317560
|
+
designSystemId: z.ZodString;
|
|
317561
|
+
isPublic: z.ZodBoolean;
|
|
317562
|
+
name: z.ZodString;
|
|
317563
|
+
}, "strip", z.ZodTypeAny, {
|
|
317564
|
+
name: string;
|
|
317565
|
+
designSystemId: string;
|
|
317566
|
+
isPublic: boolean;
|
|
317567
|
+
}, {
|
|
317568
|
+
name: string;
|
|
317569
|
+
designSystemId: string;
|
|
317570
|
+
isPublic: boolean;
|
|
317571
|
+
}>;
|
|
317572
|
+
type DTOStorybookSiteUploadPayload = z.infer<typeof DTOStorybookSiteUploadPayload>;
|
|
317573
|
+
declare const DTOStorybookSiteUploadResponse: z.ZodObject<{
|
|
317574
|
+
storybookSiteVersion: z.ZodObject<{
|
|
317575
|
+
id: z.ZodString;
|
|
317576
|
+
isPublic: z.ZodBoolean;
|
|
317577
|
+
createdAt: z.ZodString;
|
|
317578
|
+
uploadStatus: z.ZodEnum<["PendingUpload", "Failed", "InProgress", "Completed", "Timeout"]>;
|
|
317579
|
+
}, "strip", z.ZodTypeAny, {
|
|
317580
|
+
id: string;
|
|
317581
|
+
createdAt: string;
|
|
317582
|
+
isPublic: boolean;
|
|
317583
|
+
uploadStatus: "InProgress" | "Failed" | "Timeout" | "PendingUpload" | "Completed";
|
|
317584
|
+
}, {
|
|
317585
|
+
id: string;
|
|
317586
|
+
createdAt: string;
|
|
317587
|
+
isPublic: boolean;
|
|
317588
|
+
uploadStatus: "InProgress" | "Failed" | "Timeout" | "PendingUpload" | "Completed";
|
|
317589
|
+
}>;
|
|
317590
|
+
uploadUrl: z.ZodString;
|
|
317591
|
+
}, "strip", z.ZodTypeAny, {
|
|
317592
|
+
uploadUrl: string;
|
|
317593
|
+
storybookSiteVersion: {
|
|
317594
|
+
id: string;
|
|
317595
|
+
createdAt: string;
|
|
317596
|
+
isPublic: boolean;
|
|
317597
|
+
uploadStatus: "InProgress" | "Failed" | "Timeout" | "PendingUpload" | "Completed";
|
|
317598
|
+
};
|
|
317599
|
+
}, {
|
|
317600
|
+
uploadUrl: string;
|
|
317601
|
+
storybookSiteVersion: {
|
|
317602
|
+
id: string;
|
|
317603
|
+
createdAt: string;
|
|
317604
|
+
isPublic: boolean;
|
|
317605
|
+
uploadStatus: "InProgress" | "Failed" | "Timeout" | "PendingUpload" | "Completed";
|
|
317606
|
+
};
|
|
317607
|
+
}>;
|
|
317608
|
+
type DTOStorybookSiteUploadResponse = z.infer<typeof DTOStorybookSiteUploadResponse>;
|
|
317609
|
+
declare const DTOStorybookSiteVersionResponse: z.ZodObject<{
|
|
317610
|
+
storybookSiteVersion: z.ZodObject<{
|
|
317611
|
+
id: z.ZodString;
|
|
317612
|
+
isPublic: z.ZodBoolean;
|
|
317613
|
+
createdAt: z.ZodString;
|
|
317614
|
+
uploadStatus: z.ZodEnum<["PendingUpload", "Failed", "InProgress", "Completed", "Timeout"]>;
|
|
317615
|
+
}, "strip", z.ZodTypeAny, {
|
|
317616
|
+
id: string;
|
|
317617
|
+
createdAt: string;
|
|
317618
|
+
isPublic: boolean;
|
|
317619
|
+
uploadStatus: "InProgress" | "Failed" | "Timeout" | "PendingUpload" | "Completed";
|
|
317620
|
+
}, {
|
|
317621
|
+
id: string;
|
|
317622
|
+
createdAt: string;
|
|
317623
|
+
isPublic: boolean;
|
|
317624
|
+
uploadStatus: "InProgress" | "Failed" | "Timeout" | "PendingUpload" | "Completed";
|
|
317625
|
+
}>;
|
|
317626
|
+
}, "strip", z.ZodTypeAny, {
|
|
317627
|
+
storybookSiteVersion: {
|
|
317628
|
+
id: string;
|
|
317629
|
+
createdAt: string;
|
|
317630
|
+
isPublic: boolean;
|
|
317631
|
+
uploadStatus: "InProgress" | "Failed" | "Timeout" | "PendingUpload" | "Completed";
|
|
317632
|
+
};
|
|
317633
|
+
}, {
|
|
317634
|
+
storybookSiteVersion: {
|
|
317635
|
+
id: string;
|
|
317636
|
+
createdAt: string;
|
|
317637
|
+
isPublic: boolean;
|
|
317638
|
+
uploadStatus: "InProgress" | "Failed" | "Timeout" | "PendingUpload" | "Completed";
|
|
317639
|
+
};
|
|
317640
|
+
}>;
|
|
317641
|
+
type DTOStorybookSiteVersionResponse = z.infer<typeof DTOStorybookSiteVersionResponse>;
|
|
317642
|
+
|
|
317458
317643
|
declare const DTOThemeOverride: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
317459
317644
|
type: z.ZodLiteral<"Blur">;
|
|
317460
317645
|
data: z.ZodObject<{
|
|
@@ -363122,23 +363307,6 @@ declare class StorybookEntriesEndpoint {
|
|
|
363122
363307
|
delete(dsId: string, entryId: string): Promise<any>;
|
|
363123
363308
|
}
|
|
363124
363309
|
|
|
363125
|
-
declare class StorybookHostingEndpoint {
|
|
363126
|
-
private readonly requestExecutor;
|
|
363127
|
-
constructor(requestExecutor: RequestExecutor);
|
|
363128
|
-
getSignedUploadUrl(dsId: string, body: DTOStorybookUploadUrlRequest): Promise<DTOStorybookUploadUrlResponse>;
|
|
363129
|
-
delete(dsId: string, storybookUploadId: string): Promise<{
|
|
363130
|
-
ok: boolean;
|
|
363131
|
-
}>;
|
|
363132
|
-
getUploadStatus(dsId: string, storybookUploadId: string): Promise<{
|
|
363133
|
-
status: "InProgress" | "Failed" | "Completed" | "Unknown";
|
|
363134
|
-
timestamp?: number | undefined;
|
|
363135
|
-
reason?: string | undefined;
|
|
363136
|
-
}>;
|
|
363137
|
-
getAccessToken(dsId: string, name: string): Promise<{
|
|
363138
|
-
accessToken: string;
|
|
363139
|
-
}>;
|
|
363140
|
-
}
|
|
363141
|
-
|
|
363142
363310
|
declare class DesignSystemsEndpoint {
|
|
363143
363311
|
private readonly requestExecutor;
|
|
363144
363312
|
readonly members: DesignSystemMembersEndpoint;
|
|
@@ -363146,7 +363314,6 @@ declare class DesignSystemsEndpoint {
|
|
|
363146
363314
|
readonly bff: DesignSystemBffEndpoint;
|
|
363147
363315
|
readonly sources: DesignSystemSourcesEndpoint;
|
|
363148
363316
|
readonly storybook: StorybookEntriesEndpoint;
|
|
363149
|
-
readonly storybookHosting: StorybookHostingEndpoint;
|
|
363150
363317
|
readonly contacts: DesignSystemContactsEndpoint;
|
|
363151
363318
|
readonly redirects: DesignSystemPageRedirectsEndpoint;
|
|
363152
363319
|
readonly figmaNodeStructures: FigmaNodeStructuresEndpoint;
|
|
@@ -363811,7 +363978,7 @@ declare class ForgeFeatureArtifactsEndpoint {
|
|
|
363811
363978
|
updatedAt?: string | undefined;
|
|
363812
363979
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
363813
363980
|
error?: {
|
|
363814
|
-
type: "
|
|
363981
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
363815
363982
|
description: string;
|
|
363816
363983
|
} | undefined;
|
|
363817
363984
|
thumbnailUrl?: string | undefined;
|
|
@@ -363866,7 +364033,7 @@ declare class ForgeFeatureIterationsEndpoint {
|
|
|
363866
364033
|
updatedAt?: string | undefined;
|
|
363867
364034
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
363868
364035
|
error?: {
|
|
363869
|
-
type: "
|
|
364036
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
363870
364037
|
description: string;
|
|
363871
364038
|
} | undefined;
|
|
363872
364039
|
thumbnailUrl?: string | undefined;
|
|
@@ -363904,7 +364071,7 @@ declare class ForgeFeatureIterationsEndpoint {
|
|
|
363904
364071
|
updatedAt?: string | undefined;
|
|
363905
364072
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
363906
364073
|
error?: {
|
|
363907
|
-
type: "
|
|
364074
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
363908
364075
|
description: string;
|
|
363909
364076
|
} | undefined;
|
|
363910
364077
|
thumbnailUrl?: string | undefined;
|
|
@@ -363938,7 +364105,7 @@ declare class ForgeFeatureIterationsEndpoint {
|
|
|
363938
364105
|
} | {
|
|
363939
364106
|
success: false;
|
|
363940
364107
|
error: {
|
|
363941
|
-
type: "
|
|
364108
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
363942
364109
|
description: string;
|
|
363943
364110
|
};
|
|
363944
364111
|
}>;
|
|
@@ -364171,7 +364338,7 @@ declare class ForgeProjectFeaturesEndpoint {
|
|
|
364171
364338
|
updatedAt?: string | undefined;
|
|
364172
364339
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
364173
364340
|
error?: {
|
|
364174
|
-
type: "
|
|
364341
|
+
type: "Build" | "PackageInstall" | "Compile" | "Unknown" | "Runtime";
|
|
364175
364342
|
description: string;
|
|
364176
364343
|
} | undefined;
|
|
364177
364344
|
thumbnailUrl?: string | undefined;
|
|
@@ -374524,6 +374691,52 @@ declare class LiveblocksEndpoint {
|
|
|
374524
374691
|
}>;
|
|
374525
374692
|
}
|
|
374526
374693
|
|
|
374694
|
+
declare class StorybookSitesEndpoint {
|
|
374695
|
+
private readonly requestExecutor;
|
|
374696
|
+
constructor(requestExecutor: RequestExecutor);
|
|
374697
|
+
listSites(query: DTOStorybookSiteListQuery): Promise<{
|
|
374698
|
+
sites: {
|
|
374699
|
+
id: string;
|
|
374700
|
+
createdAt: string;
|
|
374701
|
+
name: string;
|
|
374702
|
+
designSystemId: string;
|
|
374703
|
+
indexPageUrl: string;
|
|
374704
|
+
currentVersion: {
|
|
374705
|
+
id: string;
|
|
374706
|
+
createdAt: string;
|
|
374707
|
+
isPublic: boolean;
|
|
374708
|
+
uploadStatus: "InProgress" | "Failed" | "Timeout" | "PendingUpload" | "Completed";
|
|
374709
|
+
};
|
|
374710
|
+
}[];
|
|
374711
|
+
}>;
|
|
374712
|
+
deleteSite(siteId: string): Promise<unknown>;
|
|
374713
|
+
uploadInit(body: DTOStorybookSiteUploadPayload): Promise<{
|
|
374714
|
+
uploadUrl: string;
|
|
374715
|
+
storybookSiteVersion: {
|
|
374716
|
+
id: string;
|
|
374717
|
+
createdAt: string;
|
|
374718
|
+
isPublic: boolean;
|
|
374719
|
+
uploadStatus: "InProgress" | "Failed" | "Timeout" | "PendingUpload" | "Completed";
|
|
374720
|
+
};
|
|
374721
|
+
}>;
|
|
374722
|
+
getVersion(siteVersionId: string): Promise<{
|
|
374723
|
+
storybookSiteVersion: {
|
|
374724
|
+
id: string;
|
|
374725
|
+
createdAt: string;
|
|
374726
|
+
isPublic: boolean;
|
|
374727
|
+
uploadStatus: "InProgress" | "Failed" | "Timeout" | "PendingUpload" | "Completed";
|
|
374728
|
+
};
|
|
374729
|
+
}>;
|
|
374730
|
+
uploadFinailize(siteVersionId: string): Promise<{
|
|
374731
|
+
storybookSiteVersion: {
|
|
374732
|
+
id: string;
|
|
374733
|
+
createdAt: string;
|
|
374734
|
+
isPublic: boolean;
|
|
374735
|
+
uploadStatus: "InProgress" | "Failed" | "Timeout" | "PendingUpload" | "Completed";
|
|
374736
|
+
};
|
|
374737
|
+
}>;
|
|
374738
|
+
}
|
|
374739
|
+
|
|
374527
374740
|
declare class ThreadsEndpoint {
|
|
374528
374741
|
private readonly requestExecutor;
|
|
374529
374742
|
constructor(requestExecutor: RequestExecutor);
|
|
@@ -374898,6 +375111,7 @@ declare class SupernovaApiClient {
|
|
|
374898
375111
|
readonly threads: ThreadsEndpoint;
|
|
374899
375112
|
readonly mcpStreams: MCPStreamsEndpoint;
|
|
374900
375113
|
readonly sandboxes: SandboxesEndpoint;
|
|
375114
|
+
readonly storybookSites: StorybookSitesEndpoint;
|
|
374901
375115
|
constructor(config: SupernovaApiClientConfig);
|
|
374902
375116
|
}
|
|
374903
375117
|
|
|
@@ -377710,4 +377924,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
377710
377924
|
reason: ValidationErrorReason | undefined;
|
|
377711
377925
|
};
|
|
377712
377926
|
|
|
377713
|
-
export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateFeatureSandbox, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemUpdateSwitcherInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactGetByIdParam, DTOFeatureArtifactListQuery, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureArtifactWithContentResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationError, DTOFeatureIterationErrorType, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureIterationValidateInput, DTOFeatureIterationValidateResponse, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeaturePublishedStateUpdateInput, DTOFeatureSandbox, DTOFeatureSandboxListResponse, DTOFeatureUpdateThemeInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaExportNodePayload, DTOFigmaExportNodeResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeDocumentGetByIdParam, DTOForgeDocumentGetResponse, DTOForgeEntity, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeMemoryCreateInput, DTOForgeMemoryDeleteInput, DTOForgeMemoryEntry, DTOForgeMemoryEntryListQuery, DTOForgeMemoryEntryListResponse, DTOForgeMemoryEntryResponse, DTOForgeMemoryUpdateInput, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactContentResponse, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextCreated, DTOForgeProjectContextDeleted, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextUpdated, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreated, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetByIdParam, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeatureSandboxUpdated, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectIterationTagSet, DTOForgeProjectIterationUpdated, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberDeleted, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberListQuery, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMemberUpdated, DTOForgeProjectMembersCreated, DTOForgeProjectMembersListResponse, DTOForgeProjectPublishedFeature, DTOForgeProjectPublishedFeatureGetResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomEvent, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdated, DTOForgeRelation, DTOForgeRelationCreate, DTOForgeRelationDelete, DTOForgeRelationListInput, DTOForgeRelationListResponse, DTOForgeRelationType, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemeKnownPreset, DTOForgeTokenThemeSet, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIPWhitelist, DTOIPWhitelistEntry, DTOIPWhitelistResponse, DTOIPWhitelistUpdate, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMCPStream, DTOMCPStreamResponse, DTOMCPStreamUpdateInput, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONotificationBase, DTONotificationChannel, DTONotificationChatMentionPayload, DTONotificationCreateInput, DTONotificationProjectDocumentCommentPayload, DTONotificationProjectInvitationPayload, DTONotificationType, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, DTOProjectContextOverride, DTOProjectContextOverrideInput, DTOProjectContextOverrideResponse, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOSandboxError, DTOSandboxTemplate, DTOSandboxTemplateBuild, DTOSandboxTemplateBuildCreateInput, DTOSandboxTemplateBuildCreateResponse, DTOSandboxTemplateBuildCreated, DTOSandboxTemplateBuildFinalizeResponse, DTOSandboxTemplateBuildFinished, DTOSandboxTemplateBuildResponse, DTOSandboxTemplateFile, DTOSandboxTemplateListResponse, DTOSandboxTemplateQuery, DTOSandboxTemplateResponse, DTOSandboxTemplateVersion, DTOSandboxTemplateVersionCreated, DTOSandboxTemplateVersionDetail, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpcomingChange, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThemesListQuery, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageRetryInput, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadPromptState, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventClientCreate, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTrailEventWithDetails, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateFeatureSandbox, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserEmailSettings, DTOUserEmailSettingsUpdatePayload, DTOUserGetResponse, DTOUserNotificationSettings, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceDefaultProjectAccessMode, DTOWorkspaceDefaultProjectRole, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceRoomEvent, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeDocumentsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationTagsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeMemoryEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, MCPStreamsEndpoint, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, SandboxTemplateBuildsEndpoint, SandboxTemplatesEndpoint, SandboxesEndpoint, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, type VariableCollections, VariableCollectionsSchema, VariableMode, VariableValue, type Variables, VariablesMapping, VariablesSchema, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceBillingEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspaceSubscriptionEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, zodQueryBoolean };
|
|
377927
|
+
export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateFeatureSandbox, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemUpdateSwitcherInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactGetByIdParam, DTOFeatureArtifactListQuery, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureArtifactWithContentResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationError, DTOFeatureIterationErrorType, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureIterationValidateInput, DTOFeatureIterationValidateResponse, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeaturePublishedStateUpdateInput, DTOFeatureSandbox, DTOFeatureSandboxListResponse, DTOFeatureUpdateThemeInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaExportNodePayload, DTOFigmaExportNodeResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeDocumentGetByIdParam, DTOForgeDocumentGetResponse, DTOForgeEntity, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeMemoryCreateInput, DTOForgeMemoryDeleteInput, DTOForgeMemoryEntry, DTOForgeMemoryEntryListQuery, DTOForgeMemoryEntryListResponse, DTOForgeMemoryEntryResponse, DTOForgeMemoryUpdateInput, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactContentResponse, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextCreated, DTOForgeProjectContextDeleted, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextUpdated, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreated, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetByIdParam, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeatureSandboxUpdated, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectIterationTagSet, DTOForgeProjectIterationUpdated, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberDeleted, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberListQuery, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMemberUpdated, DTOForgeProjectMembersCreated, DTOForgeProjectMembersListResponse, DTOForgeProjectPublishedFeature, DTOForgeProjectPublishedFeatureGetResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomEvent, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdated, DTOForgeRelation, DTOForgeRelationCreate, DTOForgeRelationDelete, DTOForgeRelationListInput, DTOForgeRelationListResponse, DTOForgeRelationType, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemeKnownPreset, DTOForgeTokenThemeSet, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIPWhitelist, DTOIPWhitelistEntry, DTOIPWhitelistResponse, DTOIPWhitelistUpdate, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMCPStream, DTOMCPStreamResponse, DTOMCPStreamUpdateInput, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONotificationBase, DTONotificationChannel, DTONotificationChatMentionPayload, DTONotificationCreateInput, DTONotificationProjectDocumentCommentPayload, DTONotificationProjectInvitationPayload, DTONotificationType, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, DTOProjectContextOverride, DTOProjectContextOverrideInput, DTOProjectContextOverrideResponse, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOSandboxError, DTOSandboxTemplate, DTOSandboxTemplateBuild, DTOSandboxTemplateBuildCreateInput, DTOSandboxTemplateBuildCreateResponse, DTOSandboxTemplateBuildCreated, DTOSandboxTemplateBuildFinalizeResponse, DTOSandboxTemplateBuildFinished, DTOSandboxTemplateBuildResponse, DTOSandboxTemplateFile, DTOSandboxTemplateListResponse, DTOSandboxTemplateQuery, DTOSandboxTemplateResponse, DTOSandboxTemplateVersion, DTOSandboxTemplateVersionCreated, DTOSandboxTemplateVersionDetail, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSite, DTOStorybookSiteListQuery, DTOStorybookSiteListResponse, DTOStorybookSiteUploadPayload, DTOStorybookSiteUploadResponse, DTOStorybookSiteVersion, DTOStorybookSiteVersionResponse, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpcomingChange, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThemesListQuery, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageRetryInput, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadPromptState, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventClientCreate, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTrailEventWithDetails, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateFeatureSandbox, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserEmailSettings, DTOUserEmailSettingsUpdatePayload, DTOUserGetResponse, DTOUserNotificationSettings, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceDefaultProjectAccessMode, DTOWorkspaceDefaultProjectRole, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceRoomEvent, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeDocumentsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationTagsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeMemoryEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, MCPStreamsEndpoint, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, SandboxTemplateBuildsEndpoint, SandboxTemplatesEndpoint, SandboxesEndpoint, StorybookEntriesEndpoint, StorybookSitesEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, type VariableCollections, VariableCollectionsSchema, VariableMode, VariableValue, type Variables, VariablesMapping, VariablesSchema, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceBillingEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspaceSubscriptionEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, zodQueryBoolean };
|