@supernova-studio/client 1.10.14 → 1.10.15
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 +472 -149
- package/dist/index.d.ts +472 -149
- package/dist/index.js +108 -11
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1721 -1624
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -83085,6 +83085,287 @@ declare const DTOForgeProjectContextRemoveResponse: z.ZodObject<{
|
|
|
83085
83085
|
}>;
|
|
83086
83086
|
type DTOForgeProjectContextRemoveResponse = z.infer<typeof DTOForgeProjectContextRemoveResponse>;
|
|
83087
83087
|
|
|
83088
|
+
declare const DTOForgeProjectInvitation: z.ZodObject<{
|
|
83089
|
+
email: z.ZodString;
|
|
83090
|
+
forgeProjectId: z.ZodString;
|
|
83091
|
+
workspaceInvitationId: z.ZodString;
|
|
83092
|
+
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
83093
|
+
createdAt: z.ZodDate;
|
|
83094
|
+
updatedAt: z.ZodDate;
|
|
83095
|
+
createdById: z.ZodString;
|
|
83096
|
+
}, "strip", z.ZodTypeAny, {
|
|
83097
|
+
email: string;
|
|
83098
|
+
createdAt: Date;
|
|
83099
|
+
updatedAt: Date;
|
|
83100
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
83101
|
+
workspaceInvitationId: string;
|
|
83102
|
+
forgeProjectId: string;
|
|
83103
|
+
createdById: string;
|
|
83104
|
+
}, {
|
|
83105
|
+
email: string;
|
|
83106
|
+
createdAt: Date;
|
|
83107
|
+
updatedAt: Date;
|
|
83108
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
83109
|
+
workspaceInvitationId: string;
|
|
83110
|
+
forgeProjectId: string;
|
|
83111
|
+
createdById: string;
|
|
83112
|
+
}>;
|
|
83113
|
+
type DTOForgeProjectInvitation = z.infer<typeof DTOForgeProjectInvitation>;
|
|
83114
|
+
declare const DTOCreateForgeProjectInvitation: z.ZodObject<Pick<{
|
|
83115
|
+
email: z.ZodString;
|
|
83116
|
+
forgeProjectId: z.ZodString;
|
|
83117
|
+
workspaceInvitationId: z.ZodString;
|
|
83118
|
+
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
83119
|
+
createdAt: z.ZodDate;
|
|
83120
|
+
updatedAt: z.ZodDate;
|
|
83121
|
+
createdById: z.ZodString;
|
|
83122
|
+
}, "email" | "role"> & {
|
|
83123
|
+
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
83124
|
+
}, "strip", z.ZodTypeAny, {
|
|
83125
|
+
email: string;
|
|
83126
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
83127
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
83128
|
+
}, {
|
|
83129
|
+
email: string;
|
|
83130
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
83131
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
83132
|
+
}>;
|
|
83133
|
+
type DTOCreateForgeProjectInvitation = z.infer<typeof DTOCreateForgeProjectInvitation>;
|
|
83134
|
+
declare const DTOUpdateForgeProjectInvitation: z.ZodObject<Omit<Pick<{
|
|
83135
|
+
email: z.ZodString;
|
|
83136
|
+
forgeProjectId: z.ZodString;
|
|
83137
|
+
workspaceInvitationId: z.ZodString;
|
|
83138
|
+
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
83139
|
+
createdAt: z.ZodDate;
|
|
83140
|
+
updatedAt: z.ZodDate;
|
|
83141
|
+
createdById: z.ZodString;
|
|
83142
|
+
}, "email" | "role"> & {
|
|
83143
|
+
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
83144
|
+
}, "email">, "strip", z.ZodTypeAny, {
|
|
83145
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
83146
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
83147
|
+
}, {
|
|
83148
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
83149
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
83150
|
+
}>;
|
|
83151
|
+
type DTOUpdateForgeProjectInvitation = z.infer<typeof DTOUpdateForgeProjectInvitation>;
|
|
83152
|
+
declare const DTORemoveForgeProjectInvitation: z.ZodObject<Pick<Pick<{
|
|
83153
|
+
email: z.ZodString;
|
|
83154
|
+
forgeProjectId: z.ZodString;
|
|
83155
|
+
workspaceInvitationId: z.ZodString;
|
|
83156
|
+
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
83157
|
+
createdAt: z.ZodDate;
|
|
83158
|
+
updatedAt: z.ZodDate;
|
|
83159
|
+
createdById: z.ZodString;
|
|
83160
|
+
}, "email" | "role"> & {
|
|
83161
|
+
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
83162
|
+
}, "email">, "strip", z.ZodTypeAny, {
|
|
83163
|
+
email: string;
|
|
83164
|
+
}, {
|
|
83165
|
+
email: string;
|
|
83166
|
+
}>;
|
|
83167
|
+
type DTORemoveForgeProjectInvitation = z.infer<typeof DTORemoveForgeProjectInvitation>;
|
|
83168
|
+
declare const DTOForgeProjectInvitationsListResponse: z.ZodObject<{
|
|
83169
|
+
invitations: z.ZodArray<z.ZodObject<{
|
|
83170
|
+
email: z.ZodString;
|
|
83171
|
+
forgeProjectId: z.ZodString;
|
|
83172
|
+
workspaceInvitationId: z.ZodString;
|
|
83173
|
+
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
83174
|
+
createdAt: z.ZodDate;
|
|
83175
|
+
updatedAt: z.ZodDate;
|
|
83176
|
+
createdById: z.ZodString;
|
|
83177
|
+
}, "strip", z.ZodTypeAny, {
|
|
83178
|
+
email: string;
|
|
83179
|
+
createdAt: Date;
|
|
83180
|
+
updatedAt: Date;
|
|
83181
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
83182
|
+
workspaceInvitationId: string;
|
|
83183
|
+
forgeProjectId: string;
|
|
83184
|
+
createdById: string;
|
|
83185
|
+
}, {
|
|
83186
|
+
email: string;
|
|
83187
|
+
createdAt: Date;
|
|
83188
|
+
updatedAt: Date;
|
|
83189
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
83190
|
+
workspaceInvitationId: string;
|
|
83191
|
+
forgeProjectId: string;
|
|
83192
|
+
createdById: string;
|
|
83193
|
+
}>, "many">;
|
|
83194
|
+
}, "strip", z.ZodTypeAny, {
|
|
83195
|
+
invitations: {
|
|
83196
|
+
email: string;
|
|
83197
|
+
createdAt: Date;
|
|
83198
|
+
updatedAt: Date;
|
|
83199
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
83200
|
+
workspaceInvitationId: string;
|
|
83201
|
+
forgeProjectId: string;
|
|
83202
|
+
createdById: string;
|
|
83203
|
+
}[];
|
|
83204
|
+
}, {
|
|
83205
|
+
invitations: {
|
|
83206
|
+
email: string;
|
|
83207
|
+
createdAt: Date;
|
|
83208
|
+
updatedAt: Date;
|
|
83209
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
83210
|
+
workspaceInvitationId: string;
|
|
83211
|
+
forgeProjectId: string;
|
|
83212
|
+
createdById: string;
|
|
83213
|
+
}[];
|
|
83214
|
+
}>;
|
|
83215
|
+
type DTOForgeProjectInvitationsListResponse = z.infer<typeof DTOForgeProjectInvitationsListResponse>;
|
|
83216
|
+
declare const DTOForgeProjectInvitationGetResponse: z.ZodObject<{
|
|
83217
|
+
invitation: z.ZodNullable<z.ZodObject<{
|
|
83218
|
+
email: z.ZodString;
|
|
83219
|
+
forgeProjectId: z.ZodString;
|
|
83220
|
+
workspaceInvitationId: z.ZodString;
|
|
83221
|
+
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
83222
|
+
createdAt: z.ZodDate;
|
|
83223
|
+
updatedAt: z.ZodDate;
|
|
83224
|
+
createdById: z.ZodString;
|
|
83225
|
+
}, "strip", z.ZodTypeAny, {
|
|
83226
|
+
email: string;
|
|
83227
|
+
createdAt: Date;
|
|
83228
|
+
updatedAt: Date;
|
|
83229
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
83230
|
+
workspaceInvitationId: string;
|
|
83231
|
+
forgeProjectId: string;
|
|
83232
|
+
createdById: string;
|
|
83233
|
+
}, {
|
|
83234
|
+
email: string;
|
|
83235
|
+
createdAt: Date;
|
|
83236
|
+
updatedAt: Date;
|
|
83237
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
83238
|
+
workspaceInvitationId: string;
|
|
83239
|
+
forgeProjectId: string;
|
|
83240
|
+
createdById: string;
|
|
83241
|
+
}>>;
|
|
83242
|
+
}, "strip", z.ZodTypeAny, {
|
|
83243
|
+
invitation: {
|
|
83244
|
+
email: string;
|
|
83245
|
+
createdAt: Date;
|
|
83246
|
+
updatedAt: Date;
|
|
83247
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
83248
|
+
workspaceInvitationId: string;
|
|
83249
|
+
forgeProjectId: string;
|
|
83250
|
+
createdById: string;
|
|
83251
|
+
} | null;
|
|
83252
|
+
}, {
|
|
83253
|
+
invitation: {
|
|
83254
|
+
email: string;
|
|
83255
|
+
createdAt: Date;
|
|
83256
|
+
updatedAt: Date;
|
|
83257
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
83258
|
+
workspaceInvitationId: string;
|
|
83259
|
+
forgeProjectId: string;
|
|
83260
|
+
createdById: string;
|
|
83261
|
+
} | null;
|
|
83262
|
+
}>;
|
|
83263
|
+
type DTOForgeProjectInvitationGetResponse = z.infer<typeof DTOForgeProjectInvitationGetResponse>;
|
|
83264
|
+
declare const DTOForgeProjectInvitationCreateResponse: z.ZodObject<{
|
|
83265
|
+
invitation: z.ZodObject<{
|
|
83266
|
+
email: z.ZodString;
|
|
83267
|
+
forgeProjectId: z.ZodString;
|
|
83268
|
+
workspaceInvitationId: z.ZodString;
|
|
83269
|
+
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
83270
|
+
createdAt: z.ZodDate;
|
|
83271
|
+
updatedAt: z.ZodDate;
|
|
83272
|
+
createdById: z.ZodString;
|
|
83273
|
+
}, "strip", z.ZodTypeAny, {
|
|
83274
|
+
email: string;
|
|
83275
|
+
createdAt: Date;
|
|
83276
|
+
updatedAt: Date;
|
|
83277
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
83278
|
+
workspaceInvitationId: string;
|
|
83279
|
+
forgeProjectId: string;
|
|
83280
|
+
createdById: string;
|
|
83281
|
+
}, {
|
|
83282
|
+
email: string;
|
|
83283
|
+
createdAt: Date;
|
|
83284
|
+
updatedAt: Date;
|
|
83285
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
83286
|
+
workspaceInvitationId: string;
|
|
83287
|
+
forgeProjectId: string;
|
|
83288
|
+
createdById: string;
|
|
83289
|
+
}>;
|
|
83290
|
+
}, "strip", z.ZodTypeAny, {
|
|
83291
|
+
invitation: {
|
|
83292
|
+
email: string;
|
|
83293
|
+
createdAt: Date;
|
|
83294
|
+
updatedAt: Date;
|
|
83295
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
83296
|
+
workspaceInvitationId: string;
|
|
83297
|
+
forgeProjectId: string;
|
|
83298
|
+
createdById: string;
|
|
83299
|
+
};
|
|
83300
|
+
}, {
|
|
83301
|
+
invitation: {
|
|
83302
|
+
email: string;
|
|
83303
|
+
createdAt: Date;
|
|
83304
|
+
updatedAt: Date;
|
|
83305
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
83306
|
+
workspaceInvitationId: string;
|
|
83307
|
+
forgeProjectId: string;
|
|
83308
|
+
createdById: string;
|
|
83309
|
+
};
|
|
83310
|
+
}>;
|
|
83311
|
+
type DTOForgeProjectInvitationCreateResponse = z.infer<typeof DTOForgeProjectInvitationCreateResponse>;
|
|
83312
|
+
declare const DTOForgeProjectInvitationUpdateResponse: z.ZodObject<{
|
|
83313
|
+
invitation: z.ZodNullable<z.ZodObject<{
|
|
83314
|
+
email: z.ZodString;
|
|
83315
|
+
forgeProjectId: z.ZodString;
|
|
83316
|
+
workspaceInvitationId: z.ZodString;
|
|
83317
|
+
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
83318
|
+
createdAt: z.ZodDate;
|
|
83319
|
+
updatedAt: z.ZodDate;
|
|
83320
|
+
createdById: z.ZodString;
|
|
83321
|
+
}, "strip", z.ZodTypeAny, {
|
|
83322
|
+
email: string;
|
|
83323
|
+
createdAt: Date;
|
|
83324
|
+
updatedAt: Date;
|
|
83325
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
83326
|
+
workspaceInvitationId: string;
|
|
83327
|
+
forgeProjectId: string;
|
|
83328
|
+
createdById: string;
|
|
83329
|
+
}, {
|
|
83330
|
+
email: string;
|
|
83331
|
+
createdAt: Date;
|
|
83332
|
+
updatedAt: Date;
|
|
83333
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
83334
|
+
workspaceInvitationId: string;
|
|
83335
|
+
forgeProjectId: string;
|
|
83336
|
+
createdById: string;
|
|
83337
|
+
}>>;
|
|
83338
|
+
}, "strip", z.ZodTypeAny, {
|
|
83339
|
+
invitation: {
|
|
83340
|
+
email: string;
|
|
83341
|
+
createdAt: Date;
|
|
83342
|
+
updatedAt: Date;
|
|
83343
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
83344
|
+
workspaceInvitationId: string;
|
|
83345
|
+
forgeProjectId: string;
|
|
83346
|
+
createdById: string;
|
|
83347
|
+
} | null;
|
|
83348
|
+
}, {
|
|
83349
|
+
invitation: {
|
|
83350
|
+
email: string;
|
|
83351
|
+
createdAt: Date;
|
|
83352
|
+
updatedAt: Date;
|
|
83353
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
83354
|
+
workspaceInvitationId: string;
|
|
83355
|
+
forgeProjectId: string;
|
|
83356
|
+
createdById: string;
|
|
83357
|
+
} | null;
|
|
83358
|
+
}>;
|
|
83359
|
+
type DTOForgeProjectInvitationUpdateResponse = z.infer<typeof DTOForgeProjectInvitationUpdateResponse>;
|
|
83360
|
+
declare const DTOForgeProjectInvitationRemoveResponse: z.ZodObject<{
|
|
83361
|
+
ok: z.ZodLiteral<true>;
|
|
83362
|
+
}, "strip", z.ZodTypeAny, {
|
|
83363
|
+
ok: true;
|
|
83364
|
+
}, {
|
|
83365
|
+
ok: true;
|
|
83366
|
+
}>;
|
|
83367
|
+
type DTOForgeProjectInvitationRemoveResponse = z.infer<typeof DTOForgeProjectInvitationRemoveResponse>;
|
|
83368
|
+
|
|
83088
83369
|
declare const DTOForgeProjectIterationMergeMeta: z.ZodObject<{
|
|
83089
83370
|
mergeByUserId: z.ZodString;
|
|
83090
83371
|
mergeAt: z.ZodDate;
|
|
@@ -83100,7 +83381,7 @@ declare const DTOForgeProjectIteration: z.ZodObject<Omit<{
|
|
|
83100
83381
|
branchId: z.ZodOptional<z.ZodString>;
|
|
83101
83382
|
buildArtifactId: z.ZodString;
|
|
83102
83383
|
createdAt: z.ZodDate;
|
|
83103
|
-
|
|
83384
|
+
forgeProjectId: z.ZodString;
|
|
83104
83385
|
id: z.ZodString;
|
|
83105
83386
|
locked: z.ZodBoolean;
|
|
83106
83387
|
messages: z.ZodArray<z.ZodObject<{
|
|
@@ -85191,8 +85472,8 @@ declare const DTOForgeProjectIteration: z.ZodObject<Omit<{
|
|
|
85191
85472
|
text: string;
|
|
85192
85473
|
}[] | undefined;
|
|
85193
85474
|
}[];
|
|
85475
|
+
forgeProjectId: string;
|
|
85194
85476
|
buildArtifactId: string;
|
|
85195
|
-
fpId: string;
|
|
85196
85477
|
locked: boolean;
|
|
85197
85478
|
branchId?: string | undefined;
|
|
85198
85479
|
previousIterationId?: string | undefined;
|
|
@@ -85286,8 +85567,8 @@ declare const DTOForgeProjectIteration: z.ZodObject<Omit<{
|
|
|
85286
85567
|
text: string;
|
|
85287
85568
|
}[] | undefined;
|
|
85288
85569
|
}[];
|
|
85570
|
+
forgeProjectId: string;
|
|
85289
85571
|
buildArtifactId: string;
|
|
85290
|
-
fpId: string;
|
|
85291
85572
|
locked: boolean;
|
|
85292
85573
|
branchId?: string | undefined;
|
|
85293
85574
|
previousIterationId?: string | undefined;
|
|
@@ -85302,7 +85583,7 @@ declare const DTOForgeProjectIterationListResponse: z.ZodObject<{
|
|
|
85302
85583
|
branchId: z.ZodOptional<z.ZodString>;
|
|
85303
85584
|
buildArtifactId: z.ZodString;
|
|
85304
85585
|
createdAt: z.ZodDate;
|
|
85305
|
-
|
|
85586
|
+
forgeProjectId: z.ZodString;
|
|
85306
85587
|
id: z.ZodString;
|
|
85307
85588
|
locked: z.ZodBoolean;
|
|
85308
85589
|
messages: z.ZodArray<z.ZodObject<{
|
|
@@ -87393,8 +87674,8 @@ declare const DTOForgeProjectIterationListResponse: z.ZodObject<{
|
|
|
87393
87674
|
text: string;
|
|
87394
87675
|
}[] | undefined;
|
|
87395
87676
|
}[];
|
|
87677
|
+
forgeProjectId: string;
|
|
87396
87678
|
buildArtifactId: string;
|
|
87397
|
-
fpId: string;
|
|
87398
87679
|
locked: boolean;
|
|
87399
87680
|
branchId?: string | undefined;
|
|
87400
87681
|
previousIterationId?: string | undefined;
|
|
@@ -87488,8 +87769,8 @@ declare const DTOForgeProjectIterationListResponse: z.ZodObject<{
|
|
|
87488
87769
|
text: string;
|
|
87489
87770
|
}[] | undefined;
|
|
87490
87771
|
}[];
|
|
87772
|
+
forgeProjectId: string;
|
|
87491
87773
|
buildArtifactId: string;
|
|
87492
|
-
fpId: string;
|
|
87493
87774
|
locked: boolean;
|
|
87494
87775
|
branchId?: string | undefined;
|
|
87495
87776
|
previousIterationId?: string | undefined;
|
|
@@ -87585,8 +87866,8 @@ declare const DTOForgeProjectIterationListResponse: z.ZodObject<{
|
|
|
87585
87866
|
text: string;
|
|
87586
87867
|
}[] | undefined;
|
|
87587
87868
|
}[];
|
|
87869
|
+
forgeProjectId: string;
|
|
87588
87870
|
buildArtifactId: string;
|
|
87589
|
-
fpId: string;
|
|
87590
87871
|
locked: boolean;
|
|
87591
87872
|
branchId?: string | undefined;
|
|
87592
87873
|
previousIterationId?: string | undefined;
|
|
@@ -87682,8 +87963,8 @@ declare const DTOForgeProjectIterationListResponse: z.ZodObject<{
|
|
|
87682
87963
|
text: string;
|
|
87683
87964
|
}[] | undefined;
|
|
87684
87965
|
}[];
|
|
87966
|
+
forgeProjectId: string;
|
|
87685
87967
|
buildArtifactId: string;
|
|
87686
|
-
fpId: string;
|
|
87687
87968
|
locked: boolean;
|
|
87688
87969
|
branchId?: string | undefined;
|
|
87689
87970
|
previousIterationId?: string | undefined;
|
|
@@ -87699,7 +87980,7 @@ declare const DTOGetForgeProjectIterationResponse: z.ZodObject<{
|
|
|
87699
87980
|
branchId: z.ZodOptional<z.ZodString>;
|
|
87700
87981
|
buildArtifactId: z.ZodString;
|
|
87701
87982
|
createdAt: z.ZodDate;
|
|
87702
|
-
|
|
87983
|
+
forgeProjectId: z.ZodString;
|
|
87703
87984
|
id: z.ZodString;
|
|
87704
87985
|
locked: z.ZodBoolean;
|
|
87705
87986
|
messages: z.ZodArray<z.ZodObject<{
|
|
@@ -89790,8 +90071,8 @@ declare const DTOGetForgeProjectIterationResponse: z.ZodObject<{
|
|
|
89790
90071
|
text: string;
|
|
89791
90072
|
}[] | undefined;
|
|
89792
90073
|
}[];
|
|
90074
|
+
forgeProjectId: string;
|
|
89793
90075
|
buildArtifactId: string;
|
|
89794
|
-
fpId: string;
|
|
89795
90076
|
locked: boolean;
|
|
89796
90077
|
branchId?: string | undefined;
|
|
89797
90078
|
previousIterationId?: string | undefined;
|
|
@@ -89885,8 +90166,8 @@ declare const DTOGetForgeProjectIterationResponse: z.ZodObject<{
|
|
|
89885
90166
|
text: string;
|
|
89886
90167
|
}[] | undefined;
|
|
89887
90168
|
}[];
|
|
90169
|
+
forgeProjectId: string;
|
|
89888
90170
|
buildArtifactId: string;
|
|
89889
|
-
fpId: string;
|
|
89890
90171
|
locked: boolean;
|
|
89891
90172
|
branchId?: string | undefined;
|
|
89892
90173
|
previousIterationId?: string | undefined;
|
|
@@ -89982,8 +90263,8 @@ declare const DTOGetForgeProjectIterationResponse: z.ZodObject<{
|
|
|
89982
90263
|
text: string;
|
|
89983
90264
|
}[] | undefined;
|
|
89984
90265
|
}[];
|
|
90266
|
+
forgeProjectId: string;
|
|
89985
90267
|
buildArtifactId: string;
|
|
89986
|
-
fpId: string;
|
|
89987
90268
|
locked: boolean;
|
|
89988
90269
|
branchId?: string | undefined;
|
|
89989
90270
|
previousIterationId?: string | undefined;
|
|
@@ -90079,8 +90360,8 @@ declare const DTOGetForgeProjectIterationResponse: z.ZodObject<{
|
|
|
90079
90360
|
text: string;
|
|
90080
90361
|
}[] | undefined;
|
|
90081
90362
|
}[];
|
|
90363
|
+
forgeProjectId: string;
|
|
90082
90364
|
buildArtifactId: string;
|
|
90083
|
-
fpId: string;
|
|
90084
90365
|
locked: boolean;
|
|
90085
90366
|
branchId?: string | undefined;
|
|
90086
90367
|
previousIterationId?: string | undefined;
|
|
@@ -90095,7 +90376,7 @@ declare const DTOCreateForgeProjectIteration: z.ZodObject<Omit<Omit<{
|
|
|
90095
90376
|
branchId: z.ZodOptional<z.ZodString>;
|
|
90096
90377
|
buildArtifactId: z.ZodString;
|
|
90097
90378
|
createdAt: z.ZodDate;
|
|
90098
|
-
|
|
90379
|
+
forgeProjectId: z.ZodString;
|
|
90099
90380
|
id: z.ZodString;
|
|
90100
90381
|
locked: z.ZodBoolean;
|
|
90101
90382
|
messages: z.ZodArray<z.ZodObject<{
|
|
@@ -92100,7 +92381,7 @@ declare const DTOCreateForgeProjectIteration: z.ZodObject<Omit<Omit<{
|
|
|
92100
92381
|
mergeByUserId: string;
|
|
92101
92382
|
mergeAt: Date;
|
|
92102
92383
|
}>>;
|
|
92103
|
-
}, "createdAt" | "artifacts" | "messages" | "
|
|
92384
|
+
}, "createdAt" | "artifacts" | "messages" | "forgeProjectId" | "mergeMeta">, "strip", z.ZodTypeAny, {
|
|
92104
92385
|
id: string;
|
|
92105
92386
|
buildArtifactId: string;
|
|
92106
92387
|
locked: boolean;
|
|
@@ -92140,7 +92421,7 @@ declare const DTOCreateForgeProjectIterationResponse: z.ZodObject<{
|
|
|
92140
92421
|
branchId: z.ZodOptional<z.ZodString>;
|
|
92141
92422
|
buildArtifactId: z.ZodString;
|
|
92142
92423
|
createdAt: z.ZodDate;
|
|
92143
|
-
|
|
92424
|
+
forgeProjectId: z.ZodString;
|
|
92144
92425
|
id: z.ZodString;
|
|
92145
92426
|
locked: z.ZodBoolean;
|
|
92146
92427
|
messages: z.ZodArray<z.ZodObject<{
|
|
@@ -94231,8 +94512,8 @@ declare const DTOCreateForgeProjectIterationResponse: z.ZodObject<{
|
|
|
94231
94512
|
text: string;
|
|
94232
94513
|
}[] | undefined;
|
|
94233
94514
|
}[];
|
|
94515
|
+
forgeProjectId: string;
|
|
94234
94516
|
buildArtifactId: string;
|
|
94235
|
-
fpId: string;
|
|
94236
94517
|
locked: boolean;
|
|
94237
94518
|
branchId?: string | undefined;
|
|
94238
94519
|
previousIterationId?: string | undefined;
|
|
@@ -94326,8 +94607,8 @@ declare const DTOCreateForgeProjectIterationResponse: z.ZodObject<{
|
|
|
94326
94607
|
text: string;
|
|
94327
94608
|
}[] | undefined;
|
|
94328
94609
|
}[];
|
|
94610
|
+
forgeProjectId: string;
|
|
94329
94611
|
buildArtifactId: string;
|
|
94330
|
-
fpId: string;
|
|
94331
94612
|
locked: boolean;
|
|
94332
94613
|
branchId?: string | undefined;
|
|
94333
94614
|
previousIterationId?: string | undefined;
|
|
@@ -94423,8 +94704,8 @@ declare const DTOCreateForgeProjectIterationResponse: z.ZodObject<{
|
|
|
94423
94704
|
text: string;
|
|
94424
94705
|
}[] | undefined;
|
|
94425
94706
|
}[];
|
|
94707
|
+
forgeProjectId: string;
|
|
94426
94708
|
buildArtifactId: string;
|
|
94427
|
-
fpId: string;
|
|
94428
94709
|
locked: boolean;
|
|
94429
94710
|
branchId?: string | undefined;
|
|
94430
94711
|
previousIterationId?: string | undefined;
|
|
@@ -94520,8 +94801,8 @@ declare const DTOCreateForgeProjectIterationResponse: z.ZodObject<{
|
|
|
94520
94801
|
text: string;
|
|
94521
94802
|
}[] | undefined;
|
|
94522
94803
|
}[];
|
|
94804
|
+
forgeProjectId: string;
|
|
94523
94805
|
buildArtifactId: string;
|
|
94524
|
-
fpId: string;
|
|
94525
94806
|
locked: boolean;
|
|
94526
94807
|
branchId?: string | undefined;
|
|
94527
94808
|
previousIterationId?: string | undefined;
|
|
@@ -94537,7 +94818,7 @@ declare const DTOUpdateForgeProjectIterationResponse: z.ZodObject<{
|
|
|
94537
94818
|
branchId: z.ZodOptional<z.ZodString>;
|
|
94538
94819
|
buildArtifactId: z.ZodString;
|
|
94539
94820
|
createdAt: z.ZodDate;
|
|
94540
|
-
|
|
94821
|
+
forgeProjectId: z.ZodString;
|
|
94541
94822
|
id: z.ZodString;
|
|
94542
94823
|
locked: z.ZodBoolean;
|
|
94543
94824
|
messages: z.ZodArray<z.ZodObject<{
|
|
@@ -96628,8 +96909,8 @@ declare const DTOUpdateForgeProjectIterationResponse: z.ZodObject<{
|
|
|
96628
96909
|
text: string;
|
|
96629
96910
|
}[] | undefined;
|
|
96630
96911
|
}[];
|
|
96912
|
+
forgeProjectId: string;
|
|
96631
96913
|
buildArtifactId: string;
|
|
96632
|
-
fpId: string;
|
|
96633
96914
|
locked: boolean;
|
|
96634
96915
|
branchId?: string | undefined;
|
|
96635
96916
|
previousIterationId?: string | undefined;
|
|
@@ -96723,8 +97004,8 @@ declare const DTOUpdateForgeProjectIterationResponse: z.ZodObject<{
|
|
|
96723
97004
|
text: string;
|
|
96724
97005
|
}[] | undefined;
|
|
96725
97006
|
}[];
|
|
97007
|
+
forgeProjectId: string;
|
|
96726
97008
|
buildArtifactId: string;
|
|
96727
|
-
fpId: string;
|
|
96728
97009
|
locked: boolean;
|
|
96729
97010
|
branchId?: string | undefined;
|
|
96730
97011
|
previousIterationId?: string | undefined;
|
|
@@ -96820,8 +97101,8 @@ declare const DTOUpdateForgeProjectIterationResponse: z.ZodObject<{
|
|
|
96820
97101
|
text: string;
|
|
96821
97102
|
}[] | undefined;
|
|
96822
97103
|
}[];
|
|
97104
|
+
forgeProjectId: string;
|
|
96823
97105
|
buildArtifactId: string;
|
|
96824
|
-
fpId: string;
|
|
96825
97106
|
locked: boolean;
|
|
96826
97107
|
branchId?: string | undefined;
|
|
96827
97108
|
previousIterationId?: string | undefined;
|
|
@@ -96917,8 +97198,8 @@ declare const DTOUpdateForgeProjectIterationResponse: z.ZodObject<{
|
|
|
96917
97198
|
text: string;
|
|
96918
97199
|
}[] | undefined;
|
|
96919
97200
|
}[];
|
|
97201
|
+
forgeProjectId: string;
|
|
96920
97202
|
buildArtifactId: string;
|
|
96921
|
-
fpId: string;
|
|
96922
97203
|
locked: boolean;
|
|
96923
97204
|
branchId?: string | undefined;
|
|
96924
97205
|
previousIterationId?: string | undefined;
|
|
@@ -96942,7 +97223,7 @@ declare const DTOForgeProjectMemberRole: z.ZodEnum<["Viewer", "Editor", "Admin"]
|
|
|
96942
97223
|
type DTOForgeProjectMemberRole = z.infer<typeof DTOForgeProjectMemberRole>;
|
|
96943
97224
|
declare const DTOForgeProjectMember: z.ZodObject<{
|
|
96944
97225
|
userId: z.ZodString;
|
|
96945
|
-
|
|
97226
|
+
forgeProjectId: z.ZodString;
|
|
96946
97227
|
workspaceMembershipId: z.ZodString;
|
|
96947
97228
|
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
96948
97229
|
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
@@ -96994,9 +97275,9 @@ declare const DTOForgeProjectMember: z.ZodObject<{
|
|
|
96994
97275
|
userId: string;
|
|
96995
97276
|
role: "Admin" | "Viewer" | "Editor";
|
|
96996
97277
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
96997
|
-
|
|
96998
|
-
workspaceMembershipId: string;
|
|
97278
|
+
forgeProjectId: string;
|
|
96999
97279
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97280
|
+
workspaceMembershipId: string;
|
|
97000
97281
|
}, {
|
|
97001
97282
|
user: {
|
|
97002
97283
|
id: string;
|
|
@@ -97010,14 +97291,14 @@ declare const DTOForgeProjectMember: z.ZodObject<{
|
|
|
97010
97291
|
userId: string;
|
|
97011
97292
|
role: "Admin" | "Viewer" | "Editor";
|
|
97012
97293
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97013
|
-
|
|
97014
|
-
workspaceMembershipId: string;
|
|
97294
|
+
forgeProjectId: string;
|
|
97015
97295
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97296
|
+
workspaceMembershipId: string;
|
|
97016
97297
|
}>;
|
|
97017
97298
|
type DTOForgeProjectMember = z.infer<typeof DTOForgeProjectMember>;
|
|
97018
97299
|
declare const DTOCreateForgeProjectMember: z.ZodObject<Pick<{
|
|
97019
97300
|
userId: z.ZodString;
|
|
97020
|
-
|
|
97301
|
+
forgeProjectId: z.ZodString;
|
|
97021
97302
|
workspaceMembershipId: z.ZodString;
|
|
97022
97303
|
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
97023
97304
|
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
@@ -97066,7 +97347,7 @@ declare const DTOCreateForgeProjectMember: z.ZodObject<Pick<{
|
|
|
97066
97347
|
type DTOCreateForgeProjectMember = z.infer<typeof DTOCreateForgeProjectMember>;
|
|
97067
97348
|
declare const DTOUpdateForgeProjectMember: z.ZodObject<Omit<Pick<{
|
|
97068
97349
|
userId: z.ZodString;
|
|
97069
|
-
|
|
97350
|
+
forgeProjectId: z.ZodString;
|
|
97070
97351
|
workspaceMembershipId: z.ZodString;
|
|
97071
97352
|
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
97072
97353
|
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
@@ -97113,7 +97394,7 @@ declare const DTOUpdateForgeProjectMember: z.ZodObject<Omit<Pick<{
|
|
|
97113
97394
|
type DTOUpdateForgeProjectMember = z.infer<typeof DTOUpdateForgeProjectMember>;
|
|
97114
97395
|
declare const DTORemoveForgeProjectMember: z.ZodObject<Pick<{
|
|
97115
97396
|
userId: z.ZodString;
|
|
97116
|
-
|
|
97397
|
+
forgeProjectId: z.ZodString;
|
|
97117
97398
|
workspaceMembershipId: z.ZodString;
|
|
97118
97399
|
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
97119
97400
|
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
@@ -97161,7 +97442,7 @@ type DTORemoveForgeProjectMember = z.infer<typeof DTORemoveForgeProjectMember>;
|
|
|
97161
97442
|
declare const DTOForgeProjectMembersListResponse: z.ZodObject<{
|
|
97162
97443
|
members: z.ZodArray<z.ZodObject<{
|
|
97163
97444
|
userId: z.ZodString;
|
|
97164
|
-
|
|
97445
|
+
forgeProjectId: z.ZodString;
|
|
97165
97446
|
workspaceMembershipId: z.ZodString;
|
|
97166
97447
|
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
97167
97448
|
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
@@ -97213,9 +97494,9 @@ declare const DTOForgeProjectMembersListResponse: z.ZodObject<{
|
|
|
97213
97494
|
userId: string;
|
|
97214
97495
|
role: "Admin" | "Viewer" | "Editor";
|
|
97215
97496
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97216
|
-
|
|
97217
|
-
workspaceMembershipId: string;
|
|
97497
|
+
forgeProjectId: string;
|
|
97218
97498
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97499
|
+
workspaceMembershipId: string;
|
|
97219
97500
|
}, {
|
|
97220
97501
|
user: {
|
|
97221
97502
|
id: string;
|
|
@@ -97229,9 +97510,9 @@ declare const DTOForgeProjectMembersListResponse: z.ZodObject<{
|
|
|
97229
97510
|
userId: string;
|
|
97230
97511
|
role: "Admin" | "Viewer" | "Editor";
|
|
97231
97512
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97232
|
-
|
|
97233
|
-
workspaceMembershipId: string;
|
|
97513
|
+
forgeProjectId: string;
|
|
97234
97514
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97515
|
+
workspaceMembershipId: string;
|
|
97235
97516
|
}>, "many">;
|
|
97236
97517
|
}, "strip", z.ZodTypeAny, {
|
|
97237
97518
|
members: {
|
|
@@ -97247,9 +97528,9 @@ declare const DTOForgeProjectMembersListResponse: z.ZodObject<{
|
|
|
97247
97528
|
userId: string;
|
|
97248
97529
|
role: "Admin" | "Viewer" | "Editor";
|
|
97249
97530
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97250
|
-
|
|
97251
|
-
workspaceMembershipId: string;
|
|
97531
|
+
forgeProjectId: string;
|
|
97252
97532
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97533
|
+
workspaceMembershipId: string;
|
|
97253
97534
|
}[];
|
|
97254
97535
|
}, {
|
|
97255
97536
|
members: {
|
|
@@ -97265,16 +97546,16 @@ declare const DTOForgeProjectMembersListResponse: z.ZodObject<{
|
|
|
97265
97546
|
userId: string;
|
|
97266
97547
|
role: "Admin" | "Viewer" | "Editor";
|
|
97267
97548
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97268
|
-
|
|
97269
|
-
workspaceMembershipId: string;
|
|
97549
|
+
forgeProjectId: string;
|
|
97270
97550
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97551
|
+
workspaceMembershipId: string;
|
|
97271
97552
|
}[];
|
|
97272
97553
|
}>;
|
|
97273
97554
|
type DTOForgeProjectMembersListResponse = z.infer<typeof DTOForgeProjectMembersListResponse>;
|
|
97274
97555
|
declare const DTOForgeProjectMemberGetResponse: z.ZodObject<{
|
|
97275
97556
|
member: z.ZodNullable<z.ZodObject<{
|
|
97276
97557
|
userId: z.ZodString;
|
|
97277
|
-
|
|
97558
|
+
forgeProjectId: z.ZodString;
|
|
97278
97559
|
workspaceMembershipId: z.ZodString;
|
|
97279
97560
|
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
97280
97561
|
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
@@ -97326,9 +97607,9 @@ declare const DTOForgeProjectMemberGetResponse: z.ZodObject<{
|
|
|
97326
97607
|
userId: string;
|
|
97327
97608
|
role: "Admin" | "Viewer" | "Editor";
|
|
97328
97609
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97329
|
-
|
|
97330
|
-
workspaceMembershipId: string;
|
|
97610
|
+
forgeProjectId: string;
|
|
97331
97611
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97612
|
+
workspaceMembershipId: string;
|
|
97332
97613
|
}, {
|
|
97333
97614
|
user: {
|
|
97334
97615
|
id: string;
|
|
@@ -97342,9 +97623,9 @@ declare const DTOForgeProjectMemberGetResponse: z.ZodObject<{
|
|
|
97342
97623
|
userId: string;
|
|
97343
97624
|
role: "Admin" | "Viewer" | "Editor";
|
|
97344
97625
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97345
|
-
|
|
97346
|
-
workspaceMembershipId: string;
|
|
97626
|
+
forgeProjectId: string;
|
|
97347
97627
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97628
|
+
workspaceMembershipId: string;
|
|
97348
97629
|
}>>;
|
|
97349
97630
|
}, "strip", z.ZodTypeAny, {
|
|
97350
97631
|
member: {
|
|
@@ -97360,9 +97641,9 @@ declare const DTOForgeProjectMemberGetResponse: z.ZodObject<{
|
|
|
97360
97641
|
userId: string;
|
|
97361
97642
|
role: "Admin" | "Viewer" | "Editor";
|
|
97362
97643
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97363
|
-
|
|
97364
|
-
workspaceMembershipId: string;
|
|
97644
|
+
forgeProjectId: string;
|
|
97365
97645
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97646
|
+
workspaceMembershipId: string;
|
|
97366
97647
|
} | null;
|
|
97367
97648
|
}, {
|
|
97368
97649
|
member: {
|
|
@@ -97378,16 +97659,16 @@ declare const DTOForgeProjectMemberGetResponse: z.ZodObject<{
|
|
|
97378
97659
|
userId: string;
|
|
97379
97660
|
role: "Admin" | "Viewer" | "Editor";
|
|
97380
97661
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97381
|
-
|
|
97382
|
-
workspaceMembershipId: string;
|
|
97662
|
+
forgeProjectId: string;
|
|
97383
97663
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97664
|
+
workspaceMembershipId: string;
|
|
97384
97665
|
} | null;
|
|
97385
97666
|
}>;
|
|
97386
97667
|
type DTOForgeProjectMemberGetResponse = z.infer<typeof DTOForgeProjectMemberGetResponse>;
|
|
97387
97668
|
declare const DTOForgeProjectMemberCreateResponse: z.ZodObject<{
|
|
97388
97669
|
member: z.ZodObject<{
|
|
97389
97670
|
userId: z.ZodString;
|
|
97390
|
-
|
|
97671
|
+
forgeProjectId: z.ZodString;
|
|
97391
97672
|
workspaceMembershipId: z.ZodString;
|
|
97392
97673
|
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
97393
97674
|
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
@@ -97439,9 +97720,9 @@ declare const DTOForgeProjectMemberCreateResponse: z.ZodObject<{
|
|
|
97439
97720
|
userId: string;
|
|
97440
97721
|
role: "Admin" | "Viewer" | "Editor";
|
|
97441
97722
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97442
|
-
|
|
97443
|
-
workspaceMembershipId: string;
|
|
97723
|
+
forgeProjectId: string;
|
|
97444
97724
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97725
|
+
workspaceMembershipId: string;
|
|
97445
97726
|
}, {
|
|
97446
97727
|
user: {
|
|
97447
97728
|
id: string;
|
|
@@ -97455,9 +97736,9 @@ declare const DTOForgeProjectMemberCreateResponse: z.ZodObject<{
|
|
|
97455
97736
|
userId: string;
|
|
97456
97737
|
role: "Admin" | "Viewer" | "Editor";
|
|
97457
97738
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97458
|
-
|
|
97459
|
-
workspaceMembershipId: string;
|
|
97739
|
+
forgeProjectId: string;
|
|
97460
97740
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97741
|
+
workspaceMembershipId: string;
|
|
97461
97742
|
}>;
|
|
97462
97743
|
}, "strip", z.ZodTypeAny, {
|
|
97463
97744
|
member: {
|
|
@@ -97473,9 +97754,9 @@ declare const DTOForgeProjectMemberCreateResponse: z.ZodObject<{
|
|
|
97473
97754
|
userId: string;
|
|
97474
97755
|
role: "Admin" | "Viewer" | "Editor";
|
|
97475
97756
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97476
|
-
|
|
97477
|
-
workspaceMembershipId: string;
|
|
97757
|
+
forgeProjectId: string;
|
|
97478
97758
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97759
|
+
workspaceMembershipId: string;
|
|
97479
97760
|
};
|
|
97480
97761
|
}, {
|
|
97481
97762
|
member: {
|
|
@@ -97491,16 +97772,16 @@ declare const DTOForgeProjectMemberCreateResponse: z.ZodObject<{
|
|
|
97491
97772
|
userId: string;
|
|
97492
97773
|
role: "Admin" | "Viewer" | "Editor";
|
|
97493
97774
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97494
|
-
|
|
97495
|
-
workspaceMembershipId: string;
|
|
97775
|
+
forgeProjectId: string;
|
|
97496
97776
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97777
|
+
workspaceMembershipId: string;
|
|
97497
97778
|
};
|
|
97498
97779
|
}>;
|
|
97499
97780
|
type DTOForgeProjectMemberCreateResponse = z.infer<typeof DTOForgeProjectMemberCreateResponse>;
|
|
97500
97781
|
declare const DTOForgeProjectMemberUpdateResponse: z.ZodObject<{
|
|
97501
97782
|
member: z.ZodNullable<z.ZodObject<{
|
|
97502
97783
|
userId: z.ZodString;
|
|
97503
|
-
|
|
97784
|
+
forgeProjectId: z.ZodString;
|
|
97504
97785
|
workspaceMembershipId: z.ZodString;
|
|
97505
97786
|
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
97506
97787
|
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
@@ -97552,9 +97833,9 @@ declare const DTOForgeProjectMemberUpdateResponse: z.ZodObject<{
|
|
|
97552
97833
|
userId: string;
|
|
97553
97834
|
role: "Admin" | "Viewer" | "Editor";
|
|
97554
97835
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97555
|
-
|
|
97556
|
-
workspaceMembershipId: string;
|
|
97836
|
+
forgeProjectId: string;
|
|
97557
97837
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97838
|
+
workspaceMembershipId: string;
|
|
97558
97839
|
}, {
|
|
97559
97840
|
user: {
|
|
97560
97841
|
id: string;
|
|
@@ -97568,9 +97849,9 @@ declare const DTOForgeProjectMemberUpdateResponse: z.ZodObject<{
|
|
|
97568
97849
|
userId: string;
|
|
97569
97850
|
role: "Admin" | "Viewer" | "Editor";
|
|
97570
97851
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97571
|
-
|
|
97572
|
-
workspaceMembershipId: string;
|
|
97852
|
+
forgeProjectId: string;
|
|
97573
97853
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97854
|
+
workspaceMembershipId: string;
|
|
97574
97855
|
}>>;
|
|
97575
97856
|
}, "strip", z.ZodTypeAny, {
|
|
97576
97857
|
member: {
|
|
@@ -97586,9 +97867,9 @@ declare const DTOForgeProjectMemberUpdateResponse: z.ZodObject<{
|
|
|
97586
97867
|
userId: string;
|
|
97587
97868
|
role: "Admin" | "Viewer" | "Editor";
|
|
97588
97869
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97589
|
-
|
|
97590
|
-
workspaceMembershipId: string;
|
|
97870
|
+
forgeProjectId: string;
|
|
97591
97871
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97872
|
+
workspaceMembershipId: string;
|
|
97592
97873
|
} | null;
|
|
97593
97874
|
}, {
|
|
97594
97875
|
member: {
|
|
@@ -97604,9 +97885,9 @@ declare const DTOForgeProjectMemberUpdateResponse: z.ZodObject<{
|
|
|
97604
97885
|
userId: string;
|
|
97605
97886
|
role: "Admin" | "Viewer" | "Editor";
|
|
97606
97887
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97607
|
-
|
|
97608
|
-
workspaceMembershipId: string;
|
|
97888
|
+
forgeProjectId: string;
|
|
97609
97889
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
97890
|
+
workspaceMembershipId: string;
|
|
97610
97891
|
} | null;
|
|
97611
97892
|
}>;
|
|
97612
97893
|
type DTOForgeProjectMemberUpdateResponse = z.infer<typeof DTOForgeProjectMemberUpdateResponse>;
|
|
@@ -97836,7 +98117,7 @@ declare const DTOForgeProject: z.ZodObject<Omit<{
|
|
|
97836
98117
|
}>;
|
|
97837
98118
|
members: z.ZodArray<z.ZodObject<{
|
|
97838
98119
|
userId: z.ZodString;
|
|
97839
|
-
|
|
98120
|
+
forgeProjectId: z.ZodString;
|
|
97840
98121
|
workspaceMembershipId: z.ZodString;
|
|
97841
98122
|
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
97842
98123
|
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
@@ -97888,9 +98169,9 @@ declare const DTOForgeProject: z.ZodObject<Omit<{
|
|
|
97888
98169
|
userId: string;
|
|
97889
98170
|
role: "Admin" | "Viewer" | "Editor";
|
|
97890
98171
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97891
|
-
|
|
97892
|
-
workspaceMembershipId: string;
|
|
98172
|
+
forgeProjectId: string;
|
|
97893
98173
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98174
|
+
workspaceMembershipId: string;
|
|
97894
98175
|
}, {
|
|
97895
98176
|
user: {
|
|
97896
98177
|
id: string;
|
|
@@ -97904,9 +98185,9 @@ declare const DTOForgeProject: z.ZodObject<Omit<{
|
|
|
97904
98185
|
userId: string;
|
|
97905
98186
|
role: "Admin" | "Viewer" | "Editor";
|
|
97906
98187
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97907
|
-
|
|
97908
|
-
workspaceMembershipId: string;
|
|
98188
|
+
forgeProjectId: string;
|
|
97909
98189
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98190
|
+
workspaceMembershipId: string;
|
|
97910
98191
|
}>, "many">;
|
|
97911
98192
|
}, "strip", z.ZodTypeAny, {
|
|
97912
98193
|
id: string;
|
|
@@ -97930,9 +98211,9 @@ declare const DTOForgeProject: z.ZodObject<Omit<{
|
|
|
97930
98211
|
userId: string;
|
|
97931
98212
|
role: "Admin" | "Viewer" | "Editor";
|
|
97932
98213
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
97933
|
-
|
|
97934
|
-
workspaceMembershipId: string;
|
|
98214
|
+
forgeProjectId: string;
|
|
97935
98215
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98216
|
+
workspaceMembershipId: string;
|
|
97936
98217
|
}[];
|
|
97937
98218
|
workspaceId: string;
|
|
97938
98219
|
accessMode: "Open" | "InviteOnly";
|
|
@@ -98005,9 +98286,9 @@ declare const DTOForgeProject: z.ZodObject<Omit<{
|
|
|
98005
98286
|
userId: string;
|
|
98006
98287
|
role: "Admin" | "Viewer" | "Editor";
|
|
98007
98288
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
98008
|
-
|
|
98009
|
-
workspaceMembershipId: string;
|
|
98289
|
+
forgeProjectId: string;
|
|
98010
98290
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98291
|
+
workspaceMembershipId: string;
|
|
98011
98292
|
}[];
|
|
98012
98293
|
workspaceId: string;
|
|
98013
98294
|
accessMode: "Open" | "InviteOnly";
|
|
@@ -98280,7 +98561,7 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
|
|
|
98280
98561
|
}>;
|
|
98281
98562
|
members: z.ZodArray<z.ZodObject<{
|
|
98282
98563
|
userId: z.ZodString;
|
|
98283
|
-
|
|
98564
|
+
forgeProjectId: z.ZodString;
|
|
98284
98565
|
workspaceMembershipId: z.ZodString;
|
|
98285
98566
|
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
98286
98567
|
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
@@ -98332,9 +98613,9 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
|
|
|
98332
98613
|
userId: string;
|
|
98333
98614
|
role: "Admin" | "Viewer" | "Editor";
|
|
98334
98615
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
98335
|
-
|
|
98336
|
-
workspaceMembershipId: string;
|
|
98616
|
+
forgeProjectId: string;
|
|
98337
98617
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98618
|
+
workspaceMembershipId: string;
|
|
98338
98619
|
}, {
|
|
98339
98620
|
user: {
|
|
98340
98621
|
id: string;
|
|
@@ -98348,9 +98629,9 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
|
|
|
98348
98629
|
userId: string;
|
|
98349
98630
|
role: "Admin" | "Viewer" | "Editor";
|
|
98350
98631
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
98351
|
-
|
|
98352
|
-
workspaceMembershipId: string;
|
|
98632
|
+
forgeProjectId: string;
|
|
98353
98633
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98634
|
+
workspaceMembershipId: string;
|
|
98354
98635
|
}>, "many">;
|
|
98355
98636
|
}, "strip", z.ZodTypeAny, {
|
|
98356
98637
|
id: string;
|
|
@@ -98374,9 +98655,9 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
|
|
|
98374
98655
|
userId: string;
|
|
98375
98656
|
role: "Admin" | "Viewer" | "Editor";
|
|
98376
98657
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
98377
|
-
|
|
98378
|
-
workspaceMembershipId: string;
|
|
98658
|
+
forgeProjectId: string;
|
|
98379
98659
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98660
|
+
workspaceMembershipId: string;
|
|
98380
98661
|
}[];
|
|
98381
98662
|
workspaceId: string;
|
|
98382
98663
|
accessMode: "Open" | "InviteOnly";
|
|
@@ -98449,9 +98730,9 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
|
|
|
98449
98730
|
userId: string;
|
|
98450
98731
|
role: "Admin" | "Viewer" | "Editor";
|
|
98451
98732
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
98452
|
-
|
|
98453
|
-
workspaceMembershipId: string;
|
|
98733
|
+
forgeProjectId: string;
|
|
98454
98734
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98735
|
+
workspaceMembershipId: string;
|
|
98455
98736
|
}[];
|
|
98456
98737
|
workspaceId: string;
|
|
98457
98738
|
accessMode: "Open" | "InviteOnly";
|
|
@@ -98528,9 +98809,9 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
|
|
|
98528
98809
|
userId: string;
|
|
98529
98810
|
role: "Admin" | "Viewer" | "Editor";
|
|
98530
98811
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
98531
|
-
|
|
98532
|
-
workspaceMembershipId: string;
|
|
98812
|
+
forgeProjectId: string;
|
|
98533
98813
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98814
|
+
workspaceMembershipId: string;
|
|
98534
98815
|
}[];
|
|
98535
98816
|
workspaceId: string;
|
|
98536
98817
|
accessMode: "Open" | "InviteOnly";
|
|
@@ -98605,9 +98886,9 @@ declare const DTOForgeProjectGetResponse: z.ZodObject<{
|
|
|
98605
98886
|
userId: string;
|
|
98606
98887
|
role: "Admin" | "Viewer" | "Editor";
|
|
98607
98888
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
98608
|
-
|
|
98609
|
-
workspaceMembershipId: string;
|
|
98889
|
+
forgeProjectId: string;
|
|
98610
98890
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
98891
|
+
workspaceMembershipId: string;
|
|
98611
98892
|
}[];
|
|
98612
98893
|
workspaceId: string;
|
|
98613
98894
|
accessMode: "Open" | "InviteOnly";
|
|
@@ -98881,7 +99162,7 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
|
|
|
98881
99162
|
}>;
|
|
98882
99163
|
members: z.ZodArray<z.ZodObject<{
|
|
98883
99164
|
userId: z.ZodString;
|
|
98884
|
-
|
|
99165
|
+
forgeProjectId: z.ZodString;
|
|
98885
99166
|
workspaceMembershipId: z.ZodString;
|
|
98886
99167
|
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
98887
99168
|
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
@@ -98933,9 +99214,9 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
|
|
|
98933
99214
|
userId: string;
|
|
98934
99215
|
role: "Admin" | "Viewer" | "Editor";
|
|
98935
99216
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
98936
|
-
|
|
98937
|
-
workspaceMembershipId: string;
|
|
99217
|
+
forgeProjectId: string;
|
|
98938
99218
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99219
|
+
workspaceMembershipId: string;
|
|
98939
99220
|
}, {
|
|
98940
99221
|
user: {
|
|
98941
99222
|
id: string;
|
|
@@ -98949,9 +99230,9 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
|
|
|
98949
99230
|
userId: string;
|
|
98950
99231
|
role: "Admin" | "Viewer" | "Editor";
|
|
98951
99232
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
98952
|
-
|
|
98953
|
-
workspaceMembershipId: string;
|
|
99233
|
+
forgeProjectId: string;
|
|
98954
99234
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99235
|
+
workspaceMembershipId: string;
|
|
98955
99236
|
}>, "many">;
|
|
98956
99237
|
}, "strip", z.ZodTypeAny, {
|
|
98957
99238
|
id: string;
|
|
@@ -98975,9 +99256,9 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
|
|
|
98975
99256
|
userId: string;
|
|
98976
99257
|
role: "Admin" | "Viewer" | "Editor";
|
|
98977
99258
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
98978
|
-
|
|
98979
|
-
workspaceMembershipId: string;
|
|
99259
|
+
forgeProjectId: string;
|
|
98980
99260
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99261
|
+
workspaceMembershipId: string;
|
|
98981
99262
|
}[];
|
|
98982
99263
|
workspaceId: string;
|
|
98983
99264
|
accessMode: "Open" | "InviteOnly";
|
|
@@ -99050,9 +99331,9 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
|
|
|
99050
99331
|
userId: string;
|
|
99051
99332
|
role: "Admin" | "Viewer" | "Editor";
|
|
99052
99333
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99053
|
-
|
|
99054
|
-
workspaceMembershipId: string;
|
|
99334
|
+
forgeProjectId: string;
|
|
99055
99335
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99336
|
+
workspaceMembershipId: string;
|
|
99056
99337
|
}[];
|
|
99057
99338
|
workspaceId: string;
|
|
99058
99339
|
accessMode: "Open" | "InviteOnly";
|
|
@@ -99129,9 +99410,9 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
|
|
|
99129
99410
|
userId: string;
|
|
99130
99411
|
role: "Admin" | "Viewer" | "Editor";
|
|
99131
99412
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99132
|
-
|
|
99133
|
-
workspaceMembershipId: string;
|
|
99413
|
+
forgeProjectId: string;
|
|
99134
99414
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99415
|
+
workspaceMembershipId: string;
|
|
99135
99416
|
}[];
|
|
99136
99417
|
workspaceId: string;
|
|
99137
99418
|
accessMode: "Open" | "InviteOnly";
|
|
@@ -99206,9 +99487,9 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
|
|
|
99206
99487
|
userId: string;
|
|
99207
99488
|
role: "Admin" | "Viewer" | "Editor";
|
|
99208
99489
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99209
|
-
|
|
99210
|
-
workspaceMembershipId: string;
|
|
99490
|
+
forgeProjectId: string;
|
|
99211
99491
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99492
|
+
workspaceMembershipId: string;
|
|
99212
99493
|
}[];
|
|
99213
99494
|
workspaceId: string;
|
|
99214
99495
|
accessMode: "Open" | "InviteOnly";
|
|
@@ -99482,7 +99763,7 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
|
|
|
99482
99763
|
}>;
|
|
99483
99764
|
members: z.ZodArray<z.ZodObject<{
|
|
99484
99765
|
userId: z.ZodString;
|
|
99485
|
-
|
|
99766
|
+
forgeProjectId: z.ZodString;
|
|
99486
99767
|
workspaceMembershipId: z.ZodString;
|
|
99487
99768
|
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
99488
99769
|
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
@@ -99534,9 +99815,9 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
|
|
|
99534
99815
|
userId: string;
|
|
99535
99816
|
role: "Admin" | "Viewer" | "Editor";
|
|
99536
99817
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99537
|
-
|
|
99538
|
-
workspaceMembershipId: string;
|
|
99818
|
+
forgeProjectId: string;
|
|
99539
99819
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99820
|
+
workspaceMembershipId: string;
|
|
99540
99821
|
}, {
|
|
99541
99822
|
user: {
|
|
99542
99823
|
id: string;
|
|
@@ -99550,9 +99831,9 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
|
|
|
99550
99831
|
userId: string;
|
|
99551
99832
|
role: "Admin" | "Viewer" | "Editor";
|
|
99552
99833
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99553
|
-
|
|
99554
|
-
workspaceMembershipId: string;
|
|
99834
|
+
forgeProjectId: string;
|
|
99555
99835
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99836
|
+
workspaceMembershipId: string;
|
|
99556
99837
|
}>, "many">;
|
|
99557
99838
|
}, "strip", z.ZodTypeAny, {
|
|
99558
99839
|
id: string;
|
|
@@ -99576,9 +99857,9 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
|
|
|
99576
99857
|
userId: string;
|
|
99577
99858
|
role: "Admin" | "Viewer" | "Editor";
|
|
99578
99859
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99579
|
-
|
|
99580
|
-
workspaceMembershipId: string;
|
|
99860
|
+
forgeProjectId: string;
|
|
99581
99861
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99862
|
+
workspaceMembershipId: string;
|
|
99582
99863
|
}[];
|
|
99583
99864
|
workspaceId: string;
|
|
99584
99865
|
accessMode: "Open" | "InviteOnly";
|
|
@@ -99651,9 +99932,9 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
|
|
|
99651
99932
|
userId: string;
|
|
99652
99933
|
role: "Admin" | "Viewer" | "Editor";
|
|
99653
99934
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99654
|
-
|
|
99655
|
-
workspaceMembershipId: string;
|
|
99935
|
+
forgeProjectId: string;
|
|
99656
99936
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
99937
|
+
workspaceMembershipId: string;
|
|
99657
99938
|
}[];
|
|
99658
99939
|
workspaceId: string;
|
|
99659
99940
|
accessMode: "Open" | "InviteOnly";
|
|
@@ -99730,9 +100011,9 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
|
|
|
99730
100011
|
userId: string;
|
|
99731
100012
|
role: "Admin" | "Viewer" | "Editor";
|
|
99732
100013
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99733
|
-
|
|
99734
|
-
workspaceMembershipId: string;
|
|
100014
|
+
forgeProjectId: string;
|
|
99735
100015
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
100016
|
+
workspaceMembershipId: string;
|
|
99736
100017
|
}[];
|
|
99737
100018
|
workspaceId: string;
|
|
99738
100019
|
accessMode: "Open" | "InviteOnly";
|
|
@@ -99807,9 +100088,9 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
|
|
|
99807
100088
|
userId: string;
|
|
99808
100089
|
role: "Admin" | "Viewer" | "Editor";
|
|
99809
100090
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
99810
|
-
|
|
99811
|
-
workspaceMembershipId: string;
|
|
100091
|
+
forgeProjectId: string;
|
|
99812
100092
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
100093
|
+
workspaceMembershipId: string;
|
|
99813
100094
|
}[];
|
|
99814
100095
|
workspaceId: string;
|
|
99815
100096
|
accessMode: "Open" | "InviteOnly";
|
|
@@ -100083,7 +100364,7 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
|
|
|
100083
100364
|
}>;
|
|
100084
100365
|
members: z.ZodArray<z.ZodObject<{
|
|
100085
100366
|
userId: z.ZodString;
|
|
100086
|
-
|
|
100367
|
+
forgeProjectId: z.ZodString;
|
|
100087
100368
|
workspaceMembershipId: z.ZodString;
|
|
100088
100369
|
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
100089
100370
|
role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
|
|
@@ -100135,9 +100416,9 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
|
|
|
100135
100416
|
userId: string;
|
|
100136
100417
|
role: "Admin" | "Viewer" | "Editor";
|
|
100137
100418
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
100138
|
-
|
|
100139
|
-
workspaceMembershipId: string;
|
|
100419
|
+
forgeProjectId: string;
|
|
100140
100420
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
100421
|
+
workspaceMembershipId: string;
|
|
100141
100422
|
}, {
|
|
100142
100423
|
user: {
|
|
100143
100424
|
id: string;
|
|
@@ -100151,9 +100432,9 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
|
|
|
100151
100432
|
userId: string;
|
|
100152
100433
|
role: "Admin" | "Viewer" | "Editor";
|
|
100153
100434
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
100154
|
-
|
|
100155
|
-
workspaceMembershipId: string;
|
|
100435
|
+
forgeProjectId: string;
|
|
100156
100436
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
100437
|
+
workspaceMembershipId: string;
|
|
100157
100438
|
}>, "many">;
|
|
100158
100439
|
}, "strip", z.ZodTypeAny, {
|
|
100159
100440
|
id: string;
|
|
@@ -100177,9 +100458,9 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
|
|
|
100177
100458
|
userId: string;
|
|
100178
100459
|
role: "Admin" | "Viewer" | "Editor";
|
|
100179
100460
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
100180
|
-
|
|
100181
|
-
workspaceMembershipId: string;
|
|
100461
|
+
forgeProjectId: string;
|
|
100182
100462
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
100463
|
+
workspaceMembershipId: string;
|
|
100183
100464
|
}[];
|
|
100184
100465
|
workspaceId: string;
|
|
100185
100466
|
accessMode: "Open" | "InviteOnly";
|
|
@@ -100252,9 +100533,9 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
|
|
|
100252
100533
|
userId: string;
|
|
100253
100534
|
role: "Admin" | "Viewer" | "Editor";
|
|
100254
100535
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
100255
|
-
|
|
100256
|
-
workspaceMembershipId: string;
|
|
100536
|
+
forgeProjectId: string;
|
|
100257
100537
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
100538
|
+
workspaceMembershipId: string;
|
|
100258
100539
|
}[];
|
|
100259
100540
|
workspaceId: string;
|
|
100260
100541
|
accessMode: "Open" | "InviteOnly";
|
|
@@ -100331,9 +100612,9 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
|
|
|
100331
100612
|
userId: string;
|
|
100332
100613
|
role: "Admin" | "Viewer" | "Editor";
|
|
100333
100614
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
100334
|
-
|
|
100335
|
-
workspaceMembershipId: string;
|
|
100615
|
+
forgeProjectId: string;
|
|
100336
100616
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
100617
|
+
workspaceMembershipId: string;
|
|
100337
100618
|
}[];
|
|
100338
100619
|
workspaceId: string;
|
|
100339
100620
|
accessMode: "Open" | "InviteOnly";
|
|
@@ -100408,9 +100689,9 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
|
|
|
100408
100689
|
userId: string;
|
|
100409
100690
|
role: "Admin" | "Viewer" | "Editor";
|
|
100410
100691
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
100411
|
-
|
|
100412
|
-
workspaceMembershipId: string;
|
|
100692
|
+
forgeProjectId: string;
|
|
100413
100693
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
100694
|
+
workspaceMembershipId: string;
|
|
100414
100695
|
}[];
|
|
100415
100696
|
workspaceId: string;
|
|
100416
100697
|
accessMode: "Open" | "InviteOnly";
|
|
@@ -142772,9 +143053,9 @@ declare class ForgeProjectsEndpoint {
|
|
|
142772
143053
|
userId: string;
|
|
142773
143054
|
role: "Admin" | "Viewer" | "Editor";
|
|
142774
143055
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
142775
|
-
|
|
142776
|
-
workspaceMembershipId: string;
|
|
143056
|
+
forgeProjectId: string;
|
|
142777
143057
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
143058
|
+
workspaceMembershipId: string;
|
|
142778
143059
|
}[];
|
|
142779
143060
|
workspaceId: string;
|
|
142780
143061
|
accessMode: "Open" | "InviteOnly";
|
|
@@ -142851,9 +143132,9 @@ declare class ForgeProjectsEndpoint {
|
|
|
142851
143132
|
userId: string;
|
|
142852
143133
|
role: "Admin" | "Viewer" | "Editor";
|
|
142853
143134
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
142854
|
-
|
|
142855
|
-
workspaceMembershipId: string;
|
|
143135
|
+
forgeProjectId: string;
|
|
142856
143136
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
143137
|
+
workspaceMembershipId: string;
|
|
142857
143138
|
}[];
|
|
142858
143139
|
workspaceId: string;
|
|
142859
143140
|
accessMode: "Open" | "InviteOnly";
|
|
@@ -142930,9 +143211,9 @@ declare class ForgeProjectsEndpoint {
|
|
|
142930
143211
|
userId: string;
|
|
142931
143212
|
role: "Admin" | "Viewer" | "Editor";
|
|
142932
143213
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
142933
|
-
|
|
142934
|
-
workspaceMembershipId: string;
|
|
143214
|
+
forgeProjectId: string;
|
|
142935
143215
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
143216
|
+
workspaceMembershipId: string;
|
|
142936
143217
|
}[];
|
|
142937
143218
|
workspaceId: string;
|
|
142938
143219
|
accessMode: "Open" | "InviteOnly";
|
|
@@ -143009,9 +143290,9 @@ declare class ForgeProjectsEndpoint {
|
|
|
143009
143290
|
userId: string;
|
|
143010
143291
|
role: "Admin" | "Viewer" | "Editor";
|
|
143011
143292
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
143012
|
-
|
|
143013
|
-
workspaceMembershipId: string;
|
|
143293
|
+
forgeProjectId: string;
|
|
143014
143294
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
143295
|
+
workspaceMembershipId: string;
|
|
143015
143296
|
}[];
|
|
143016
143297
|
workspaceId: string;
|
|
143017
143298
|
accessMode: "Open" | "InviteOnly";
|
|
@@ -143236,9 +143517,9 @@ declare class ForgeProjectMembersEndpoint {
|
|
|
143236
143517
|
userId: string;
|
|
143237
143518
|
role: "Admin" | "Viewer" | "Editor";
|
|
143238
143519
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
143239
|
-
|
|
143240
|
-
workspaceMembershipId: string;
|
|
143520
|
+
forgeProjectId: string;
|
|
143241
143521
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
143522
|
+
workspaceMembershipId: string;
|
|
143242
143523
|
}[];
|
|
143243
143524
|
}>;
|
|
143244
143525
|
create(projectId: string, body: DTOCreateForgeProjectMember): Promise<{
|
|
@@ -143255,9 +143536,9 @@ declare class ForgeProjectMembersEndpoint {
|
|
|
143255
143536
|
userId: string;
|
|
143256
143537
|
role: "Admin" | "Viewer" | "Editor";
|
|
143257
143538
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
143258
|
-
|
|
143259
|
-
workspaceMembershipId: string;
|
|
143539
|
+
forgeProjectId: string;
|
|
143260
143540
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
143541
|
+
workspaceMembershipId: string;
|
|
143261
143542
|
};
|
|
143262
143543
|
}>;
|
|
143263
143544
|
update(projectId: string, userId: string, body: DTOUpdateForgeProjectMember): Promise<{
|
|
@@ -143274,9 +143555,9 @@ declare class ForgeProjectMembersEndpoint {
|
|
|
143274
143555
|
userId: string;
|
|
143275
143556
|
role: "Admin" | "Viewer" | "Editor";
|
|
143276
143557
|
effectiveRole: "Admin" | "Viewer" | "Editor";
|
|
143277
|
-
|
|
143278
|
-
workspaceMembershipId: string;
|
|
143558
|
+
forgeProjectId: string;
|
|
143279
143559
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
143560
|
+
workspaceMembershipId: string;
|
|
143280
143561
|
};
|
|
143281
143562
|
}>;
|
|
143282
143563
|
delete(projectId: string, userId: string): Promise<{
|
|
@@ -143627,8 +143908,8 @@ declare class ForgeProjectIterationsEndpoint {
|
|
|
143627
143908
|
text: string;
|
|
143628
143909
|
}[] | undefined;
|
|
143629
143910
|
}[];
|
|
143911
|
+
forgeProjectId: string;
|
|
143630
143912
|
buildArtifactId: string;
|
|
143631
|
-
fpId: string;
|
|
143632
143913
|
locked: boolean;
|
|
143633
143914
|
branchId?: string | undefined;
|
|
143634
143915
|
previousIterationId?: string | undefined;
|
|
@@ -143725,8 +144006,8 @@ declare class ForgeProjectIterationsEndpoint {
|
|
|
143725
144006
|
text: string;
|
|
143726
144007
|
}[] | undefined;
|
|
143727
144008
|
}[];
|
|
144009
|
+
forgeProjectId: string;
|
|
143728
144010
|
buildArtifactId: string;
|
|
143729
|
-
fpId: string;
|
|
143730
144011
|
locked: boolean;
|
|
143731
144012
|
branchId?: string | undefined;
|
|
143732
144013
|
previousIterationId?: string | undefined;
|
|
@@ -143823,8 +144104,8 @@ declare class ForgeProjectIterationsEndpoint {
|
|
|
143823
144104
|
text: string;
|
|
143824
144105
|
}[] | undefined;
|
|
143825
144106
|
}[];
|
|
144107
|
+
forgeProjectId: string;
|
|
143826
144108
|
buildArtifactId: string;
|
|
143827
|
-
fpId: string;
|
|
143828
144109
|
locked: boolean;
|
|
143829
144110
|
branchId?: string | undefined;
|
|
143830
144111
|
previousIterationId?: string | undefined;
|
|
@@ -143921,8 +144202,8 @@ declare class ForgeProjectIterationsEndpoint {
|
|
|
143921
144202
|
text: string;
|
|
143922
144203
|
}[] | undefined;
|
|
143923
144204
|
}[];
|
|
144205
|
+
forgeProjectId: string;
|
|
143924
144206
|
buildArtifactId: string;
|
|
143925
|
-
fpId: string;
|
|
143926
144207
|
locked: boolean;
|
|
143927
144208
|
branchId?: string | undefined;
|
|
143928
144209
|
previousIterationId?: string | undefined;
|
|
@@ -143937,6 +144218,47 @@ declare class ForgeProjectIterationsEndpoint {
|
|
|
143937
144218
|
}>;
|
|
143938
144219
|
}
|
|
143939
144220
|
|
|
144221
|
+
declare class ForgeProjectInvitationsEndpoint {
|
|
144222
|
+
private readonly requestExecutor;
|
|
144223
|
+
constructor(requestExecutor: RequestExecutor);
|
|
144224
|
+
list(projectId: string): Promise<{
|
|
144225
|
+
invitations: {
|
|
144226
|
+
email: string;
|
|
144227
|
+
createdAt: Date;
|
|
144228
|
+
updatedAt: Date;
|
|
144229
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
144230
|
+
workspaceInvitationId: string;
|
|
144231
|
+
forgeProjectId: string;
|
|
144232
|
+
createdById: string;
|
|
144233
|
+
}[];
|
|
144234
|
+
}>;
|
|
144235
|
+
create(projectId: string, body: DTOCreateForgeProjectInvitation): Promise<{
|
|
144236
|
+
invitation: {
|
|
144237
|
+
email: string;
|
|
144238
|
+
createdAt: Date;
|
|
144239
|
+
updatedAt: Date;
|
|
144240
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
144241
|
+
workspaceInvitationId: string;
|
|
144242
|
+
forgeProjectId: string;
|
|
144243
|
+
createdById: string;
|
|
144244
|
+
};
|
|
144245
|
+
}>;
|
|
144246
|
+
update(projectId: string, email: string, body: DTOUpdateForgeProjectInvitation): Promise<{
|
|
144247
|
+
invitation: {
|
|
144248
|
+
email: string;
|
|
144249
|
+
createdAt: Date;
|
|
144250
|
+
updatedAt: Date;
|
|
144251
|
+
role: "Admin" | "Viewer" | "Editor";
|
|
144252
|
+
workspaceInvitationId: string;
|
|
144253
|
+
forgeProjectId: string;
|
|
144254
|
+
createdById: string;
|
|
144255
|
+
};
|
|
144256
|
+
}>;
|
|
144257
|
+
delete(projectId: string, email: string): Promise<{
|
|
144258
|
+
ok: true;
|
|
144259
|
+
}>;
|
|
144260
|
+
}
|
|
144261
|
+
|
|
143940
144262
|
declare class ForgesEndpoint {
|
|
143941
144263
|
readonly projectAgents: ForgeAgentsEndpoint;
|
|
143942
144264
|
readonly artifacts: ForgeArtifactsEndpoint;
|
|
@@ -143946,6 +144268,7 @@ declare class ForgesEndpoint {
|
|
|
143946
144268
|
readonly projectIterations: ForgeProjectIterationsEndpoint;
|
|
143947
144269
|
readonly projectMembers: ForgeProjectMembersEndpoint;
|
|
143948
144270
|
readonly projects: ForgeProjectsEndpoint;
|
|
144271
|
+
readonly projectInvitations: ForgeProjectInvitationsEndpoint;
|
|
143949
144272
|
constructor(requestExecutor: RequestExecutor);
|
|
143950
144273
|
}
|
|
143951
144274
|
|
|
@@ -148160,4 +148483,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
148160
148483
|
reason: ValidationErrorReason | undefined;
|
|
148161
148484
|
};
|
|
148162
148485
|
|
|
148163
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProject, DTOCreateForgeProjectContext, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeProjectResponse, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, 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, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFileResponseItem, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectGetResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectsListResponse, DTOForgeSpecArtifact, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectMember, DTORemoveForgeProjectResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProject, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeProjectResponse, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeIterationMessagesEndpoint, ForgeParticipantsEndpoint, ForgeProjectContextsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectsEndpoint, ForgesEndpoint, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, 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 };
|
|
148486
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProject, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeProjectResponse, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, 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, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFileResponseItem, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectsListResponse, DTOForgeSpecArtifact, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORemoveForgeProjectResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProject, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeProjectResponse, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeIterationMessagesEndpoint, ForgeParticipantsEndpoint, ForgeProjectContextsEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectsEndpoint, ForgesEndpoint, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, 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 };
|