@supernova-studio/client 1.56.1 → 1.57.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -140670,18 +140670,56 @@ declare const DTOForgeProjectActionFeatureUpdate: z$1.ZodObject<{
140670
140670
  description: z$1.ZodOptional<z$1.ZodString>;
140671
140671
  isArchived: z$1.ZodOptional<z$1.ZodBoolean>;
140672
140672
  status: z$1.ZodOptional<z$1.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
140673
+ publishedState: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
140674
+ userId: z$1.ZodOptional<z$1.ZodString>;
140675
+ userName: z$1.ZodOptional<z$1.ZodString>;
140676
+ lastPublishedAt: z$1.ZodDate;
140677
+ iterationId: z$1.ZodOptional<z$1.ZodString>;
140678
+ hideSupernovaUI: z$1.ZodBoolean;
140679
+ visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
140680
+ }, "strip", z$1.ZodTypeAny, {
140681
+ visibility: "Public" | "WorkspaceMembers";
140682
+ lastPublishedAt: Date;
140683
+ hideSupernovaUI: boolean;
140684
+ userId?: string | undefined;
140685
+ iterationId?: string | undefined;
140686
+ userName?: string | undefined;
140687
+ }, {
140688
+ lastPublishedAt: Date;
140689
+ hideSupernovaUI: boolean;
140690
+ userId?: string | undefined;
140691
+ visibility?: "Public" | "WorkspaceMembers" | undefined;
140692
+ iterationId?: string | undefined;
140693
+ userName?: string | undefined;
140694
+ }>>>;
140673
140695
  }, "strip", z$1.ZodTypeAny, {
140674
140696
  id: string;
140675
140697
  name?: string | undefined;
140676
140698
  status?: "Draft" | "ReadyForDevelopment" | undefined;
140677
140699
  description?: string | undefined;
140678
140700
  isArchived?: boolean | undefined;
140701
+ publishedState?: {
140702
+ visibility: "Public" | "WorkspaceMembers";
140703
+ lastPublishedAt: Date;
140704
+ hideSupernovaUI: boolean;
140705
+ userId?: string | undefined;
140706
+ iterationId?: string | undefined;
140707
+ userName?: string | undefined;
140708
+ } | null | undefined;
140679
140709
  }, {
140680
140710
  id: string;
140681
140711
  name?: string | undefined;
140682
140712
  status?: "Draft" | "ReadyForDevelopment" | undefined;
140683
140713
  description?: string | undefined;
140684
140714
  isArchived?: boolean | undefined;
140715
+ publishedState?: {
140716
+ lastPublishedAt: Date;
140717
+ hideSupernovaUI: boolean;
140718
+ userId?: string | undefined;
140719
+ visibility?: "Public" | "WorkspaceMembers" | undefined;
140720
+ iterationId?: string | undefined;
140721
+ userName?: string | undefined;
140722
+ } | null | undefined;
140685
140723
  }>;
140686
140724
  }, "strip", z$1.ZodTypeAny, {
140687
140725
  type: "FeatureUpdate";
@@ -140691,6 +140729,14 @@ declare const DTOForgeProjectActionFeatureUpdate: z$1.ZodObject<{
140691
140729
  status?: "Draft" | "ReadyForDevelopment" | undefined;
140692
140730
  description?: string | undefined;
140693
140731
  isArchived?: boolean | undefined;
140732
+ publishedState?: {
140733
+ visibility: "Public" | "WorkspaceMembers";
140734
+ lastPublishedAt: Date;
140735
+ hideSupernovaUI: boolean;
140736
+ userId?: string | undefined;
140737
+ iterationId?: string | undefined;
140738
+ userName?: string | undefined;
140739
+ } | null | undefined;
140694
140740
  };
140695
140741
  }, {
140696
140742
  type: "FeatureUpdate";
@@ -140700,6 +140746,14 @@ declare const DTOForgeProjectActionFeatureUpdate: z$1.ZodObject<{
140700
140746
  status?: "Draft" | "ReadyForDevelopment" | undefined;
140701
140747
  description?: string | undefined;
140702
140748
  isArchived?: boolean | undefined;
140749
+ publishedState?: {
140750
+ lastPublishedAt: Date;
140751
+ hideSupernovaUI: boolean;
140752
+ userId?: string | undefined;
140753
+ visibility?: "Public" | "WorkspaceMembers" | undefined;
140754
+ iterationId?: string | undefined;
140755
+ userName?: string | undefined;
140756
+ } | null | undefined;
140703
140757
  };
140704
140758
  }>;
140705
140759
  type DTOForgeProjectActionFeatureUpdate = z$1.infer<typeof DTOForgeProjectActionFeatureUpdate>;
@@ -141471,18 +141525,56 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
141471
141525
  description: z$1.ZodOptional<z$1.ZodString>;
141472
141526
  isArchived: z$1.ZodOptional<z$1.ZodBoolean>;
141473
141527
  status: z$1.ZodOptional<z$1.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
