@supernova-studio/client 1.10.14 → 1.10.16

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.ts 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
- fpId: z.ZodString;
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
- fpId: z.ZodString;
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
- fpId: z.ZodString;
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
- fpId: z.ZodString;
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" | "fpId" | "mergeMeta">, "strip", z.ZodTypeAny, {
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
- fpId: z.ZodString;
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
- fpId: z.ZodString;
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
- fpId: z.ZodString;
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
- fpId: string;
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
- fpId: string;
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
- fpId: z.ZodString;
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
- fpId: z.ZodString;
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
- fpId: z.ZodString;
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
- fpId: z.ZodString;
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
- fpId: string;
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
- fpId: string;
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
- fpId: string;
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
- fpId: string;
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
- fpId: z.ZodString;
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
- fpId: string;
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
- fpId: string;
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
- fpId: string;
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
- fpId: string;
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
- fpId: z.ZodString;
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
- fpId: string;
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
- fpId: string;
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
- fpId: string;
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
- fpId: string;
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
- fpId: z.ZodString;
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
- fpId: string;
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
- fpId: string;
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
- fpId: string;
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
- fpId: string;
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
- fpId: z.ZodString;
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
- fpId: string;
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
- fpId: string;
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
- fpId: string;
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
- fpId: string;
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
- fpId: z.ZodString;
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
- fpId: string;
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
- fpId: string;
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
- fpId: string;
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
- fpId: string;
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
- fpId: string;
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
- fpId: string;
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
- fpId: z.ZodString;
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
- fpId: string;
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
- fpId: string;
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
- fpId: string;
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
- fpId: string;
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,269 +99410,269 @@ declare const DTOForgeProjectsListResponse: z.ZodObject<{
99129
99410
  userId: string;
99130
99411
  role: "Admin" | "Viewer" | "Editor";
99131
99412
  effectiveRole: "Admin" | "Viewer" | "Editor";
99132
- fpId: string;
99133
- workspaceMembershipId: string;
99413
+ forgeProjectId: string;
99134
99414
  workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
99135
- }[];
99136
- workspaceId: string;
99137
- accessMode: "Open" | "InviteOnly";
99138
- context: {
99139
- id: string;
99140
- name: string;
99141
- createdAt: Date;
99142
- updatedAt: Date;
99143
- workspaceId: string;
99144
- designSystemId: string;
99145
- dependencies: {
99146
- type: "npm";
99147
- version: string;
99148
- packageName: string;
99149
- }[];
99150
- meta: {
99151
- name: string;
99152
- description?: string | undefined;
99153
- };
99154
- definition: string;
99155
- npmProxySettings: {
99156
- registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
99157
- enabledScopes: string[];
99158
- bypassProxy: boolean;
99159
- customRegistryUrl?: string | undefined;
99160
- npmProxyRegistryConfigId?: string | undefined;
99161
- npmProxyVersion?: number | undefined;
99162
- } & ({
99163
- password: string;
99164
- username: string;
99165
- authType: "Basic";
99166
- } | {
99167
- accessToken: string;
99168
- authType: "Bearer";
99169
- } | {
99170
- authType: "None";
99171
- } | {
99172
- authType: "Custom";
99173
- authHeaderName: string;
99174
- authHeaderValue: string;
99175
- });
99176
- platform: "Angular" | "Vue" | "React";
99177
- styling: "CSS" | "Tailwind";
99178
- tailwindConfig?: {
99179
- version: string;
99180
- content: string;
99181
- } | undefined;
99182
- };
99183
- instruction: string | null;
99184
- updatedAt?: Date | undefined;
99185
- createdByUserId?: string | undefined;
99186
- }[];
99187
- }, {
99188
- projects: {
99189
- id: string;
99190
- createdAt: Date;
99191
- name: string;
99192
- meta: {
99193
- name: string;
99194
- description?: string | undefined;
99195
- };
99196
- members: {
99197
- user: {
99198
- id: string;
99199
- email: string;
99200
- profile: {
99201
- name: string;
99202
- nickname?: string | undefined;
99203
- avatar?: string | undefined;
99204
- };
99205
- };
99206
- userId: string;
99207
- role: "Admin" | "Viewer" | "Editor";
99208
- effectiveRole: "Admin" | "Viewer" | "Editor";
99209
- fpId: string;
99210
99415
  workspaceMembershipId: string;
99211
- workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
99212
99416
  }[];
99213
99417
  workspaceId: string;
99214
99418
  accessMode: "Open" | "InviteOnly";
99215
99419
  context: {
99216
- id: string;
99217
- name: string;
99218
- createdAt: Date;
99219
- updatedAt: Date;
99220
- workspaceId: string;
99221
- designSystemId: string;
99222
- dependencies: {
99223
- type: "npm";
99224
- packageName: string;
99225
- version?: string | undefined;
99226
- }[];
99227
- meta: {
99228
- name: string;
99229
- description?: string | undefined;
99230
- };
99231
- definition: string;
99232
- npmProxySettings: {
99233
- registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
99234
- enabledScopes: string[];
99235
- customRegistryUrl?: string | undefined;
99236
- bypassProxy?: boolean | undefined;
99237
- npmProxyRegistryConfigId?: string | undefined;
99238
- npmProxyVersion?: number | undefined;
99239
- } & ({
99240
- password: string;
99241
- username: string;
99242
- authType: "Basic";
99243
- } | {
99244
- accessToken: string;
99245
- authType: "Bearer";
99246
- } | {
99247
- authType: "None";
99248
- } | {
99249
- authType: "Custom";
99250
- authHeaderName: string;
99251
- authHeaderValue: string;
99252
- });
99253
- platform: "Angular" | "Vue" | "React";
99254
- styling: "CSS" | "Tailwind";
99255
- tailwindConfig?: {
99256
- version: string;
99257
- content: string;
99258
- } | undefined;
99259
- };
99260
- instruction: string | null;
99261
- tags?: string[] | undefined;
99262
- updatedAt?: Date | undefined;
99263
- createdByUserId?: string | undefined;
99264
- }[];
99265
- }>;
99266
- type DTOForgeProjectsListResponse = z.infer<typeof DTOForgeProjectsListResponse>;
99267
- declare const DTOCreateForgeProjectResponse: z.ZodObject<{
99268
- project: z.ZodObject<Omit<{
99269
- createdAt: z.ZodDate;
99270
- createdByUserId: z.ZodOptional<z.ZodString>;
99271
- fpContextId: z.ZodString;
99272
- id: z.ZodString;
99273
- instruction: z.ZodNullable<z.ZodString>;
99274
- meta: z.ZodObject<{
99275
- name: z.ZodString;
99276
- description: z.ZodOptional<z.ZodString>;
99277
- }, "strip", z.ZodTypeAny, {
99278
- name: string;
99279
- description?: string | undefined;
99280
- }, {
99281
- name: string;
99282
- description?: string | undefined;
99283
- }>;
99284
- name: z.ZodString;
99285
- tags: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
99286
- updatedAt: z.ZodOptional<z.ZodDate>;
99287
- workspaceId: z.ZodString;
99288
- accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
99289
- }, "fpContextId"> & {
99290
- context: z.ZodObject<{
99291
- createdAt: z.ZodDate;
99292
- definition: z.ZodString;
99293
- dependencies: z.ZodArray<z.ZodObject<{
99294
- packageName: z.ZodString;
99295
- type: z.ZodLiteral<"npm">;
99296
- version: z.ZodDefault<z.ZodString>;
99297
- }, "strip", z.ZodTypeAny, {
99298
- type: "npm";
99299
- version: string;
99300
- packageName: string;
99301
- }, {
99302
- type: "npm";
99303
- packageName: string;
99304
- version?: string | undefined;
99305
- }>, "many">;
99306
- designSystemId: z.ZodString;
99307
- id: z.ZodString;
99308
- meta: z.ZodObject<{
99309
- name: z.ZodString;
99310
- description: z.ZodOptional<z.ZodString>;
99311
- }, "strip", z.ZodTypeAny, {
99312
- name: string;
99313
- description?: string | undefined;
99314
- }, {
99315
- name: string;
99316
- description?: string | undefined;
99317
- }>;
99318
- name: z.ZodString;
99319
- npmProxySettings: z.ZodIntersection<z.ZodObject<{
99320
- registryType: z.ZodEnum<["NPMJS", "GitHub", "AzureDevOps", "Artifactory", "Custom"]>;
99321
- enabledScopes: z.ZodArray<z.ZodString, "many">;
99322
- customRegistryUrl: z.ZodOptional<z.ZodString>;
99323
- bypassProxy: z.ZodDefault<z.ZodBoolean>;
99324
- npmProxyRegistryConfigId: z.ZodOptional<z.ZodString>;
99325
- npmProxyVersion: z.ZodOptional<z.ZodNumber>;
99326
- }, "strip", z.ZodTypeAny, {
99327
- registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
99328
- enabledScopes: string[];
99329
- bypassProxy: boolean;
99330
- customRegistryUrl?: string | undefined;
99331
- npmProxyRegistryConfigId?: string | undefined;
99332
- npmProxyVersion?: number | undefined;
99333
- }, {
99334
- registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
99335
- enabledScopes: string[];
99336
- customRegistryUrl?: string | undefined;
99337
- bypassProxy?: boolean | undefined;
99338
- npmProxyRegistryConfigId?: string | undefined;
99339
- npmProxyVersion?: number | undefined;
99340
- }>, z.ZodDiscriminatedUnion<"authType", [z.ZodObject<{
99341
- authType: z.ZodLiteral<"Basic">;
99342
- username: z.ZodString;
99343
- password: z.ZodString;
99344
- }, "strip", z.ZodTypeAny, {
99345
- password: string;
99346
- username: string;
99347
- authType: "Basic";
99348
- }, {
99349
- password: string;
99350
- username: string;
99351
- authType: "Basic";
99352
- }>, z.ZodObject<{
99353
- authType: z.ZodLiteral<"Bearer">;
99354
- accessToken: z.ZodString;
99355
- }, "strip", z.ZodTypeAny, {
99356
- accessToken: string;
99357
- authType: "Bearer";
99358
- }, {
99359
- accessToken: string;
99360
- authType: "Bearer";
99361
- }>, z.ZodObject<{
99362
- authType: z.ZodLiteral<"None">;
99363
- }, "strip", z.ZodTypeAny, {
99364
- authType: "None";
99365
- }, {
99366
- authType: "None";
99367
- }>, z.ZodObject<{
99368
- authType: z.ZodLiteral<"Custom">;
99369
- authHeaderName: z.ZodString;
99370
- authHeaderValue: z.ZodString;
99371
- }, "strip", z.ZodTypeAny, {
99372
- authType: "Custom";
99373
- authHeaderName: string;
99374
- authHeaderValue: string;
99375
- }, {
99376
- authType: "Custom";
99377
- authHeaderName: string;
99378
- authHeaderValue: string;
99379
- }>]>>;
99380
- platform: z.ZodEnum<["React", "Vue", "Angular"]>;
99381
- styling: z.ZodEnum<["CSS", "Tailwind"]>;
99382
- tailwindConfig: z.ZodOptional<z.ZodObject<{
99383
- content: z.ZodString;
99384
- version: z.ZodString;
99385
- }, "strip", z.ZodTypeAny, {
99386
- version: string;
99387
- content: string;
99388
- }, {
99389
- version: string;
99390
- content: string;
99391
- }>>;
99392
- updatedAt: z.ZodDate;
99393
- workspaceId: z.ZodString;
99394
- }, "strip", z.ZodTypeAny, {
99420
+ id: string;
99421
+ name: string;
99422
+ createdAt: Date;
99423
+ updatedAt: Date;
99424
+ workspaceId: string;
99425
+ designSystemId: string;
99426
+ dependencies: {
99427
+ type: "npm";
99428
+ version: string;
99429
+ packageName: string;
99430
+ }[];
99431
+ meta: {
99432
+ name: string;
99433
+ description?: string | undefined;
99434
+ };
99435
+ definition: string;
99436
+ npmProxySettings: {
99437
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
99438
+ enabledScopes: string[];
99439
+ bypassProxy: boolean;
99440
+ customRegistryUrl?: string | undefined;
99441
+ npmProxyRegistryConfigId?: string | undefined;
99442
+ npmProxyVersion?: number | undefined;
99443
+ } & ({
99444
+ password: string;
99445
+ username: string;
99446
+ authType: "Basic";
99447
+ } | {
99448
+ accessToken: string;
99449
+ authType: "Bearer";
99450
+ } | {
99451
+ authType: "None";
99452
+ } | {
99453
+ authType: "Custom";
99454
+ authHeaderName: string;
99455
+ authHeaderValue: string;
99456
+ });
99457
+ platform: "Angular" | "Vue" | "React";
99458
+ styling: "CSS" | "Tailwind";
99459
+ tailwindConfig?: {
99460
+ version: string;
99461
+ content: string;
99462
+ } | undefined;
99463
+ };
99464
+ instruction: string | null;
99465
+ updatedAt?: Date | undefined;
99466
+ createdByUserId?: string | undefined;
99467
+ }[];
99468
+ }, {
99469
+ projects: {
99470
+ id: string;
99471
+ createdAt: Date;
99472
+ name: string;
99473
+ meta: {
99474
+ name: string;
99475
+ description?: string | undefined;
99476
+ };
99477
+ members: {
99478
+ user: {
99479
+ id: string;
99480
+ email: string;
99481
+ profile: {
99482
+ name: string;
99483
+ nickname?: string | undefined;
99484
+ avatar?: string | undefined;
99485
+ };
99486
+ };
99487
+ userId: string;
99488
+ role: "Admin" | "Viewer" | "Editor";
99489
+ effectiveRole: "Admin" | "Viewer" | "Editor";
99490
+ forgeProjectId: string;
99491
+ workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
99492
+ workspaceMembershipId: string;
99493
+ }[];
99494
+ workspaceId: string;
99495
+ accessMode: "Open" | "InviteOnly";
99496
+ context: {
99497
+ id: string;
99498
+ name: string;
99499
+ createdAt: Date;
99500
+ updatedAt: Date;
99501
+ workspaceId: string;
99502
+ designSystemId: string;
99503
+ dependencies: {
99504
+ type: "npm";
99505
+ packageName: string;
99506
+ version?: string | undefined;
99507
+ }[];
99508
+ meta: {
99509
+ name: string;
99510
+ description?: string | undefined;
99511
+ };
99512
+ definition: string;
99513
+ npmProxySettings: {
99514
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
99515
+ enabledScopes: string[];
99516
+ customRegistryUrl?: string | undefined;
99517
+ bypassProxy?: boolean | undefined;
99518
+ npmProxyRegistryConfigId?: string | undefined;
99519
+ npmProxyVersion?: number | undefined;
99520
+ } & ({
99521
+ password: string;
99522
+ username: string;
99523
+ authType: "Basic";
99524
+ } | {
99525
+ accessToken: string;
99526
+ authType: "Bearer";
99527
+ } | {
99528
+ authType: "None";
99529
+ } | {
99530
+ authType: "Custom";
99531
+ authHeaderName: string;
99532
+ authHeaderValue: string;
99533
+ });
99534
+ platform: "Angular" | "Vue" | "React";
99535
+ styling: "CSS" | "Tailwind";
99536
+ tailwindConfig?: {
99537
+ version: string;
99538
+ content: string;
99539
+ } | undefined;
99540
+ };
99541
+ instruction: string | null;
99542
+ tags?: string[] | undefined;
99543
+ updatedAt?: Date | undefined;
99544
+ createdByUserId?: string | undefined;
99545
+ }[];
99546
+ }>;
99547
+ type DTOForgeProjectsListResponse = z.infer<typeof DTOForgeProjectsListResponse>;
99548
+ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
99549
+ project: z.ZodObject<Omit<{
99550
+ createdAt: z.ZodDate;
99551
+ createdByUserId: z.ZodOptional<z.ZodString>;
99552
+ fpContextId: z.ZodString;
99553
+ id: z.ZodString;
99554
+ instruction: z.ZodNullable<z.ZodString>;
99555
+ meta: z.ZodObject<{
99556
+ name: z.ZodString;
99557
+ description: z.ZodOptional<z.ZodString>;
99558
+ }, "strip", z.ZodTypeAny, {
99559
+ name: string;
99560
+ description?: string | undefined;
99561
+ }, {
99562
+ name: string;
99563
+ description?: string | undefined;
99564
+ }>;
99565
+ name: z.ZodString;
99566
+ tags: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
99567
+ updatedAt: z.ZodOptional<z.ZodDate>;
99568
+ workspaceId: z.ZodString;
99569
+ accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
99570
+ }, "fpContextId"> & {
99571
+ context: z.ZodObject<{
99572
+ createdAt: z.ZodDate;
99573
+ definition: z.ZodString;
99574
+ dependencies: z.ZodArray<z.ZodObject<{
99575
+ packageName: z.ZodString;
99576
+ type: z.ZodLiteral<"npm">;
99577
+ version: z.ZodDefault<z.ZodString>;
99578
+ }, "strip", z.ZodTypeAny, {
99579
+ type: "npm";
99580
+ version: string;
99581
+ packageName: string;
99582
+ }, {
99583
+ type: "npm";
99584
+ packageName: string;
99585
+ version?: string | undefined;
99586
+ }>, "many">;
99587
+ designSystemId: z.ZodString;
99588
+ id: z.ZodString;
99589
+ meta: z.ZodObject<{
99590
+ name: z.ZodString;
99591
+ description: z.ZodOptional<z.ZodString>;
99592
+ }, "strip", z.ZodTypeAny, {
99593
+ name: string;
99594
+ description?: string | undefined;
99595
+ }, {
99596
+ name: string;
99597
+ description?: string | undefined;
99598
+ }>;
99599
+ name: z.ZodString;
99600
+ npmProxySettings: z.ZodIntersection<z.ZodObject<{
99601
+ registryType: z.ZodEnum<["NPMJS", "GitHub", "AzureDevOps", "Artifactory", "Custom"]>;
99602
+ enabledScopes: z.ZodArray<z.ZodString, "many">;
99603
+ customRegistryUrl: z.ZodOptional<z.ZodString>;
99604
+ bypassProxy: z.ZodDefault<z.ZodBoolean>;
99605
+ npmProxyRegistryConfigId: z.ZodOptional<z.ZodString>;
99606
+ npmProxyVersion: z.ZodOptional<z.ZodNumber>;
99607
+ }, "strip", z.ZodTypeAny, {
99608
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
99609
+ enabledScopes: string[];
99610
+ bypassProxy: boolean;
99611
+ customRegistryUrl?: string | undefined;
99612
+ npmProxyRegistryConfigId?: string | undefined;
99613
+ npmProxyVersion?: number | undefined;
99614
+ }, {
99615
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
99616
+ enabledScopes: string[];
99617
+ customRegistryUrl?: string | undefined;
99618
+ bypassProxy?: boolean | undefined;
99619
+ npmProxyRegistryConfigId?: string | undefined;
99620
+ npmProxyVersion?: number | undefined;
99621
+ }>, z.ZodDiscriminatedUnion<"authType", [z.ZodObject<{
99622
+ authType: z.ZodLiteral<"Basic">;
99623
+ username: z.ZodString;
99624
+ password: z.ZodString;
99625
+ }, "strip", z.ZodTypeAny, {
99626
+ password: string;
99627
+ username: string;
99628
+ authType: "Basic";
99629
+ }, {
99630
+ password: string;
99631
+ username: string;
99632
+ authType: "Basic";
99633
+ }>, z.ZodObject<{
99634
+ authType: z.ZodLiteral<"Bearer">;
99635
+ accessToken: z.ZodString;
99636
+ }, "strip", z.ZodTypeAny, {
99637
+ accessToken: string;
99638
+ authType: "Bearer";
99639
+ }, {
99640
+ accessToken: string;
99641
+ authType: "Bearer";
99642
+ }>, z.ZodObject<{
99643
+ authType: z.ZodLiteral<"None">;
99644
+ }, "strip", z.ZodTypeAny, {
99645
+ authType: "None";
99646
+ }, {
99647
+ authType: "None";
99648
+ }>, z.ZodObject<{
99649
+ authType: z.ZodLiteral<"Custom">;
99650
+ authHeaderName: z.ZodString;
99651
+ authHeaderValue: z.ZodString;
99652
+ }, "strip", z.ZodTypeAny, {
99653
+ authType: "Custom";
99654
+ authHeaderName: string;
99655
+ authHeaderValue: string;
99656
+ }, {
99657
+ authType: "Custom";
99658
+ authHeaderName: string;
99659
+ authHeaderValue: string;
99660
+ }>]>>;
99661
+ platform: z.ZodEnum<["React", "Vue", "Angular"]>;
99662
+ styling: z.ZodEnum<["CSS", "Tailwind"]>;
99663
+ tailwindConfig: z.ZodOptional<z.ZodObject<{
99664
+ content: z.ZodString;
99665
+ version: z.ZodString;
99666
+ }, "strip", z.ZodTypeAny, {
99667
+ version: string;
99668
+ content: string;
99669
+ }, {
99670
+ version: string;
99671
+ content: string;
99672
+ }>>;
99673
+ updatedAt: z.ZodDate;
99674
+ workspaceId: z.ZodString;
99675
+ }, "strip", z.ZodTypeAny, {
99395
99676
  id: string;
99396
99677
  name: string;
99397
99678
  createdAt: Date;
@@ -99482,7 +99763,7 @@ declare const DTOCreateForgeProjectResponse: z.ZodObject<{
99482
99763
  }>;
99483
99764
  members: z.ZodArray<z.ZodObject<{
99484
99765
  userId: z.ZodString;
99485
- fpId: z.ZodString;
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
- fpId: string;
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
- fpId: string;
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
- fpId: string;
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
- fpId: string;
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
- fpId: string;
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
- fpId: string;
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
- fpId: z.ZodString;
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
- fpId: string;
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
- fpId: string;
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
- fpId: string;
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
- fpId: string;
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
- fpId: string;
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
- fpId: string;
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";
@@ -100466,6 +100747,607 @@ declare const DTOUpdateForgeProjectResponse: z.ZodObject<{
100466
100747
  } | null;
100467
100748
  }>;
100468
100749
  type DTOUpdateForgeProjectResponse = z.infer<typeof DTOUpdateForgeProjectResponse>;
100750
+ declare const DTOUGetForgeProjectResponse: z.ZodObject<{
100751
+ project: z.ZodObject<Omit<{
100752
+ createdAt: z.ZodDate;
100753
+ createdByUserId: z.ZodOptional<z.ZodString>;
100754
+ fpContextId: z.ZodString;
100755
+ id: z.ZodString;
100756
+ instruction: z.ZodNullable<z.ZodString>;
100757
+ meta: z.ZodObject<{
100758
+ name: z.ZodString;
100759
+ description: z.ZodOptional<z.ZodString>;
100760
+ }, "strip", z.ZodTypeAny, {
100761
+ name: string;
100762
+ description?: string | undefined;
100763
+ }, {
100764
+ name: string;
100765
+ description?: string | undefined;
100766
+ }>;
100767
+ name: z.ZodString;
100768
+ tags: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
100769
+ updatedAt: z.ZodOptional<z.ZodDate>;
100770
+ workspaceId: z.ZodString;
100771
+ accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
100772
+ }, "fpContextId"> & {
100773
+ context: z.ZodObject<{
100774
+ createdAt: z.ZodDate;
100775
+ definition: z.ZodString;
100776
+ dependencies: z.ZodArray<z.ZodObject<{
100777
+ packageName: z.ZodString;
100778
+ type: z.ZodLiteral<"npm">;
100779
+ version: z.ZodDefault<z.ZodString>;
100780
+ }, "strip", z.ZodTypeAny, {
100781
+ type: "npm";
100782
+ version: string;
100783
+ packageName: string;
100784
+ }, {
100785
+ type: "npm";
100786
+ packageName: string;
100787
+ version?: string | undefined;
100788
+ }>, "many">;
100789
+ designSystemId: z.ZodString;
100790
+ id: z.ZodString;
100791
+ meta: z.ZodObject<{
100792
+ name: z.ZodString;
100793
+ description: z.ZodOptional<z.ZodString>;
100794
+ }, "strip", z.ZodTypeAny, {
100795
+ name: string;
100796
+ description?: string | undefined;
100797
+ }, {
100798
+ name: string;
100799
+ description?: string | undefined;
100800
+ }>;
100801
+ name: z.ZodString;
100802
+ npmProxySettings: z.ZodIntersection<z.ZodObject<{
100803
+ registryType: z.ZodEnum<["NPMJS", "GitHub", "AzureDevOps", "Artifactory", "Custom"]>;
100804
+ enabledScopes: z.ZodArray<z.ZodString, "many">;
100805
+ customRegistryUrl: z.ZodOptional<z.ZodString>;
100806
+ bypassProxy: z.ZodDefault<z.ZodBoolean>;
100807
+ npmProxyRegistryConfigId: z.ZodOptional<z.ZodString>;
100808
+ npmProxyVersion: z.ZodOptional<z.ZodNumber>;
100809
+ }, "strip", z.ZodTypeAny, {
100810
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
100811
+ enabledScopes: string[];
100812
+ bypassProxy: boolean;
100813
+ customRegistryUrl?: string | undefined;
100814
+ npmProxyRegistryConfigId?: string | undefined;
100815
+ npmProxyVersion?: number | undefined;
100816
+ }, {
100817
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
100818
+ enabledScopes: string[];
100819
+ customRegistryUrl?: string | undefined;
100820
+ bypassProxy?: boolean | undefined;
100821
+ npmProxyRegistryConfigId?: string | undefined;
100822
+ npmProxyVersion?: number | undefined;
100823
+ }>, z.ZodDiscriminatedUnion<"authType", [z.ZodObject<{
100824
+ authType: z.ZodLiteral<"Basic">;
100825
+ username: z.ZodString;
100826
+ password: z.ZodString;
100827
+ }, "strip", z.ZodTypeAny, {
100828
+ password: string;
100829
+ username: string;
100830
+ authType: "Basic";
100831
+ }, {
100832
+ password: string;
100833
+ username: string;
100834
+ authType: "Basic";
100835
+ }>, z.ZodObject<{
100836
+ authType: z.ZodLiteral<"Bearer">;
100837
+ accessToken: z.ZodString;
100838
+ }, "strip", z.ZodTypeAny, {
100839
+ accessToken: string;
100840
+ authType: "Bearer";
100841
+ }, {
100842
+ accessToken: string;
100843
+ authType: "Bearer";
100844
+ }>, z.ZodObject<{
100845
+ authType: z.ZodLiteral<"None">;
100846
+ }, "strip", z.ZodTypeAny, {
100847
+ authType: "None";
100848
+ }, {
100849
+ authType: "None";
100850
+ }>, z.ZodObject<{
100851
+ authType: z.ZodLiteral<"Custom">;
100852
+ authHeaderName: z.ZodString;
100853
+ authHeaderValue: z.ZodString;
100854
+ }, "strip", z.ZodTypeAny, {
100855
+ authType: "Custom";
100856
+ authHeaderName: string;
100857
+ authHeaderValue: string;
100858
+ }, {
100859
+ authType: "Custom";
100860
+ authHeaderName: string;
100861
+ authHeaderValue: string;
100862
+ }>]>>;
100863
+ platform: z.ZodEnum<["React", "Vue", "Angular"]>;
100864
+ styling: z.ZodEnum<["CSS", "Tailwind"]>;
100865
+ tailwindConfig: z.ZodOptional<z.ZodObject<{
100866
+ content: z.ZodString;
100867
+ version: z.ZodString;
100868
+ }, "strip", z.ZodTypeAny, {
100869
+ version: string;
100870
+ content: string;
100871
+ }, {
100872
+ version: string;
100873
+ content: string;
100874
+ }>>;
100875
+ updatedAt: z.ZodDate;
100876
+ workspaceId: z.ZodString;
100877
+ }, "strip", z.ZodTypeAny, {
100878
+ id: string;
100879
+ name: string;
100880
+ createdAt: Date;
100881
+ updatedAt: Date;
100882
+ workspaceId: string;
100883
+ designSystemId: string;
100884
+ dependencies: {
100885
+ type: "npm";
100886
+ version: string;
100887
+ packageName: string;
100888
+ }[];
100889
+ meta: {
100890
+ name: string;
100891
+ description?: string | undefined;
100892
+ };
100893
+ definition: string;
100894
+ npmProxySettings: {
100895
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
100896
+ enabledScopes: string[];
100897
+ bypassProxy: boolean;
100898
+ customRegistryUrl?: string | undefined;
100899
+ npmProxyRegistryConfigId?: string | undefined;
100900
+ npmProxyVersion?: number | undefined;
100901
+ } & ({
100902
+ password: string;
100903
+ username: string;
100904
+ authType: "Basic";
100905
+ } | {
100906
+ accessToken: string;
100907
+ authType: "Bearer";
100908
+ } | {
100909
+ authType: "None";
100910
+ } | {
100911
+ authType: "Custom";
100912
+ authHeaderName: string;
100913
+ authHeaderValue: string;
100914
+ });
100915
+ platform: "Angular" | "Vue" | "React";
100916
+ styling: "CSS" | "Tailwind";
100917
+ tailwindConfig?: {
100918
+ version: string;
100919
+ content: string;
100920
+ } | undefined;
100921
+ }, {
100922
+ id: string;
100923
+ name: string;
100924
+ createdAt: Date;
100925
+ updatedAt: Date;
100926
+ workspaceId: string;
100927
+ designSystemId: string;
100928
+ dependencies: {
100929
+ type: "npm";
100930
+ packageName: string;
100931
+ version?: string | undefined;
100932
+ }[];
100933
+ meta: {
100934
+ name: string;
100935
+ description?: string | undefined;
100936
+ };
100937
+ definition: string;
100938
+ npmProxySettings: {
100939
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
100940
+ enabledScopes: string[];
100941
+ customRegistryUrl?: string | undefined;
100942
+ bypassProxy?: boolean | undefined;
100943
+ npmProxyRegistryConfigId?: string | undefined;
100944
+ npmProxyVersion?: number | undefined;
100945
+ } & ({
100946
+ password: string;
100947
+ username: string;
100948
+ authType: "Basic";
100949
+ } | {
100950
+ accessToken: string;
100951
+ authType: "Bearer";
100952
+ } | {
100953
+ authType: "None";
100954
+ } | {
100955
+ authType: "Custom";
100956
+ authHeaderName: string;
100957
+ authHeaderValue: string;
100958
+ });
100959
+ platform: "Angular" | "Vue" | "React";
100960
+ styling: "CSS" | "Tailwind";
100961
+ tailwindConfig?: {
100962
+ version: string;
100963
+ content: string;
100964
+ } | undefined;
100965
+ }>;
100966
+ members: z.ZodArray<z.ZodObject<{
100967
+ userId: z.ZodString;
100968
+ forgeProjectId: z.ZodString;
100969
+ workspaceMembershipId: z.ZodString;
100970
+ workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
100971
+ role: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
100972
+ } & {
100973
+ user: z.ZodObject<{
100974
+ id: z.ZodString;
100975
+ email: z.ZodString;
100976
+ profile: z.ZodObject<{
100977
+ name: z.ZodString;
100978
+ nickname: z.ZodOptional<z.ZodString>;
100979
+ avatar: z.ZodOptional<z.ZodString>;
100980
+ }, "strip", z.ZodTypeAny, {
100981
+ name: string;
100982
+ nickname?: string | undefined;
100983
+ avatar?: string | undefined;
100984
+ }, {
100985
+ name: string;
100986
+ nickname?: string | undefined;
100987
+ avatar?: string | undefined;
100988
+ }>;
100989
+ }, "strip", z.ZodTypeAny, {
100990
+ id: string;
100991
+ email: string;
100992
+ profile: {
100993
+ name: string;
100994
+ nickname?: string | undefined;
100995
+ avatar?: string | undefined;
100996
+ };
100997
+ }, {
100998
+ id: string;
100999
+ email: string;
101000
+ profile: {
101001
+ name: string;
101002
+ nickname?: string | undefined;
101003
+ avatar?: string | undefined;
101004
+ };
101005
+ }>;
101006
+ effectiveRole: z.ZodEnum<["Viewer", "Editor", "Admin"]>;
101007
+ }, "strip", z.ZodTypeAny, {
101008
+ user: {
101009
+ id: string;
101010
+ email: string;
101011
+ profile: {
101012
+ name: string;
101013
+ nickname?: string | undefined;
101014
+ avatar?: string | undefined;
101015
+ };
101016
+ };
101017
+ userId: string;
101018
+ role: "Admin" | "Viewer" | "Editor";
101019
+ effectiveRole: "Admin" | "Viewer" | "Editor";
101020
+ forgeProjectId: string;
101021
+ workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
101022
+ workspaceMembershipId: string;
101023
+ }, {
101024
+ user: {
101025
+ id: string;
101026
+ email: string;
101027
+ profile: {
101028
+ name: string;
101029
+ nickname?: string | undefined;
101030
+ avatar?: string | undefined;
101031
+ };
101032
+ };
101033
+ userId: string;
101034
+ role: "Admin" | "Viewer" | "Editor";
101035
+ effectiveRole: "Admin" | "Viewer" | "Editor";
101036
+ forgeProjectId: string;
101037
+ workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
101038
+ workspaceMembershipId: string;
101039
+ }>, "many">;
101040
+ }, "strip", z.ZodTypeAny, {
101041
+ id: string;
101042
+ createdAt: Date;
101043
+ name: string;
101044
+ meta: {
101045
+ name: string;
101046
+ description?: string | undefined;
101047
+ };
101048
+ tags: string[];
101049
+ members: {
101050
+ user: {
101051
+ id: string;
101052
+ email: string;
101053
+ profile: {
101054
+ name: string;
101055
+ nickname?: string | undefined;
101056
+ avatar?: string | undefined;
101057
+ };
101058
+ };
101059
+ userId: string;
101060
+ role: "Admin" | "Viewer" | "Editor";
101061
+ effectiveRole: "Admin" | "Viewer" | "Editor";
101062
+ forgeProjectId: string;
101063
+ workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
101064
+ workspaceMembershipId: string;
101065
+ }[];
101066
+ workspaceId: string;
101067
+ accessMode: "Open" | "InviteOnly";
101068
+ context: {
101069
+ id: string;
101070
+ name: string;
101071
+ createdAt: Date;
101072
+ updatedAt: Date;
101073
+ workspaceId: string;
101074
+ designSystemId: string;
101075
+ dependencies: {
101076
+ type: "npm";
101077
+ version: string;
101078
+ packageName: string;
101079
+ }[];
101080
+ meta: {
101081
+ name: string;
101082
+ description?: string | undefined;
101083
+ };
101084
+ definition: string;
101085
+ npmProxySettings: {
101086
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
101087
+ enabledScopes: string[];
101088
+ bypassProxy: boolean;
101089
+ customRegistryUrl?: string | undefined;
101090
+ npmProxyRegistryConfigId?: string | undefined;
101091
+ npmProxyVersion?: number | undefined;
101092
+ } & ({
101093
+ password: string;
101094
+ username: string;
101095
+ authType: "Basic";
101096
+ } | {
101097
+ accessToken: string;
101098
+ authType: "Bearer";
101099
+ } | {
101100
+ authType: "None";
101101
+ } | {
101102
+ authType: "Custom";
101103
+ authHeaderName: string;
101104
+ authHeaderValue: string;
101105
+ });
101106
+ platform: "Angular" | "Vue" | "React";
101107
+ styling: "CSS" | "Tailwind";
101108
+ tailwindConfig?: {
101109
+ version: string;
101110
+ content: string;
101111
+ } | undefined;
101112
+ };
101113
+ instruction: string | null;
101114
+ updatedAt?: Date | undefined;
101115
+ createdByUserId?: string | undefined;
101116
+ }, {
101117
+ id: string;
101118
+ createdAt: Date;
101119
+ name: string;
101120
+ meta: {
101121
+ name: string;
101122
+ description?: string | undefined;
101123
+ };
101124
+ members: {
101125
+ user: {
101126
+ id: string;
101127
+ email: string;
101128
+ profile: {
101129
+ name: string;
101130
+ nickname?: string | undefined;
101131
+ avatar?: string | undefined;
101132
+ };
101133
+ };
101134
+ userId: string;
101135
+ role: "Admin" | "Viewer" | "Editor";
101136
+ effectiveRole: "Admin" | "Viewer" | "Editor";
101137
+ forgeProjectId: string;
101138
+ workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
101139
+ workspaceMembershipId: string;
101140
+ }[];
101141
+ workspaceId: string;
101142
+ accessMode: "Open" | "InviteOnly";
101143
+ context: {
101144
+ id: string;
101145
+ name: string;
101146
+ createdAt: Date;
101147
+ updatedAt: Date;
101148
+ workspaceId: string;
101149
+ designSystemId: string;
101150
+ dependencies: {
101151
+ type: "npm";
101152
+ packageName: string;
101153
+ version?: string | undefined;
101154
+ }[];
101155
+ meta: {
101156
+ name: string;
101157
+ description?: string | undefined;
101158
+ };
101159
+ definition: string;
101160
+ npmProxySettings: {
101161
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
101162
+ enabledScopes: string[];
101163
+ customRegistryUrl?: string | undefined;
101164
+ bypassProxy?: boolean | undefined;
101165
+ npmProxyRegistryConfigId?: string | undefined;
101166
+ npmProxyVersion?: number | undefined;
101167
+ } & ({
101168
+ password: string;
101169
+ username: string;
101170
+ authType: "Basic";
101171
+ } | {
101172
+ accessToken: string;
101173
+ authType: "Bearer";
101174
+ } | {
101175
+ authType: "None";
101176
+ } | {
101177
+ authType: "Custom";
101178
+ authHeaderName: string;
101179
+ authHeaderValue: string;
101180
+ });
101181
+ platform: "Angular" | "Vue" | "React";
101182
+ styling: "CSS" | "Tailwind";
101183
+ tailwindConfig?: {
101184
+ version: string;
101185
+ content: string;
101186
+ } | undefined;
101187
+ };
101188
+ instruction: string | null;
101189
+ tags?: string[] | undefined;
101190
+ updatedAt?: Date | undefined;
101191
+ createdByUserId?: string | undefined;
101192
+ }>;
101193
+ }, "strip", z.ZodTypeAny, {
101194
+ project: {
101195
+ id: string;
101196
+ createdAt: Date;
101197
+ name: string;
101198
+ meta: {
101199
+ name: string;
101200
+ description?: string | undefined;
101201
+ };
101202
+ tags: string[];
101203
+ members: {
101204
+ user: {
101205
+ id: string;
101206
+ email: string;
101207
+ profile: {
101208
+ name: string;
101209
+ nickname?: string | undefined;
101210
+ avatar?: string | undefined;
101211
+ };
101212
+ };
101213
+ userId: string;
101214
+ role: "Admin" | "Viewer" | "Editor";
101215
+ effectiveRole: "Admin" | "Viewer" | "Editor";
101216
+ forgeProjectId: string;
101217
+ workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
101218
+ workspaceMembershipId: string;
101219
+ }[];
101220
+ workspaceId: string;
101221
+ accessMode: "Open" | "InviteOnly";
101222
+ context: {
101223
+ id: string;
101224
+ name: string;
101225
+ createdAt: Date;
101226
+ updatedAt: Date;
101227
+ workspaceId: string;
101228
+ designSystemId: string;
101229
+ dependencies: {
101230
+ type: "npm";
101231
+ version: string;
101232
+ packageName: string;
101233
+ }[];
101234
+ meta: {
101235
+ name: string;
101236
+ description?: string | undefined;
101237
+ };
101238
+ definition: string;
101239
+ npmProxySettings: {
101240
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
101241
+ enabledScopes: string[];
101242
+ bypassProxy: boolean;
101243
+ customRegistryUrl?: string | undefined;
101244
+ npmProxyRegistryConfigId?: string | undefined;
101245
+ npmProxyVersion?: number | undefined;
101246
+ } & ({
101247
+ password: string;
101248
+ username: string;
101249
+ authType: "Basic";
101250
+ } | {
101251
+ accessToken: string;
101252
+ authType: "Bearer";
101253
+ } | {
101254
+ authType: "None";
101255
+ } | {
101256
+ authType: "Custom";
101257
+ authHeaderName: string;
101258
+ authHeaderValue: string;
101259
+ });
101260
+ platform: "Angular" | "Vue" | "React";
101261
+ styling: "CSS" | "Tailwind";
101262
+ tailwindConfig?: {
101263
+ version: string;
101264
+ content: string;
101265
+ } | undefined;
101266
+ };
101267
+ instruction: string | null;
101268
+ updatedAt?: Date | undefined;
101269
+ createdByUserId?: string | undefined;
101270
+ };
101271
+ }, {
101272
+ project: {
101273
+ id: string;
101274
+ createdAt: Date;
101275
+ name: string;
101276
+ meta: {
101277
+ name: string;
101278
+ description?: string | undefined;
101279
+ };
101280
+ members: {
101281
+ user: {
101282
+ id: string;
101283
+ email: string;
101284
+ profile: {
101285
+ name: string;
101286
+ nickname?: string | undefined;
101287
+ avatar?: string | undefined;
101288
+ };
101289
+ };
101290
+ userId: string;
101291
+ role: "Admin" | "Viewer" | "Editor";
101292
+ effectiveRole: "Admin" | "Viewer" | "Editor";
101293
+ forgeProjectId: string;
101294
+ workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
101295
+ workspaceMembershipId: string;
101296
+ }[];
101297
+ workspaceId: string;
101298
+ accessMode: "Open" | "InviteOnly";
101299
+ context: {
101300
+ id: string;
101301
+ name: string;
101302
+ createdAt: Date;
101303
+ updatedAt: Date;
101304
+ workspaceId: string;
101305
+ designSystemId: string;
101306
+ dependencies: {
101307
+ type: "npm";
101308
+ packageName: string;
101309
+ version?: string | undefined;
101310
+ }[];
101311
+ meta: {
101312
+ name: string;
101313
+ description?: string | undefined;
101314
+ };
101315
+ definition: string;
101316
+ npmProxySettings: {
101317
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
101318
+ enabledScopes: string[];
101319
+ customRegistryUrl?: string | undefined;
101320
+ bypassProxy?: boolean | undefined;
101321
+ npmProxyRegistryConfigId?: string | undefined;
101322
+ npmProxyVersion?: number | undefined;
101323
+ } & ({
101324
+ password: string;
101325
+ username: string;
101326
+ authType: "Basic";
101327
+ } | {
101328
+ accessToken: string;
101329
+ authType: "Bearer";
101330
+ } | {
101331
+ authType: "None";
101332
+ } | {
101333
+ authType: "Custom";
101334
+ authHeaderName: string;
101335
+ authHeaderValue: string;
101336
+ });
101337
+ platform: "Angular" | "Vue" | "React";
101338
+ styling: "CSS" | "Tailwind";
101339
+ tailwindConfig?: {
101340
+ version: string;
101341
+ content: string;
101342
+ } | undefined;
101343
+ };
101344
+ instruction: string | null;
101345
+ tags?: string[] | undefined;
101346
+ updatedAt?: Date | undefined;
101347
+ createdByUserId?: string | undefined;
101348
+ };
101349
+ }>;
101350
+ type DTOUGetForgeProjectResponse = z.infer<typeof DTOUGetForgeProjectResponse>;
100469
101351
  declare const DTOCreateForgeProject: z.ZodObject<Pick<{
100470
101352
  createdAt: z.ZodDate;
100471
101353
  createdByUserId: z.ZodOptional<z.ZodString>;
@@ -142772,9 +143654,9 @@ declare class ForgeProjectsEndpoint {
142772
143654
  userId: string;
142773
143655
  role: "Admin" | "Viewer" | "Editor";
142774
143656
  effectiveRole: "Admin" | "Viewer" | "Editor";
142775
- fpId: string;
142776
- workspaceMembershipId: string;
143657
+ forgeProjectId: string;
142777
143658
  workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
143659
+ workspaceMembershipId: string;
142778
143660
  }[];
142779
143661
  workspaceId: string;
142780
143662
  accessMode: "Open" | "InviteOnly";
@@ -142851,9 +143733,9 @@ declare class ForgeProjectsEndpoint {
142851
143733
  userId: string;
142852
143734
  role: "Admin" | "Viewer" | "Editor";
142853
143735
  effectiveRole: "Admin" | "Viewer" | "Editor";
142854
- fpId: string;
142855
- workspaceMembershipId: string;
143736
+ forgeProjectId: string;
142856
143737
  workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
143738
+ workspaceMembershipId: string;
142857
143739
  }[];
142858
143740
  workspaceId: string;
142859
143741
  accessMode: "Open" | "InviteOnly";
@@ -142930,9 +143812,9 @@ declare class ForgeProjectsEndpoint {
142930
143812
  userId: string;
142931
143813
  role: "Admin" | "Viewer" | "Editor";
142932
143814
  effectiveRole: "Admin" | "Viewer" | "Editor";
142933
- fpId: string;
142934
- workspaceMembershipId: string;
143815
+ forgeProjectId: string;
142935
143816
  workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
143817
+ workspaceMembershipId: string;
142936
143818
  }[];
142937
143819
  workspaceId: string;
142938
143820
  accessMode: "Open" | "InviteOnly";
@@ -143009,9 +143891,9 @@ declare class ForgeProjectsEndpoint {
143009
143891
  userId: string;
143010
143892
  role: "Admin" | "Viewer" | "Editor";
143011
143893
  effectiveRole: "Admin" | "Viewer" | "Editor";
143012
- fpId: string;
143013
- workspaceMembershipId: string;
143894
+ forgeProjectId: string;
143014
143895
  workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
143896
+ workspaceMembershipId: string;
143015
143897
  }[];
143016
143898
  workspaceId: string;
143017
143899
  accessMode: "Open" | "InviteOnly";
@@ -143236,9 +144118,9 @@ declare class ForgeProjectMembersEndpoint {
143236
144118
  userId: string;
143237
144119
  role: "Admin" | "Viewer" | "Editor";
143238
144120
  effectiveRole: "Admin" | "Viewer" | "Editor";
143239
- fpId: string;
143240
- workspaceMembershipId: string;
144121
+ forgeProjectId: string;
143241
144122
  workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
144123
+ workspaceMembershipId: string;
143242
144124
  }[];
143243
144125
  }>;
143244
144126
  create(projectId: string, body: DTOCreateForgeProjectMember): Promise<{
@@ -143255,9 +144137,9 @@ declare class ForgeProjectMembersEndpoint {
143255
144137
  userId: string;
143256
144138
  role: "Admin" | "Viewer" | "Editor";
143257
144139
  effectiveRole: "Admin" | "Viewer" | "Editor";
143258
- fpId: string;
143259
- workspaceMembershipId: string;
144140
+ forgeProjectId: string;
143260
144141
  workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
144142
+ workspaceMembershipId: string;
143261
144143
  };
143262
144144
  }>;
143263
144145
  update(projectId: string, userId: string, body: DTOUpdateForgeProjectMember): Promise<{
@@ -143274,9 +144156,9 @@ declare class ForgeProjectMembersEndpoint {
143274
144156
  userId: string;
143275
144157
  role: "Admin" | "Viewer" | "Editor";
143276
144158
  effectiveRole: "Admin" | "Viewer" | "Editor";
143277
- fpId: string;
143278
- workspaceMembershipId: string;
144159
+ forgeProjectId: string;
143279
144160
  workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
144161
+ workspaceMembershipId: string;
143280
144162
  };
143281
144163
  }>;
143282
144164
  delete(projectId: string, userId: string): Promise<{
@@ -143627,8 +144509,8 @@ declare class ForgeProjectIterationsEndpoint {
143627
144509
  text: string;
143628
144510
  }[] | undefined;
143629
144511
  }[];
144512
+ forgeProjectId: string;
143630
144513
  buildArtifactId: string;
143631
- fpId: string;
143632
144514
  locked: boolean;
143633
144515
  branchId?: string | undefined;
143634
144516
  previousIterationId?: string | undefined;
@@ -143725,8 +144607,8 @@ declare class ForgeProjectIterationsEndpoint {
143725
144607
  text: string;
143726
144608
  }[] | undefined;
143727
144609
  }[];
144610
+ forgeProjectId: string;
143728
144611
  buildArtifactId: string;
143729
- fpId: string;
143730
144612
  locked: boolean;
143731
144613
  branchId?: string | undefined;
143732
144614
  previousIterationId?: string | undefined;
@@ -143823,8 +144705,8 @@ declare class ForgeProjectIterationsEndpoint {
143823
144705
  text: string;
143824
144706
  }[] | undefined;
143825
144707
  }[];
