@supernova-studio/client 1.16.0 → 1.16.1

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
@@ -78242,40 +78242,35 @@ declare const DTOForgeProjectActionFeatureUpdate: z__default.ZodObject<{
78242
78242
  type: z__default.ZodLiteral<"FeatureUpdate">;
78243
78243
  input: z__default.ZodObject<{
78244
78244
  id: z__default.ZodString;
78245
- name: z__default.ZodString;
78246
- description: z__default.ZodString;
78247
- sectionId: z__default.ZodOptional<z__default.ZodString>;
78248
- afterFeatureId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
78245
+ name: z__default.ZodOptional<z__default.ZodString>;
78246
+ description: z__default.ZodOptional<z__default.ZodString>;
78247
+ isArchived: z__default.ZodOptional<z__default.ZodBoolean>;
78249
78248
  }, "strip", z__default.ZodTypeAny, {
78250
78249
  id: string;
78251
- name: string;
78252
- description: string;
78253
- sectionId?: string | undefined;
78254
- afterFeatureId?: string | null | undefined;
78250
+ name?: string | undefined;
78251
+ description?: string | undefined;
78252
+ isArchived?: boolean | undefined;
78255
78253
  }, {
78256
78254
  id: string;
78257
- name: string;
78258
- description: string;
78259
- sectionId?: string | undefined;
78260
- afterFeatureId?: string | null | undefined;
78255
+ name?: string | undefined;
78256
+ description?: string | undefined;
78257
+ isArchived?: boolean | undefined;
78261
78258
  }>;
78262
78259
  }, "strip", z__default.ZodTypeAny, {
78263
78260
  type: "FeatureUpdate";
78264
78261
  input: {
78265
78262
  id: string;
78266
- name: string;
78267
- description: string;
78268
- sectionId?: string | undefined;
78269
- afterFeatureId?: string | null | undefined;
78263
+ name?: string | undefined;
78264
+ description?: string | undefined;
78265
+ isArchived?: boolean | undefined;
78270
78266
  };
78271
78267
  }, {
78272
78268
  type: "FeatureUpdate";
78273
78269
  input: {
78274
78270
  id: string;
78275
- name: string;
78276
- description: string;
78277
- sectionId?: string | undefined;
78278
- afterFeatureId?: string | null | undefined;
78271
+ name?: string | undefined;
78272
+ description?: string | undefined;
78273
+ isArchived?: boolean | undefined;
78279
78274
  };
78280
78275
  }>;
78281
78276
  type DTOForgeProjectActionFeatureUpdate = z__default.infer<typeof DTOForgeProjectActionFeatureUpdate>;
@@ -78333,84 +78328,63 @@ declare const DTOForgeProjectActionFeatureMove: z__default.ZodObject<{
78333
78328
  type DTOForgeProjectActionFeatureMove = z__default.infer<typeof DTOForgeProjectActionFeatureMove>;
78334
78329
  declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
78335
78330
  type: z__default.ZodLiteral<"ArtifactCreate">;
78336
- input: z__default.ZodObject<Omit<{
78331
+ input: z__default.ZodObject<{
78337
78332
  id: z__default.ZodString;
78338
- projectId: z__default.ZodString;
78339
- iterationId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
78340
78333
  title: z__default.ZodString;
78341
- previewUrl: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
78342
- sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
78343
- createdAt: z__default.ZodDate;
78344
- updatedAt: z__default.ZodDate;
78345
- createdByUserId: z__default.ZodString;
78346
78334
  sectionId: z__default.ZodOptional<z__default.ZodString>;
78347
- }, "createdAt" | "updatedAt" | "sortOrder" | "createdByUserId" | "projectId">, "strip", z__default.ZodTypeAny, {
78335
+ afterArtifactId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
78336
+ }, "strip", z__default.ZodTypeAny, {
78348
78337
  id: string;
78349
78338
  title: string;
78350
- previewUrl?: string | null | undefined;
78351
78339
  sectionId?: string | undefined;
78352
- iterationId?: string | null | undefined;
78340
+ afterArtifactId?: string | null | undefined;
78353
78341
  }, {
78354
78342
  id: string;
78355
78343
  title: string;
78356
- previewUrl?: string | null | undefined;
78357
78344
  sectionId?: string | undefined;
78358
- iterationId?: string | null | undefined;
78345
+ afterArtifactId?: string | null | undefined;
78359
78346
  }>;
78360
78347
  }, "strip", z__default.ZodTypeAny, {
78361
78348
  type: "ArtifactCreate";
78362
78349
  input: {
78363
78350
  id: string;
78364
78351
  title: string;
78365
- previewUrl?: string | null | undefined;
78366
78352
  sectionId?: string | undefined;
78367
- iterationId?: string | null | undefined;
78353
+ afterArtifactId?: string | null | undefined;
78368
78354
  };
78369
78355
  }, {
78370
78356
  type: "ArtifactCreate";
78371
78357
  input: {
78372
78358
  id: string;
78373
78359
  title: string;
78374
- previewUrl?: string | null | undefined;
78375
78360
  sectionId?: string | undefined;
78376
- iterationId?: string | null | undefined;
78361
+ afterArtifactId?: string | null | undefined;
78377
78362
  };
78378
78363
  }>;
78379
78364
  type DTOForgeProjectActionArtifactCreate = z__default.infer<typeof DTOForgeProjectActionArtifactCreate>;
78380
78365
  declare const DTOForgeProjectActionArtifactUpdate: z__default.ZodObject<{
78381
78366
  type: z__default.ZodLiteral<"ArtifactUpdate">;
78382
78367
  input: z__default.ZodObject<{
78383
- title: z__default.ZodOptional<z__default.ZodString>;
78384
- previewUrl: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
78385
- sectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodString>>;
78386
- } & {
78387
78368
  id: z__default.ZodString;
78369
+ title: z__default.ZodOptional<z__default.ZodString>;
78388
78370
  }, "strip", z__default.ZodTypeAny, {
78389
78371
  id: string;
78390
78372
  title?: string | undefined;
78391
- previewUrl?: string | null | undefined;
78392
- sectionId?: string | undefined;
78393
78373
  }, {
78394
78374
  id: string;
78395
78375
  title?: string | undefined;
78396
- previewUrl?: string | null | undefined;
78397
- sectionId?: string | undefined;
78398
78376
  }>;
78399
78377
  }, "strip", z__default.ZodTypeAny, {
78400
78378
  type: "ArtifactUpdate";
78401
78379
  input: {
78402
78380
  id: string;
78403
78381
  title?: string | undefined;
78404
- previewUrl?: string | null | undefined;
78405
- sectionId?: string | undefined;
78406
78382
  };
78407
78383
  }, {
78408
78384
  type: "ArtifactUpdate";
78409
78385
  input: {
78410
78386
  id: string;
78411
78387
  title?: string | undefined;
78412
- previewUrl?: string | null | undefined;
78413
- sectionId?: string | undefined;
78414
78388
  };
78415
78389
  }>;
78416
78390
  type DTOForgeProjectActionArtifactUpdate = z__default.infer<typeof DTOForgeProjectActionArtifactUpdate>;
@@ -78604,7 +78578,7 @@ declare const DTOForgeProjectActionSectionMove: z__default.ZodObject<{
78604
78578
  };
78605
78579
  }>;
