@supernova-studio/client 1.19.3 → 1.20.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 +435 -2
- package/dist/index.d.ts +435 -2
- package/dist/index.js +118 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2162 -2048
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -68545,17 +68545,29 @@ declare const DTOFeatureArtifact: z__default.ZodObject<{
|
|
|
68545
68545
|
*/
|
|
68546
68546
|
name: z__default.ZodString;
|
|
68547
68547
|
/**
|
|
68548
|
-
*
|
|
68548
|
+
* Id of the project file that holds content of this artifact
|
|
68549
|
+
*/
|
|
68550
|
+
fileId: z__default.ZodString;
|
|
68551
|
+
/**
|
|
68552
|
+
* URL of the feature artifact's contents
|
|
68549
68553
|
*/
|
|
68550
68554
|
url: z__default.ZodString;
|
|
68555
|
+
createdAt: z__default.ZodDate;
|
|
68556
|
+
updatedAt: z__default.ZodDate;
|
|
68551
68557
|
}, "strip", z__default.ZodTypeAny, {
|
|
68552
68558
|
id: string;
|
|
68559
|
+
createdAt: Date;
|
|
68553
68560
|
name: string;
|
|
68554
68561
|
url: string;
|
|
68562
|
+
updatedAt: Date;
|
|
68563
|
+
fileId: string;
|
|
68555
68564
|
}, {
|
|
68556
68565
|
id: string;
|
|
68566
|
+
createdAt: Date;
|
|
68557
68567
|
name: string;
|
|
68558
68568
|
url: string;
|
|
68569
|
+
updatedAt: Date;
|
|
68570
|
+
fileId: string;
|
|
68559
68571
|
}>;
|
|
68560
68572
|
type DTOFeatureArtifact = z__default.infer<typeof DTOFeatureArtifact>;
|
|
68561
68573
|
declare const DTOFeatureIteration: z__default.ZodObject<{
|
|
@@ -68698,6 +68710,28 @@ declare const DTOFeatureMessageReactionCreateInput: z__default.ZodObject<{
|
|
|
68698
68710
|
messageId: string;
|
|
68699
68711
|
}>;
|
|
68700
68712
|
type DTOFeatureMessageReactionCreateInput = z__default.infer<typeof DTOFeatureMessageReactionCreateInput>;
|
|
68713
|
+
declare const DTOFeatureArtifactCreateInput: z__default.ZodObject<{
|
|
68714
|
+
id: z__default.ZodString;
|
|
68715
|
+
name: z__default.ZodString;
|
|
68716
|
+
fileId: z__default.ZodString;
|
|
68717
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
68718
|
+
id: string;
|
|
68719
|
+
name: string;
|
|
68720
|
+
fileId: string;
|
|
68721
|
+
}, {
|
|
68722
|
+
id: string;
|
|
68723
|
+
name: string;
|
|
68724
|
+
fileId: string;
|
|
68725
|
+
}>;
|
|
68726
|
+
type DTOFeatureArtifactCreateInput = z__default.infer<typeof DTOFeatureArtifactCreateInput>;
|
|
68727
|
+
declare const DTOFeatureArtifactDeleteInput: z__default.ZodObject<{
|
|
68728
|
+
id: z__default.ZodString;
|
|
68729
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
68730
|
+
id: string;
|
|
68731
|
+
}, {
|
|
68732
|
+
id: string;
|
|
68733
|
+
}>;
|
|
68734
|
+
type DTOFeatureArtifactDeleteInput = z__default.infer<typeof DTOFeatureArtifactDeleteInput>;
|
|
68701
68735
|
declare const DTOFeatureMessageResponse: z__default.ZodObject<{
|
|
68702
68736
|
message: z__default.ZodObject<{
|
|
68703
68737
|
id: z__default.ZodString;
|
|
@@ -69094,6 +69128,110 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
|
|
|
69094
69128
|
lastSeenMessageId?: string | undefined;
|
|
69095
69129
|
}>;
|
|
69096
69130
|
type DTOFeatureMessageListResponse = z__default.infer<typeof DTOFeatureMessageListResponse>;
|
|
69131
|
+
declare const DTOFeatureArtifactResponse: z__default.ZodObject<{
|
|
69132
|
+
artifact: z__default.ZodObject<{
|
|
69133
|
+
id: z__default.ZodString;
|
|
69134
|
+
/**
|
|
69135
|
+
* Name of the artifact, can include path like `src/components/button.tsx`
|
|
69136
|
+
*/
|
|
69137
|
+
name: z__default.ZodString;
|
|
69138
|
+
/**
|
|
69139
|
+
* Id of the project file that holds content of this artifact
|
|
69140
|
+
*/
|
|
69141
|
+
fileId: z__default.ZodString;
|
|
69142
|
+
/**
|
|
69143
|
+
* URL of the feature artifact's contents
|
|
69144
|
+
*/
|
|
69145
|
+
url: z__default.ZodString;
|
|
69146
|
+
createdAt: z__default.ZodDate;
|
|
69147
|
+
updatedAt: z__default.ZodDate;
|
|
69148
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
69149
|
+
id: string;
|
|
69150
|
+
createdAt: Date;
|
|
69151
|
+
name: string;
|
|
69152
|
+
url: string;
|
|
69153
|
+
updatedAt: Date;
|
|
69154
|
+
fileId: string;
|
|
69155
|
+
}, {
|
|
69156
|
+
id: string;
|
|
69157
|
+
createdAt: Date;
|
|
69158
|
+
name: string;
|
|
69159
|
+
url: string;
|
|
69160
|
+
updatedAt: Date;
|
|
69161
|
+
fileId: string;
|
|
69162
|
+
}>;
|
|
69163
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
69164
|
+
artifact: {
|
|
69165
|
+
id: string;
|
|
69166
|
+
createdAt: Date;
|
|
69167
|
+
name: string;
|
|
69168
|
+
url: string;
|
|
69169
|
+
updatedAt: Date;
|
|
69170
|
+
fileId: string;
|
|
69171
|
+
};
|
|
69172
|
+
}, {
|
|
69173
|
+
artifact: {
|
|
69174
|
+
id: string;
|
|
69175
|
+
createdAt: Date;
|
|
69176
|
+
name: string;
|
|
69177
|
+
url: string;
|
|
69178
|
+
updatedAt: Date;
|
|
69179
|
+
fileId: string;
|
|
69180
|
+
};
|
|
69181
|
+
}>;
|
|
69182
|
+
type DTOFeatureArtifactResponse = z__default.infer<typeof DTOFeatureArtifactResponse>;
|
|
69183
|
+
declare const DTOFeatureArtifactListResponse: z__default.ZodObject<{
|
|
69184
|
+
artifacts: z__default.ZodArray<z__default.ZodObject<{
|
|
69185
|
+
id: z__default.ZodString;
|
|
69186
|
+
/**
|
|
69187
|
+
* Name of the artifact, can include path like `src/components/button.tsx`
|
|
69188
|
+
*/
|
|
69189
|
+
name: z__default.ZodString;
|
|
69190
|
+
/**
|
|
69191
|
+
* Id of the project file that holds content of this artifact
|
|
69192
|
+
*/
|
|
69193
|
+
fileId: z__default.ZodString;
|
|
69194
|
+
/**
|
|
69195
|
+
* URL of the feature artifact's contents
|
|
69196
|
+
*/
|
|
69197
|
+
url: z__default.ZodString;
|
|
69198
|
+
createdAt: z__default.ZodDate;
|
|
69199
|
+
updatedAt: z__default.ZodDate;
|
|
69200
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
69201
|
+
id: string;
|
|
69202
|
+
createdAt: Date;
|
|
69203
|
+
name: string;
|
|
69204
|
+
url: string;
|
|
69205
|
+
updatedAt: Date;
|
|
69206
|
+
fileId: string;
|
|
69207
|
+
}, {
|
|
69208
|
+
id: string;
|
|
69209
|
+
createdAt: Date;
|
|
69210
|
+
name: string;
|
|
69211
|
+
url: string;
|
|
69212
|
+
updatedAt: Date;
|
|
69213
|
+
fileId: string;
|
|
69214
|
+
}>, "many">;
|
|
69215
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
69216
|
+
artifacts: {
|
|
69217
|
+
id: string;
|
|
69218
|
+
createdAt: Date;
|
|
69219
|
+
name: string;
|
|
69220
|
+
url: string;
|
|
69221
|
+
updatedAt: Date;
|
|
69222
|
+
fileId: string;
|
|
69223
|
+
}[];
|
|
69224
|
+
}, {
|
|
69225
|
+
artifacts: {
|
|
69226
|
+
id: string;
|
|
69227
|
+
createdAt: Date;
|
|
69228
|
+
name: string;
|
|
69229
|
+
url: string;
|
|
69230
|
+
updatedAt: Date;
|
|
69231
|
+
fileId: string;
|
|
69232
|
+
}[];
|
|
69233
|
+
}>;
|
|
69234
|
+
type DTOFeatureArtifactListResponse = z__default.infer<typeof DTOFeatureArtifactListResponse>;
|
|
69097
69235
|
declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
|
|
69098
69236
|
type: z__default.ZodLiteral<"MessagesSent">;
|
|
69099
69237
|
data: z__default.ZodArray<z__default.ZodObject<{
|
|
@@ -83009,6 +83147,192 @@ declare const DTOForgeProjectFigmaNodeRenderInput: z$1.ZodObject<{
|
|
|
83009
83147
|
}>;
|
|
83010
83148
|
type DTOForgeProjectFigmaNodeRenderInput = z$1.infer<typeof DTOForgeProjectFigmaNodeRenderInput>;
|
|
83011
83149
|
|
|
83150
|
+
declare const DTOForgeProjectFile: z$1.ZodObject<{
|
|
83151
|
+
id: z$1.ZodString;
|
|
83152
|
+
name: z$1.ZodString;
|
|
83153
|
+
checksum: z$1.ZodString;
|
|
83154
|
+
pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
83155
|
+
url: z$1.ZodString;
|
|
83156
|
+
size: z$1.ZodNumber;
|
|
83157
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
83158
|
+
id: string;
|
|
83159
|
+
name: string;
|
|
83160
|
+
url: string;
|
|
83161
|
+
size: number;
|
|
83162
|
+
checksum: string;
|
|
83163
|
+
pendingUpload?: boolean | undefined;
|
|
83164
|
+
}, {
|
|
83165
|
+
id: string;
|
|
83166
|
+
name: string;
|
|
83167
|
+
url: string;
|
|
83168
|
+
size: number;
|
|
83169
|
+
checksum: string;
|
|
83170
|
+
pendingUpload?: boolean | undefined;
|
|
83171
|
+
}>;
|
|
83172
|
+
type DTOForgeProjectFile = z$1.infer<typeof DTOForgeProjectFile>;
|
|
83173
|
+
declare const DTOForgeProjectFileListResponse: z$1.ZodObject<{
|
|
83174
|
+
files: z$1.ZodArray<z$1.ZodObject<{
|
|
83175
|
+
id: z$1.ZodString;
|
|
83176
|
+
name: z$1.ZodString;
|
|
83177
|
+
checksum: z$1.ZodString;
|
|
83178
|
+
pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
83179
|
+
url: z$1.ZodString;
|
|
83180
|
+
size: z$1.ZodNumber;
|
|
83181
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
83182
|
+
id: string;
|
|
83183
|
+
name: string;
|
|
83184
|
+
url: string;
|
|
83185
|
+
size: number;
|
|
83186
|
+
checksum: string;
|
|
83187
|
+
pendingUpload?: boolean | undefined;
|
|
83188
|
+
}, {
|
|
83189
|
+
id: string;
|
|
83190
|
+
name: string;
|
|
83191
|
+
url: string;
|
|
83192
|
+
size: number;
|
|
83193
|
+
checksum: string;
|
|
83194
|
+
pendingUpload?: boolean | undefined;
|
|
83195
|
+
}>, "many">;
|
|
83196
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
83197
|
+
files: {
|
|
83198
|
+
id: string;
|
|
83199
|
+
name: string;
|
|
83200
|
+
url: string;
|
|
83201
|
+
size: number;
|
|
83202
|
+
checksum: string;
|
|
83203
|
+
pendingUpload?: boolean | undefined;
|
|
83204
|
+
}[];
|
|
83205
|
+
}, {
|
|
83206
|
+
files: {
|
|
83207
|
+
id: string;
|
|
83208
|
+
name: string;
|
|
83209
|
+
url: string;
|
|
83210
|
+
size: number;
|
|
83211
|
+
checksum: string;
|
|
83212
|
+
pendingUpload?: boolean | undefined;
|
|
83213
|
+
}[];
|
|
83214
|
+
}>;
|
|
83215
|
+
type DTOForgeProjectFileListResponse = z$1.infer<typeof DTOForgeProjectFileListResponse>;
|
|
83216
|
+
declare const DTOForgeProjectFileUploadPayloadItem: z$1.ZodObject<{
|
|
83217
|
+
size: z$1.ZodNumber;
|
|
83218
|
+
name: z$1.ZodString;
|
|
83219
|
+
checksum: z$1.ZodString;
|
|
83220
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
83221
|
+
name: string;
|
|
83222
|
+
size: number;
|
|
83223
|
+
checksum: string;
|
|
83224
|
+
}, {
|
|
83225
|
+
name: string;
|
|
83226
|
+
size: number;
|
|
83227
|
+
checksum: string;
|
|
83228
|
+
}>;
|
|
83229
|
+
type DTOForgeProjectFileUploadPayloadItem = z$1.infer<typeof DTOForgeProjectFileUploadPayloadItem>;
|
|
83230
|
+
declare const DTOForgeProjectFileUploadPayload: z$1.ZodObject<{
|
|
83231
|
+
files: z$1.ZodArray<z$1.ZodObject<{
|
|
83232
|
+
size: z$1.ZodNumber;
|
|
83233
|
+
name: z$1.ZodString;
|
|
83234
|
+
checksum: z$1.ZodString;
|
|
83235
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
83236
|
+
name: string;
|
|
83237
|
+
size: number;
|
|
83238
|
+
checksum: string;
|
|
83239
|
+
}, {
|
|
83240
|
+
name: string;
|
|
83241
|
+
size: number;
|
|
83242
|
+
checksum: string;
|
|
83243
|
+
}>, "many">;
|
|
83244
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
83245
|
+
files: {
|
|
83246
|
+
name: string;
|
|
83247
|
+
size: number;
|
|
83248
|
+
checksum: string;
|
|
83249
|
+
}[];
|
|
83250
|
+
}, {
|
|
83251
|
+
files: {
|
|
83252
|
+
name: string;
|
|
83253
|
+
size: number;
|
|
83254
|
+
checksum: string;
|
|
83255
|
+
}[];
|
|
83256
|
+
}>;
|
|
83257
|
+
type DTOForgeProjectFileUploadPayload = z$1.infer<typeof DTOForgeProjectFileUploadPayload>;
|
|
83258
|
+
declare const DTOForgeProjectFileUploadResponse: z$1.ZodObject<{
|
|
83259
|
+
files: z$1.ZodArray<z$1.ZodObject<{
|
|
83260
|
+
id: z$1.ZodString;
|
|
83261
|
+
name: z$1.ZodString;
|
|
83262
|
+
checksum: z$1.ZodString;
|
|
83263
|
+
pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
83264
|
+
url: z$1.ZodString;
|
|
83265
|
+
size: z$1.ZodNumber;
|
|
83266
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
83267
|
+
id: string;
|
|
83268
|
+
name: string;
|
|
83269
|
+
url: string;
|
|
83270
|
+
size: number;
|
|
83271
|
+
checksum: string;
|
|
83272
|
+
pendingUpload?: boolean | undefined;
|
|
83273
|
+
}, {
|
|
83274
|
+
id: string;
|
|
83275
|
+
name: string;
|
|
83276
|
+
url: string;
|
|
83277
|
+
size: number;
|
|
83278
|
+
checksum: string;
|
|
83279
|
+
pendingUpload?: boolean | undefined;
|
|
83280
|
+
}>, "many">;
|
|
83281
|
+
uploadUrls: z$1.ZodArray<z$1.ZodObject<{
|
|
83282
|
+
fileId: z$1.ZodString;
|
|
83283
|
+
uploadUrl: z$1.ZodString;
|
|
83284
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
83285
|
+
fileId: string;
|
|
83286
|
+
uploadUrl: string;
|
|
83287
|
+
}, {
|
|
83288
|
+
fileId: string;
|
|
83289
|
+
uploadUrl: string;
|
|
83290
|
+
}>, "many">;
|
|
83291
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
83292
|
+
files: {
|
|
83293
|
+
id: string;
|
|
83294
|
+
name: string;
|
|
83295
|
+
url: string;
|
|
83296
|
+
size: number;
|
|
83297
|
+
checksum: string;
|
|
83298
|
+
pendingUpload?: boolean | undefined;
|
|
83299
|
+
}[];
|
|
83300
|
+
uploadUrls: {
|
|
83301
|
+
fileId: string;
|
|
83302
|
+
uploadUrl: string;
|
|
83303
|
+
}[];
|
|
83304
|
+
}, {
|
|
83305
|
+
files: {
|
|
83306
|
+
id: string;
|
|
83307
|
+
name: string;
|
|
83308
|
+
url: string;
|
|
83309
|
+
size: number;
|
|
83310
|
+
checksum: string;
|
|
83311
|
+
pendingUpload?: boolean | undefined;
|
|
83312
|
+
}[];
|
|
83313
|
+
uploadUrls: {
|
|
83314
|
+
fileId: string;
|
|
83315
|
+
uploadUrl: string;
|
|
83316
|
+
}[];
|
|
83317
|
+
}>;
|
|
83318
|
+
type DTOForgeProjectFileUploadResponse = z$1.infer<typeof DTOForgeProjectFileUploadResponse>;
|
|
83319
|
+
declare const DTOForgeProjectFileUploadFinalizePayload: z$1.ZodObject<{
|
|
83320
|
+
fileIds: z$1.ZodArray<z$1.ZodString, "many">;
|
|
83321
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
83322
|
+
fileIds: string[];
|
|
83323
|
+
}, {
|
|
83324
|
+
fileIds: string[];
|
|
83325
|
+
}>;
|
|
83326
|
+
type DTOForgeProjectFileUploadFinalizePayload = z$1.infer<typeof DTOForgeProjectFileUploadFinalizePayload>;
|
|
83327
|
+
declare const DTOForgeProjectFileUploadFinalizeResponse: z$1.ZodObject<{
|
|
83328
|
+
ok: z$1.ZodLiteral<true>;
|
|
83329
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
83330
|
+
ok: true;
|
|
83331
|
+
}, {
|
|
83332
|
+
ok: true;
|
|
83333
|
+
}>;
|
|
83334
|
+
type DTOForgeProjectFileUploadFinalizeResponse = z$1.infer<typeof DTOForgeProjectFileUploadFinalizeResponse>;
|
|
83335
|
+
|
|
83012
83336
|
declare const DTOForgeProjectInvitation: z$1.ZodObject<{
|
|
83013
83337
|
email: z$1.ZodString;
|
|
83014
83338
|
forgeProjectId: z$1.ZodString;
|
|
@@ -126868,6 +127192,19 @@ declare const DTOSubscription: z__default.ZodObject<{
|
|
|
126868
127192
|
errorReason: string;
|
|
126869
127193
|
max?: number | undefined;
|
|
126870
127194
|
}>;
|
|
127195
|
+
forgeProjectFileSize: z__default.ZodObject<{
|
|
127196
|
+
max: z__default.ZodOptional<z__default.ZodNumber>;
|
|
127197
|
+
errorMessage: z__default.ZodString;
|
|
127198
|
+
errorReason: z__default.ZodString;
|
|
127199
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
127200
|
+
errorMessage: string;
|
|
127201
|
+
errorReason: string;
|
|
127202
|
+
max?: number | undefined;
|
|
127203
|
+
}, {
|
|
127204
|
+
errorMessage: string;
|
|
127205
|
+
errorReason: string;
|
|
127206
|
+
max?: number | undefined;
|
|
127207
|
+
}>;
|
|
126871
127208
|
}, "strip", z__default.ZodTypeAny, {
|
|
126872
127209
|
analytics: {
|
|
126873
127210
|
errorMessage: string;
|
|
@@ -127001,6 +127338,11 @@ declare const DTOSubscription: z__default.ZodObject<{
|
|
|
127001
127338
|
errorReason: string;
|
|
127002
127339
|
max?: number | undefined;
|
|
127003
127340
|
};
|
|
127341
|
+
forgeProjectFileSize: {
|
|
127342
|
+
errorMessage: string;
|
|
127343
|
+
errorReason: string;
|
|
127344
|
+
max?: number | undefined;
|
|
127345
|
+
};
|
|
127004
127346
|
}, {
|
|
127005
127347
|
analytics: {
|
|
127006
127348
|
errorMessage: string;
|
|
@@ -127134,6 +127476,11 @@ declare const DTOSubscription: z__default.ZodObject<{
|
|
|
127134
127476
|
errorReason: string;
|
|
127135
127477
|
max?: number | undefined;
|
|
127136
127478
|
};
|
|
127479
|
+
forgeProjectFileSize: {
|
|
127480
|
+
errorMessage: string;
|
|
127481
|
+
errorReason: string;
|
|
127482
|
+
max?: number | undefined;
|
|
127483
|
+
};
|
|
127137
127484
|
}>>;
|
|
127138
127485
|
stripeProductDescription: z__default.ZodOptional<z__default.ZodString>;
|
|
127139
127486
|
stripeProductFeatures: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
@@ -127329,6 +127676,11 @@ declare const DTOSubscription: z__default.ZodObject<{
|
|
|
127329
127676
|
errorReason: string;
|
|
127330
127677
|
max?: number | undefined;
|
|
127331
127678
|
};
|
|
127679
|
+
forgeProjectFileSize: {
|
|
127680
|
+
errorMessage: string;
|
|
127681
|
+
errorReason: string;
|
|
127682
|
+
max?: number | undefined;
|
|
127683
|
+
};
|
|
127332
127684
|
} | undefined;
|
|
127333
127685
|
stripeProductDescription?: string | undefined;
|
|
127334
127686
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -127500,6 +127852,11 @@ declare const DTOSubscription: z__default.ZodObject<{
|
|
|
127500
127852
|
errorReason: string;
|
|
127501
127853
|
max?: number | undefined;
|
|
127502
127854
|
};
|
|
127855
|
+
forgeProjectFileSize: {
|
|
127856
|
+
errorMessage: string;
|
|
127857
|
+
errorReason: string;
|
|
127858
|
+
max?: number | undefined;
|
|
127859
|
+
};
|
|
127503
127860
|
} | undefined;
|
|
127504
127861
|
stripeProductDescription?: string | undefined;
|
|
127505
127862
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -127877,6 +128234,19 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
127877
128234
|
errorReason: string;
|
|
127878
128235
|
max?: number | undefined;
|
|
127879
128236
|
}>;
|
|
128237
|
+
forgeProjectFileSize: z__default.ZodObject<{
|
|
128238
|
+
max: z__default.ZodOptional<z__default.ZodNumber>;
|
|
128239
|
+
errorMessage: z__default.ZodString;
|
|
128240
|
+
errorReason: z__default.ZodString;
|
|
128241
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
128242
|
+
errorMessage: string;
|
|
128243
|
+
errorReason: string;
|
|
128244
|
+
max?: number | undefined;
|
|
128245
|
+
}, {
|
|
128246
|
+
errorMessage: string;
|
|
128247
|
+
errorReason: string;
|
|
128248
|
+
max?: number | undefined;
|
|
128249
|
+
}>;
|
|
127880
128250
|
}, "strip", z__default.ZodTypeAny, {
|
|
127881
128251
|
analytics: {
|
|
127882
128252
|
errorMessage: string;
|
|
@@ -128010,6 +128380,11 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
128010
128380
|
errorReason: string;
|
|
128011
128381
|
max?: number | undefined;
|
|
128012
128382
|
};
|
|
128383
|
+
forgeProjectFileSize: {
|
|
128384
|
+
errorMessage: string;
|
|
128385
|
+
errorReason: string;
|
|
128386
|
+
max?: number | undefined;
|
|
128387
|
+
};
|
|
128013
128388
|
}, {
|
|
128014
128389
|
analytics: {
|
|
128015
128390
|
errorMessage: string;
|
|
@@ -128143,6 +128518,11 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
128143
128518
|
errorReason: string;
|
|
128144
128519
|
max?: number | undefined;
|
|
128145
128520
|
};
|
|
128521
|
+
forgeProjectFileSize: {
|
|
128522
|
+
errorMessage: string;
|
|
128523
|
+
errorReason: string;
|
|
128524
|
+
max?: number | undefined;
|
|
128525
|
+
};
|
|
128146
128526
|
}>>;
|
|
128147
128527
|
stripeProductDescription: z__default.ZodOptional<z__default.ZodString>;
|
|
128148
128528
|
stripeProductFeatures: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
@@ -128338,6 +128718,11 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
128338
128718
|
errorReason: string;
|
|
128339
128719
|
max?: number | undefined;
|
|
128340
128720
|
};
|
|
128721
|
+
forgeProjectFileSize: {
|
|
128722
|
+
errorMessage: string;
|
|
128723
|
+
errorReason: string;
|
|
128724
|
+
max?: number | undefined;
|
|
128725
|
+
};
|
|
128341
128726
|
} | undefined;
|
|
128342
128727
|
stripeProductDescription?: string | undefined;
|
|
128343
128728
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -128509,6 +128894,11 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
128509
128894
|
errorReason: string;
|
|
128510
128895
|
max?: number | undefined;
|
|
128511
128896
|
};
|
|
128897
|
+
forgeProjectFileSize: {
|
|
128898
|
+
errorMessage: string;
|
|
128899
|
+
errorReason: string;
|
|
128900
|
+
max?: number | undefined;
|
|
128901
|
+
};
|
|
128512
128902
|
} | undefined;
|
|
128513
128903
|
stripeProductDescription?: string | undefined;
|
|
128514
128904
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -128825,6 +129215,11 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
128825
129215
|
errorReason: string;
|
|
128826
129216
|
max?: number | undefined;
|
|
128827
129217
|
};
|
|
129218
|
+
forgeProjectFileSize: {
|
|
129219
|
+
errorMessage: string;
|
|
129220
|
+
errorReason: string;
|
|
129221
|
+
max?: number | undefined;
|
|
129222
|
+
};
|
|
128828
129223
|
} | undefined;
|
|
128829
129224
|
stripeProductDescription?: string | undefined;
|
|
128830
129225
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -129025,6 +129420,11 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
129025
129420
|
errorReason: string;
|
|
129026
129421
|
max?: number | undefined;
|
|
129027
129422
|
};
|
|
129423
|
+
forgeProjectFileSize: {
|
|
129424
|
+
errorMessage: string;
|
|
129425
|
+
errorReason: string;
|
|
129426
|
+
max?: number | undefined;
|
|
129427
|
+
};
|
|
129028
129428
|
} | undefined;
|
|
129029
129429
|
stripeProductDescription?: string | undefined;
|
|
129030
129430
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -142590,6 +142990,38 @@ declare class ForgeProjectFeaturesEndpoint {
|
|
|
142590
142990
|
}>;
|
|
142591
142991
|
}
|
|
142592
142992
|
|
|
142993
|
+
declare class ForgeProjectFilesEndpoint {
|
|
142994
|
+
private readonly requestExecutor;
|
|
142995
|
+
constructor(requestExecutor: RequestExecutor);
|
|
142996
|
+
upload(workspaceId: string, projectId: string, body: DTOForgeProjectFileUploadPayload): Promise<{
|
|
142997
|
+
files: {
|
|
142998
|
+
id: string;
|
|
142999
|
+
name: string;
|
|
143000
|
+
url: string;
|
|
143001
|
+
size: number;
|
|
143002
|
+
checksum: string;
|
|
143003
|
+
pendingUpload?: boolean | undefined;
|
|
143004
|
+
}[];
|
|
143005
|
+
uploadUrls: {
|
|
143006
|
+
fileId: string;
|
|
143007
|
+
uploadUrl: string;
|
|
143008
|
+
}[];
|
|
143009
|
+
}>;
|
|
143010
|
+
finalize(workspaceId: string, projectId: string, body: DTOForgeProjectFileUploadFinalizePayload): Promise<{
|
|
143011
|
+
ok: true;
|
|
143012
|
+
}>;
|
|
143013
|
+
list(workspaceId: string, projectId: string): Promise<{
|
|
143014
|
+
files: {
|
|
143015
|
+
id: string;
|
|
143016
|
+
name: string;
|
|
143017
|
+
url: string;
|
|
143018
|
+
size: number;
|
|
143019
|
+
checksum: string;
|
|
143020
|
+
pendingUpload?: boolean | undefined;
|
|
143021
|
+
}[];
|
|
143022
|
+
}>;
|
|
143023
|
+
}
|
|
143024
|
+
|
|
142593
143025
|
declare class ForgesEndpoint {
|
|
142594
143026
|
readonly projectAgents: ForgeAgentsEndpoint;
|
|
142595
143027
|
readonly artifacts: ForgeArtifactsEndpoint;
|
|
@@ -142601,6 +143033,7 @@ declare class ForgesEndpoint {
|
|
|
142601
143033
|
readonly projects: ForgeProjectsEndpoint;
|
|
142602
143034
|
readonly projectInvitations: ForgeProjectInvitationsEndpoint;
|
|
142603
143035
|
readonly projectFeatures: ForgeProjectFeaturesEndpoint;
|
|
143036
|
+
readonly projectFiles: ForgeProjectFilesEndpoint;
|
|
142604
143037
|
constructor(requestExecutor: RequestExecutor);
|
|
142605
143038
|
}
|
|
142606
143039
|
|
|
@@ -145947,4 +146380,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
145947
146380
|
reason: ValidationErrorReason | undefined;
|
|
145948
146381
|
};
|
|
145949
146382
|
|
|
145950
|
-
export { BackendForgeProjectRoomYDoc, 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, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, 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, DTOCreateForgeProject, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeProjectResponse, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, 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, DTOFeatureArtifact, DTOFeatureEvent, DTOFeatureEventAgentResponseFinished, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUserSender, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFileResponseItem, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectsListResponse, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, 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, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORemoveForgeProjectResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUGetForgeProjectResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProject, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeProjectResponse, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeFeaturesEndpoint, ForgeIterationMessagesEndpoint, ForgeParticipantsEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, ForgesEndpoint, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, 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, 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, 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 };
|
|
146383
|
+
export { BackendForgeProjectRoomYDoc, 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, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, 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, DTOCreateForgeProject, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeProjectResponse, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, 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, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventAgentResponseFinished, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUserSender, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFileResponseItem, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectsListResponse, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, 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, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORemoveForgeProjectResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUGetForgeProjectResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProject, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeProjectResponse, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeFeaturesEndpoint, ForgeIterationMessagesEndpoint, ForgeParticipantsEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, ForgesEndpoint, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, 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, 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, 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 };
|