141528
+ publishedState: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
141529
+ userId: z$1.ZodOptional<z$1.ZodString>;
141530
+ userName: z$1.ZodOptional<z$1.ZodString>;
141531
+ lastPublishedAt: z$1.ZodDate;
141532
+ iterationId: z$1.ZodOptional<z$1.ZodString>;
141533
+ hideSupernovaUI: z$1.ZodBoolean;
141534
+ visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
141535
+ }, "strip", z$1.ZodTypeAny, {
141536
+ visibility: "Public" | "WorkspaceMembers";
141537
+ lastPublishedAt: Date;
141538
+ hideSupernovaUI: boolean;
141539
+ userId?: string | undefined;
141540
+ iterationId?: string | undefined;
141541
+ userName?: string | undefined;
141542
+ }, {
141543
+ lastPublishedAt: Date;
141544
+ hideSupernovaUI: boolean;
141545
+ userId?: string | undefined;
141546
+ visibility?: "Public" | "WorkspaceMembers" | undefined;
141547
+ iterationId?: string | undefined;
141548
+ userName?: string | undefined;
141549
+ }>>>;
141474
141550
  }, "strip", z$1.ZodTypeAny, {
141475
141551
  id: string;
141476
141552
  name?: string | undefined;
141477
141553
  status?: "Draft" | "ReadyForDevelopment" | undefined;
141478
141554
  description?: string | undefined;
141479
141555
  isArchived?: boolean | undefined;
141556
+ publishedState?: {
141557
+ visibility: "Public" | "WorkspaceMembers";
141558
+ lastPublishedAt: Date;
141559
+ hideSupernovaUI: boolean;
141560
+ userId?: string | undefined;
141561
+ iterationId?: string | undefined;
141562
+ userName?: string | undefined;
141563
+ } | null | undefined;
141480
141564
  }, {
141481
141565
  id: string;
141482
141566
  name?: string | undefined;
141483
141567
  status?: "Draft" | "ReadyForDevelopment" | undefined;
141484
141568
  description?: string | undefined;
141485
141569
  isArchived?: boolean | undefined;
141570
+ publishedState?: {
141571
+ lastPublishedAt: Date;
141572
+ hideSupernovaUI: boolean;
141573
+ userId?: string | undefined;
141574
+ visibility?: "Public" | "WorkspaceMembers" | undefined;
141575
+ iterationId?: string | undefined;
141576
+ userName?: string | undefined;
141577
+ } | null | undefined;
141486
141578
  }>;
141487
141579
  }, "strip", z$1.ZodTypeAny, {
141488
141580
  type: "FeatureUpdate";
@@ -141492,6 +141584,14 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
141492
141584
  status?: "Draft" | "ReadyForDevelopment" | undefined;
141493
141585
  description?: string | undefined;
141494
141586
  isArchived?: boolean | undefined;
141587
+ publishedState?: {
141588
+ visibility: "Public" | "WorkspaceMembers";
141589
+ lastPublishedAt: Date;
141590
+ hideSupernovaUI: boolean;
141591
+ userId?: string | undefined;
141592
+ iterationId?: string | undefined;
141593
+ userName?: string | undefined;
141594
+ } | null | undefined;
141495
141595
  };
141496
141596
  }, {
141497
141597
  type: "FeatureUpdate";
@@ -141501,6 +141601,14 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
141501
141601
  status?: "Draft" | "ReadyForDevelopment" | undefined;
141502
141602
  description?: string | undefined;
141503
141603
  isArchived?: boolean | undefined;
141604
+ publishedState?: {
141605
+ lastPublishedAt: Date;
141606
+ hideSupernovaUI: boolean;
141607
+ userId?: string | undefined;
141608
+ visibility?: "Public" | "WorkspaceMembers" | undefined;
141609
+ iterationId?: string | undefined;
141610
+ userName?: string | undefined;
141611
+ } | null | undefined;
141504
141612
  };