144708
+ forgeProjectId: string;
143826
144709
  buildArtifactId: string;
143827
- fpId: string;
143828
144710
  locked: boolean;
143829
144711
  branchId?: string | undefined;
143830
144712
  previousIterationId?: string | undefined;
@@ -143921,8 +144803,8 @@ declare class ForgeProjectIterationsEndpoint {
143921
144803
  text: string;
143922
144804
  }[] | undefined;
143923
144805
  }[];
144806
+ forgeProjectId: string;
143924
144807
  buildArtifactId: string;
143925
- fpId: string;
143926
144808
  locked: boolean;
143927
144809
  branchId?: string | undefined;
143928
144810
  previousIterationId?: string | undefined;
@@ -143937,6 +144819,47 @@ declare class ForgeProjectIterationsEndpoint {
143937
144819
  }>;
143938
144820
  }
143939
144821
 
144822
+ declare class ForgeProjectInvitationsEndpoint {
144823
+ private readonly requestExecutor;
144824
+ constructor(requestExecutor: RequestExecutor);
144825
+ list(projectId: string): Promise<{
144826
+ invitations: {
144827
+ email: string;
144828
+ createdAt: Date;
144829
+ updatedAt: Date;
144830
+ role: "Admin" | "Viewer" | "Editor";
144831
+ workspaceInvitationId: string;
144832
+ forgeProjectId: string;
144833
+ createdById: string;
144834
+ }[];
144835
+ }>;
144836
+ create(projectId: string, body: DTOCreateForgeProjectInvitation): Promise<{
144837
+ invitation: {
144838
+ email: string;
144839
+ createdAt: Date;
144840
+ updatedAt: Date;
144841
+ role: "Admin" | "Viewer" | "Editor";
144842
+ workspaceInvitationId: string;
144843
+ forgeProjectId: string;
144844
+ createdById: string;
144845
+ };
144846
+ }>;
144847
+ update(projectId: string, email: string, body: DTOUpdateForgeProjectInvitation): Promise<{
144848
+ invitation: {
144849
+ email: string;
144850
+ createdAt: Date;
144851
+ updatedAt: Date;
144852
+ role: "Admin" | "Viewer" | "Editor";
144853
+ workspaceInvitationId: string;
144854
+ forgeProjectId: string;
144855
+ createdById: string;
144856
+ };
144857
+ }>;
144858
+ delete(projectId: string, email: string): Promise<{
144859
+ ok: true;
144860
+ }>;
144861
+ }
144862
+
143940
144863
  declare class ForgesEndpoint {
143941
144864
  readonly projectAgents: ForgeAgentsEndpoint;
143942
144865
  readonly artifacts: ForgeArtifactsEndpoint;
@@ -143946,6 +144869,7 @@ declare class ForgesEndpoint {
143946
144869
  readonly projectIterations: ForgeProjectIterationsEndpoint;
143947
144870
  readonly projectMembers: ForgeProjectMembersEndpoint;
143948
144871
  readonly projects: ForgeProjectsEndpoint;
144872
+ readonly projectInvitations: ForgeProjectInvitationsEndpoint;
143949
144873
  constructor(requestExecutor: RequestExecutor);
143950
144874
  }
143951
144875
 
@@ -148160,4 +149084,4 @@ declare function isValidRedirectPath(path: string): {
148160
149084
  reason: ValidationErrorReason | undefined;
148161
149085
  };
148162
149086
 
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 };
149087
+ 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, DTOUGetForgeProjectResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProject, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeProjectResponse, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, 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 };