78606
78580
  type DTOForgeProjectActionSectionMove = z__default.infer<typeof DTOForgeProjectActionSectionMove>;
78607
- declare const DTOForgeProjectAction: z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
78581
+ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
78608
78582
  type: z__default.ZodLiteral<"FeatureCreate">;
78609
78583
  input: z__default.ZodObject<{
78610
78584
  id: z__default.ZodString;
@@ -78647,40 +78621,35 @@ declare const DTOForgeProjectAction: z__default.ZodDiscriminatedUnion<"type", [z
78647
78621
  type: z__default.ZodLiteral<"FeatureUpdate">;
78648
78622
  input: z__default.ZodObject<{
78649
78623
  id: z__default.ZodString;
78650
- name: z__default.ZodString;
78651
- description: z__default.ZodString;
78652
- sectionId: z__default.ZodOptional<z__default.ZodString>;
78653
- afterFeatureId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
78624
+ name: z__default.ZodOptional<z__default.ZodString>;
78625
+ description: z__default.ZodOptional<z__default.ZodString>;
78626
+ isArchived: z__default.ZodOptional<z__default.ZodBoolean>;
78654
78627
  }, "strip", z__default.ZodTypeAny, {
78655
78628
  id: string;
78656
- name: string;
78657
- description: string;
78658
- sectionId?: string | undefined;
78659
- afterFeatureId?: string | null | undefined;
78629
+ name?: string | undefined;
78630
+ description?: string | undefined;
78631
+ isArchived?: boolean | undefined;
78660
78632
  }, {
78661
78633
  id: string;
78662
- name: string;
78663
- description: string;
78664
- sectionId?: string | undefined;
78665
- afterFeatureId?: string | null | undefined;
78634
+ name?: string | undefined;
78635
+ description?: string | undefined;
78636
+ isArchived?: boolean | undefined;
78666
78637
  }>;
78667
78638
  }, "strip", z__default.ZodTypeAny, {
78668
78639
  type: "FeatureUpdate";
78669
78640
  input: {
78670
78641
  id: string;
78671
- name: string;
78672
- description: string;
78673
- sectionId?: string | undefined;
78674
- afterFeatureId?: string | null | undefined;
78642
+ name?: string | undefined;
78643
+ description?: string | undefined;
78644
+ isArchived?: boolean | undefined;
78675
78645
  };
78676
78646
  }, {
78677
78647
  type: "FeatureUpdate";
78678
78648
  input: {
78679
78649
  id: string;
78680
- name: string;
78681
- description: string;
78682
- sectionId?: string | undefined;
78683
- afterFeatureId?: string | null | undefined;
78650
+ name?: string | undefined;
78651
+ description?: string | undefined;
78652
+ isArchived?: boolean | undefined;
78684
78653
  };
78685
78654
  }>, z__default.ZodObject<{
78686
78655
  type: z__default.ZodLiteral<"FeatureDelete">;
@@ -78732,82 +78701,61 @@ declare const DTOForgeProjectAction: z__default.ZodDiscriminatedUnion<"type", [z
78732
78701
  };
78733
78702
  }>, z__default.ZodObject<{
78734
78703
  type: z__default.ZodLiteral<"ArtifactCreate">;
78735
- input: z__default.ZodObject<Omit<{
78704
+ input: z__default.ZodObject<{
78736
78705
  id: z__default.ZodString;
78737
- projectId: z__default.ZodString;
78738
- iterationId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
78739
78706
  title: z__default.ZodString;
78740
- previewUrl: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
78741
- sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
78742
- createdAt: z__default.ZodDate;
78743
- updatedAt: z__default.ZodDate;
78744
- createdByUserId: z__default.ZodString;
78745
78707
  sectionId: z__default.ZodOptional<z__default.ZodString>;
78746
- }, "createdAt" | "updatedAt" | "sortOrder" | "createdByUserId" | "projectId">, "strip", z__default.ZodTypeAny, {
78708
+ afterArtifactId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
78709
+ }, "strip", z__default.ZodTypeAny, {
78747
78710
  id: string;
78748
78711
  title: string;
78749
- previewUrl?: string | null | undefined;
78750
78712
  sectionId?: string | undefined;
78751
- iterationId?: string | null | undefined;
78713
+ afterArtifactId?: string | null | undefined;
78752
78714
  }, {
78753
78715
  id: string;
78754
78716
  title: string;
78755
- previewUrl?: string | null | undefined;
78756
78717
  sectionId?: string | undefined;
78757
- iterationId?: string | null | undefined;
78718
+ afterArtifactId?: string | null | undefined;
78758
78719
  }>;
78759
78720
  }, "strip", z__default.ZodTypeAny, {
78760
78721
  type: "ArtifactCreate";
78761
78722
  input: {
78762
78723
  id: string;
78763
78724
  title: string;
78764
- previewUrl?: string | null | undefined;
78765
78725
  sectionId?: string | undefined;
78766
- iterationId?: string | null | undefined;
78726
+ afterArtifactId?: string | null | undefined;
78767
78727
  };
78768
78728
  }, {
78769
78729
  type: "ArtifactCreate";
78770
78730
  input: {
78771
78731
  id: string;
78772
78732
  title: string;
78773
- previewUrl?: string | null | undefined;
78774
78733
  sectionId?: string | undefined;
78775
- iterationId?: string | null | undefined;
78734
+ afterArtifactId?: string | null | undefined;
78776
78735
  };
78777
78736
  }>, z__default.ZodObject<{
78778
78737
  type: z__default.ZodLiteral<"ArtifactUpdate">;
78779
78738
  input: z__default.ZodObject<{
78780
- title: z__default.ZodOptional<z__default.ZodString>;
78781
- previewUrl: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
78782
- sectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodString>>;
78783
- } & {
78784
78739
  id: z__default.ZodString;
78740
+ title: z__default.ZodOptional<z__default.ZodString>;
78785
78741
  }, "strip", z__default.ZodTypeAny, {
78786
78742
  id: string;
78787
78743
  title?: string | undefined;
78788
- previewUrl?: string | null | undefined;
78789
- sectionId?: string | undefined;
78790
78744
  }, {
78791
78745
  id: string;
78792
78746
  title?: string | undefined;
78793
- previewUrl?: string | null | undefined;
78794
- sectionId?: string | undefined;
78795
78747
  }>;
78796
78748
  }, "strip", z__default.ZodTypeAny, {
78797
78749
  type: "ArtifactUpdate";
78798
78750
  input: {
78799
78751
  id: string;
78800
78752
  title?: string | undefined;
78801
- previewUrl?: string | null | undefined;
78802
- sectionId?: string | undefined;
78803
78753
  };
78804
78754
  }, {
78805
78755
  type: "ArtifactUpdate";
78806
78756
  input: {
78807
78757
  id: string;
78808
78758
  title?: string | undefined;
78809
- previewUrl?: string | null | undefined;
78810
- sectionId?: string | undefined;
78811
78759
  };
78812
78760
  }>, z__default.ZodObject<{
78813
78761
  type: z__default.ZodLiteral<"ArtifactDelete">;
@@ -78987,7 +78935,13 @@ declare const DTOForgeProjectAction: z__default.ZodDiscriminatedUnion<"type", [z
78987
78935
  id: string;
78988
78936
  afterSectionId?: string | null | undefined;
78989
78937
  };
78990
- }>]>;
78938
+ }>]>, z__default.ZodObject<{
78939
+ tId: z__default.ZodOptional<z__default.ZodString>;
78940
+ }, "strip", z__default.ZodTypeAny, {
78941
+ tId?: string | undefined;
78942
+ }, {
78943
+ tId?: string | undefined;
78944
+ }>>;
78991
78945
  type DTOForgeProjectAction = z__default.infer<typeof DTOForgeProjectAction>;