141505
141613
  }>, z$1.ZodObject<{
141506
141614
  type: z$1.ZodLiteral<"FeatureDelete">;
@@ -248450,6 +248558,28 @@ declare const DTOForgeProjectContextRemoveResponse: z.ZodObject<{
248450
248558
  }>;
248451
248559
  type DTOForgeProjectContextRemoveResponse = z.infer<typeof DTOForgeProjectContextRemoveResponse>;
248452
248560
 
248561
+ declare const DTOForgeProjectFeaturePublishedState: z$1.ZodObject<{
248562
+ userId: z$1.ZodOptional<z$1.ZodString>;
248563
+ userName: z$1.ZodOptional<z$1.ZodString>;
248564
+ lastPublishedAt: z$1.ZodDate;
248565
+ iterationId: z$1.ZodOptional<z$1.ZodString>;
248566
+ hideSupernovaUI: z$1.ZodBoolean;
248567
+ visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
248568
+ }, "strip", z$1.ZodTypeAny, {
248569
+ visibility: "Public" | "WorkspaceMembers";
248570
+ lastPublishedAt: Date;
248571
+ hideSupernovaUI: boolean;
248572
+ userId?: string | undefined;
248573
+ iterationId?: string | undefined;
248574
+ userName?: string | undefined;
248575
+ }, {
248576
+ lastPublishedAt: Date;
248577
+ hideSupernovaUI: boolean;
248578
+ userId?: string | undefined;
248579
+ visibility?: "Public" | "WorkspaceMembers" | undefined;
248580
+ iterationId?: string | undefined;
248581
+ userName?: string | undefined;
248582
+ }>;
248453
248583
  declare const DTOForgeProjectFeature: z$1.ZodObject<{
248454
248584
  createdAt: z$1.ZodDate;
248455
248585
  createdByUserId: z$1.ZodString;
@@ -248520,6 +248650,28 @@ declare const DTOForgeProjectFeature: z$1.ZodObject<{
248520
248650
  renderMode: "Image" | "HTML" | "JSON";
248521
248651
  } | undefined;
248522
248652
  }>>;
248653
+ publishedState: z$1.ZodOptional<z$1.ZodObject<{
248654
+ userId: z$1.ZodOptional<z$1.ZodString>;
248655
+ userName: z$1.ZodOptional<z$1.ZodString>;
248656
+ lastPublishedAt: z$1.ZodDate;
248657
+ iterationId: z$1.ZodOptional<z$1.ZodString>;
248658
+ hideSupernovaUI: z$1.ZodBoolean;
248659
+ visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
248660
+ }, "strip", z$1.ZodTypeAny, {
248661
+ visibility: "Public" | "WorkspaceMembers";
248662
+ lastPublishedAt: Date;
248663
+ hideSupernovaUI: boolean;
248664
+ userId?: string | undefined;
248665
+ iterationId?: string | undefined;
248666
+ userName?: string | undefined;
248667
+ }, {
248668
+ lastPublishedAt: Date;
248669
+ hideSupernovaUI: boolean;
248670
+ userId?: string | undefined;
248671
+ visibility?: "Public" | "WorkspaceMembers" | undefined;
248672
+ iterationId?: string | undefined;
248673
+ userName?: string | undefined;
248674
+ }>>;
248523
248675
  }, "strip", z$1.ZodTypeAny, {
248524
248676
  status: "Draft" | "ReadyForDevelopment";
248525
248677
  id: string;
@@ -248550,6 +248702,14 @@ declare const DTOForgeProjectFeature: z$1.ZodObject<{
248550
248702
  e2bTemplateId?: string | null | undefined;
248551
248703
  e2bIterationId?: string | null | undefined;
248552
248704
  lastReplyTimestamp?: Date | undefined;
248705
+ publishedState?: {
248706
+ visibility: "Public" | "WorkspaceMembers";
248707
+ lastPublishedAt: Date;
248708
+ hideSupernovaUI: boolean;
248709
+ userId?: string | undefined;
248710
+ iterationId?: string | undefined;
248711
+ userName?: string | undefined;
248712
+ } | undefined;
248553
248713
  }, {
248554
248714
  id: string;
248555
248715
  name: string;
@@ -248580,6 +248740,14 @@ declare const DTOForgeProjectFeature: z$1.ZodObject<{
248580
248740
  numberOfIterations?: number | undefined;
248581
248741
  numberOfBookmarkedIterations?: number | undefined;
248582
248742
  lastReplyTimestamp?: Date | undefined;
248743
+ publishedState?: {
248744
+ lastPublishedAt: Date;
248745
+ hideSupernovaUI: boolean;
248746
+ userId?: string | undefined;
248747
+ visibility?: "Public" | "WorkspaceMembers" | undefined;
248748
+ iterationId?: string | undefined;
248749
+ userName?: string | undefined;
248750
+ } | undefined;
248583
248751
  }>;
248584
248752
  type DTOForgeProjectFeature = z$1.infer<typeof DTOForgeProjectFeature>;
248585
248753
  declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
@@ -248653,6 +248821,28 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
248653
248821
  renderMode: "Image" | "HTML" | "JSON";
248654
248822
  } | undefined;
248655
248823
  }>>;
