@supernova-studio/client 1.45.1 → 1.46.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 +1479 -9
- package/dist/index.d.ts +1479 -9
- package/dist/index.js +24 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +23 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -157897,6 +157897,192 @@ declare const DTOForgeProjectAccessMode: z.ZodEnum<["InviteOnly", "Open", "Unlis
|
|
|
157897
157897
|
type DTOForgeProjectAccessMode = z.infer<typeof DTOForgeProjectAccessMode>;
|
|
157898
157898
|
declare const DTOForgeProjectDefaultRole: z.ZodEnum<["Viewer", "Builder"]>;
|
|
157899
157899
|
type DTOForgeProjectDefaultRole = z.infer<typeof DTOForgeProjectDefaultRole>;
|
|
157900
|
+
declare const DTOForgeProjectDocumentPreview: z.ZodObject<{
|
|
157901
|
+
id: z.ZodString;
|
|
157902
|
+
title: z.ZodString;
|
|
157903
|
+
thumbnail: z.ZodOptional<z.ZodObject<Pick<{
|
|
157904
|
+
id: z.ZodString;
|
|
157905
|
+
name: z.ZodString;
|
|
157906
|
+
deduplicationKey: z.ZodString;
|
|
157907
|
+
pendingUpload: z.ZodOptional<z.ZodBoolean>;
|
|
157908
|
+
storagePath: z.ZodString;
|
|
157909
|
+
url: z.ZodString;
|
|
157910
|
+
size: z.ZodNumber;
|
|
157911
|
+
source: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
157912
|
+
type: z.ZodLiteral<"UserUpload">;
|
|
157913
|
+
userId: z.ZodString;
|
|
157914
|
+
}, "strip", z.ZodTypeAny, {
|
|
157915
|
+
type: "UserUpload";
|
|
157916
|
+
userId: string;
|
|
157917
|
+
}, {
|
|
157918
|
+
type: "UserUpload";
|
|
157919
|
+
userId: string;
|
|
157920
|
+
}>, z.ZodObject<{
|
|
157921
|
+
type: z.ZodLiteral<"Figma">;
|
|
157922
|
+
renderMode: z.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
157923
|
+
}, "strip", z.ZodTypeAny, {
|
|
157924
|
+
type: "Figma";
|
|
157925
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
157926
|
+
}, {
|
|
157927
|
+
type: "Figma";
|
|
157928
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
157929
|
+
}>]>>;
|
|
157930
|
+
}, "id" | "url" | "source"> & {
|
|
157931
|
+
name: z.ZodOptional<z.ZodString>;
|
|
157932
|
+
}, "strip", z.ZodTypeAny, {
|
|
157933
|
+
id: string;
|
|
157934
|
+
url: string;
|
|
157935
|
+
name?: string | undefined;
|
|
157936
|
+
source?: {
|
|
157937
|
+
type: "UserUpload";
|
|
157938
|
+
userId: string;
|
|
157939
|
+
} | {
|
|
157940
|
+
type: "Figma";
|
|
157941
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
157942
|
+
} | undefined;
|
|
157943
|
+
}, {
|
|
157944
|
+
id: string;
|
|
157945
|
+
url: string;
|
|
157946
|
+
name?: string | undefined;
|
|
157947
|
+
source?: {
|
|
157948
|
+
type: "UserUpload";
|
|
157949
|
+
userId: string;
|
|
157950
|
+
} | {
|
|
157951
|
+
type: "Figma";
|
|
157952
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
157953
|
+
} | undefined;
|
|
157954
|
+
}>>;
|
|
157955
|
+
createdAt: z.ZodString;
|
|
157956
|
+
updatedAt: z.ZodString;
|
|
157957
|
+
}, "strip", z.ZodTypeAny, {
|
|
157958
|
+
id: string;
|
|
157959
|
+
createdAt: string;
|
|
157960
|
+
updatedAt: string;
|
|
157961
|
+
title: string;
|
|
157962
|
+
thumbnail?: {
|
|
157963
|
+
id: string;
|
|
157964
|
+
url: string;
|
|
157965
|
+
name?: string | undefined;
|
|
157966
|
+
source?: {
|
|
157967
|
+
type: "UserUpload";
|
|
157968
|
+
userId: string;
|
|
157969
|
+
} | {
|
|
157970
|
+
type: "Figma";
|
|
157971
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
157972
|
+
} | undefined;
|
|
157973
|
+
} | undefined;
|
|
157974
|
+
}, {
|
|
157975
|
+
id: string;
|
|
157976
|
+
createdAt: string;
|
|
157977
|
+
updatedAt: string;
|
|
157978
|
+
title: string;
|
|
157979
|
+
thumbnail?: {
|
|
157980
|
+
id: string;
|
|
157981
|
+
url: string;
|
|
157982
|
+
name?: string | undefined;
|
|
157983
|
+
source?: {
|
|
157984
|
+
type: "UserUpload";
|
|
157985
|
+
userId: string;
|
|
157986
|
+
} | {
|
|
157987
|
+
type: "Figma";
|
|
157988
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
157989
|
+
} | undefined;
|
|
157990
|
+
} | undefined;
|
|
157991
|
+
}>;
|
|
157992
|
+
type DTOForgeProjectDocumentPreview = z.infer<typeof DTOForgeProjectDocumentPreview>;
|
|
157993
|
+
declare const DTOForgeProjectFeaturePreview: z.ZodObject<{
|
|
157994
|
+
id: z.ZodString;
|
|
157995
|
+
name: z.ZodString;
|
|
157996
|
+
thumbnail: z.ZodOptional<z.ZodObject<Pick<{
|
|
157997
|
+
id: z.ZodString;
|
|
157998
|
+
name: z.ZodString;
|
|
157999
|
+
deduplicationKey: z.ZodString;
|
|
158000
|
+
pendingUpload: z.ZodOptional<z.ZodBoolean>;
|
|
158001
|
+
storagePath: z.ZodString;
|
|
158002
|
+
url: z.ZodString;
|
|
158003
|
+
size: z.ZodNumber;
|
|
158004
|
+
source: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
158005
|
+
type: z.ZodLiteral<"UserUpload">;
|
|
158006
|
+
userId: z.ZodString;
|
|
158007
|
+
}, "strip", z.ZodTypeAny, {
|
|
158008
|
+
type: "UserUpload";
|
|
158009
|
+
userId: string;
|
|
158010
|
+
}, {
|
|
158011
|
+
type: "UserUpload";
|
|
158012
|
+
userId: string;
|
|
158013
|
+
}>, z.ZodObject<{
|
|
158014
|
+
type: z.ZodLiteral<"Figma">;
|
|
158015
|
+
renderMode: z.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
158016
|
+
}, "strip", z.ZodTypeAny, {
|
|
158017
|
+
type: "Figma";
|
|
158018
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
158019
|
+
}, {
|
|
158020
|
+
type: "Figma";
|
|
158021
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
158022
|
+
}>]>>;
|
|
158023
|
+
}, "id" | "url" | "source"> & {
|
|
158024
|
+
name: z.ZodOptional<z.ZodString>;
|
|
158025
|
+
}, "strip", z.ZodTypeAny, {
|
|
158026
|
+
id: string;
|
|
158027
|
+
url: string;
|
|
158028
|
+
name?: string | undefined;
|
|
158029
|
+
source?: {
|
|
158030
|
+
type: "UserUpload";
|
|
158031
|
+
userId: string;
|
|
158032
|
+
} | {
|
|
158033
|
+
type: "Figma";
|
|
158034
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
158035
|
+
} | undefined;
|
|
158036
|
+
}, {
|
|
158037
|
+
id: string;
|
|
158038
|
+
url: string;
|
|
158039
|
+
name?: string | undefined;
|
|
158040
|
+
source?: {
|
|
158041
|
+
type: "UserUpload";
|
|
158042
|
+
userId: string;
|
|
158043
|
+
} | {
|
|
158044
|
+
type: "Figma";
|
|
158045
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
158046
|
+
} | undefined;
|
|
158047
|
+
}>>;
|
|
158048
|
+
createdAt: z.ZodString;
|
|
158049
|
+
updatedAt: z.ZodString;
|
|
158050
|
+
}, "strip", z.ZodTypeAny, {
|
|
158051
|
+
id: string;
|
|
158052
|
+
createdAt: string;
|
|
158053
|
+
name: string;
|
|
158054
|
+
updatedAt: string;
|
|
158055
|
+
thumbnail?: {
|
|
158056
|
+
id: string;
|
|
158057
|
+
url: string;
|
|
158058
|
+
name?: string | undefined;
|
|
158059
|
+
source?: {
|
|
158060
|
+
type: "UserUpload";
|
|
158061
|
+
userId: string;
|
|
158062
|
+
} | {
|
|
158063
|
+
type: "Figma";
|
|
158064
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
158065
|
+
} | undefined;
|
|
158066
|
+
} | undefined;
|
|
158067
|
+
}, {
|
|
158068
|
+
id: string;
|
|
158069
|
+
createdAt: string;
|
|
158070
|
+
name: string;
|
|
158071
|
+
updatedAt: string;
|
|
158072
|
+
thumbnail?: {
|
|
158073
|
+
id: string;
|
|
158074
|
+
url: string;
|
|
158075
|
+
name?: string | undefined;
|
|
158076
|
+
source?: {
|
|
158077
|
+
type: "UserUpload";
|
|
158078
|
+
userId: string;
|
|
158079
|
+
} | {
|
|
158080
|
+
type: "Figma";
|
|
158081
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
158082
|
+
} | undefined;
|
|
158083
|
+
} | undefined;
|
|
158084
|
+
}>;
|
|
158085
|
+
type DTOForgeProjectFeaturePreview = z.infer<typeof DTOForgeProjectFeaturePreview>;
|
|
157900
158086
|
declare const DTOForgeProject: z.ZodObject<{
|
|
157901
158087
|
id: z.ZodString;
|
|
157902
158088
|
workspaceId: z.ZodString;
|
|
@@ -157912,6 +158098,190 @@ declare const DTOForgeProject: z.ZodObject<{
|
|
|
157912
158098
|
createdAt: z.ZodDate;
|
|
157913
158099
|
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
157914
158100
|
updatedAt: z.ZodDate;
|
|
158101
|
+
documents: z.ZodArray<z.ZodObject<{
|
|
158102
|
+
id: z.ZodString;
|
|
158103
|
+
title: z.ZodString;
|
|
158104
|
+
thumbnail: z.ZodOptional<z.ZodObject<Pick<{
|
|
158105
|
+
id: z.ZodString;
|
|
158106
|
+
name: z.ZodString;
|
|
158107
|
+
deduplicationKey: z.ZodString;
|
|
158108
|
+
pendingUpload: z.ZodOptional<z.ZodBoolean>;
|
|
158109
|
+
storagePath: z.ZodString;
|
|
158110
|
+
url: z.ZodString;
|
|
158111
|
+
size: z.ZodNumber;
|
|
158112
|
+
source: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
158113
|
+
type: z.ZodLiteral<"UserUpload">;
|
|
158114
|
+
userId: z.ZodString;
|
|
158115
|
+
}, "strip", z.ZodTypeAny, {
|
|
158116
|
+
type: "UserUpload";
|
|
158117
|
+
userId: string;
|
|
158118
|
+
}, {
|
|
158119
|
+
type: "UserUpload";
|
|
158120
|
+
userId: string;
|
|
158121
|
+
}>, z.ZodObject<{
|
|
158122
|
+
type: z.ZodLiteral<"Figma">;
|
|
158123
|
+
renderMode: z.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
158124
|
+
}, "strip", z.ZodTypeAny, {
|
|
158125
|
+
type: "Figma";
|
|
158126
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
158127
|
+
}, {
|
|
158128
|
+
type: "Figma";
|
|
158129
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
158130
|
+
}>]>>;
|
|
158131
|
+
}, "id" | "url" | "source"> & {
|
|
158132
|
+
name: z.ZodOptional<z.ZodString>;
|
|
158133
|
+
}, "strip", z.ZodTypeAny, {
|
|
158134
|
+
id: string;
|
|
158135
|
+
url: string;
|
|
158136
|
+
name?: string | undefined;
|
|
158137
|
+
source?: {
|
|
158138
|
+
type: "UserUpload";
|
|
158139
|
+
userId: string;
|
|
158140
|
+
} | {
|
|
158141
|
+
type: "Figma";
|
|
158142
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
158143
|
+
} | undefined;
|
|
158144
|
+
}, {
|
|
158145
|
+
id: string;
|
|
158146
|
+
url: string;
|
|
158147
|
+
name?: string | undefined;
|
|
158148
|
+
source?: {
|
|
158149
|
+
type: "UserUpload";
|
|
158150
|
+
userId: string;
|
|
158151
|
+
} | {
|
|
158152
|
+
type: "Figma";
|
|
158153
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
158154
|
+
} | undefined;
|
|
158155
|
+
}>>;
|
|
158156
|
+
createdAt: z.ZodString;
|
|
158157
|
+
updatedAt: z.ZodString;
|
|
158158
|
+
}, "strip", z.ZodTypeAny, {
|
|
158159
|
+
id: string;
|
|
158160
|
+
createdAt: string;
|
|
158161
|
+
updatedAt: string;
|
|
158162
|
+
title: string;
|
|
158163
|
+
thumbnail?: {
|
|
158164
|
+
id: string;
|
|
158165
|
+
url: string;
|
|
158166
|
+
name?: string | undefined;
|
|
158167
|
+
source?: {
|
|
158168
|
+
type: "UserUpload";
|
|
158169
|
+
userId: string;
|
|
158170
|
+
} | {
|
|
158171
|
+
type: "Figma";
|
|
158172
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
158173
|
+
} | undefined;
|
|
158174
|
+
} | undefined;
|
|
158175
|
+
}, {
|
|
158176
|
+
id: string;
|
|
158177
|
+
createdAt: string;
|
|
158178
|
+
updatedAt: string;
|
|
158179
|
+
title: string;
|
|
158180
|
+
thumbnail?: {
|
|
158181
|
+
id: string;
|
|
158182
|
+
url: string;
|
|
158183
|
+
name?: string | undefined;
|
|
158184
|
+
source?: {
|
|
158185
|
+
type: "UserUpload";
|
|
158186
|
+
userId: string;
|
|
158187
|
+
} | {
|
|
158188
|
+
type: "Figma";
|
|
158189
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
158190
|
+
} | undefined;
|
|
158191
|
+
} | undefined;
|
|
158192
|
+
}>, "many">;
|
|
158193
|
+
features: z.ZodArray<z.ZodObject<{
|
|
158194
|
+
id: z.ZodString;
|
|
158195
|
+
name: z.ZodString;
|
|
158196
|
+
thumbnail: z.ZodOptional<z.ZodObject<Pick<{
|
|
158197
|
+
id: z.ZodString;
|
|
158198
|
+
name: z.ZodString;
|
|
158199
|
+
deduplicationKey: z.ZodString;
|
|
158200
|
+
pendingUpload: z.ZodOptional<z.ZodBoolean>;
|
|
158201
|
+
storagePath: z.ZodString;
|
|
158202
|
+
url: z.ZodString;
|
|
158203
|
+
size: z.ZodNumber;
|
|
158204
|
+
source: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
158205
|
+
type: z.ZodLiteral<"UserUpload">;
|
|
158206
|
+
userId: z.ZodString;
|
|
158207
|
+
}, "strip", z.ZodTypeAny, {
|
|
158208
|
+
type: "UserUpload";
|
|
158209
|
+
userId: string;
|
|
158210
|
+
}, {
|
|
158211
|
+
type: "UserUpload";
|
|
158212
|
+
userId: string;
|
|
158213
|
+
}>, z.ZodObject<{
|
|
158214
|
+
type: z.ZodLiteral<"Figma">;
|
|
158215
|
+
renderMode: z.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
158216
|
+
}, "strip", z.ZodTypeAny, {
|
|
158217
|
+
type: "Figma";
|
|
158218
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
158219
|
+
}, {
|
|
158220
|
+
type: "Figma";
|
|
158221
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
158222
|
+
}>]>>;
|
|
158223
|
+
}, "id" | "url" | "source"> & {
|
|
158224
|
+
name: z.ZodOptional<z.ZodString>;
|
|
158225
|
+
}, "strip", z.ZodTypeAny, {
|
|
158226
|
+
id: string;
|
|
158227
|
+
url: string;
|
|
158228
|
+
name?: string | undefined;
|
|
158229
|
+
source?: {
|
|
158230
|
+
type: "UserUpload";
|
|
158231
|
+
userId: string;
|
|
158232
|
+
} | {
|
|
158233
|
+
type: "Figma";
|
|
158234
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
158235
|
+
} | undefined;
|
|
158236
|
+
}, {
|
|
158237
|
+
id: string;
|
|
158238
|
+
url: string;
|
|
158239
|
+
name?: string | undefined;
|
|
158240
|
+
source?: {
|
|
158241
|
+
type: "UserUpload";
|
|
158242
|
+
userId: string;
|
|
158243
|
+
} | {
|
|
158244
|
+
type: "Figma";
|
|
158245
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
158246
|
+
} | undefined;
|
|
158247
|
+
}>>;
|
|
158248
|
+
createdAt: z.ZodString;
|
|
158249
|
+
updatedAt: z.ZodString;
|
|
158250
|
+
}, "strip", z.ZodTypeAny, {
|
|
158251
|
+
id: string;
|
|
158252
|
+
createdAt: string;
|
|
158253
|
+
name: string;
|
|
158254
|
+
updatedAt: string;
|
|
158255
|
+
thumbnail?: {
|
|
158256
|
+
id: string;
|
|
158257
|
+
url: string;
|
|
158258
|
+
name?: string | undefined;
|
|
158259
|
+
source?: {
|
|
158260
|
+
type: "UserUpload";
|
|
158261
|
+
userId: string;
|
|
158262
|
+
} | {
|
|
158263
|
+
type: "Figma";
|
|
158264
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
158265
|
+
} | undefined;
|
|
158266
|
+
} | undefined;
|
|
158267
|
+
}, {
|
|
158268
|
+
id: string;
|
|
158269
|
+
createdAt: string;
|
|
158270
|
+
name: string;
|
|
158271
|
+
updatedAt: string;
|
|
158272
|
+
thumbnail?: {
|
|
158273
|
+
id: string;
|
|
158274
|
+
url: string;
|
|
158275
|
+
name?: string | undefined;
|
|
158276
|
+
source?: {
|
|
158277
|
+
type: "UserUpload";
|
|
158278
|
+
userId: string;
|
|
158279
|
+
} | {
|
|
158280
|
+
type: "Figma";
|
|
158281
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
158282
|
+
} | undefined;
|
|
158283
|
+
} | undefined;
|
|
158284
|
+
}>, "many">;
|
|
157915
158285
|
/** @deprecated use `projectContextId` */
|
|
157916
158286
|
fpContextId: z.ZodString;
|
|
157917
158287
|
/** @deprecated use `name` and `description` properties on project */
|
|
@@ -157925,6 +158295,10 @@ declare const DTOForgeProject: z.ZodObject<{
|
|
|
157925
158295
|
name: string;
|
|
157926
158296
|
description?: string | undefined;
|
|
157927
158297
|
}>;
|
|
158298
|
+
/** @deprecated use features.length */
|
|
158299
|
+
numberOfFeatures: z.ZodNumber;
|
|
158300
|
+
/** @deprecated use documents.length */
|
|
158301
|
+
numberOfDocuments: z.ZodOptional<z.ZodNumber>;
|
|
157928
158302
|
/** @deprecated prefer fetching from project contexts endpoint separately */
|
|
157929
158303
|
context: z.ZodObject<{
|
|
157930
158304
|
id: z.ZodString;
|
|
@@ -166474,8 +166848,6 @@ declare const DTOForgeProject: z.ZodObject<{
|
|
|
166474
166848
|
additionalContext?: string | undefined;
|
|
166475
166849
|
themePreset?: string | undefined;
|
|
166476
166850
|
}>;
|
|
166477
|
-
numberOfFeatures: z.ZodNumber;
|
|
166478
|
-
numberOfDocuments: z.ZodOptional<z.ZodNumber>;
|
|
166479
166851
|
}, "strip", z.ZodTypeAny, {
|
|
166480
166852
|
id: string;
|
|
166481
166853
|
createdAt: Date;
|
|
@@ -166488,6 +166860,24 @@ declare const DTOForgeProject: z.ZodObject<{
|
|
|
166488
166860
|
updatedAt: Date;
|
|
166489
166861
|
workspaceId: string;
|
|
166490
166862
|
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
166863
|
+
features: {
|
|
166864
|
+
id: string;
|
|
166865
|
+
createdAt: string;
|
|
166866
|
+
name: string;
|
|
166867
|
+
updatedAt: string;
|
|
166868
|
+
thumbnail?: {
|
|
166869
|
+
id: string;
|
|
166870
|
+
url: string;
|
|
166871
|
+
name?: string | undefined;
|
|
166872
|
+
source?: {
|
|
166873
|
+
type: "UserUpload";
|
|
166874
|
+
userId: string;
|
|
166875
|
+
} | {
|
|
166876
|
+
type: "Figma";
|
|
166877
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
166878
|
+
} | undefined;
|
|
166879
|
+
} | undefined;
|
|
166880
|
+
}[];
|
|
166491
166881
|
context: {
|
|
166492
166882
|
id: string;
|
|
166493
166883
|
createdAt: Date;
|
|
@@ -167459,6 +167849,24 @@ declare const DTOForgeProject: z.ZodObject<{
|
|
|
167459
167849
|
projectContextId: string;
|
|
167460
167850
|
instruction: string | null;
|
|
167461
167851
|
defaultRole: "Viewer" | "Builder";
|
|
167852
|
+
documents: {
|
|
167853
|
+
id: string;
|
|
167854
|
+
createdAt: string;
|
|
167855
|
+
updatedAt: string;
|
|
167856
|
+
title: string;
|
|
167857
|
+
thumbnail?: {
|
|
167858
|
+
id: string;
|
|
167859
|
+
url: string;
|
|
167860
|
+
name?: string | undefined;
|
|
167861
|
+
source?: {
|
|
167862
|
+
type: "UserUpload";
|
|
167863
|
+
userId: string;
|
|
167864
|
+
} | {
|
|
167865
|
+
type: "Figma";
|
|
167866
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
167867
|
+
} | undefined;
|
|
167868
|
+
} | undefined;
|
|
167869
|
+
}[];
|
|
167462
167870
|
fpContextId: string;
|
|
167463
167871
|
numberOfFeatures: number;
|
|
167464
167872
|
description?: string | undefined;
|
|
@@ -167477,6 +167885,24 @@ declare const DTOForgeProject: z.ZodObject<{
|
|
|
167477
167885
|
updatedAt: Date;
|
|
167478
167886
|
workspaceId: string;
|
|
167479
167887
|
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
167888
|
+
features: {
|
|
167889
|
+
id: string;
|
|
167890
|
+
createdAt: string;
|
|
167891
|
+
name: string;
|
|
167892
|
+
updatedAt: string;
|
|
167893
|
+
thumbnail?: {
|
|
167894
|
+
id: string;
|
|
167895
|
+
url: string;
|
|
167896
|
+
name?: string | undefined;
|
|
167897
|
+
source?: {
|
|
167898
|
+
type: "UserUpload";
|
|
167899
|
+
userId: string;
|
|
167900
|
+
} | {
|
|
167901
|
+
type: "Figma";
|
|
167902
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
167903
|
+
} | undefined;
|
|
167904
|
+
} | undefined;
|
|
167905
|
+
}[];
|
|
167480
167906
|
context: {
|
|
167481
167907
|
id: string;
|
|
167482
167908
|
createdAt: Date;
|
|
@@ -168447,6 +168873,24 @@ declare const DTOForgeProject: z.ZodObject<{
|
|
|
168447
168873
|
};
|
|
168448
168874
|
projectContextId: string;
|
|
168449
168875
|
instruction: string | null;
|
|
168876
|
+
documents: {
|
|
168877
|
+
id: string;
|
|
168878
|
+
createdAt: string;
|
|
168879
|
+
updatedAt: string;
|
|
168880
|
+
title: string;
|
|
168881
|
+
thumbnail?: {
|
|
168882
|
+
id: string;
|
|
168883
|
+
url: string;
|
|
168884
|
+
name?: string | undefined;
|
|
168885
|
+
source?: {
|
|
168886
|
+
type: "UserUpload";
|
|
168887
|
+
userId: string;
|
|
168888
|
+
} | {
|
|
168889
|
+
type: "Figma";
|
|
168890
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
168891
|
+
} | undefined;
|
|
168892
|
+
} | undefined;
|
|
168893
|
+
}[];
|
|
168450
168894
|
fpContextId: string;
|
|
168451
168895
|
numberOfFeatures: number;
|
|
168452
168896
|
description?: string | undefined;
|
|
@@ -168473,6 +168917,190 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
168473
168917
|
createdAt: z.ZodDate;
|
|
168474
168918
|
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
168475
168919
|
updatedAt: z.ZodDate;
|
|
168920
|
+
documents: z.ZodArray<z.ZodObject<{
|
|
168921
|
+
id: z.ZodString;
|
|
168922
|
+
title: z.ZodString;
|
|
168923
|
+
thumbnail: z.ZodOptional<z.ZodObject<Pick<{
|
|
168924
|
+
id: z.ZodString;
|
|
168925
|
+
name: z.ZodString;
|
|
168926
|
+
deduplicationKey: z.ZodString;
|
|
168927
|
+
pendingUpload: z.ZodOptional<z.ZodBoolean>;
|
|
168928
|
+
storagePath: z.ZodString;
|
|
168929
|
+
url: z.ZodString;
|
|
168930
|
+
size: z.ZodNumber;
|
|
168931
|
+
source: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
168932
|
+
type: z.ZodLiteral<"UserUpload">;
|
|
168933
|
+
userId: z.ZodString;
|
|
168934
|
+
}, "strip", z.ZodTypeAny, {
|
|
168935
|
+
type: "UserUpload";
|
|
168936
|
+
userId: string;
|
|
168937
|
+
}, {
|
|
168938
|
+
type: "UserUpload";
|
|
168939
|
+
userId: string;
|
|
168940
|
+
}>, z.ZodObject<{
|
|
168941
|
+
type: z.ZodLiteral<"Figma">;
|
|
168942
|
+
renderMode: z.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
168943
|
+
}, "strip", z.ZodTypeAny, {
|
|
168944
|
+
type: "Figma";
|
|
168945
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
168946
|
+
}, {
|
|
168947
|
+
type: "Figma";
|
|
168948
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
168949
|
+
}>]>>;
|
|
168950
|
+
}, "id" | "url" | "source"> & {
|
|
168951
|
+
name: z.ZodOptional<z.ZodString>;
|
|
168952
|
+
}, "strip", z.ZodTypeAny, {
|
|
168953
|
+
id: string;
|
|
168954
|
+
url: string;
|
|
168955
|
+
name?: string | undefined;
|
|
168956
|
+
source?: {
|
|
168957
|
+
type: "UserUpload";
|
|
168958
|
+
userId: string;
|
|
168959
|
+
} | {
|
|
168960
|
+
type: "Figma";
|
|
168961
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
168962
|
+
} | undefined;
|
|
168963
|
+
}, {
|
|
168964
|
+
id: string;
|
|
168965
|
+
url: string;
|
|
168966
|
+
name?: string | undefined;
|
|
168967
|
+
source?: {
|
|
168968
|
+
type: "UserUpload";
|
|
168969
|
+
userId: string;
|
|
168970
|
+
} | {
|
|
168971
|
+
type: "Figma";
|
|
168972
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
168973
|
+
} | undefined;
|
|
168974
|
+
}>>;
|
|
168975
|
+
createdAt: z.ZodString;
|
|
168976
|
+
updatedAt: z.ZodString;
|
|
168977
|
+
}, "strip", z.ZodTypeAny, {
|
|
168978
|
+
id: string;
|
|
168979
|
+
createdAt: string;
|
|
168980
|
+
updatedAt: string;
|
|
168981
|
+
title: string;
|
|
168982
|
+
thumbnail?: {
|
|
168983
|
+
id: string;
|
|
168984
|
+
url: string;
|
|
168985
|
+
name?: string | undefined;
|
|
168986
|
+
source?: {
|
|
168987
|
+
type: "UserUpload";
|
|
168988
|
+
userId: string;
|
|
168989
|
+
} | {
|
|
168990
|
+
type: "Figma";
|
|
168991
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
168992
|
+
} | undefined;
|
|
168993
|
+
} | undefined;
|
|
168994
|
+
}, {
|
|
168995
|
+
id: string;
|
|
168996
|
+
createdAt: string;
|
|
168997
|
+
updatedAt: string;
|
|
168998
|
+
title: string;
|
|
168999
|
+
thumbnail?: {
|
|
169000
|
+
id: string;
|
|
169001
|
+
url: string;
|
|
169002
|
+
name?: string | undefined;
|
|
169003
|
+
source?: {
|
|
169004
|
+
type: "UserUpload";
|
|
169005
|
+
userId: string;
|
|
169006
|
+
} | {
|
|
169007
|
+
type: "Figma";
|
|
169008
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
169009
|
+
} | undefined;
|
|
169010
|
+
} | undefined;
|
|
169011
|
+
}>, "many">;
|
|
169012
|
+
features: z.ZodArray<z.ZodObject<{
|
|
169013
|
+
id: z.ZodString;
|
|
169014
|
+
name: z.ZodString;
|
|
169015
|
+
thumbnail: z.ZodOptional<z.ZodObject<Pick<{
|
|
169016
|
+
id: z.ZodString;
|
|
169017
|
+
name: z.ZodString;
|
|
169018
|
+
deduplicationKey: z.ZodString;
|
|
169019
|
+
pendingUpload: z.ZodOptional<z.ZodBoolean>;
|
|
169020
|
+
storagePath: z.ZodString;
|
|
169021
|
+
url: z.ZodString;
|
|
169022
|
+
size: z.ZodNumber;
|
|
169023
|
+
source: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
169024
|
+
type: z.ZodLiteral<"UserUpload">;
|
|
169025
|
+
userId: z.ZodString;
|
|
169026
|
+
}, "strip", z.ZodTypeAny, {
|
|
169027
|
+
type: "UserUpload";
|
|
169028
|
+
userId: string;
|
|
169029
|
+
}, {
|
|
169030
|
+
type: "UserUpload";
|
|
169031
|
+
userId: string;
|
|
169032
|
+
}>, z.ZodObject<{
|
|
169033
|
+
type: z.ZodLiteral<"Figma">;
|
|
169034
|
+
renderMode: z.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
169035
|
+
}, "strip", z.ZodTypeAny, {
|
|
169036
|
+
type: "Figma";
|
|
169037
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
169038
|
+
}, {
|
|
169039
|
+
type: "Figma";
|
|
169040
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
169041
|
+
}>]>>;
|
|
169042
|
+
}, "id" | "url" | "source"> & {
|
|
169043
|
+
name: z.ZodOptional<z.ZodString>;
|
|
169044
|
+
}, "strip", z.ZodTypeAny, {
|
|
169045
|
+
id: string;
|
|
169046
|
+
url: string;
|
|
169047
|
+
name?: string | undefined;
|
|
169048
|
+
source?: {
|
|
169049
|
+
type: "UserUpload";
|
|
169050
|
+
userId: string;
|
|
169051
|
+
} | {
|
|
169052
|
+
type: "Figma";
|
|
169053
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
169054
|
+
} | undefined;
|
|
169055
|
+
}, {
|
|
169056
|
+
id: string;
|
|
169057
|
+
url: string;
|
|
169058
|
+
name?: string | undefined;
|
|
169059
|
+
source?: {
|
|
169060
|
+
type: "UserUpload";
|
|
169061
|
+
userId: string;
|
|
169062
|
+
} | {
|
|
169063
|
+
type: "Figma";
|
|
169064
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
169065
|
+
} | undefined;
|
|
169066
|
+
}>>;
|
|
169067
|
+
createdAt: z.ZodString;
|
|
169068
|
+
updatedAt: z.ZodString;
|
|
169069
|
+
}, "strip", z.ZodTypeAny, {
|
|
169070
|
+
id: string;
|
|
169071
|
+
createdAt: string;
|
|
169072
|
+
name: string;
|
|
169073
|
+
updatedAt: string;
|
|
169074
|
+
thumbnail?: {
|
|
169075
|
+
id: string;
|
|
169076
|
+
url: string;
|
|
169077
|
+
name?: string | undefined;
|
|
169078
|
+
source?: {
|
|
169079
|
+
type: "UserUpload";
|
|
169080
|
+
userId: string;
|
|
169081
|
+
} | {
|
|
169082
|
+
type: "Figma";
|
|
169083
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
169084
|
+
} | undefined;
|
|
169085
|
+
} | undefined;
|
|
169086
|
+
}, {
|
|
169087
|
+
id: string;
|
|
169088
|
+
createdAt: string;
|
|
169089
|
+
name: string;
|
|
169090
|
+
updatedAt: string;
|
|
169091
|
+
thumbnail?: {
|
|
169092
|
+
id: string;
|
|
169093
|
+
url: string;
|
|
169094
|
+
name?: string | undefined;
|
|
169095
|
+
source?: {
|
|
169096
|
+
type: "UserUpload";
|
|
169097
|
+
userId: string;
|
|
169098
|
+
} | {
|
|
169099
|
+
type: "Figma";
|
|
169100
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
169101
|
+
} | undefined;
|
|
169102
|
+
} | undefined;
|
|
169103
|
+
}>, "many">;
|
|
168476
169104
|
/** @deprecated use `projectContextId` */
|
|
168477
169105
|
fpContextId: z.ZodString;
|
|
168478
169106
|
/** @deprecated use `name` and `description` properties on project */
|
|
@@ -168486,6 +169114,10 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
168486
169114
|
name: string;
|
|
168487
169115
|
description?: string | undefined;
|
|
168488
169116
|
}>;
|
|
169117
|
+
/** @deprecated use features.length */
|
|
169118
|
+
numberOfFeatures: z.ZodNumber;
|
|
169119
|
+
/** @deprecated use documents.length */
|
|
169120
|
+
numberOfDocuments: z.ZodOptional<z.ZodNumber>;
|
|
168489
169121
|
/** @deprecated prefer fetching from project contexts endpoint separately */
|
|
168490
169122
|
context: z.ZodObject<{
|
|
168491
169123
|
id: z.ZodString;
|
|
@@ -177035,8 +177667,6 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
177035
177667
|
additionalContext?: string | undefined;
|
|
177036
177668
|
themePreset?: string | undefined;
|
|
177037
177669
|
}>;
|
|
177038
|
-
numberOfFeatures: z.ZodNumber;
|
|
177039
|
-
numberOfDocuments: z.ZodOptional<z.ZodNumber>;
|
|
177040
177670
|
}, "name" | "description" | "emoji" | "tags" | "accessMode" | "instruction" | "defaultRole"> & {
|
|
177041
177671
|
/** @deprecated use `name` and `description` properties on project */
|
|
177042
177672
|
meta: z.ZodOptional<z.ZodObject<{
|
|
@@ -178126,6 +178756,190 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
178126
178756
|
createdAt: z.ZodDate;
|
|
178127
178757
|
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
178128
178758
|
updatedAt: z.ZodDate;
|
|
178759
|
+
documents: z.ZodArray<z.ZodObject<{
|
|
178760
|
+
id: z.ZodString;
|
|
178761
|
+
title: z.ZodString;
|
|
178762
|
+
thumbnail: z.ZodOptional<z.ZodObject<Pick<{
|
|
178763
|
+
id: z.ZodString;
|
|
178764
|
+
name: z.ZodString;
|
|
178765
|
+
deduplicationKey: z.ZodString;
|
|
178766
|
+
pendingUpload: z.ZodOptional<z.ZodBoolean>;
|
|
178767
|
+
storagePath: z.ZodString;
|
|
178768
|
+
url: z.ZodString;
|
|
178769
|
+
size: z.ZodNumber;
|
|
178770
|
+
source: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
178771
|
+
type: z.ZodLiteral<"UserUpload">;
|
|
178772
|
+
userId: z.ZodString;
|
|
178773
|
+
}, "strip", z.ZodTypeAny, {
|
|
178774
|
+
type: "UserUpload";
|
|
178775
|
+
userId: string;
|
|
178776
|
+
}, {
|
|
178777
|
+
type: "UserUpload";
|
|
178778
|
+
userId: string;
|
|
178779
|
+
}>, z.ZodObject<{
|
|
178780
|
+
type: z.ZodLiteral<"Figma">;
|
|
178781
|
+
renderMode: z.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
178782
|
+
}, "strip", z.ZodTypeAny, {
|
|
178783
|
+
type: "Figma";
|
|
178784
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
178785
|
+
}, {
|
|
178786
|
+
type: "Figma";
|
|
178787
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
178788
|
+
}>]>>;
|
|
178789
|
+
}, "id" | "url" | "source"> & {
|
|
178790
|
+
name: z.ZodOptional<z.ZodString>;
|
|
178791
|
+
}, "strip", z.ZodTypeAny, {
|
|
178792
|
+
id: string;
|
|
178793
|
+
url: string;
|
|
178794
|
+
name?: string | undefined;
|
|
178795
|
+
source?: {
|
|
178796
|
+
type: "UserUpload";
|
|
178797
|
+
userId: string;
|
|
178798
|
+
} | {
|
|
178799
|
+
type: "Figma";
|
|
178800
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
178801
|
+
} | undefined;
|
|
178802
|
+
}, {
|
|
178803
|
+
id: string;
|
|
178804
|
+
url: string;
|
|
178805
|
+
name?: string | undefined;
|
|
178806
|
+
source?: {
|
|
178807
|
+
type: "UserUpload";
|
|
178808
|
+
userId: string;
|
|
178809
|
+
} | {
|
|
178810
|
+
type: "Figma";
|
|
178811
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
178812
|
+
} | undefined;
|
|
178813
|
+
}>>;
|
|
178814
|
+
createdAt: z.ZodString;
|
|
178815
|
+
updatedAt: z.ZodString;
|
|
178816
|
+
}, "strip", z.ZodTypeAny, {
|
|
178817
|
+
id: string;
|
|
178818
|
+
createdAt: string;
|
|
178819
|
+
updatedAt: string;
|
|
178820
|
+
title: string;
|
|
178821
|
+
thumbnail?: {
|
|
178822
|
+
id: string;
|
|
178823
|
+
url: string;
|
|
178824
|
+
name?: string | undefined;
|
|
178825
|
+
source?: {
|
|
178826
|
+
type: "UserUpload";
|
|
178827
|
+
userId: string;
|
|
178828
|
+
} | {
|
|
178829
|
+
type: "Figma";
|
|
178830
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
178831
|
+
} | undefined;
|
|
178832
|
+
} | undefined;
|
|
178833
|
+
}, {
|
|
178834
|
+
id: string;
|
|
178835
|
+
createdAt: string;
|
|
178836
|
+
updatedAt: string;
|
|
178837
|
+
title: string;
|
|
178838
|
+
thumbnail?: {
|
|
178839
|
+
id: string;
|
|
178840
|
+
url: string;
|
|
178841
|
+
name?: string | undefined;
|
|
178842
|
+
source?: {
|
|
178843
|
+
type: "UserUpload";
|
|
178844
|
+
userId: string;
|
|
178845
|
+
} | {
|
|
178846
|
+
type: "Figma";
|
|
178847
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
178848
|
+
} | undefined;
|
|
178849
|
+
} | undefined;
|
|
178850
|
+
}>, "many">;
|
|
178851
|
+
features: z.ZodArray<z.ZodObject<{
|
|
178852
|
+
id: z.ZodString;
|
|
178853
|
+
name: z.ZodString;
|
|
178854
|
+
thumbnail: z.ZodOptional<z.ZodObject<Pick<{
|
|
178855
|
+
id: z.ZodString;
|
|
178856
|
+
name: z.ZodString;
|
|
178857
|
+
deduplicationKey: z.ZodString;
|
|
178858
|
+
pendingUpload: z.ZodOptional<z.ZodBoolean>;
|
|
178859
|
+
storagePath: z.ZodString;
|
|
178860
|
+
url: z.ZodString;
|
|
178861
|
+
size: z.ZodNumber;
|
|
178862
|
+
source: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
178863
|
+
type: z.ZodLiteral<"UserUpload">;
|
|
178864
|
+
userId: z.ZodString;
|
|
178865
|
+
}, "strip", z.ZodTypeAny, {
|
|
178866
|
+
type: "UserUpload";
|
|
178867
|
+
userId: string;
|
|
178868
|
+
}, {
|
|
178869
|
+
type: "UserUpload";
|
|
178870
|
+
userId: string;
|
|
178871
|
+
}>, z.ZodObject<{
|
|
178872
|
+
type: z.ZodLiteral<"Figma">;
|
|
178873
|
+
renderMode: z.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
178874
|
+
}, "strip", z.ZodTypeAny, {
|
|
178875
|
+
type: "Figma";
|
|
178876
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
178877
|
+
}, {
|
|
178878
|
+
type: "Figma";
|
|
178879
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
178880
|
+
}>]>>;
|
|
178881
|
+
}, "id" | "url" | "source"> & {
|
|
178882
|
+
name: z.ZodOptional<z.ZodString>;
|
|
178883
|
+
}, "strip", z.ZodTypeAny, {
|
|
178884
|
+
id: string;
|
|
178885
|
+
url: string;
|
|
178886
|
+
name?: string | undefined;
|
|
178887
|
+
source?: {
|
|
178888
|
+
type: "UserUpload";
|
|
178889
|
+
userId: string;
|
|
178890
|
+
} | {
|
|
178891
|
+
type: "Figma";
|
|
178892
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
178893
|
+
} | undefined;
|
|
178894
|
+
}, {
|
|
178895
|
+
id: string;
|
|
178896
|
+
url: string;
|
|
178897
|
+
name?: string | undefined;
|
|
178898
|
+
source?: {
|
|
178899
|
+
type: "UserUpload";
|
|
178900
|
+
userId: string;
|
|
178901
|
+
} | {
|
|
178902
|
+
type: "Figma";
|
|
178903
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
178904
|
+
} | undefined;
|
|
178905
|
+
}>>;
|
|
178906
|
+
createdAt: z.ZodString;
|
|
178907
|
+
updatedAt: z.ZodString;
|
|
178908
|
+
}, "strip", z.ZodTypeAny, {
|
|
178909
|
+
id: string;
|
|
178910
|
+
createdAt: string;
|
|
178911
|
+
name: string;
|
|
178912
|
+
updatedAt: string;
|
|
178913
|
+
thumbnail?: {
|
|
178914
|
+
id: string;
|
|
178915
|
+
url: string;
|
|
178916
|
+
name?: string | undefined;
|
|
178917
|
+
source?: {
|
|
178918
|
+
type: "UserUpload";
|
|
178919
|
+
userId: string;
|
|
178920
|
+
} | {
|
|
178921
|
+
type: "Figma";
|
|
178922
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
178923
|
+
} | undefined;
|
|
178924
|
+
} | undefined;
|
|
178925
|
+
}, {
|
|
178926
|
+
id: string;
|
|
178927
|
+
createdAt: string;
|
|
178928
|
+
name: string;
|
|
178929
|
+
updatedAt: string;
|
|
178930
|
+
thumbnail?: {
|
|
178931
|
+
id: string;
|
|
178932
|
+
url: string;
|
|
178933
|
+
name?: string | undefined;
|
|
178934
|
+
source?: {
|
|
178935
|
+
type: "UserUpload";
|
|
178936
|
+
userId: string;
|
|
178937
|
+
} | {
|
|
178938
|
+
type: "Figma";
|
|
178939
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
178940
|
+
} | undefined;
|
|
178941
|
+
} | undefined;
|
|
178942
|
+
}>, "many">;
|
|
178129
178943
|
/** @deprecated use `projectContextId` */
|
|
178130
178944
|
fpContextId: z.ZodString;
|
|
178131
178945
|
/** @deprecated use `name` and `description` properties on project */
|
|
@@ -178139,6 +178953,10 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
178139
178953
|
name: string;
|
|
178140
178954
|
description?: string | undefined;
|
|
178141
178955
|
}>;
|
|
178956
|
+
/** @deprecated use features.length */
|
|
178957
|
+
numberOfFeatures: z.ZodNumber;
|
|
178958
|
+
/** @deprecated use documents.length */
|
|
178959
|
+
numberOfDocuments: z.ZodOptional<z.ZodNumber>;
|
|
178142
178960
|
/** @deprecated prefer fetching from project contexts endpoint separately */
|
|
178143
178961
|
context: z.ZodObject<{
|
|
178144
178962
|
id: z.ZodString;
|
|
@@ -186688,8 +187506,6 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
186688
187506
|
additionalContext?: string | undefined;
|
|
186689
187507
|
themePreset?: string | undefined;
|
|
186690
187508
|
}>;
|
|
186691
|
-
numberOfFeatures: z.ZodNumber;
|
|
186692
|
-
numberOfDocuments: z.ZodOptional<z.ZodNumber>;
|
|
186693
187509
|
} & {
|
|
186694
187510
|
effectiveRole: z.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
186695
187511
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -186705,6 +187521,24 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
186705
187521
|
workspaceId: string;
|
|
186706
187522
|
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
186707
187523
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
187524
|
+
features: {
|
|
187525
|
+
id: string;
|
|
187526
|
+
createdAt: string;
|
|
187527
|
+
name: string;
|
|
187528
|
+
updatedAt: string;
|
|
187529
|
+
thumbnail?: {
|
|
187530
|
+
id: string;
|
|
187531
|
+
url: string;
|
|
187532
|
+
name?: string | undefined;
|
|
187533
|
+
source?: {
|
|
187534
|
+
type: "UserUpload";
|
|
187535
|
+
userId: string;
|
|
187536
|
+
} | {
|
|
187537
|
+
type: "Figma";
|
|
187538
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
187539
|
+
} | undefined;
|
|
187540
|
+
} | undefined;
|
|
187541
|
+
}[];
|
|
186708
187542
|
context: {
|
|
186709
187543
|
id: string;
|
|
186710
187544
|
createdAt: Date;
|
|
@@ -187676,6 +188510,24 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
187676
188510
|
projectContextId: string;
|
|
187677
188511
|
instruction: string | null;
|
|
187678
188512
|
defaultRole: "Viewer" | "Builder";
|
|
188513
|
+
documents: {
|
|
188514
|
+
id: string;
|
|
188515
|
+
createdAt: string;
|
|
188516
|
+
updatedAt: string;
|
|
188517
|
+
title: string;
|
|
188518
|
+
thumbnail?: {
|
|
188519
|
+
id: string;
|
|
188520
|
+
url: string;
|
|
188521
|
+
name?: string | undefined;
|
|
188522
|
+
source?: {
|
|
188523
|
+
type: "UserUpload";
|
|
188524
|
+
userId: string;
|
|
188525
|
+
} | {
|
|
188526
|
+
type: "Figma";
|
|
188527
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
188528
|
+
} | undefined;
|
|
188529
|
+
} | undefined;
|
|
188530
|
+
}[];
|
|
187679
188531
|
fpContextId: string;
|
|
187680
188532
|
numberOfFeatures: number;
|
|
187681
188533
|
description?: string | undefined;
|
|
@@ -187695,6 +188547,24 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
187695
188547
|
workspaceId: string;
|
|
187696
188548
|
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
187697
188549
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
188550
|
+
features: {
|
|
188551
|
+
id: string;
|
|
188552
|
+
createdAt: string;
|
|
188553
|
+
name: string;
|
|
188554
|
+
updatedAt: string;
|
|
188555
|
+
thumbnail?: {
|
|
188556
|
+
id: string;
|
|
188557
|
+
url: string;
|
|
188558
|
+
name?: string | undefined;
|
|
188559
|
+
source?: {
|
|
188560
|
+
type: "UserUpload";
|
|
188561
|
+
userId: string;
|
|
188562
|
+
} | {
|
|
188563
|
+
type: "Figma";
|
|
188564
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
188565
|
+
} | undefined;
|
|
188566
|
+
} | undefined;
|
|
188567
|
+
}[];
|
|
187698
188568
|
context: {
|
|
187699
188569
|
id: string;
|
|
187700
188570
|
createdAt: Date;
|
|
@@ -188665,6 +189535,24 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
188665
189535
|
};
|
|
188666
189536
|
projectContextId: string;
|
|
188667
189537
|
instruction: string | null;
|
|
189538
|
+
documents: {
|
|
189539
|
+
id: string;
|
|
189540
|
+
createdAt: string;
|
|
189541
|
+
updatedAt: string;
|
|
189542
|
+
title: string;
|
|
189543
|
+
thumbnail?: {
|
|
189544
|
+
id: string;
|
|
189545
|
+
url: string;
|
|
189546
|
+
name?: string | undefined;
|
|
189547
|
+
source?: {
|
|
189548
|
+
type: "UserUpload";
|
|
189549
|
+
userId: string;
|
|
189550
|
+
} | {
|
|
189551
|
+
type: "Figma";
|
|
189552
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
189553
|
+
} | undefined;
|
|
189554
|
+
} | undefined;
|
|
189555
|
+
}[];
|
|
188668
189556
|
fpContextId: string;
|
|
188669
189557
|
numberOfFeatures: number;
|
|
188670
189558
|
description?: string | undefined;
|
|
@@ -188689,6 +189577,24 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
188689
189577
|
workspaceId: string;
|
|
188690
189578
|
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
188691
189579
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
189580
|
+
features: {
|
|
189581
|
+
id: string;
|
|
189582
|
+
createdAt: string;
|
|
189583
|
+
name: string;
|
|
189584
|
+
updatedAt: string;
|
|
189585
|
+
thumbnail?: {
|
|
189586
|
+
id: string;
|
|
189587
|
+
url: string;
|
|
189588
|
+
name?: string | undefined;
|
|
189589
|
+
source?: {
|
|
189590
|
+
type: "UserUpload";
|
|
189591
|
+
userId: string;
|
|
189592
|
+
} | {
|
|
189593
|
+
type: "Figma";
|
|
189594
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
189595
|
+
} | undefined;
|
|
189596
|
+
} | undefined;
|
|
189597
|
+
}[];
|
|
188692
189598
|
context: {
|
|
188693
189599
|
id: string;
|
|
188694
189600
|
createdAt: Date;
|
|
@@ -189660,6 +190566,24 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
189660
190566
|
projectContextId: string;
|
|
189661
190567
|
instruction: string | null;
|
|
189662
190568
|
defaultRole: "Viewer" | "Builder";
|
|
190569
|
+
documents: {
|
|
190570
|
+
id: string;
|
|
190571
|
+
createdAt: string;
|
|
190572
|
+
updatedAt: string;
|
|
190573
|
+
title: string;
|
|
190574
|
+
thumbnail?: {
|
|
190575
|
+
id: string;
|
|
190576
|
+
url: string;
|
|
190577
|
+
name?: string | undefined;
|
|
190578
|
+
source?: {
|
|
190579
|
+
type: "UserUpload";
|
|
190580
|
+
userId: string;
|
|
190581
|
+
} | {
|
|
190582
|
+
type: "Figma";
|
|
190583
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
190584
|
+
} | undefined;
|
|
190585
|
+
} | undefined;
|
|
190586
|
+
}[];
|
|
189663
190587
|
fpContextId: string;
|
|
189664
190588
|
numberOfFeatures: number;
|
|
189665
190589
|
description?: string | undefined;
|
|
@@ -189681,6 +190605,24 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
189681
190605
|
workspaceId: string;
|
|
189682
190606
|
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
189683
190607
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
190608
|
+
features: {
|
|
190609
|
+
id: string;
|
|
190610
|
+
createdAt: string;
|
|
190611
|
+
name: string;
|
|
190612
|
+
updatedAt: string;
|
|
190613
|
+
thumbnail?: {
|
|
190614
|
+
id: string;
|
|
190615
|
+
url: string;
|
|
190616
|
+
name?: string | undefined;
|
|
190617
|
+
source?: {
|
|
190618
|
+
type: "UserUpload";
|
|
190619
|
+
userId: string;
|
|
190620
|
+
} | {
|
|
190621
|
+
type: "Figma";
|
|
190622
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
190623
|
+
} | undefined;
|
|
190624
|
+
} | undefined;
|
|
190625
|
+
}[];
|
|
189684
190626
|
context: {
|
|
189685
190627
|
id: string;
|
|
189686
190628
|
createdAt: Date;
|
|
@@ -190651,6 +191593,24 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
190651
191593
|
};
|
|
190652
191594
|
projectContextId: string;
|
|
190653
191595
|
instruction: string | null;
|
|
191596
|
+
documents: {
|
|
191597
|
+
id: string;
|
|
191598
|
+
createdAt: string;
|
|
191599
|
+
updatedAt: string;
|
|
191600
|
+
title: string;
|
|
191601
|
+
thumbnail?: {
|
|
191602
|
+
id: string;
|
|
191603
|
+
url: string;
|
|
191604
|
+
name?: string | undefined;
|
|
191605
|
+
source?: {
|
|
191606
|
+
type: "UserUpload";
|
|
191607
|
+
userId: string;
|
|
191608
|
+
} | {
|
|
191609
|
+
type: "Figma";
|
|
191610
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
191611
|
+
} | undefined;
|
|
191612
|
+
} | undefined;
|
|
191613
|
+
}[];
|
|
190654
191614
|
fpContextId: string;
|
|
190655
191615
|
numberOfFeatures: number;
|
|
190656
191616
|
description?: string | undefined;
|
|
@@ -190679,6 +191639,190 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
190679
191639
|
createdAt: z.ZodDate;
|
|
190680
191640
|
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
190681
191641
|
updatedAt: z.ZodDate;
|
|
191642
|
+
documents: z.ZodArray<z.ZodObject<{
|
|
191643
|
+
id: z.ZodString;
|
|
191644
|
+
title: z.ZodString;
|
|
191645
|
+
thumbnail: z.ZodOptional<z.ZodObject<Pick<{
|
|
191646
|
+
id: z.ZodString;
|
|
191647
|
+
name: z.ZodString;
|
|
191648
|
+
deduplicationKey: z.ZodString;
|
|
191649
|
+
pendingUpload: z.ZodOptional<z.ZodBoolean>;
|
|
191650
|
+
storagePath: z.ZodString;
|
|
191651
|
+
url: z.ZodString;
|
|
191652
|
+
size: z.ZodNumber;
|
|
191653
|
+
source: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
191654
|
+
type: z.ZodLiteral<"UserUpload">;
|
|
191655
|
+
userId: z.ZodString;
|
|
191656
|
+
}, "strip", z.ZodTypeAny, {
|
|
191657
|
+
type: "UserUpload";
|
|
191658
|
+
userId: string;
|
|
191659
|
+
}, {
|
|
191660
|
+
type: "UserUpload";
|
|
191661
|
+
userId: string;
|
|
191662
|
+
}>, z.ZodObject<{
|
|
191663
|
+
type: z.ZodLiteral<"Figma">;
|
|
191664
|
+
renderMode: z.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
191665
|
+
}, "strip", z.ZodTypeAny, {
|
|
191666
|
+
type: "Figma";
|
|
191667
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
191668
|
+
}, {
|
|
191669
|
+
type: "Figma";
|
|
191670
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
191671
|
+
}>]>>;
|
|
191672
|
+
}, "id" | "url" | "source"> & {
|
|
191673
|
+
name: z.ZodOptional<z.ZodString>;
|
|
191674
|
+
}, "strip", z.ZodTypeAny, {
|
|
191675
|
+
id: string;
|
|
191676
|
+
url: string;
|
|
191677
|
+
name?: string | undefined;
|
|
191678
|
+
source?: {
|
|
191679
|
+
type: "UserUpload";
|
|
191680
|
+
userId: string;
|
|
191681
|
+
} | {
|
|
191682
|
+
type: "Figma";
|
|
191683
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
191684
|
+
} | undefined;
|
|
191685
|
+
}, {
|
|
191686
|
+
id: string;
|
|
191687
|
+
url: string;
|
|
191688
|
+
name?: string | undefined;
|
|
191689
|
+
source?: {
|
|
191690
|
+
type: "UserUpload";
|
|
191691
|
+
userId: string;
|
|
191692
|
+
} | {
|
|
191693
|
+
type: "Figma";
|
|
191694
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
191695
|
+
} | undefined;
|
|
191696
|
+
}>>;
|
|
191697
|
+
createdAt: z.ZodString;
|
|
191698
|
+
updatedAt: z.ZodString;
|
|
191699
|
+
}, "strip", z.ZodTypeAny, {
|
|
191700
|
+
id: string;
|
|
191701
|
+
createdAt: string;
|
|
191702
|
+
updatedAt: string;
|
|
191703
|
+
title: string;
|
|
191704
|
+
thumbnail?: {
|
|
191705
|
+
id: string;
|
|
191706
|
+
url: string;
|
|
191707
|
+
name?: string | undefined;
|
|
191708
|
+
source?: {
|
|
191709
|
+
type: "UserUpload";
|
|
191710
|
+
userId: string;
|
|
191711
|
+
} | {
|
|
191712
|
+
type: "Figma";
|
|
191713
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
191714
|
+
} | undefined;
|
|
191715
|
+
} | undefined;
|
|
191716
|
+
}, {
|
|
191717
|
+
id: string;
|
|
191718
|
+
createdAt: string;
|
|
191719
|
+
updatedAt: string;
|
|
191720
|
+
title: string;
|
|
191721
|
+
thumbnail?: {
|
|
191722
|
+
id: string;
|
|
191723
|
+
url: string;
|
|
191724
|
+
name?: string | undefined;
|
|
191725
|
+
source?: {
|
|
191726
|
+
type: "UserUpload";
|
|
191727
|
+
userId: string;
|
|
191728
|
+
} | {
|
|
191729
|
+
type: "Figma";
|
|
191730
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
191731
|
+
} | undefined;
|
|
191732
|
+
} | undefined;
|
|
191733
|
+
}>, "many">;
|
|
191734
|
+
features: z.ZodArray<z.ZodObject<{
|
|
191735
|
+
id: z.ZodString;
|
|
191736
|
+
name: z.ZodString;
|
|
191737
|
+
thumbnail: z.ZodOptional<z.ZodObject<Pick<{
|
|
191738
|
+
id: z.ZodString;
|
|
191739
|
+
name: z.ZodString;
|
|
191740
|
+
deduplicationKey: z.ZodString;
|
|
191741
|
+
pendingUpload: z.ZodOptional<z.ZodBoolean>;
|
|
191742
|
+
storagePath: z.ZodString;
|
|
191743
|
+
url: z.ZodString;
|
|
191744
|
+
size: z.ZodNumber;
|
|
191745
|
+
source: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
191746
|
+
type: z.ZodLiteral<"UserUpload">;
|
|
191747
|
+
userId: z.ZodString;
|
|
191748
|
+
}, "strip", z.ZodTypeAny, {
|
|
191749
|
+
type: "UserUpload";
|
|
191750
|
+
userId: string;
|
|
191751
|
+
}, {
|
|
191752
|
+
type: "UserUpload";
|
|
191753
|
+
userId: string;
|
|
191754
|
+
}>, z.ZodObject<{
|
|
191755
|
+
type: z.ZodLiteral<"Figma">;
|
|
191756
|
+
renderMode: z.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
191757
|
+
}, "strip", z.ZodTypeAny, {
|
|
191758
|
+
type: "Figma";
|
|
191759
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
191760
|
+
}, {
|
|
191761
|
+
type: "Figma";
|
|
191762
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
191763
|
+
}>]>>;
|
|
191764
|
+
}, "id" | "url" | "source"> & {
|
|
191765
|
+
name: z.ZodOptional<z.ZodString>;
|
|
191766
|
+
}, "strip", z.ZodTypeAny, {
|
|
191767
|
+
id: string;
|
|
191768
|
+
url: string;
|
|
191769
|
+
name?: string | undefined;
|
|
191770
|
+
source?: {
|
|
191771
|
+
type: "UserUpload";
|
|
191772
|
+
userId: string;
|
|
191773
|
+
} | {
|
|
191774
|
+
type: "Figma";
|
|
191775
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
191776
|
+
} | undefined;
|
|
191777
|
+
}, {
|
|
191778
|
+
id: string;
|
|
191779
|
+
url: string;
|
|
191780
|
+
name?: string | undefined;
|
|
191781
|
+
source?: {
|
|
191782
|
+
type: "UserUpload";
|
|
191783
|
+
userId: string;
|
|
191784
|
+
} | {
|
|
191785
|
+
type: "Figma";
|
|
191786
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
191787
|
+
} | undefined;
|
|
191788
|
+
}>>;
|
|
191789
|
+
createdAt: z.ZodString;
|
|
191790
|
+
updatedAt: z.ZodString;
|
|
191791
|
+
}, "strip", z.ZodTypeAny, {
|
|
191792
|
+
id: string;
|
|
191793
|
+
createdAt: string;
|
|
191794
|
+
name: string;
|
|
191795
|
+
updatedAt: string;
|
|
191796
|
+
thumbnail?: {
|
|
191797
|
+
id: string;
|
|
191798
|
+
url: string;
|
|
191799
|
+
name?: string | undefined;
|
|
191800
|
+
source?: {
|
|
191801
|
+
type: "UserUpload";
|
|
191802
|
+
userId: string;
|
|
191803
|
+
} | {
|
|
191804
|
+
type: "Figma";
|
|
191805
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
191806
|
+
} | undefined;
|
|
191807
|
+
} | undefined;
|
|
191808
|
+
}, {
|
|
191809
|
+
id: string;
|
|
191810
|
+
createdAt: string;
|
|
191811
|
+
name: string;
|
|
191812
|
+
updatedAt: string;
|
|
191813
|
+
thumbnail?: {
|
|
191814
|
+
id: string;
|
|
191815
|
+
url: string;
|
|
191816
|
+
name?: string | undefined;
|
|
191817
|
+
source?: {
|
|
191818
|
+
type: "UserUpload";
|
|
191819
|
+
userId: string;
|
|
191820
|
+
} | {
|
|
191821
|
+
type: "Figma";
|
|
191822
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
191823
|
+
} | undefined;
|
|
191824
|
+
} | undefined;
|
|
191825
|
+
}>, "many">;
|
|
190682
191826
|
/** @deprecated use `projectContextId` */
|
|
190683
191827
|
fpContextId: z.ZodString;
|
|
190684
191828
|
/** @deprecated use `name` and `description` properties on project */
|
|
@@ -190692,6 +191836,10 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
190692
191836
|
name: string;
|
|
190693
191837
|
description?: string | undefined;
|
|
190694
191838
|
}>;
|
|
191839
|
+
/** @deprecated use features.length */
|
|
191840
|
+
numberOfFeatures: z.ZodNumber;
|
|
191841
|
+
/** @deprecated use documents.length */
|
|
191842
|
+
numberOfDocuments: z.ZodOptional<z.ZodNumber>;
|
|
190695
191843
|
/** @deprecated prefer fetching from project contexts endpoint separately */
|
|
190696
191844
|
context: z.ZodObject<{
|
|
190697
191845
|
id: z.ZodString;
|
|
@@ -199241,8 +200389,6 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
199241
200389
|
additionalContext?: string | undefined;
|
|
199242
200390
|
themePreset?: string | undefined;
|
|
199243
200391
|
}>;
|
|
199244
|
-
numberOfFeatures: z.ZodNumber;
|
|
199245
|
-
numberOfDocuments: z.ZodOptional<z.ZodNumber>;
|
|
199246
200392
|
} & {
|
|
199247
200393
|
effectiveRole: z.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
199248
200394
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -199258,6 +200404,24 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
199258
200404
|
workspaceId: string;
|
|
199259
200405
|
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
199260
200406
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
200407
|
+
features: {
|
|
200408
|
+
id: string;
|
|
200409
|
+
createdAt: string;
|
|
200410
|
+
name: string;
|
|
200411
|
+
updatedAt: string;
|
|
200412
|
+
thumbnail?: {
|
|
200413
|
+
id: string;
|
|
200414
|
+
url: string;
|
|
200415
|
+
name?: string | undefined;
|
|
200416
|
+
source?: {
|
|
200417
|
+
type: "UserUpload";
|
|
200418
|
+
userId: string;
|
|
200419
|
+
} | {
|
|
200420
|
+
type: "Figma";
|
|
200421
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
200422
|
+
} | undefined;
|
|
200423
|
+
} | undefined;
|
|
200424
|
+
}[];
|
|
199261
200425
|
context: {
|
|
199262
200426
|
id: string;
|
|
199263
200427
|
createdAt: Date;
|
|
@@ -200229,6 +201393,24 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
200229
201393
|
projectContextId: string;
|
|
200230
201394
|
instruction: string | null;
|
|
200231
201395
|
defaultRole: "Viewer" | "Builder";
|
|
201396
|
+
documents: {
|
|
201397
|
+
id: string;
|
|
201398
|
+
createdAt: string;
|
|
201399
|
+
updatedAt: string;
|
|
201400
|
+
title: string;
|
|
201401
|
+
thumbnail?: {
|
|
201402
|
+
id: string;
|
|
201403
|
+
url: string;
|
|
201404
|
+
name?: string | undefined;
|
|
201405
|
+
source?: {
|
|
201406
|
+
type: "UserUpload";
|
|
201407
|
+
userId: string;
|
|
201408
|
+
} | {
|
|
201409
|
+
type: "Figma";
|
|
201410
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
201411
|
+
} | undefined;
|
|
201412
|
+
} | undefined;
|
|
201413
|
+
}[];
|
|
200232
201414
|
fpContextId: string;
|
|
200233
201415
|
numberOfFeatures: number;
|
|
200234
201416
|
description?: string | undefined;
|
|
@@ -200248,6 +201430,24 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
200248
201430
|
workspaceId: string;
|
|
200249
201431
|
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
200250
201432
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
201433
|
+
features: {
|
|
201434
|
+
id: string;
|
|
201435
|
+
createdAt: string;
|
|
201436
|
+
name: string;
|
|
201437
|
+
updatedAt: string;
|
|
201438
|
+
thumbnail?: {
|
|
201439
|
+
id: string;
|
|
201440
|
+
url: string;
|
|
201441
|
+
name?: string | undefined;
|
|
201442
|
+
source?: {
|
|
201443
|
+
type: "UserUpload";
|
|
201444
|
+
userId: string;
|
|
201445
|
+
} | {
|
|
201446
|
+
type: "Figma";
|
|
201447
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
201448
|
+
} | undefined;
|
|
201449
|
+
} | undefined;
|
|
201450
|
+
}[];
|
|
200251
201451
|
context: {
|
|
200252
201452
|
id: string;
|
|
200253
201453
|
createdAt: Date;
|
|
@@ -201218,6 +202418,24 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
201218
202418
|
};
|
|
201219
202419
|
projectContextId: string;
|
|
201220
202420
|
instruction: string | null;
|
|
202421
|
+
documents: {
|
|
202422
|
+
id: string;
|
|
202423
|
+
createdAt: string;
|
|
202424
|
+
updatedAt: string;
|
|
202425
|
+
title: string;
|
|
202426
|
+
thumbnail?: {
|
|
202427
|
+
id: string;
|
|
202428
|
+
url: string;
|
|
202429
|
+
name?: string | undefined;
|
|
202430
|
+
source?: {
|
|
202431
|
+
type: "UserUpload";
|
|
202432
|
+
userId: string;
|
|
202433
|
+
} | {
|
|
202434
|
+
type: "Figma";
|
|
202435
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
202436
|
+
} | undefined;
|
|
202437
|
+
} | undefined;
|
|
202438
|
+
}[];
|
|
201221
202439
|
fpContextId: string;
|
|
201222
202440
|
numberOfFeatures: number;
|
|
201223
202441
|
description?: string | undefined;
|
|
@@ -201242,6 +202460,24 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
201242
202460
|
workspaceId: string;
|
|
201243
202461
|
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
201244
202462
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
202463
|
+
features: {
|
|
202464
|
+
id: string;
|
|
202465
|
+
createdAt: string;
|
|
202466
|
+
name: string;
|
|
202467
|
+
updatedAt: string;
|
|
202468
|
+
thumbnail?: {
|
|
202469
|
+
id: string;
|
|
202470
|
+
url: string;
|
|
202471
|
+
name?: string | undefined;
|
|
202472
|
+
source?: {
|
|
202473
|
+
type: "UserUpload";
|
|
202474
|
+
userId: string;
|
|
202475
|
+
} | {
|
|
202476
|
+
type: "Figma";
|
|
202477
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
202478
|
+
} | undefined;
|
|
202479
|
+
} | undefined;
|
|
202480
|
+
}[];
|
|
201245
202481
|
context: {
|
|
201246
202482
|
id: string;
|
|
201247
202483
|
createdAt: Date;
|
|
@@ -202213,6 +203449,24 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
202213
203449
|
projectContextId: string;
|
|
202214
203450
|
instruction: string | null;
|
|
202215
203451
|
defaultRole: "Viewer" | "Builder";
|
|
203452
|
+
documents: {
|
|
203453
|
+
id: string;
|
|
203454
|
+
createdAt: string;
|
|
203455
|
+
updatedAt: string;
|
|
203456
|
+
title: string;
|
|
203457
|
+
thumbnail?: {
|
|
203458
|
+
id: string;
|
|
203459
|
+
url: string;
|
|
203460
|
+
name?: string | undefined;
|
|
203461
|
+
source?: {
|
|
203462
|
+
type: "UserUpload";
|
|
203463
|
+
userId: string;
|
|
203464
|
+
} | {
|
|
203465
|
+
type: "Figma";
|
|
203466
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
203467
|
+
} | undefined;
|
|
203468
|
+
} | undefined;
|
|
203469
|
+
}[];
|
|
202216
203470
|
fpContextId: string;
|
|
202217
203471
|
numberOfFeatures: number;
|
|
202218
203472
|
description?: string | undefined;
|
|
@@ -202234,6 +203488,24 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
202234
203488
|
workspaceId: string;
|
|
202235
203489
|
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
202236
203490
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
203491
|
+
features: {
|
|
203492
|
+
id: string;
|
|
203493
|
+
createdAt: string;
|
|
203494
|
+
name: string;
|
|
203495
|
+
updatedAt: string;
|
|
203496
|
+
thumbnail?: {
|
|
203497
|
+
id: string;
|
|
203498
|
+
url: string;
|
|
203499
|
+
name?: string | undefined;
|
|
203500
|
+
source?: {
|
|
203501
|
+
type: "UserUpload";
|
|
203502
|
+
userId: string;
|
|
203503
|
+
} | {
|
|
203504
|
+
type: "Figma";
|
|
203505
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
203506
|
+
} | undefined;
|
|
203507
|
+
} | undefined;
|
|
203508
|
+
}[];
|
|
202237
203509
|
context: {
|
|
202238
203510
|
id: string;
|
|
202239
203511
|
createdAt: Date;
|
|
@@ -203204,6 +204476,24 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
203204
204476
|
};
|
|
203205
204477
|
projectContextId: string;
|
|
203206
204478
|
instruction: string | null;
|
|
204479
|
+
documents: {
|
|
204480
|
+
id: string;
|
|
204481
|
+
createdAt: string;
|
|
204482
|
+
updatedAt: string;
|
|
204483
|
+
title: string;
|
|
204484
|
+
thumbnail?: {
|
|
204485
|
+
id: string;
|
|
204486
|
+
url: string;
|
|
204487
|
+
name?: string | undefined;
|
|
204488
|
+
source?: {
|
|
204489
|
+
type: "UserUpload";
|
|
204490
|
+
userId: string;
|
|
204491
|
+
} | {
|
|
204492
|
+
type: "Figma";
|
|
204493
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
204494
|
+
} | undefined;
|
|
204495
|
+
} | undefined;
|
|
204496
|
+
}[];
|
|
203207
204497
|
fpContextId: string;
|
|
203208
204498
|
numberOfFeatures: number;
|
|
203209
204499
|
description?: string | undefined;
|
|
@@ -248967,6 +250257,24 @@ declare class ForgeProjectsEndpoint {
|
|
|
248967
250257
|
workspaceId: string;
|
|
248968
250258
|
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
248969
250259
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
250260
|
+
features: {
|
|
250261
|
+
id: string;
|
|
250262
|
+
createdAt: string;
|
|
250263
|
+
name: string;
|
|
250264
|
+
updatedAt: string;
|
|
250265
|
+
thumbnail?: {
|
|
250266
|
+
id: string;
|
|
250267
|
+
url: string;
|
|
250268
|
+
name?: string | undefined;
|
|
250269
|
+
source?: {
|
|
250270
|
+
type: "UserUpload";
|
|
250271
|
+
userId: string;
|
|
250272
|
+
} | {
|
|
250273
|
+
type: "Figma";
|
|
250274
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
250275
|
+
} | undefined;
|
|
250276
|
+
} | undefined;
|
|
250277
|
+
}[];
|
|
248970
250278
|
context: {
|
|
248971
250279
|
id: string;
|
|
248972
250280
|
createdAt: Date;
|
|
@@ -249938,6 +251246,24 @@ declare class ForgeProjectsEndpoint {
|
|
|
249938
251246
|
projectContextId: string;
|
|
249939
251247
|
instruction: string | null;
|
|
249940
251248
|
defaultRole: "Viewer" | "Builder";
|
|
251249
|
+
documents: {
|
|
251250
|
+
id: string;
|
|
251251
|
+
createdAt: string;
|
|
251252
|
+
updatedAt: string;
|
|
251253
|
+
title: string;
|
|
251254
|
+
thumbnail?: {
|
|
251255
|
+
id: string;
|
|
251256
|
+
url: string;
|
|
251257
|
+
name?: string | undefined;
|
|
251258
|
+
source?: {
|
|
251259
|
+
type: "UserUpload";
|
|
251260
|
+
userId: string;
|
|
251261
|
+
} | {
|
|
251262
|
+
type: "Figma";
|
|
251263
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
251264
|
+
} | undefined;
|
|
251265
|
+
} | undefined;
|
|
251266
|
+
}[];
|
|
249941
251267
|
fpContextId: string;
|
|
249942
251268
|
numberOfFeatures: number;
|
|
249943
251269
|
description?: string | undefined;
|
|
@@ -249961,6 +251287,24 @@ declare class ForgeProjectsEndpoint {
|
|
|
249961
251287
|
workspaceId: string;
|
|
249962
251288
|
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
249963
251289
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
251290
|
+
features: {
|
|
251291
|
+
id: string;
|
|
251292
|
+
createdAt: string;
|
|
251293
|
+
name: string;
|
|
251294
|
+
updatedAt: string;
|
|
251295
|
+
thumbnail?: {
|
|
251296
|
+
id: string;
|
|
251297
|
+
url: string;
|
|
251298
|
+
name?: string | undefined;
|
|
251299
|
+
source?: {
|
|
251300
|
+
type: "UserUpload";
|
|
251301
|
+
userId: string;
|
|
251302
|
+
} | {
|
|
251303
|
+
type: "Figma";
|
|
251304
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
251305
|
+
} | undefined;
|
|
251306
|
+
} | undefined;
|
|
251307
|
+
}[];
|
|
249964
251308
|
context: {
|
|
249965
251309
|
id: string;
|
|
249966
251310
|
createdAt: Date;
|
|
@@ -250932,6 +252276,24 @@ declare class ForgeProjectsEndpoint {
|
|
|
250932
252276
|
projectContextId: string;
|
|
250933
252277
|
instruction: string | null;
|
|
250934
252278
|
defaultRole: "Viewer" | "Builder";
|
|
252279
|
+
documents: {
|
|
252280
|
+
id: string;
|
|
252281
|
+
createdAt: string;
|
|
252282
|
+
updatedAt: string;
|
|
252283
|
+
title: string;
|
|
252284
|
+
thumbnail?: {
|
|
252285
|
+
id: string;
|
|
252286
|
+
url: string;
|
|
252287
|
+
name?: string | undefined;
|
|
252288
|
+
source?: {
|
|
252289
|
+
type: "UserUpload";
|
|
252290
|
+
userId: string;
|
|
252291
|
+
} | {
|
|
252292
|
+
type: "Figma";
|
|
252293
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
252294
|
+
} | undefined;
|
|
252295
|
+
} | undefined;
|
|
252296
|
+
}[];
|
|
250935
252297
|
fpContextId: string;
|
|
250936
252298
|
numberOfFeatures: number;
|
|
250937
252299
|
description?: string | undefined;
|
|
@@ -250955,6 +252317,24 @@ declare class ForgeProjectsEndpoint {
|
|
|
250955
252317
|
workspaceId: string;
|
|
250956
252318
|
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
250957
252319
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
252320
|
+
features: {
|
|
252321
|
+
id: string;
|
|
252322
|
+
createdAt: string;
|
|
252323
|
+
name: string;
|
|
252324
|
+
updatedAt: string;
|
|
252325
|
+
thumbnail?: {
|
|
252326
|
+
id: string;
|
|
252327
|
+
url: string;
|
|
252328
|
+
name?: string | undefined;
|
|
252329
|
+
source?: {
|
|
252330
|
+
type: "UserUpload";
|
|
252331
|
+
userId: string;
|
|
252332
|
+
} | {
|
|
252333
|
+
type: "Figma";
|
|
252334
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
252335
|
+
} | undefined;
|
|
252336
|
+
} | undefined;
|
|
252337
|
+
}[];
|
|
250958
252338
|
context: {
|
|
250959
252339
|
id: string;
|
|
250960
252340
|
createdAt: Date;
|
|
@@ -251926,6 +253306,24 @@ declare class ForgeProjectsEndpoint {
|
|
|
251926
253306
|
projectContextId: string;
|
|
251927
253307
|
instruction: string | null;
|
|
251928
253308
|
defaultRole: "Viewer" | "Builder";
|
|
253309
|
+
documents: {
|
|
253310
|
+
id: string;
|
|
253311
|
+
createdAt: string;
|
|
253312
|
+
updatedAt: string;
|
|
253313
|
+
title: string;
|
|
253314
|
+
thumbnail?: {
|
|
253315
|
+
id: string;
|
|
253316
|
+
url: string;
|
|
253317
|
+
name?: string | undefined;
|
|
253318
|
+
source?: {
|
|
253319
|
+
type: "UserUpload";
|
|
253320
|
+
userId: string;
|
|
253321
|
+
} | {
|
|
253322
|
+
type: "Figma";
|
|
253323
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
253324
|
+
} | undefined;
|
|
253325
|
+
} | undefined;
|
|
253326
|
+
}[];
|
|
251929
253327
|
fpContextId: string;
|
|
251930
253328
|
numberOfFeatures: number;
|
|
251931
253329
|
description?: string | undefined;
|
|
@@ -251949,6 +253347,24 @@ declare class ForgeProjectsEndpoint {
|
|
|
251949
253347
|
workspaceId: string;
|
|
251950
253348
|
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
251951
253349
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
253350
|
+
features: {
|
|
253351
|
+
id: string;
|
|
253352
|
+
createdAt: string;
|
|
253353
|
+
name: string;
|
|
253354
|
+
updatedAt: string;
|
|
253355
|
+
thumbnail?: {
|
|
253356
|
+
id: string;
|
|
253357
|
+
url: string;
|
|
253358
|
+
name?: string | undefined;
|
|
253359
|
+
source?: {
|
|
253360
|
+
type: "UserUpload";
|
|
253361
|
+
userId: string;
|
|
253362
|
+
} | {
|
|
253363
|
+
type: "Figma";
|
|
253364
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
253365
|
+
} | undefined;
|
|
253366
|
+
} | undefined;
|
|
253367
|
+
}[];
|
|
251952
253368
|
context: {
|
|
251953
253369
|
id: string;
|
|
251954
253370
|
createdAt: Date;
|
|
@@ -252920,6 +254336,24 @@ declare class ForgeProjectsEndpoint {
|
|
|
252920
254336
|
projectContextId: string;
|
|
252921
254337
|
instruction: string | null;
|
|
252922
254338
|
defaultRole: "Viewer" | "Builder";
|
|
254339
|
+
documents: {
|
|
254340
|
+
id: string;
|
|
254341
|
+
createdAt: string;
|
|
254342
|
+
updatedAt: string;
|
|
254343
|
+
title: string;
|
|
254344
|
+
thumbnail?: {
|
|
254345
|
+
id: string;
|
|
254346
|
+
url: string;
|
|
254347
|
+
name?: string | undefined;
|
|
254348
|
+
source?: {
|
|
254349
|
+
type: "UserUpload";
|
|
254350
|
+
userId: string;
|
|
254351
|
+
} | {
|
|
254352
|
+
type: "Figma";
|
|
254353
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
254354
|
+
} | undefined;
|
|
254355
|
+
} | undefined;
|
|
254356
|
+
}[];
|
|
252923
254357
|
fpContextId: string;
|
|
252924
254358
|
numberOfFeatures: number;
|
|
252925
254359
|
description?: string | undefined;
|
|
@@ -252943,6 +254377,24 @@ declare class ForgeProjectsEndpoint {
|
|
|
252943
254377
|
workspaceId: string;
|
|
252944
254378
|
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
252945
254379
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
254380
|
+
features: {
|
|
254381
|
+
id: string;
|
|
254382
|
+
createdAt: string;
|
|
254383
|
+
name: string;
|
|
254384
|
+
updatedAt: string;
|
|
254385
|
+
thumbnail?: {
|
|
254386
|
+
id: string;
|
|
254387
|
+
url: string;
|
|
254388
|
+
name?: string | undefined;
|
|
254389
|
+
source?: {
|
|
254390
|
+
type: "UserUpload";
|
|
254391
|
+
userId: string;
|
|
254392
|
+
} | {
|
|
254393
|
+
type: "Figma";
|
|
254394
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
254395
|
+
} | undefined;
|
|
254396
|
+
} | undefined;
|
|
254397
|
+
}[];
|
|
252946
254398
|
context: {
|
|
252947
254399
|
id: string;
|
|
252948
254400
|
createdAt: Date;
|
|
@@ -253914,6 +255366,24 @@ declare class ForgeProjectsEndpoint {
|
|
|
253914
255366
|
projectContextId: string;
|
|
253915
255367
|
instruction: string | null;
|
|
253916
255368
|
defaultRole: "Viewer" | "Builder";
|
|
255369
|
+
documents: {
|
|
255370
|
+
id: string;
|
|
255371
|
+
createdAt: string;
|
|
255372
|
+
updatedAt: string;
|
|
255373
|
+
title: string;
|
|
255374
|
+
thumbnail?: {
|
|
255375
|
+
id: string;
|
|
255376
|
+
url: string;
|
|
255377
|
+
name?: string | undefined;
|
|
255378
|
+
source?: {
|
|
255379
|
+
type: "UserUpload";
|
|
255380
|
+
userId: string;
|
|
255381
|
+
} | {
|
|
255382
|
+
type: "Figma";
|
|
255383
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
255384
|
+
} | undefined;
|
|
255385
|
+
} | undefined;
|
|
255386
|
+
}[];
|
|
253917
255387
|
fpContextId: string;
|
|
253918
255388
|
numberOfFeatures: number;
|
|
253919
255389
|
description?: string | undefined;
|
|
@@ -258677,4 +260147,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
258677
260147
|
reason: ValidationErrorReason | undefined;
|
|
258678
260148
|
};
|
|
258679
260149
|
|
|
258680
|
-
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, 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, 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, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, 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, 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, DTOProduct, DTOProductCode, DTOProductPrice, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, 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, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadPromptState, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, 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, 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 };
|
|
260150
|
+
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, 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, 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, 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, DTOProduct, DTOProductCode, DTOProductPrice, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, 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, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadPromptState, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, 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, 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 };
|