78992
78946
  type DTOForgeProjectActionType = DTOForgeProjectAction["type"];
78993
78947
  type DTOForgeProjectActionOfType<T extends DTOForgeProjectActionType> = Extract<DTOForgeProjectAction, {
@@ -79057,46 +79011,31 @@ declare const DTOForgeProjectArtifact: z$1.ZodObject<{
79057
79011
  }>;
79058
79012
  type DTOForgeProjectArtifact = z$1.infer<typeof DTOForgeProjectArtifact>;
79059
79013
  declare const DTOForgeProjectArtifactUpdateInput: z$1.ZodObject<{
79060
- title: z$1.ZodOptional<z$1.ZodString>;
79061
- previewUrl: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>;
79062
- sectionId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
79063
- } & {
79064
79014
  id: z$1.ZodString;
79015
+ title: z$1.ZodOptional<z$1.ZodString>;
79065
79016
  }, "strip", z$1.ZodTypeAny, {
79066
79017
  id: string;
79067
79018
  title?: string | undefined;
79068
- previewUrl?: string | null | undefined;
79069
- sectionId?: string | undefined;
79070
79019
  }, {
79071
79020
  id: string;
79072
79021
  title?: string | undefined;
79073
- previewUrl?: string | null | undefined;
79074
- sectionId?: string | undefined;
79075
79022
  }>;
79076
79023
  type DTOForgeProjectArtifactUpdateInput = z$1.infer<typeof DTOForgeProjectArtifactUpdateInput>;
79077
- declare const DTOForgeProjectArtifactCreateInput: z$1.ZodObject<Omit<{
79024
+ declare const DTOForgeProjectArtifactCreateInput: z$1.ZodObject<{
79078
79025
  id: z$1.ZodString;
79079
- projectId: z$1.ZodString;
79080
- iterationId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
79081
79026
  title: z$1.ZodString;
79082
- previewUrl: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
79083
- sortOrder: z$1.ZodDefault<z$1.ZodNumber>;
79084
- createdAt: z$1.ZodDate;
79085
- updatedAt: z$1.ZodDate;
79086
- createdByUserId: z$1.ZodString;
79087
79027
  sectionId: z$1.ZodOptional<z$1.ZodString>;
79088
- }, "createdAt" | "updatedAt" | "sortOrder" | "createdByUserId" | "projectId">, "strip", z$1.ZodTypeAny, {
79028
+ afterArtifactId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
79029
+ }, "strip", z$1.ZodTypeAny, {
79089
79030
  id: string;
79090
79031
  title: string;
79091
- previewUrl?: string | null | undefined;
79092
79032
  sectionId?: string | undefined;
79093
- iterationId?: string | null | undefined;
79033
+ afterArtifactId?: string | null | undefined;
79094
79034
  }, {
79095
79035
  id: string;
79096
79036
  title: string;
79097
- previewUrl?: string | null | undefined;
79098
79037
  sectionId?: string | undefined;
79099
- iterationId?: string | null | undefined;
79038
+ afterArtifactId?: string | null | undefined;
79100
79039
  }>;
79101
79040
  type DTOForgeProjectArtifactCreateInput = z$1.infer<typeof DTOForgeProjectArtifactCreateInput>;
79102
79041
  declare const DTOForgeProjectArtifactDeleteInput: z$1.ZodObject<{
@@ -96282,6 +96221,121 @@ declare const DTOForgeProjectRoomResponse: z$1.ZodObject<{
96282
96221
  }>;
96283
96222
  type DTOForgeProjectRoomResponse = z$1.infer<typeof DTOForgeProjectRoomResponse>;
96284
96223
 
96224
+ declare const DTOForgeSection: z__default.ZodObject<{
96225
+ id: z__default.ZodString;
96226
+ projectId: z__default.ZodString;
96227
+ name: z__default.ZodString;
96228
+ sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
96229
+ createdAt: z__default.ZodDate;
96230
+ updatedAt: z__default.ZodDate;
96231
+ childType: z__default.ZodEnum<["Artifact", "Feature"]>;
96232
+ }, "strip", z__default.ZodTypeAny, {
96233
+ id: string;
96234
+ name: string;
96235
+ createdAt: Date;
96236
+ updatedAt: Date;
96237
+ childType: "Artifact" | "Feature";
96238
+ sortOrder: number;
96239
+ projectId: string;
96240
+ }, {
96241
+ id: string;
96242
+ name: string;
96243
+ createdAt: Date;
96244
+ updatedAt: Date;
96245
+ childType: "Artifact" | "Feature";
96246
+ projectId: string;
96247
+ sortOrder?: number | undefined;
96248
+ }>;
96249
+ type DTOForgeSection = z__default.infer<typeof DTOForgeSection>;
96250
+ declare const DTOForgeSectionCreateInput: z__default.ZodObject<Pick<{
96251
+ id: z__default.ZodString;
96252
+ projectId: z__default.ZodString;
96253
+ name: z__default.ZodString;
96254
+ sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
96255
+ createdAt: z__default.ZodDate;
96256
+ updatedAt: z__default.ZodDate;
96257
+ childType: z__default.ZodEnum<["Artifact", "Feature"]>;
96258
+ }, "id" | "name" | "childType"> & {
96259
+ afterSectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
96260
+ }, "strip", z__default.ZodTypeAny, {
96261
+ id: string;
96262
+ name: string;
96263
+ childType: "Artifact" | "Feature";
96264
+ afterSectionId?: string | null | undefined;
96265
+ }, {
96266
+ id: string;
96267
+ name: string;
96268
+ childType: "Artifact" | "Feature";
96269
+ afterSectionId?: string | null | undefined;
96270
+ }>;
96271
+ type DTOForgeSectionCreateInput = z__default.infer<typeof DTOForgeSectionCreateInput>;
96272
+ declare const DTOForgeSectionUpdateInput: z__default.ZodObject<Pick<{
96273
+ id: z__default.ZodString;
96274
+ projectId: z__default.ZodString;
96275
+ name: z__default.ZodString;
96276
+ sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
96277
+ createdAt: z__default.ZodDate;
96278
+ updatedAt: z__default.ZodDate;
96279
+ childType: z__default.ZodEnum<["Artifact", "Feature"]>;
96280
+ }, "id" | "name">, "strip", z__default.ZodTypeAny, {
96281
+ id: string;
96282
+ name: string;
96283
+ }, {
96284
+ id: string;
96285
+ name: string;
96286
+ }>;
96287
+ type DTOForgeSectionUpdateInput = z__default.infer<typeof DTOForgeSectionUpdateInput>;
96288
+ declare const DTOForgeSectionDeleteInput: z__default.ZodObject<Pick<{
96289
+ id: z__default.ZodString;
96290
+ projectId: z__default.ZodString;
96291
+ name: z__default.ZodString;
96292
+ sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
96293
+ createdAt: z__default.ZodDate;
96294
+ updatedAt: z__default.ZodDate;
96295
+ childType: z__default.ZodEnum<["Artifact", "Feature"]>;
96296
+ }, "id"> & {
96297
+ deleteChildren: z__default.ZodDefault<z__default.ZodBoolean>;
96298
+ }, "strip", z__default.ZodTypeAny, {
96299
+ id: string;
96300
+ deleteChildren: boolean;
96301
+ }, {
96302
+ id: string;
96303
+ deleteChildren?: boolean | undefined;
96304
+ }>;
96305
+ type DTOForgeSectionDeleteInput = z__default.infer<typeof DTOForgeSectionDeleteInput>;
96306
+ declare const DTOForgeSectionMoveInput: z__default.ZodObject<Pick<{
96307
+ id: z__default.ZodString;
96308
+ projectId: z__default.ZodString;
96309
+ name: z__default.ZodString;
96310
+ sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
96311
+ createdAt: z__default.ZodDate;
96312
+ updatedAt: z__default.ZodDate;
96313
+ childType: z__default.ZodEnum<["Artifact", "Feature"]>;
96314
+ }, "id"> & {
96315
+ afterSectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
96316
+ }, "strip", z__default.ZodTypeAny, {
96317
+ id: string;
96318
+ afterSectionId?: string | null | undefined;
96319
+ }, {
96320
+ id: string;
96321
+ afterSectionId?: string | null | undefined;
96322
+ }>;
96323
+ type DTOForgeSectionMoveInput = z__default.infer<typeof DTOForgeSectionMoveInput>;
96324
+ declare const DTOForgeSectionItemMoveInput: z__default.ZodObject<{
96325
+ id: z__default.ZodString;
96326
+ sectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
96327
+ afterId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
96328
+ }, "strip", z__default.ZodTypeAny, {
96329
+ id: string;
96330
+ sectionId?: string | null | undefined;
96331
+ afterId?: string | null | undefined;
96332
+ }, {
96333
+ id: string;
96334
+ sectionId?: string | null | undefined;
96335
+ afterId?: string | null | undefined;
96336
+ }>;
96337
+ type DTOForgeSectionItemMoveInput = z__default.infer<typeof DTOForgeSectionItemMoveInput>;
96338
+
96285
96339
  declare const DTOForgeProject: z$1.ZodObject<Omit<{
96286
96340
  createdAt: z$1.ZodDate;
96287
96341
  createdByUserId: z$1.ZodOptional<z$1.ZodString>;
@@ -100273,121 +100327,6 @@ declare const DTORemoveForgeProjectResponse: z$1.ZodObject<{
100273
100327
  }>;
100274
100328
  type DTORemoveForgeProjectResponse = z$1.infer<typeof DTORemoveForgeProjectResponse>;
100275
100329
 
100276
- declare const DTOForgeSection: z__default.ZodObject<{
100277
- id: z__default.ZodString;
100278
- projectId: z__default.ZodString;
100279
- name: z__default.ZodString;
100280
- sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
100281
- createdAt: z__default.ZodDate;
100282
- updatedAt: z__default.ZodDate;
100283
- childType: z__default.ZodEnum<["Artifact", "Feature"]>;
100284
- }, "strip", z__default.ZodTypeAny, {
100285
- id: string;
100286
- name: string;
100287
- createdAt: Date;
100288
- updatedAt: Date;
100289
- childType: "Artifact" | "Feature";
100290
- sortOrder: number;
100291
- projectId: string;
100292
- }, {
100293
- id: string;
100294
- name: string;
100295
- createdAt: Date;
100296
- updatedAt: Date;
100297
- childType: "Artifact" | "Feature";
100298
- projectId: string;
100299
- sortOrder?: number | undefined;
100300
- }>;
100301
- type DTOForgeSection = z__default.infer<typeof DTOForgeSection>;
100302
- declare const DTOForgeSectionCreateInput: z__default.ZodObject<Pick<{
100303
- id: z__default.ZodString;
100304
- projectId: z__default.ZodString;
100305
- name: z__default.ZodString;
100306
- sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
100307
- createdAt: z__default.ZodDate;
100308
- updatedAt: z__default.ZodDate;
100309
- childType: z__default.ZodEnum<["Artifact", "Feature"]>;
100310
- }, "id" | "name" | "childType"> & {
100311
- afterSectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
100312
- }, "strip", z__default.ZodTypeAny, {
100313
- id: string;
100314
- name: string;
100315
- childType: "Artifact" | "Feature";
100316
- afterSectionId?: string | null | undefined;
100317
- }, {
100318
- id: string;
100319
- name: string;
100320
- childType: "Artifact" | "Feature";
100321
- afterSectionId?: string | null | undefined;
100322
- }>;
100323
- type DTOForgeSectionCreateInput = z__default.infer<typeof DTOForgeSectionCreateInput>;
100324
- declare const DTOForgeSectionUpdateInput: z__default.ZodObject<Pick<{
100325
- id: z__default.ZodString;
100326
- projectId: z__default.ZodString;
100327
- name: z__default.ZodString;
100328
- sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
100329
- createdAt: z__default.ZodDate;
100330
- updatedAt: z__default.ZodDate;
100331
- childType: z__default.ZodEnum<["Artifact", "Feature"]>;
100332
- }, "id" | "name">, "strip", z__default.ZodTypeAny, {
100333
- id: string;
100334
- name: string;
100335
- }, {
100336
- id: string;
100337
- name: string;
100338
- }>;
100339
- type DTOForgeSectionUpdateInput = z__default.infer<typeof DTOForgeSectionUpdateInput>;
100340
- declare const DTOForgeSectionDeleteInput: z__default.ZodObject<Pick<{
100341
- id: z__default.ZodString;
100342
- projectId: z__default.ZodString;
100343
- name: z__default.ZodString;
100344
- sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
100345
- createdAt: z__default.ZodDate;
100346
- updatedAt: z__default.ZodDate;
100347
- childType: z__default.ZodEnum<["Artifact", "Feature"]>;
100348
- }, "id"> & {
100349
- deleteChildren: z__default.ZodDefault<z__default.ZodBoolean>;
100350
- }, "strip", z__default.ZodTypeAny, {
100351
- id: string;
100352
- deleteChildren: boolean;
100353
- }, {
100354
- id: string;
100355
- deleteChildren?: boolean | undefined;
100356
- }>;
100357
- type DTOForgeSectionDeleteInput = z__default.infer<typeof DTOForgeSectionDeleteInput>;
100358
- declare const DTOForgeSectionMoveInput: z__default.ZodObject<Pick<{
100359
- id: z__default.ZodString;
100360
- projectId: z__default.ZodString;
100361
- name: z__default.ZodString;
100362
- sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
100363
- createdAt: z__default.ZodDate;
100364
- updatedAt: z__default.ZodDate;
100365
- childType: z__default.ZodEnum<["Artifact", "Feature"]>;
100366
- }, "id"> & {
100367
- afterSectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
100368
- }, "strip", z__default.ZodTypeAny, {
100369
- id: string;
100370
- afterSectionId?: string | null | undefined;
100371
- }, {
100372
- id: string;
100373
- afterSectionId?: string | null | undefined;
100374
- }>;
100375
- type DTOForgeSectionMoveInput = z__default.infer<typeof DTOForgeSectionMoveInput>;
100376
- declare const DTOForgeSectionItemMoveInput: z__default.ZodObject<{
100377
- id: z__default.ZodString;
100378
- sectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
100379
- afterId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
100380
- }, "strip", z__default.ZodTypeAny, {
100381
- id: string;
100382
- sectionId?: string | null | undefined;
100383
- afterId?: string | null | undefined;
100384
- }, {
100385
- id: string;
100386
- sectionId?: string | null | undefined;
100387
- afterId?: string | null | undefined;
100388
- }>;
100389
- type DTOForgeSectionItemMoveInput = z__default.infer<typeof DTOForgeSectionItemMoveInput>;
100390
-
100391
100330
  declare const DTOForgeChatMessage: z$1.ZodObject<{
100392
100331
  id: z$1.ZodString;
100393
100332
  threadId: z$1.ZodString;
@@ -128973,7 +128912,11 @@ type LocalDocsPageGroup = OmitStrict<ElementGroup, "id" | "brandPersistentId" |
128973
128912
  };
128974
128913
  type LocalApproval = OmitStrict<DocumentationPageApproval, "id" | "pageId" | "persistentId">;
128975
128914
  type NarrowedUnion<T, U extends T> = U;
128976
- type SupportedActionType = NarrowedUnion<DTOElementActionInput["type"], "DocumentationPageCreate" | "DocumentationPageUpdate" | "DocumentationPageDelete" | "DocumentationPageMove" | "DocumentationGroupCreate" | "DocumentationGroupUpdate" | "DocumentationGroupMove" | "DocumentationPageApprovalStateChange" | "DocumentationTabCreate">;
128915
+ type SupportedElementActionType = NarrowedUnion<DTOElementActionInput["type"], "DocumentationPageCreate" | "DocumentationPageUpdate" | "DocumentationPageDelete" | "DocumentationPageMove" | "DocumentationGroupCreate" | "DocumentationGroupUpdate" | "DocumentationGroupMove" | "DocumentationPageApprovalStateChange" | "DocumentationTabCreate">;
128916
+ type ProjectContentState = {
128917
+ artifacts: DTOForgeProjectArtifact[];
128918
+ features: DTOForgeProjectFeature[];
128919
+ };
128977
128920
 
128978
128921
  type DocsPage$3 = LocalDocsPage | VersionRoomDocsPage;
128979
128922
  type DocsPageGroup$3 = LocalDocsPageGroup | VersionRoomDocsPageGroup;
@@ -143535,6 +143478,7 @@ type ForgeProjectRoomTransaction = {
143535
143478
  artifactIdsToDelete?: string[];
143536
143479
  features?: ProjectFeature[];
143537
143480
  featureIdsToDelete?: string[];
143481
+ executedTransactionIds?: string[];
143538
143482
  };
143539
143483
  declare class BackendForgeProjectRoomYDoc {
143540
143484
  private readonly yDoc;
@@ -143546,6 +143490,7 @@ interface ForgeProjectRoomBaseYDocState {
143546
143490
  isLoaded: boolean;
143547
143491
  artifacts: ForgeProjectArtifact[];
143548
143492
  features: ProjectFeature[];
143493
+ executedTransactionIds: string[];
143549
143494
  }
143550
143495
  declare class ForgeProjectRoomBaseYDoc {
143551
143496
  private readonly yDoc;
@@ -143559,6 +143504,9 @@ declare class ForgeProjectRoomBaseYDoc {
143559
143504
  updateFeatures(features: ProjectFeature[]): void;
143560
143505
  deleteFeatures(ids: string[]): void;
143561
143506
  private get featuresYMap();
143507
+ updateExecutedTransactionIds(transactionIds: string[]): void;
143508
+ getExecutedTransactionIds(): string[];
143509
+ private get executedTransactionIdsArray();
143562
143510
  private getObjects;
143563
143511
  private setObjects;
143564
143512
  private deleteObjects;
@@ -143673,57 +143621,6 @@ declare class FrontendVersionRoomYDoc {
143673
143621
 
143674
143622
  declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
143675
143623
 
143676
- type HierarchyObserver = (hierarchy: DTODocumentationHierarchyV2) => void;
143677
- type SettingsObserver = (settings: DTODocumentationSettings) => void;
143678
- type ErrorObserver<T> = (error: unknown, actionMetadata: T | undefined) => void;
143679
- type TransactionExecutor = (trx: DTOElementActionInput) => Promise<void>;
143680
- type TransactionIdGenerator = () => string;
143681
- type Action = DTOElementActionInputOfType<SupportedActionType>;
143682
- type InputAction<T> = OmitStrict<Action, "tId">;
143683
- declare class DocsStructureRepository<T> {
143684
- private userId;
143685
- private designSystemVersionId;
143686
- private readonly yDoc;
143687
- private readonly yObserver;
143688
- private _yState;
143689
- private _currentHierarchy;
143690
- private _currentSettings;
143691
- private localActions;
143692
- private readonly actionQueue;
143693
- private readonly hierarchyObservers;
143694
- private readonly settingsObservers;
143695
- private readonly errorObservers;
143696
- private readonly initCallbacks;
143697
- private readonly transactionIdGenerator;
143698
- private readonly transactionExecutor;
143699
- constructor(config: {
143700
- userId: string;
143701
- designSystemVersionId: string;
143702
- yDoc: Y.Doc;
143703
- transactionExecutor: TransactionExecutor;
143704
- transactionIdGenerator: TransactionIdGenerator;
143705
- });
143706
- get isInitialized(): boolean;
143707
- onInitialized(): Promise<void>;
143708
- addHierarchyObserver(observer: HierarchyObserver): void;
143709
- removeHierarchyObserver(observer: HierarchyObserver): void;
143710
- addSettingsObserver(observer: SettingsObserver): void;
143711
- removeSettingsObserver(observer: SettingsObserver): void;
143712
- addErrorObserver(observer: ErrorObserver<T>): void;
143713
- removeErrorObserver(observer: ErrorObserver<T>): void;
143714
- dispose(): void;
143715
- get currentHierarchy(): DTODocumentationHierarchyV2;
143716
- executeAction(action: InputAction<T>, metadata?: T): void;
143717
- executeActionPromise(action: InputAction<T>, metadata?: T): Promise<void>;
143718
- notifyPageContentUpdated(pagePersistentId: string, content: DocumentationPageEditorModel, definitions: DTOPageBlockDefinition[]): void;
143719
- private executeInternalAction;
143720
- private refreshState;
143721
- private refreshSettings;
143722
- private refreshHierarchy;
143723
- private calculateHierarchy;
143724
- private onYUpdate;
143725
- }
143726
-
143727
143624
  type Page = LocalDocsPage | VersionRoomDocsPage;
143728
143625
  type Group = LocalDocsPageGroup | VersionRoomDocsPageGroup;
143729
143626
  type ApprovalState = LocalApproval | VersionRoomApproval;
@@ -143769,6 +143666,101 @@ declare class LocalDocsElementActionExecutor {
143769
143666
  private calculateSortOrder;
143770
143667
  }
143771
143668
 
143669
+ type HierarchyObserver = (hierarchy: DTODocumentationHierarchyV2) => void;
143670
+ type SettingsObserver = (settings: DTODocumentationSettings) => void;
143671
+ type ErrorObserver$1<T> = (error: unknown, actionMetadata: T | undefined) => void;
143672
+ type TransactionExecutor$1 = (trx: DTOElementActionInput) => Promise<void>;
143673
+ type TransactionIdGenerator$1 = () => string;
143674
+ type Action$1 = DTOElementActionInputOfType<SupportedElementActionType>;
143675
+ type InputAction$1<T> = OmitStrict<Action$1, "tId">;
143676
+ declare class DocsStructureRepository<T> {
143677
+ private userId;
143678
+ private designSystemVersionId;
143679
+ private readonly yDoc;
143680
+ private readonly yObserver;
143681
+ private _yState;
143682
+ private _currentHierarchy;
143683
+ private _currentSettings;
143684
+ private localActions;
143685
+ private readonly actionQueue;
143686
+ private readonly hierarchyObservers;
143687
+ private readonly settingsObservers;
143688
+ private readonly errorObservers;
143689
+ private readonly initCallbacks;
143690
+ private readonly transactionIdGenerator;
143691
+ private readonly transactionExecutor;
143692
+ constructor(config: {
143693
+ userId: string;
143694
+ designSystemVersionId: string;
143695
+ yDoc: Y.Doc;
143696
+ transactionExecutor: TransactionExecutor$1;
143697
+ transactionIdGenerator: TransactionIdGenerator$1;
143698
+ });
143699
+ get isInitialized(): boolean;
143700
+ onInitialized(): Promise<void>;
143701
+ addHierarchyObserver(observer: HierarchyObserver): void;
143702
+ removeHierarchyObserver(observer: HierarchyObserver): void;
143703
+ addSettingsObserver(observer: SettingsObserver): void;
143704
+ removeSettingsObserver(observer: SettingsObserver): void;
143705
+ addErrorObserver(observer: ErrorObserver$1<T>): void;
143706
+ removeErrorObserver(observer: ErrorObserver$1<T>): void;
143707
+ dispose(): void;
143708
+ get currentHierarchy(): DTODocumentationHierarchyV2;
143709
+ executeAction(action: InputAction$1<T>, metadata?: T): void;
143710
+ executeActionPromise(action: InputAction$1<T>, metadata?: T): Promise<void>;
143711
+ notifyPageContentUpdated(pagePersistentId: string, content: DocumentationPageEditorModel, definitions: DTOPageBlockDefinition[]): void;
143712
+ private executeInternalAction;
143713
+ private refreshState;
143714
+ private refreshSettings;
143715
+ private refreshHierarchy;
143716
+ private calculateHierarchy;
143717
+ private onYUpdate;
143718
+ }
143719
+
143720
+ type ProjectContentObserver = (projectContent: ProjectContentState) => void;
143721
+ type ErrorObserver<T> = (error: unknown, actionMetadata: T | undefined) => void;
143722
+ type TransactionExecutor = (trx: DTOForgeProjectAction) => Promise<void>;
143723
+ type TransactionIdGenerator = () => string;
143724
+ type Action = DTOForgeProjectActionOfType<DTOForgeProjectAction["type"]>;
143725
+ type InputAction<T> = OmitStrict<Action, "tId">;
143726
+ declare class ForgeProjectContentRepository<T> {
143727
+ private userId;
143728
+ private projectId;
143729
+ private readonly yDoc;
143730
+ private readonly yObserver;
143731
+ private _yState;
143732
+ private _currentProjectContent;
143733
+ private localActions;
143734
+ private readonly actionQueue;
143735
+ private readonly projectContentObservers;
143736
+ private readonly errorObservers;
143737
+ private readonly initCallbacks;
143738
+ private readonly transactionIdGenerator;
143739
+ private readonly transactionExecutor;
143740
+ constructor(config: {
143741
+ userId: string;
143742
+ projectId: string;
143743
+ yDoc: Y.Doc;
143744
+ transactionExecutor: TransactionExecutor;
143745
+ transactionIdGenerator: TransactionIdGenerator;
143746
+ });
143747
+ get isInitialized(): boolean;
143748
+ onInitialized(): Promise<void>;
143749
+ addProjectContentObserver(observer: ProjectContentObserver): void;
143750
+ removeProjectContentObserver(observer: ProjectContentObserver): void;
143751
+ addErrorObserver(observer: ErrorObserver<T>): void;
143752
+ removeErrorObserver(observer: ErrorObserver<T>): void;
143753
+ dispose(): void;
143754
+ get currentProjectContent(): ProjectContentState;
143755
+ executeAction(action: InputAction<T>, metadata?: T): void;
143756
+ executeActionPromise(action: InputAction<T>, metadata?: T): Promise<void>;
143757
+ private executeInternalAction;
143758
+ private refreshState;
143759
+ private refreshProjectContent;
143760
+ private calculateProjectState;
143761
+ private onYUpdate;
143762
+ }
143763
+
143772
143764
  declare enum ParsedFigmaFileURLError {
143773
143765
  InvalidUrl = "InvalidUrl",
143774
143766
  InvalidFigmaFileId = "InvalidFigmaFileId"
@@ -143830,4 +143822,4 @@ declare function isValidRedirectPath(path: string): {
143830
143822
  reason: ValidationErrorReason | undefined;
143831
143823
  };
143832
143824
 
143833
- export { BackendForgeProjectRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, 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, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectsListResponse, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORemoveForgeProjectResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUGetForgeProjectResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProject, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeProjectResponse, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeFeaturesEndpoint, ForgeIterationMessagesEndpoint, ForgeParticipantsEndpoint, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, ForgesEndpoint, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, 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 };
143825
+ export { BackendForgeProjectRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, 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, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectsListResponse, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORemoveForgeProjectResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUGetForgeProjectResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProject, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeProjectResponse, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeFeaturesEndpoint, ForgeIterationMessagesEndpoint, ForgeParticipantsEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, ForgesEndpoint, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, 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 };