248824
+ publishedState: z$1.ZodOptional<z$1.ZodObject<{
248825
+ userId: z$1.ZodOptional<z$1.ZodString>;
248826
+ userName: z$1.ZodOptional<z$1.ZodString>;
248827
+ lastPublishedAt: z$1.ZodDate;
248828
+ iterationId: z$1.ZodOptional<z$1.ZodString>;
248829
+ hideSupernovaUI: z$1.ZodBoolean;
248830
+ visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
248831
+ }, "strip", z$1.ZodTypeAny, {
248832
+ visibility: "Public" | "WorkspaceMembers";
248833
+ lastPublishedAt: Date;
248834
+ hideSupernovaUI: boolean;
248835
+ userId?: string | undefined;
248836
+ iterationId?: string | undefined;
248837
+ userName?: string | undefined;
248838
+ }, {
248839
+ lastPublishedAt: Date;
248840
+ hideSupernovaUI: boolean;
248841
+ userId?: string | undefined;
248842
+ visibility?: "Public" | "WorkspaceMembers" | undefined;
248843
+ iterationId?: string | undefined;
248844
+ userName?: string | undefined;
248845
+ }>>;
248656
248846
  }, "strip", z$1.ZodTypeAny, {
248657
248847
  status: "Draft" | "ReadyForDevelopment";
248658
248848
  id: string;
@@ -248683,6 +248873,14 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
248683
248873
  e2bTemplateId?: string | null | undefined;
248684
248874
  e2bIterationId?: string | null | undefined;
248685
248875
  lastReplyTimestamp?: Date | undefined;
248876
+ publishedState?: {
248877
+ visibility: "Public" | "WorkspaceMembers";
248878
+ lastPublishedAt: Date;
248879
+ hideSupernovaUI: boolean;
248880
+ userId?: string | undefined;
248881
+ iterationId?: string | undefined;
248882
+ userName?: string | undefined;
248883
+ } | undefined;
248686
248884
  }, {
248687
248885
  id: string;
248688
248886
  name: string;
@@ -248713,6 +248911,14 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
248713
248911
  numberOfIterations?: number | undefined;
248714
248912
  numberOfBookmarkedIterations?: number | undefined;
248715
248913
  lastReplyTimestamp?: Date | undefined;
248914
+ publishedState?: {
248915
+ lastPublishedAt: Date;
248916
+ hideSupernovaUI: boolean;
248917
+ userId?: string | undefined;
248918
+ visibility?: "Public" | "WorkspaceMembers" | undefined;
248919
+ iterationId?: string | undefined;
248920
+ userName?: string | undefined;
248921
+ } | undefined;
248716
248922
  }>, "many">;
248717
248923
  }, "strip", z$1.ZodTypeAny, {
248718
248924
  features: {
@@ -248745,6 +248951,14 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
248745
248951
  e2bTemplateId?: string | null | undefined;
248746
248952
  e2bIterationId?: string | null | undefined;
248747
248953
  lastReplyTimestamp?: Date | undefined;
248954
+ publishedState?: {
248955
+ visibility: "Public" | "WorkspaceMembers";
248956
+ lastPublishedAt: Date;
248957
+ hideSupernovaUI: boolean;
248958
+ userId?: string | undefined;
248959
+ iterationId?: string | undefined;
248960
+ userName?: string | undefined;
248961
+ } | undefined;
248748
248962
  }[];
248749
248963
  }, {
248750
248964
  features: {
@@ -248777,6 +248991,14 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
248777
248991
  numberOfIterations?: number | undefined;
248778
248992
  numberOfBookmarkedIterations?: number | undefined;
248779
248993
  lastReplyTimestamp?: Date | undefined;
248994
+ publishedState?: {
248995
+ lastPublishedAt: Date;
248996
+ hideSupernovaUI: boolean;
248997
+ userId?: string | undefined;
248998
+ visibility?: "Public" | "WorkspaceMembers" | undefined;
248999
+ iterationId?: string | undefined;
249000
+ userName?: string | undefined;
249001
+ } | undefined;
248780
249002
  }[];
248781
249003
  }>;
248782
249004
  type DTOForgeProjectFeatureListResponse = z$1.infer<typeof DTOForgeProjectFeatureListResponse>;
@@ -248988,18 +249210,59 @@ declare const DTOForgeProjectFeatureUpdateInput: z$1.ZodObject<{
248988
249210
  description: z$1.ZodOptional<z$1.ZodString>;
248989
249211
  isArchived: z$1.ZodOptional<z$1.ZodBoolean>;
248990
249212
  status: z$1.ZodOptional<z$1.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
249213
+ /**
249214
+ * Sending null will result in feature unpublish
249215
+ */
249216
+ publishedState: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
249217
+ userId: z$1.ZodOptional<z$1.ZodString>;
249218
+ userName: z$1.ZodOptional<z$1.ZodString>;
249219
+ lastPublishedAt: z$1.ZodDate;
249220
+ iterationId: z$1.ZodOptional<z$1.ZodString>;
249221
+ hideSupernovaUI: z$1.ZodBoolean;
249222
+ visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
249223
+ }, "strip", z$1.ZodTypeAny, {
249224
+ visibility: "Public" | "WorkspaceMembers";
249225
+ lastPublishedAt: Date;
249226
+ hideSupernovaUI: boolean;
249227
+ userId?: string | undefined;
249228
+ iterationId?: string | undefined;
249229
+ userName?: string | undefined;
249230
+ }, {
249231
+ lastPublishedAt: Date;
249232
+ hideSupernovaUI: boolean;
249233
+ userId?: string | undefined;
249234
+ visibility?: "Public" | "WorkspaceMembers" | undefined;
249235
+ iterationId?: string | undefined;
249236
+ userName?: string | undefined;
249237
+ }>>>;
248991
249238
  }, "strip", z$1.ZodTypeAny, {
248992
249239
  id: string;
248993
249240
  name?: string | undefined;
248994
249241
  status?: "Draft" | "ReadyForDevelopment" | undefined;
248995
249242
  description?: string | undefined;
248996
249243
  isArchived?: boolean | undefined;
249244
+ publishedState?: {
249245
+ visibility: "Public" | "WorkspaceMembers";
249246
+ lastPublishedAt: Date;
249247
+ hideSupernovaUI: boolean;
249248
+ userId?: string | undefined;
249249
+ iterationId?: string | undefined;
249250
+ userName?: string | undefined;
249251
+ } | null | undefined;
248997
249252
  }, {
248998
249253
  id: string;
248999
249254
  name?: string | undefined;
249000
249255
  status?: "Draft" | "ReadyForDevelopment" | undefined;
249001
249256
  description?: string | undefined;
249002
249257
  isArchived?: boolean | undefined;
249258
+ publishedState?: {
249259
+ lastPublishedAt: Date;
249260
+ hideSupernovaUI: boolean;
249261
+ userId?: string | undefined;
249262
+ visibility?: "Public" | "WorkspaceMembers" | undefined;
249263
+ iterationId?: string | undefined;
249264
+ userName?: string | undefined;
249265
+ } | null | undefined;
249003
249266
  }>;
