@supernova-studio/client 1.48.1 → 1.48.3
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 +188 -1
- package/dist/index.d.ts +188 -1
- package/dist/index.js +27 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +26 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -69483,6 +69483,19 @@ declare const DTOFeatureArtifact: z$1.ZodObject<{
|
|
|
69483
69483
|
type DTOFeatureArtifact = z$1.infer<typeof DTOFeatureArtifact>;
|
|
69484
69484
|
declare const DTOFeatureIterationState: z$1.ZodEnum<["InProgress", "Success", "Error", "Timeout"]>;
|
|
69485
69485
|
type DTOFeatureIterationState = z$1.infer<typeof DTOFeatureIterationState>;
|
|
69486
|
+
declare const DTOFeatureIterationErrorType: z$1.ZodEnum<["PackageInstall", "Build", "Unknown"]>;
|
|
69487
|
+
type DTOFeatureIterationErrorType = z$1.infer<typeof DTOFeatureIterationErrorType>;
|
|
69488
|
+
declare const DTOFeatureIterationError: z$1.ZodObject<{
|
|
69489
|
+
description: z$1.ZodString;
|
|
69490
|
+
type: z$1.ZodEnum<["PackageInstall", "Build", "Unknown"]>;
|
|
69491
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
69492
|
+
type: "Unknown" | "Build" | "PackageInstall";
|
|
69493
|
+
description: string;
|
|
69494
|
+
}, {
|
|
69495
|
+
type: "Unknown" | "Build" | "PackageInstall";
|
|
69496
|
+
description: string;
|
|
69497
|
+
}>;
|
|
69498
|
+
type DTOFeatureIterationError = z$1.infer<typeof DTOFeatureIterationError>;
|
|
69486
69499
|
declare const DTOFeatureIteration: z$1.ZodObject<{
|
|
69487
69500
|
id: z$1.ZodString;
|
|
69488
69501
|
/**
|
|
@@ -69516,8 +69529,24 @@ declare const DTOFeatureIteration: z$1.ZodObject<{
|
|
|
69516
69529
|
/**
|
|
69517
69530
|
* Description of a sandbox error if there were any (such as during `npm i` or `npm run dev`).
|
|
69518
69531
|
* To be used for "fix with AI"
|
|
69532
|
+
*
|
|
69533
|
+
* @deprecated use `error.description` instead
|
|
69519
69534
|
*/
|
|
69520
69535
|
errorDescription: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
69536
|
+
/**
|
|
69537
|
+
* Description of a sandbox error if there were any (such as during `npm i` or `npm run build`).
|
|
69538
|
+
* To be used for "fix with AI"
|
|
69539
|
+
*/
|
|
69540
|
+
error: z$1.ZodOptional<z$1.ZodObject<{
|
|
69541
|
+
description: z$1.ZodString;
|
|
69542
|
+
type: z$1.ZodEnum<["PackageInstall", "Build", "Unknown"]>;
|
|
69543
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
69544
|
+
type: "Unknown" | "Build" | "PackageInstall";
|
|
69545
|
+
description: string;
|
|
69546
|
+
}, {
|
|
69547
|
+
type: "Unknown" | "Build" | "PackageInstall";
|
|
69548
|
+
description: string;
|
|
69549
|
+
}>>;
|
|
69521
69550
|
/**
|
|
69522
69551
|
* The cost in credits to generate this iteration
|
|
69523
69552
|
*/
|
|
@@ -69609,6 +69638,10 @@ declare const DTOFeatureIteration: z$1.ZodObject<{
|
|
|
69609
69638
|
startedFromMessageId: string;
|
|
69610
69639
|
updatedAt?: string | undefined;
|
|
69611
69640
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
69641
|
+
error?: {
|
|
69642
|
+
type: "Unknown" | "Build" | "PackageInstall";
|
|
69643
|
+
description: string;
|
|
69644
|
+
} | undefined;
|
|
69612
69645
|
thumbnailUrl?: string | undefined;
|
|
69613
69646
|
baseIterationId?: string | undefined;
|
|
69614
69647
|
isInProgress?: boolean | undefined;
|
|
@@ -69640,6 +69673,10 @@ declare const DTOFeatureIteration: z$1.ZodObject<{
|
|
|
69640
69673
|
startedFromMessageId: string;
|
|
69641
69674
|
updatedAt?: string | undefined;
|
|
69642
69675
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
69676
|
+
error?: {
|
|
69677
|
+
type: "Unknown" | "Build" | "PackageInstall";
|
|
69678
|
+
description: string;
|
|
69679
|
+
} | undefined;
|
|
69643
69680
|
thumbnailUrl?: string | undefined;
|
|
69644
69681
|
baseIterationId?: string | undefined;
|
|
69645
69682
|
isInProgress?: boolean | undefined;
|
|
@@ -69948,8 +69985,24 @@ declare const DTOFeatureIterationCreateInput: z$1.ZodObject<Pick<{
|
|
|
69948
69985
|
/**
|
|
69949
69986
|
* Description of a sandbox error if there were any (such as during `npm i` or `npm run dev`).
|
|
69950
69987
|
* To be used for "fix with AI"
|
|
69988
|
+
*
|
|
69989
|
+
* @deprecated use `error.description` instead
|
|
69951
69990
|
*/
|
|
69952
69991
|
errorDescription: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
69992
|
+
/**
|
|
69993
|
+
* Description of a sandbox error if there were any (such as during `npm i` or `npm run build`).
|
|
69994
|
+
* To be used for "fix with AI"
|
|
69995
|
+
*/
|
|
69996
|
+
error: z$1.ZodOptional<z$1.ZodObject<{
|
|
69997
|
+
description: z$1.ZodString;
|
|
69998
|
+
type: z$1.ZodEnum<["PackageInstall", "Build", "Unknown"]>;
|
|
69999
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
70000
|
+
type: "Unknown" | "Build" | "PackageInstall";
|
|
70001
|
+
description: string;
|
|
70002
|
+
}, {
|
|
70003
|
+
type: "Unknown" | "Build" | "PackageInstall";
|
|
70004
|
+
description: string;
|
|
70005
|
+
}>>;
|
|
69953
70006
|
/**
|
|
69954
70007
|
* The cost in credits to generate this iteration
|
|
69955
70008
|
*/
|
|
@@ -70208,6 +70261,17 @@ declare const DTOFeatureIterationUpdateArtifactsInput: z$1.ZodObject<{
|
|
|
70208
70261
|
name?: string | undefined;
|
|
70209
70262
|
}>;
|
|
70210
70263
|
type DTOFeatureIterationUpdateArtifactsInput = z$1.infer<typeof DTOFeatureIterationUpdateArtifactsInput>;
|
|
70264
|
+
declare const DTOFeatureIterationValidateInput: z$1.ZodObject<{
|
|
70265
|
+
id: z$1.ZodString;
|
|
70266
|
+
messageId: z$1.ZodString;
|
|
70267
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
70268
|
+
id: string;
|
|
70269
|
+
messageId: string;
|
|
70270
|
+
}, {
|
|
70271
|
+
id: string;
|
|
70272
|
+
messageId: string;
|
|
70273
|
+
}>;
|
|
70274
|
+
type DTOFeatureIterationValidateInput = z$1.infer<typeof DTOFeatureIterationValidateInput>;
|
|
70211
70275
|
declare const DTOFeatureIterationUpdateArtifactsByMessageInput: z$1.ZodObject<{
|
|
70212
70276
|
messageId: z$1.ZodString;
|
|
70213
70277
|
name: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -70853,8 +70917,24 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
70853
70917
|
/**
|
|
70854
70918
|
* Description of a sandbox error if there were any (such as during `npm i` or `npm run dev`).
|
|
70855
70919
|
* To be used for "fix with AI"
|
|
70920
|
+
*
|
|
70921
|
+
* @deprecated use `error.description` instead
|
|
70856
70922
|
*/
|
|
70857
70923
|
errorDescription: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
70924
|
+
/**
|
|
70925
|
+
* Description of a sandbox error if there were any (such as during `npm i` or `npm run build`).
|
|
70926
|
+
* To be used for "fix with AI"
|
|
70927
|
+
*/
|
|
70928
|
+
error: z$1.ZodOptional<z$1.ZodObject<{
|
|
70929
|
+
description: z$1.ZodString;
|
|
70930
|
+
type: z$1.ZodEnum<["PackageInstall", "Build", "Unknown"]>;
|
|
70931
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
70932
|
+
type: "Unknown" | "Build" | "PackageInstall";
|
|
70933
|
+
description: string;
|
|
70934
|
+
}, {
|
|
70935
|
+
type: "Unknown" | "Build" | "PackageInstall";
|
|
70936
|
+
description: string;
|
|
70937
|
+
}>>;
|
|
70858
70938
|
/**
|
|
70859
70939
|
* The cost in credits to generate this iteration
|
|
70860
70940
|
*/
|
|
@@ -70946,6 +71026,10 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
70946
71026
|
startedFromMessageId: string;
|
|
70947
71027
|
updatedAt?: string | undefined;
|
|
70948
71028
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
71029
|
+
error?: {
|
|
71030
|
+
type: "Unknown" | "Build" | "PackageInstall";
|
|
71031
|
+
description: string;
|
|
71032
|
+
} | undefined;
|
|
70949
71033
|
thumbnailUrl?: string | undefined;
|
|
70950
71034
|
baseIterationId?: string | undefined;
|
|
70951
71035
|
isInProgress?: boolean | undefined;
|
|
@@ -70977,6 +71061,10 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
70977
71061
|
startedFromMessageId: string;
|
|
70978
71062
|
updatedAt?: string | undefined;
|
|
70979
71063
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
71064
|
+
error?: {
|
|
71065
|
+
type: "Unknown" | "Build" | "PackageInstall";
|
|
71066
|
+
description: string;
|
|
71067
|
+
} | undefined;
|
|
70980
71068
|
thumbnailUrl?: string | undefined;
|
|
70981
71069
|
baseIterationId?: string | undefined;
|
|
70982
71070
|
isInProgress?: boolean | undefined;
|
|
@@ -71010,6 +71098,10 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
71010
71098
|
startedFromMessageId: string;
|
|
71011
71099
|
updatedAt?: string | undefined;
|
|
71012
71100
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
71101
|
+
error?: {
|
|
71102
|
+
type: "Unknown" | "Build" | "PackageInstall";
|
|
71103
|
+
description: string;
|
|
71104
|
+
} | undefined;
|
|
71013
71105
|
thumbnailUrl?: string | undefined;
|
|
71014
71106
|
baseIterationId?: string | undefined;
|
|
71015
71107
|
isInProgress?: boolean | undefined;
|
|
@@ -71043,6 +71135,10 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
71043
71135
|
startedFromMessageId: string;
|
|
71044
71136
|
updatedAt?: string | undefined;
|
|
71045
71137
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
71138
|
+
error?: {
|
|
71139
|
+
type: "Unknown" | "Build" | "PackageInstall";
|
|
71140
|
+
description: string;
|
|
71141
|
+
} | undefined;
|
|
71046
71142
|
thumbnailUrl?: string | undefined;
|
|
71047
71143
|
baseIterationId?: string | undefined;
|
|
71048
71144
|
isInProgress?: boolean | undefined;
|
|
@@ -71070,6 +71166,38 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
71070
71166
|
}[];
|
|
71071
71167
|
}>;
|
|
71072
71168
|
type DTOFeatureIterationListResponse = z$1.infer<typeof DTOFeatureIterationListResponse>;
|
|
71169
|
+
declare const DTOFeatureIterationValidateResponse: z$1.ZodDiscriminatedUnion<"success", [z$1.ZodObject<{
|
|
71170
|
+
success: z$1.ZodLiteral<true>;
|
|
71171
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
71172
|
+
success: true;
|
|
71173
|
+
}, {
|
|
71174
|
+
success: true;
|
|
71175
|
+
}>, z$1.ZodObject<{
|
|
71176
|
+
success: z$1.ZodLiteral<false>;
|
|
71177
|
+
error: z$1.ZodObject<{
|
|
71178
|
+
description: z$1.ZodString;
|
|
71179
|
+
type: z$1.ZodEnum<["PackageInstall", "Build", "Unknown"]>;
|
|
71180
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
71181
|
+
type: "Unknown" | "Build" | "PackageInstall";
|
|
71182
|
+
description: string;
|
|
71183
|
+
}, {
|
|
71184
|
+
type: "Unknown" | "Build" | "PackageInstall";
|
|
71185
|
+
description: string;
|
|
71186
|
+
}>;
|
|
71187
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
71188
|
+
success: false;
|
|
71189
|
+
error: {
|
|
71190
|
+
type: "Unknown" | "Build" | "PackageInstall";
|
|
71191
|
+
description: string;
|
|
71192
|
+
};
|
|
71193
|
+
}, {
|
|
71194
|
+
success: false;
|
|
71195
|
+
error: {
|
|
71196
|
+
type: "Unknown" | "Build" | "PackageInstall";
|
|
71197
|
+
description: string;
|
|
71198
|
+
};
|
|
71199
|
+
}>]>;
|
|
71200
|
+
type DTOFeatureIterationValidateResponse = z$1.infer<typeof DTOFeatureIterationValidateResponse>;
|
|
71073
71201
|
declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
71074
71202
|
iteration: z$1.ZodObject<{
|
|
71075
71203
|
id: z$1.ZodString;
|
|
@@ -71104,8 +71232,24 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
|
71104
71232
|
/**
|
|
71105
71233
|
* Description of a sandbox error if there were any (such as during `npm i` or `npm run dev`).
|
|
71106
71234
|
* To be used for "fix with AI"
|
|
71235
|
+
*
|
|
71236
|
+
* @deprecated use `error.description` instead
|
|
71107
71237
|
*/
|
|
71108
71238
|
errorDescription: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
71239
|
+
/**
|
|
71240
|
+
* Description of a sandbox error if there were any (such as during `npm i` or `npm run build`).
|
|
71241
|
+
* To be used for "fix with AI"
|
|
71242
|
+
*/
|
|
71243
|
+
error: z$1.ZodOptional<z$1.ZodObject<{
|
|
71244
|
+
description: z$1.ZodString;
|
|
71245
|
+
type: z$1.ZodEnum<["PackageInstall", "Build", "Unknown"]>;
|
|
71246
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
71247
|
+
type: "Unknown" | "Build" | "PackageInstall";
|
|
71248
|
+
description: string;
|
|
71249
|
+
}, {
|
|
71250
|
+
type: "Unknown" | "Build" | "PackageInstall";
|
|
71251
|
+
description: string;
|
|
71252
|
+
}>>;
|
|
71109
71253
|
/**
|
|
71110
71254
|
* The cost in credits to generate this iteration
|
|
71111
71255
|
*/
|
|
@@ -71197,6 +71341,10 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
|
71197
71341
|
startedFromMessageId: string;
|
|
71198
71342
|
updatedAt?: string | undefined;
|
|
71199
71343
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
71344
|
+
error?: {
|
|
71345
|
+
type: "Unknown" | "Build" | "PackageInstall";
|
|
71346
|
+
description: string;
|
|
71347
|
+
} | undefined;
|
|
71200
71348
|
thumbnailUrl?: string | undefined;
|
|
71201
71349
|
baseIterationId?: string | undefined;
|
|
71202
71350
|
isInProgress?: boolean | undefined;
|
|
@@ -71228,6 +71376,10 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
|
71228
71376
|
startedFromMessageId: string;
|
|
71229
71377
|
updatedAt?: string | undefined;
|
|
71230
71378
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
71379
|
+
error?: {
|
|
71380
|
+
type: "Unknown" | "Build" | "PackageInstall";
|
|
71381
|
+
description: string;
|
|
71382
|
+
} | undefined;
|
|
71231
71383
|
thumbnailUrl?: string | undefined;
|
|
71232
71384
|
baseIterationId?: string | undefined;
|
|
71233
71385
|
isInProgress?: boolean | undefined;
|
|
@@ -71261,6 +71413,10 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
|
71261
71413
|
startedFromMessageId: string;
|
|
71262
71414
|
updatedAt?: string | undefined;
|
|
71263
71415
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
71416
|
+
error?: {
|
|
71417
|
+
type: "Unknown" | "Build" | "PackageInstall";
|
|
71418
|
+
description: string;
|
|
71419
|
+
} | undefined;
|
|
71264
71420
|
thumbnailUrl?: string | undefined;
|
|
71265
71421
|
baseIterationId?: string | undefined;
|
|
71266
71422
|
isInProgress?: boolean | undefined;
|
|
@@ -71294,6 +71450,10 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
|
71294
71450
|
startedFromMessageId: string;
|
|
71295
71451
|
updatedAt?: string | undefined;
|
|
71296
71452
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
71453
|
+
error?: {
|
|
71454
|
+
type: "Unknown" | "Build" | "PackageInstall";
|
|
71455
|
+
description: string;
|
|
71456
|
+
} | undefined;
|
|
71297
71457
|
thumbnailUrl?: string | undefined;
|
|
71298
71458
|
baseIterationId?: string | undefined;
|
|
71299
71459
|
isInProgress?: boolean | undefined;
|
|
@@ -167225,6 +167385,7 @@ declare const DTOForgeProject: z.ZodObject<{
|
|
|
167225
167385
|
tokenThemeIds: string[];
|
|
167226
167386
|
}[] | undefined;
|
|
167227
167387
|
}>>;
|
|
167388
|
+
liveblocksRoomId: z.ZodOptional<z.ZodString>;
|
|
167228
167389
|
}, "strip", z.ZodTypeAny, {
|
|
167229
167390
|
id: string;
|
|
167230
167391
|
createdAt: Date;
|
|
@@ -167281,6 +167442,7 @@ declare const DTOForgeProject: z.ZodObject<{
|
|
|
167281
167442
|
numberOfFeatures: number;
|
|
167282
167443
|
description?: string | undefined;
|
|
167283
167444
|
emoji?: string | undefined;
|
|
167445
|
+
liveblocksRoomId?: string | undefined;
|
|
167284
167446
|
createdByUserId?: string | undefined;
|
|
167285
167447
|
context?: {
|
|
167286
167448
|
id: string;
|
|
@@ -168315,6 +168477,7 @@ declare const DTOForgeProject: z.ZodObject<{
|
|
|
168315
168477
|
description?: string | undefined;
|
|
168316
168478
|
emoji?: string | undefined;
|
|
168317
168479
|
tags?: string[] | undefined;
|
|
168480
|
+
liveblocksRoomId?: string | undefined;
|
|
168318
168481
|
createdByUserId?: string | undefined;
|
|
168319
168482
|
context?: {
|
|
168320
168483
|
id: string;
|
|
@@ -178093,6 +178256,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
178093
178256
|
tokenThemeIds: string[];
|
|
178094
178257
|
}[] | undefined;
|
|
178095
178258
|
}>>;
|
|
178259
|
+
liveblocksRoomId: z.ZodOptional<z.ZodString>;
|
|
178096
178260
|
}, "name" | "description" | "emoji" | "tags" | "accessMode" | "instruction" | "defaultRole" | "tokenThemeSetId"> & {
|
|
178097
178261
|
/** @deprecated use `name` and `description` properties on project */
|
|
178098
178262
|
meta: z.ZodOptional<z.ZodObject<{
|
|
@@ -187972,6 +188136,7 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
187972
188136
|
tokenThemeIds: string[];
|
|
187973
188137
|
}[] | undefined;
|
|
187974
188138
|
}>>;
|
|
188139
|
+
liveblocksRoomId: z.ZodOptional<z.ZodString>;
|
|
187975
188140
|
} & {
|
|
187976
188141
|
effectiveRole: z.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
187977
188142
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -188031,6 +188196,7 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
188031
188196
|
numberOfFeatures: number;
|
|
188032
188197
|
description?: string | undefined;
|
|
188033
188198
|
emoji?: string | undefined;
|
|
188199
|
+
liveblocksRoomId?: string | undefined;
|
|
188034
188200
|
createdByUserId?: string | undefined;
|
|
188035
188201
|
context?: {
|
|
188036
188202
|
id: string;
|
|
@@ -189066,6 +189232,7 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
189066
189232
|
description?: string | undefined;
|
|
189067
189233
|
emoji?: string | undefined;
|
|
189068
189234
|
tags?: string[] | undefined;
|
|
189235
|
+
liveblocksRoomId?: string | undefined;
|
|
189069
189236
|
createdByUserId?: string | undefined;
|
|
189070
189237
|
context?: {
|
|
189071
189238
|
id: string;
|
|
@@ -190105,6 +190272,7 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
190105
190272
|
numberOfFeatures: number;
|
|
190106
190273
|
description?: string | undefined;
|
|
190107
190274
|
emoji?: string | undefined;
|
|
190275
|
+
liveblocksRoomId?: string | undefined;
|
|
190108
190276
|
createdByUserId?: string | undefined;
|
|
190109
190277
|
context?: {
|
|
190110
190278
|
id: string;
|
|
@@ -191142,6 +191310,7 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
191142
191310
|
description?: string | undefined;
|
|
191143
191311
|
emoji?: string | undefined;
|
|
191144
191312
|
tags?: string[] | undefined;
|
|
191313
|
+
liveblocksRoomId?: string | undefined;
|
|
191145
191314
|
createdByUserId?: string | undefined;
|
|
191146
191315
|
context?: {
|
|
191147
191316
|
id: string;
|
|
@@ -200922,6 +201091,7 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
200922
201091
|
tokenThemeIds: string[];
|
|
200923
201092
|
}[] | undefined;
|
|
200924
201093
|
}>>;
|
|
201094
|
+
liveblocksRoomId: z.ZodOptional<z.ZodString>;
|
|
200925
201095
|
} & {
|
|
200926
201096
|
effectiveRole: z.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
200927
201097
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -200981,6 +201151,7 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
200981
201151
|
numberOfFeatures: number;
|
|
200982
201152
|
description?: string | undefined;
|
|
200983
201153
|
emoji?: string | undefined;
|
|
201154
|
+
liveblocksRoomId?: string | undefined;
|
|
200984
201155
|
createdByUserId?: string | undefined;
|
|
200985
201156
|
context?: {
|
|
200986
201157
|
id: string;
|
|
@@ -202016,6 +202187,7 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
202016
202187
|
description?: string | undefined;
|
|
202017
202188
|
emoji?: string | undefined;
|
|
202018
202189
|
tags?: string[] | undefined;
|
|
202190
|
+
liveblocksRoomId?: string | undefined;
|
|
202019
202191
|
createdByUserId?: string | undefined;
|
|
202020
202192
|
context?: {
|
|
202021
202193
|
id: string;
|
|
@@ -203055,6 +203227,7 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
203055
203227
|
numberOfFeatures: number;
|
|
203056
203228
|
description?: string | undefined;
|
|
203057
203229
|
emoji?: string | undefined;
|
|
203230
|
+
liveblocksRoomId?: string | undefined;
|
|
203058
203231
|
createdByUserId?: string | undefined;
|
|
203059
203232
|
context?: {
|
|
203060
203233
|
id: string;
|
|
@@ -204092,6 +204265,7 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
204092
204265
|
description?: string | undefined;
|
|
204093
204266
|
emoji?: string | undefined;
|
|
204094
204267
|
tags?: string[] | undefined;
|
|
204268
|
+
liveblocksRoomId?: string | undefined;
|
|
204095
204269
|
createdByUserId?: string | undefined;
|
|
204096
204270
|
context?: {
|
|
204097
204271
|
id: string;
|
|
@@ -251251,6 +251425,10 @@ declare class ForgeFeatureIterationsEndpoint {
|
|
|
251251
251425
|
startedFromMessageId: string;
|
|
251252
251426
|
updatedAt?: string | undefined;
|
|
251253
251427
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
251428
|
+
error?: {
|
|
251429
|
+
type: "Unknown" | "Build" | "PackageInstall";
|
|
251430
|
+
description: string;
|
|
251431
|
+
} | undefined;
|
|
251254
251432
|
thumbnailUrl?: string | undefined;
|
|
251255
251433
|
baseIterationId?: string | undefined;
|
|
251256
251434
|
isInProgress?: boolean | undefined;
|
|
@@ -251438,6 +251616,10 @@ declare class ForgeProjectFeaturesEndpoint {
|
|
|
251438
251616
|
startedFromMessageId: string;
|
|
251439
251617
|
updatedAt?: string | undefined;
|
|
251440
251618
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
251619
|
+
error?: {
|
|
251620
|
+
type: "Unknown" | "Build" | "PackageInstall";
|
|
251621
|
+
description: string;
|
|
251622
|
+
} | undefined;
|
|
251441
251623
|
thumbnailUrl?: string | undefined;
|
|
251442
251624
|
baseIterationId?: string | undefined;
|
|
251443
251625
|
isInProgress?: boolean | undefined;
|
|
@@ -251836,6 +252018,7 @@ declare class ForgeProjectsEndpoint {
|
|
|
251836
252018
|
numberOfFeatures: number;
|
|
251837
252019
|
description?: string | undefined;
|
|
251838
252020
|
emoji?: string | undefined;
|
|
252021
|
+
liveblocksRoomId?: string | undefined;
|
|
251839
252022
|
createdByUserId?: string | undefined;
|
|
251840
252023
|
context?: {
|
|
251841
252024
|
id: string;
|
|
@@ -252875,6 +253058,7 @@ declare class ForgeProjectsEndpoint {
|
|
|
252875
253058
|
numberOfFeatures: number;
|
|
252876
253059
|
description?: string | undefined;
|
|
252877
253060
|
emoji?: string | undefined;
|
|
253061
|
+
liveblocksRoomId?: string | undefined;
|
|
252878
253062
|
createdByUserId?: string | undefined;
|
|
252879
253063
|
context?: {
|
|
252880
253064
|
id: string;
|
|
@@ -253914,6 +254098,7 @@ declare class ForgeProjectsEndpoint {
|
|
|
253914
254098
|
numberOfFeatures: number;
|
|
253915
254099
|
description?: string | undefined;
|
|
253916
254100
|
emoji?: string | undefined;
|
|
254101
|
+
liveblocksRoomId?: string | undefined;
|
|
253917
254102
|
createdByUserId?: string | undefined;
|
|
253918
254103
|
context?: {
|
|
253919
254104
|
id: string;
|
|
@@ -254953,6 +255138,7 @@ declare class ForgeProjectsEndpoint {
|
|
|
254953
255138
|
numberOfFeatures: number;
|
|
254954
255139
|
description?: string | undefined;
|
|
254955
255140
|
emoji?: string | undefined;
|
|
255141
|
+
liveblocksRoomId?: string | undefined;
|
|
254956
255142
|
createdByUserId?: string | undefined;
|
|
254957
255143
|
context?: {
|
|
254958
255144
|
id: string;
|
|
@@ -255992,6 +256178,7 @@ declare class ForgeProjectsEndpoint {
|
|
|
255992
256178
|
numberOfFeatures: number;
|
|
255993
256179
|
description?: string | undefined;
|
|
255994
256180
|
emoji?: string | undefined;
|
|
256181
|
+
liveblocksRoomId?: string | undefined;
|
|
255995
256182
|
createdByUserId?: string | undefined;
|
|
255996
256183
|
context?: {
|
|
255997
256184
|
id: string;
|
|
@@ -261786,4 +261973,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
261786
261973
|
reason: ValidationErrorReason | undefined;
|
|
261787
261974
|
};
|
|
261788
261975
|
|
|
261789
|
-
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, 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, 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, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, 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, DTOForgeEntity, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, 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, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, 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, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMCPStream, DTOMCPStreamResponse, DTOMCPStreamUpdateInput, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, 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, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOSandboxError, 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, 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, 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, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, 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, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, 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, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, 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 };
|
|
261976
|
+
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, 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, 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, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, 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, DTOFeatureSandbox, 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, DTOForgeEntity, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, 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, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, 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, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMCPStream, DTOMCPStreamResponse, DTOMCPStreamUpdateInput, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, 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, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOSandboxError, 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, 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, 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, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, 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, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, 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, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, 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 };
|