249004
249267
  type DTOForgeProjectFeatureUpdateInput = z$1.infer<typeof DTOForgeProjectFeatureUpdateInput>;
249005
249268
  declare const DTOForgeProjectFeatureDeleteInput: z$1.ZodObject<{
@@ -249103,6 +249366,28 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
249103
249366
  renderMode: "Image" | "HTML" | "JSON";
249104
249367
  } | undefined;
249105
249368
  }>>;
249369
+ publishedState: z$1.ZodOptional<z$1.ZodObject<{
249370
+ userId: z$1.ZodOptional<z$1.ZodString>;
249371
+ userName: z$1.ZodOptional<z$1.ZodString>;
249372
+ lastPublishedAt: z$1.ZodDate;
249373
+ iterationId: z$1.ZodOptional<z$1.ZodString>;
249374
+ hideSupernovaUI: z$1.ZodBoolean;
249375
+ visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
249376
+ }, "strip", z$1.ZodTypeAny, {
249377
+ visibility: "Public" | "WorkspaceMembers";
249378
+ lastPublishedAt: Date;
249379
+ hideSupernovaUI: boolean;
249380
+ userId?: string | undefined;
249381
+ iterationId?: string | undefined;
249382
+ userName?: string | undefined;
249383
+ }, {
249384
+ lastPublishedAt: Date;
249385
+ hideSupernovaUI: boolean;
249386
+ userId?: string | undefined;
249387
+ visibility?: "Public" | "WorkspaceMembers" | undefined;
249388
+ iterationId?: string | undefined;
249389
+ userName?: string | undefined;
249390
+ }>>;
249106
249391
  }, "strip", z$1.ZodTypeAny, {
249107
249392
  status: "Draft" | "ReadyForDevelopment";
249108
249393
  id: string;
@@ -249133,6 +249418,14 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
249133
249418
  e2bTemplateId?: string | null | undefined;
249134
249419
  e2bIterationId?: string | null | undefined;
249135
249420
  lastReplyTimestamp?: Date | undefined;
249421
+ publishedState?: {
249422
+ visibility: "Public" | "WorkspaceMembers";
249423
+ lastPublishedAt: Date;
249424
+ hideSupernovaUI: boolean;
249425
+ userId?: string | undefined;
249426
+ iterationId?: string | undefined;
249427
+ userName?: string | undefined;
249428
+ } | undefined;
249136
249429
  }, {
249137
249430
  id: string;
249138
249431
  name: string;
@@ -249163,6 +249456,14 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
249163
249456
  numberOfIterations?: number | undefined;
249164
249457
  numberOfBookmarkedIterations?: number | undefined;
249165
249458
  lastReplyTimestamp?: Date | undefined;
249459
+ publishedState?: {
249460
+ lastPublishedAt: Date;
249461
+ hideSupernovaUI: boolean;
249462
+ userId?: string | undefined;
249463
+ visibility?: "Public" | "WorkspaceMembers" | undefined;
249464
+ iterationId?: string | undefined;
249465
+ userName?: string | undefined;
249466
+ } | undefined;
249166
249467
  }>;
249167
249468
  }, "strip", z$1.ZodTypeAny, {
249168
249469
  feature: {
@@ -249195,6 +249496,14 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
249195
249496
  e2bTemplateId?: string | null | undefined;
249196
249497
  e2bIterationId?: string | null | undefined;
249197
249498
  lastReplyTimestamp?: Date | undefined;
249499
+ publishedState?: {
249500
+ visibility: "Public" | "WorkspaceMembers";
249501
+ lastPublishedAt: Date;
249502
+ hideSupernovaUI: boolean;
249503
+ userId?: string | undefined;
249504
+ iterationId?: string | undefined;
249505
+ userName?: string | undefined;
249506
+ } | undefined;
249198
249507
  };
249199
249508
  }, {
249200
249509
  feature: {
@@ -249227,9 +249536,83 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
249227
249536
  numberOfIterations?: number | undefined;
249228
249537
  numberOfBookmarkedIterations?: number | undefined;
249229
249538
  lastReplyTimestamp?: Date | undefined;
249539
+ publishedState?: {
249540
+ lastPublishedAt: Date;
249541
+ hideSupernovaUI: boolean;
249542
+ userId?: string | undefined;
249543
+ visibility?: "Public" | "WorkspaceMembers" | undefined;
249544
+ iterationId?: string | undefined;
249545
+ userName?: string | undefined;
249546
+ } | undefined;
249230
249547
  };
249231
249548
  }>;
249232
249549
  type DTOForgeProjectFeatureGetResponse = z$1.infer<typeof DTOForgeProjectFeatureGetResponse>;
249550
+ declare const DTOForgeProjectPublishedFeature: z$1.ZodObject<{
249551
+ featureName: z$1.ZodString;
249552
+ iterationName: z$1.ZodString;
249553
+ projectId: z$1.ZodString;
249554
+ hideSupernovaUI: z$1.ZodBoolean;
249555
+ thumbnailUrl: z$1.ZodOptional<z$1.ZodString>;
249556
+ staticPreviewUrl: z$1.ZodString;
249557
+ }, "strip", z$1.ZodTypeAny, {
249558
+ projectId: string;
249559
+ staticPreviewUrl: string;
249560
+ featureName: string;
249561
+ iterationName: string;
249562
+ hideSupernovaUI: boolean;
249563
+ thumbnailUrl?: string | undefined;
249564
+ }, {
249565
+ projectId: string;
249566
+ staticPreviewUrl: string;
249567
+ featureName: string;
249568
+ iterationName: string;
249569
+ hideSupernovaUI: boolean;
249570
+ thumbnailUrl?: string | undefined;
249571
+ }>;
249572
+ type DTOForgeProjectPublishedFeature = z$1.infer<typeof DTOForgeProjectPublishedFeature>;
249573
+ declare const DTOForgeProjectPublishedFeatureGetResponse: z$1.ZodObject<{
249574
+ publishedFeature: z$1.ZodObject<{
249575
+ featureName: z$1.ZodString;
249576
+ iterationName: z$1.ZodString;
249577
+ projectId: z$1.ZodString;
249578
+ hideSupernovaUI: z$1.ZodBoolean;
249579
+ thumbnailUrl: z$1.ZodOptional<z$1.ZodString>;
249580
+ staticPreviewUrl: z$1.ZodString;
249581
+ }, "strip", z$1.ZodTypeAny, {
249582
+ projectId: string;
249583
+ staticPreviewUrl: string;
249584
+ featureName: string;
249585
+ iterationName: string;
249586
+ hideSupernovaUI: boolean;
249587
+ thumbnailUrl?: string | undefined;
249588
+ }, {
249589
+ projectId: string;
249590
+ staticPreviewUrl: string;
249591
+ featureName: string;
249592
+ iterationName: string;
249593
+ hideSupernovaUI: boolean;
249594
+ thumbnailUrl?: string | undefined;
249595
+ }>;
249596
+ }, "strip", z$1.ZodTypeAny, {
249597
+ publishedFeature: {
249598
+ projectId: string;
249599
+ staticPreviewUrl: string;
249600
+ featureName: string;
249601
+ iterationName: string;
249602
+ hideSupernovaUI: boolean;
249603
+ thumbnailUrl?: string | undefined;
249604
+ };
249605
+ }, {
249606
+ publishedFeature: {
249607
+ projectId: string;
249608
+ staticPreviewUrl: string;
249609
+ featureName: string;
249610
+ iterationName: string;
249611
+ hideSupernovaUI: boolean;
249612
+ thumbnailUrl?: string | undefined;
249613
+ };
249614
+ }>;
249615
+ type DTOForgeProjectPublishedFeatureGetResponse = z$1.infer<typeof DTOForgeProjectPublishedFeatureGetResponse>;
249233
249616
  declare const DTOFeatureArtifactListQuery: z$1.ZodObject<{
249234
249617
  messageId: z$1.ZodOptional<z$1.ZodString>;
249235
249618
  iterationId: z$1.ZodOptional<z$1.ZodString>;
@@ -361290,6 +361673,14 @@ declare class ForgeProjectFeaturesEndpoint {
361290
361673
  e2bTemplateId?: string | null | undefined;
361291
361674
  e2bIterationId?: string | null | undefined;
361292
361675
  lastReplyTimestamp?: Date | undefined;
361676
+ publishedState?: {
361677
+ visibility: "Public" | "WorkspaceMembers";
361678
+ lastPublishedAt: Date;
361679
+ hideSupernovaUI: boolean;
361680
+ userId?: string | undefined;
361681
+ iterationId?: string | undefined;
361682
+ userName?: string | undefined;
361683
+ } | undefined;
361293
361684
  }[];
361294
361685
  }>;
361295
361686
  get(workspaceId: string, projectId: string, featureId: string): Promise<{
@@ -361323,6 +361714,14 @@ declare class ForgeProjectFeaturesEndpoint {
361323
361714
  e2bTemplateId?: string | null | undefined;
361324
361715
  e2bIterationId?: string | null | undefined;
361325
361716
  lastReplyTimestamp?: Date | undefined;
361717
+ publishedState?: {
361718
+ visibility: "Public" | "WorkspaceMembers";
361719
+ lastPublishedAt: Date;
361720
+ hideSupernovaUI: boolean;
361721
+ userId?: string | undefined;
361722
+ iterationId?: string | undefined;
361723
+ userName?: string | undefined;
361724
+ } | undefined;
361326
361725
  };
361327
361726
  }>;
361328
361727
  getById(featureId: string): Promise<{
@@ -361356,6 +361755,14 @@ declare class ForgeProjectFeaturesEndpoint {
361356
361755
  e2bTemplateId?: string | null | undefined;
361357
361756
  e2bIterationId?: string | null | undefined;
361358
361757
  lastReplyTimestamp?: Date | undefined;
361758
+ publishedState?: {
361759
+ visibility: "Public" | "WorkspaceMembers";
361760
+ lastPublishedAt: Date;
361761
+ hideSupernovaUI: boolean;
361762
+ userId?: string | undefined;
361763
+ iterationId?: string | undefined;
361764
+ userName?: string | undefined;
361765
+ } | undefined;
361359
361766
  };
361360
361767
  }>;
361361
361768
  agentWorkFinalized(workspaceId: string, projectId: string, featureId: string, body: DTOFeatureAgentWorkFinalizeInput): Promise<{
@@ -374667,6 +375074,14 @@ declare function applyProjectActionsLocally(input: Input): {
374667
375074
  e2bTemplateId?: string | null | undefined;
374668
375075
  e2bIterationId?: string | null | undefined;
374669
375076
  lastReplyTimestamp?: Date | undefined;
375077
+ publishedState?: {
375078
+ visibility: "Public" | "WorkspaceMembers";
375079
+ lastPublishedAt: Date;
375080
+ hideSupernovaUI: boolean;
375081
+ userId?: string | undefined;
375082
+ iterationId?: string | undefined;
375083
+ userName?: string | undefined;
375084
+ } | undefined;
374670
375085
  }[];
374671
375086
  artifactSections: {
374672
375087
  id: string;
@@ -374763,6 +375178,14 @@ declare class LocalProjectActionExecutor {
374763
375178
  e2bTemplateId?: string | null | undefined;
374764
375179
  e2bIterationId?: string | null | undefined;
374765
375180
  lastReplyTimestamp?: Date | undefined;
375181
+ publishedState?: {
375182
+ visibility: "Public" | "WorkspaceMembers";
375183
+ lastPublishedAt: Date;
375184
+ hideSupernovaUI: boolean;
375185
+ userId?: string | undefined;
375186
+ iterationId?: string | undefined;
375187
+ userName?: string | undefined;
375188
+ } | undefined;
374766
375189
  }[];
374767
375190
  artifactSections: {
374768
375191
  id: string;
@@ -374872,4 +375295,4 @@ declare function isValidRedirectPath(path: string): {
374872
375295
  reason: ValidationErrorReason | undefined;
374873
375296
  };
374874
375297
 
374875
- export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemUpdateSwitcherInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactGetByIdParam, DTOFeatureArtifactListQuery, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureArtifactWithContentResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationError, DTOFeatureIterationErrorType, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureIterationValidateInput, DTOFeatureIterationValidateResponse, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, DTOFeatureUpdateThemeInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaExportNodePayload, DTOFigmaExportNodeResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeDocumentGetByIdParam, DTOForgeDocumentGetResponse, DTOForgeEntity, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeMemoryCreateInput, DTOForgeMemoryDeleteInput, DTOForgeMemoryEntry, DTOForgeMemoryEntryListQuery, DTOForgeMemoryEntryListResponse, DTOForgeMemoryEntryResponse, DTOForgeMemoryUpdateInput, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactContentResponse, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextCreated, DTOForgeProjectContextDeleted, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextUpdated, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreated, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetByIdParam, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberDeleted, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberListQuery, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMemberUpdated, DTOForgeProjectMembersCreated, DTOForgeProjectMembersListResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomEvent, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdated, DTOForgeRelation, DTOForgeRelationCreate, DTOForgeRelationDelete, DTOForgeRelationListInput, DTOForgeRelationListResponse, DTOForgeRelationType, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemeKnownPreset, DTOForgeTokenThemeSet, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMCPStream, DTOMCPStreamResponse, DTOMCPStreamUpdateInput, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONotificationBase, DTONotificationChannel, DTONotificationChatMentionPayload, DTONotificationCreateInput, DTONotificationProjectDocumentCommentPayload, DTONotificationProjectInvitationPayload, DTONotificationType, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, DTOProjectContextOverride, DTOProjectContextOverrideInput, DTOProjectContextOverrideResponse, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOSandboxError, DTOSandboxTemplate, DTOSandboxTemplateBuild, DTOSandboxTemplateBuildCreateInput, DTOSandboxTemplateBuildCreateResponse, DTOSandboxTemplateBuildCreated, DTOSandboxTemplateBuildFinalizeResponse, DTOSandboxTemplateBuildFinished, DTOSandboxTemplateBuildResponse, DTOSandboxTemplateFile, DTOSandboxTemplateListResponse, DTOSandboxTemplateQuery, DTOSandboxTemplateResponse, DTOSandboxTemplateVersion, DTOSandboxTemplateVersionCreated, DTOSandboxTemplateVersionDetail, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpcomingChange, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageRetryInput, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadPromptState, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventClientCreate, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTrailEventWithDetails, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserEmailSettings, DTOUserEmailSettingsUpdatePayload, DTOUserGetResponse, DTOUserNotificationSettings, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceDefaultProjectAccessMode, DTOWorkspaceDefaultProjectRole, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceRoomEvent, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeDocumentsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeMemoryEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, MCPStreamsEndpoint, 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, SandboxTemplateBuildsEndpoint, SandboxTemplatesEndpoint, SandboxesEndpoint, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceBillingEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspaceSubscriptionEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, zodQueryBoolean };
375298
+ export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemUpdateSwitcherInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactGetByIdParam, DTOFeatureArtifactListQuery, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureArtifactWithContentResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationError, DTOFeatureIterationErrorType, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureIterationValidateInput, DTOFeatureIterationValidateResponse, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, DTOFeatureUpdateThemeInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaExportNodePayload, DTOFigmaExportNodeResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeDocumentGetByIdParam, DTOForgeDocumentGetResponse, DTOForgeEntity, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeMemoryCreateInput, DTOForgeMemoryDeleteInput, DTOForgeMemoryEntry, DTOForgeMemoryEntryListQuery, DTOForgeMemoryEntryListResponse, DTOForgeMemoryEntryResponse, DTOForgeMemoryUpdateInput, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactContentResponse, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextCreated, DTOForgeProjectContextDeleted, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextUpdated, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreated, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetByIdParam, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeaturePublishedState, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberDeleted, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberListQuery, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMemberUpdated, DTOForgeProjectMembersCreated, DTOForgeProjectMembersListResponse, DTOForgeProjectPublishedFeature, DTOForgeProjectPublishedFeatureGetResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomEvent, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdated, DTOForgeRelation, DTOForgeRelationCreate, DTOForgeRelationDelete, DTOForgeRelationListInput, DTOForgeRelationListResponse, DTOForgeRelationType, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemeKnownPreset, DTOForgeTokenThemeSet, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMCPStream, DTOMCPStreamResponse, DTOMCPStreamUpdateInput, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONotificationBase, DTONotificationChannel, DTONotificationChatMentionPayload, DTONotificationCreateInput, DTONotificationProjectDocumentCommentPayload, DTONotificationProjectInvitationPayload, DTONotificationType, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, DTOProjectContextOverride, DTOProjectContextOverrideInput, DTOProjectContextOverrideResponse, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOSandboxError, DTOSandboxTemplate, DTOSandboxTemplateBuild, DTOSandboxTemplateBuildCreateInput, DTOSandboxTemplateBuildCreateResponse, DTOSandboxTemplateBuildCreated, DTOSandboxTemplateBuildFinalizeResponse, DTOSandboxTemplateBuildFinished, DTOSandboxTemplateBuildResponse, DTOSandboxTemplateFile, DTOSandboxTemplateListResponse, DTOSandboxTemplateQuery, DTOSandboxTemplateResponse, DTOSandboxTemplateVersion, DTOSandboxTemplateVersionCreated, DTOSandboxTemplateVersionDetail, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpcomingChange, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageRetryInput, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadPromptState, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventClientCreate, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTrailEventWithDetails, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserEmailSettings, DTOUserEmailSettingsUpdatePayload, DTOUserGetResponse, DTOUserNotificationSettings, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceDefaultProjectAccessMode, DTOWorkspaceDefaultProjectRole, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceRoomEvent, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeDocumentsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeMemoryEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, MCPStreamsEndpoint, 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, SandboxTemplateBuildsEndpoint, SandboxTemplatesEndpoint, SandboxesEndpoint, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceBillingEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspaceSubscriptionEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, zodQueryBoolean };