@supernova-studio/client 1.56.1 → 1.57.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
@@ -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">;
@@ -248520,6 +248628,28 @@ declare const DTOForgeProjectFeature: z$1.ZodObject<{
248520
248628
  renderMode: "Image" | "HTML" | "JSON";
248521
248629
  } | undefined;
248522
248630
  }>>;
248631
+ publishedState: z$1.ZodOptional<z$1.ZodObject<{
248632
+ userId: z$1.ZodOptional<z$1.ZodString>;
248633
+ userName: z$1.ZodOptional<z$1.ZodString>;
248634
+ lastPublishedAt: z$1.ZodDate;
248635
+ iterationId: z$1.ZodOptional<z$1.ZodString>;
248636
+ hideSupernovaUI: z$1.ZodBoolean;
248637
+ visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
248638
+ }, "strip", z$1.ZodTypeAny, {
248639
+ visibility: "Public" | "WorkspaceMembers";
248640
+ lastPublishedAt: Date;
248641
+ hideSupernovaUI: boolean;
248642
+ userId?: string | undefined;
248643
+ iterationId?: string | undefined;
248644
+ userName?: string | undefined;
248645
+ }, {
248646
+ lastPublishedAt: Date;
248647
+ hideSupernovaUI: boolean;
248648
+ userId?: string | undefined;
248649
+ visibility?: "Public" | "WorkspaceMembers" | undefined;
248650
+ iterationId?: string | undefined;
248651
+ userName?: string | undefined;
248652
+ }>>;
248523
248653
  }, "strip", z$1.ZodTypeAny, {
248524
248654
  status: "Draft" | "ReadyForDevelopment";
248525
248655
  id: string;
@@ -248550,6 +248680,14 @@ declare const DTOForgeProjectFeature: z$1.ZodObject<{
248550
248680
  e2bTemplateId?: string | null | undefined;
248551
248681
  e2bIterationId?: string | null | undefined;
248552
248682
  lastReplyTimestamp?: Date | undefined;
248683
+ publishedState?: {
248684
+ visibility: "Public" | "WorkspaceMembers";
248685
+ lastPublishedAt: Date;
248686
+ hideSupernovaUI: boolean;
248687
+ userId?: string | undefined;
248688
+ iterationId?: string | undefined;
248689
+ userName?: string | undefined;
248690
+ } | undefined;
248553
248691
  }, {
248554
248692
  id: string;
248555
248693
  name: string;
@@ -248580,6 +248718,14 @@ declare const DTOForgeProjectFeature: z$1.ZodObject<{
248580
248718
  numberOfIterations?: number | undefined;
248581
248719
  numberOfBookmarkedIterations?: number | undefined;
248582
248720
  lastReplyTimestamp?: Date | undefined;
248721
+ publishedState?: {
248722
+ lastPublishedAt: Date;
248723
+ hideSupernovaUI: boolean;
248724
+ userId?: string | undefined;
248725
+ visibility?: "Public" | "WorkspaceMembers" | undefined;
248726
+ iterationId?: string | undefined;
248727
+ userName?: string | undefined;
248728
+ } | undefined;
248583
248729
  }>;
248584
248730
  type DTOForgeProjectFeature = z$1.infer<typeof DTOForgeProjectFeature>;
248585
248731
  declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
@@ -248653,6 +248799,28 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
248653
248799
  renderMode: "Image" | "HTML" | "JSON";
248654
248800
  } | undefined;
248655
248801
  }>>;
248802
+ publishedState: z$1.ZodOptional<z$1.ZodObject<{
248803
+ userId: z$1.ZodOptional<z$1.ZodString>;
248804
+ userName: z$1.ZodOptional<z$1.ZodString>;
248805
+ lastPublishedAt: z$1.ZodDate;
248806
+ iterationId: z$1.ZodOptional<z$1.ZodString>;
248807
+ hideSupernovaUI: z$1.ZodBoolean;
248808
+ visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
248809
+ }, "strip", z$1.ZodTypeAny, {
248810
+ visibility: "Public" | "WorkspaceMembers";
248811
+ lastPublishedAt: Date;
248812
+ hideSupernovaUI: boolean;
248813
+ userId?: string | undefined;
248814
+ iterationId?: string | undefined;
248815
+ userName?: string | undefined;
248816
+ }, {
248817
+ lastPublishedAt: Date;
248818
+ hideSupernovaUI: boolean;
248819
+ userId?: string | undefined;
248820
+ visibility?: "Public" | "WorkspaceMembers" | undefined;
248821
+ iterationId?: string | undefined;
248822
+ userName?: string | undefined;
248823
+ }>>;
248656
248824
  }, "strip", z$1.ZodTypeAny, {
248657
248825
  status: "Draft" | "ReadyForDevelopment";
248658
248826
  id: string;
@@ -248683,6 +248851,14 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
248683
248851
  e2bTemplateId?: string | null | undefined;
248684
248852
  e2bIterationId?: string | null | undefined;
248685
248853
  lastReplyTimestamp?: Date | undefined;
248854
+ publishedState?: {
248855
+ visibility: "Public" | "WorkspaceMembers";
248856
+ lastPublishedAt: Date;
248857
+ hideSupernovaUI: boolean;
248858
+ userId?: string | undefined;
248859
+ iterationId?: string | undefined;
248860
+ userName?: string | undefined;
248861
+ } | undefined;
248686
248862
  }, {
248687
248863
  id: string;
248688
248864
  name: string;
@@ -248713,6 +248889,14 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
248713
248889
  numberOfIterations?: number | undefined;
248714
248890
  numberOfBookmarkedIterations?: number | undefined;
248715
248891
  lastReplyTimestamp?: Date | undefined;
248892
+ publishedState?: {
248893
+ lastPublishedAt: Date;
248894
+ hideSupernovaUI: boolean;
248895
+ userId?: string | undefined;
248896
+ visibility?: "Public" | "WorkspaceMembers" | undefined;
248897
+ iterationId?: string | undefined;
248898
+ userName?: string | undefined;
248899
+ } | undefined;
248716
248900
  }>, "many">;
248717
248901
  }, "strip", z$1.ZodTypeAny, {
248718
248902
  features: {
@@ -248745,6 +248929,14 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
248745
248929
  e2bTemplateId?: string | null | undefined;
248746
248930
  e2bIterationId?: string | null | undefined;
248747
248931
  lastReplyTimestamp?: Date | undefined;
248932
+ publishedState?: {
248933
+ visibility: "Public" | "WorkspaceMembers";
248934
+ lastPublishedAt: Date;
248935
+ hideSupernovaUI: boolean;
248936
+ userId?: string | undefined;
248937
+ iterationId?: string | undefined;
248938
+ userName?: string | undefined;
248939
+ } | undefined;
248748
248940
  }[];
248749
248941
  }, {
248750
248942
  features: {
@@ -248777,6 +248969,14 @@ declare const DTOForgeProjectFeatureListResponse: z$1.ZodObject<{
248777
248969
  numberOfIterations?: number | undefined;
248778
248970
  numberOfBookmarkedIterations?: number | undefined;
248779
248971
  lastReplyTimestamp?: Date | undefined;
248972
+ publishedState?: {
248973
+ lastPublishedAt: Date;
248974
+ hideSupernovaUI: boolean;
248975
+ userId?: string | undefined;
248976
+ visibility?: "Public" | "WorkspaceMembers" | undefined;
248977
+ iterationId?: string | undefined;
248978
+ userName?: string | undefined;
248979
+ } | undefined;
248780
248980
  }[];
248781
248981
  }>;
248782
248982
  type DTOForgeProjectFeatureListResponse = z$1.infer<typeof DTOForgeProjectFeatureListResponse>;
@@ -248988,18 +249188,59 @@ declare const DTOForgeProjectFeatureUpdateInput: z$1.ZodObject<{
248988
249188
  description: z$1.ZodOptional<z$1.ZodString>;
248989
249189
  isArchived: z$1.ZodOptional<z$1.ZodBoolean>;
248990
249190
  status: z$1.ZodOptional<z$1.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
249191
+ /**
249192
+ * Sending null will result in feature unpublish
249193
+ */
249194
+ publishedState: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
249195
+ userId: z$1.ZodOptional<z$1.ZodString>;
249196
+ userName: z$1.ZodOptional<z$1.ZodString>;
249197
+ lastPublishedAt: z$1.ZodDate;
249198
+ iterationId: z$1.ZodOptional<z$1.ZodString>;
249199
+ hideSupernovaUI: z$1.ZodBoolean;
249200
+ visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
249201
+ }, "strip", z$1.ZodTypeAny, {
249202
+ visibility: "Public" | "WorkspaceMembers";
249203
+ lastPublishedAt: Date;
249204
+ hideSupernovaUI: boolean;
249205
+ userId?: string | undefined;
249206
+ iterationId?: string | undefined;
249207
+ userName?: string | undefined;
249208
+ }, {
249209
+ lastPublishedAt: Date;
249210
+ hideSupernovaUI: boolean;
249211
+ userId?: string | undefined;
249212
+ visibility?: "Public" | "WorkspaceMembers" | undefined;
249213
+ iterationId?: string | undefined;
249214
+ userName?: string | undefined;
249215
+ }>>>;
248991
249216
  }, "strip", z$1.ZodTypeAny, {
248992
249217
  id: string;
248993
249218
  name?: string | undefined;
248994
249219
  status?: "Draft" | "ReadyForDevelopment" | undefined;
248995
249220
  description?: string | undefined;
248996
249221
  isArchived?: boolean | undefined;
249222
+ publishedState?: {
249223
+ visibility: "Public" | "WorkspaceMembers";
249224
+ lastPublishedAt: Date;
249225
+ hideSupernovaUI: boolean;
249226
+ userId?: string | undefined;
249227
+ iterationId?: string | undefined;
249228
+ userName?: string | undefined;
249229
+ } | null | undefined;
248997
249230
  }, {
248998
249231
  id: string;
248999
249232
  name?: string | undefined;
249000
249233
  status?: "Draft" | "ReadyForDevelopment" | undefined;
249001
249234
  description?: string | undefined;
249002
249235
  isArchived?: boolean | undefined;
249236
+ publishedState?: {
249237
+ lastPublishedAt: Date;
249238
+ hideSupernovaUI: boolean;
249239
+ userId?: string | undefined;
249240
+ visibility?: "Public" | "WorkspaceMembers" | undefined;
249241
+ iterationId?: string | undefined;
249242
+ userName?: string | undefined;
249243
+ } | null | undefined;
249003
249244
  }>;
249004
249245
  type DTOForgeProjectFeatureUpdateInput = z$1.infer<typeof DTOForgeProjectFeatureUpdateInput>;
249005
249246
  declare const DTOForgeProjectFeatureDeleteInput: z$1.ZodObject<{
@@ -249103,6 +249344,28 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
249103
249344
  renderMode: "Image" | "HTML" | "JSON";
249104
249345
  } | undefined;
249105
249346
  }>>;
249347
+ publishedState: z$1.ZodOptional<z$1.ZodObject<{
249348
+ userId: z$1.ZodOptional<z$1.ZodString>;
249349
+ userName: z$1.ZodOptional<z$1.ZodString>;
249350
+ lastPublishedAt: z$1.ZodDate;
249351
+ iterationId: z$1.ZodOptional<z$1.ZodString>;
249352
+ hideSupernovaUI: z$1.ZodBoolean;
249353
+ visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
249354
+ }, "strip", z$1.ZodTypeAny, {
249355
+ visibility: "Public" | "WorkspaceMembers";
249356
+ lastPublishedAt: Date;
249357
+ hideSupernovaUI: boolean;
249358
+ userId?: string | undefined;
249359
+ iterationId?: string | undefined;
249360
+ userName?: string | undefined;
249361
+ }, {
249362
+ lastPublishedAt: Date;
249363
+ hideSupernovaUI: boolean;
249364
+ userId?: string | undefined;
249365
+ visibility?: "Public" | "WorkspaceMembers" | undefined;
249366
+ iterationId?: string | undefined;
249367
+ userName?: string | undefined;
249368
+ }>>;
249106
249369
  }, "strip", z$1.ZodTypeAny, {
249107
249370
  status: "Draft" | "ReadyForDevelopment";
249108
249371
  id: string;
@@ -249133,6 +249396,14 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
249133
249396
  e2bTemplateId?: string | null | undefined;
249134
249397
  e2bIterationId?: string | null | undefined;
249135
249398
  lastReplyTimestamp?: Date | undefined;
249399
+ publishedState?: {
249400
+ visibility: "Public" | "WorkspaceMembers";
249401
+ lastPublishedAt: Date;
249402
+ hideSupernovaUI: boolean;
249403
+ userId?: string | undefined;
249404
+ iterationId?: string | undefined;
249405
+ userName?: string | undefined;
249406
+ } | undefined;
249136
249407
  }, {
249137
249408
  id: string;
249138
249409
  name: string;
@@ -249163,6 +249434,14 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
249163
249434
  numberOfIterations?: number | undefined;
249164
249435
  numberOfBookmarkedIterations?: number | undefined;
249165
249436
  lastReplyTimestamp?: Date | undefined;
249437
+ publishedState?: {
249438
+ lastPublishedAt: Date;
249439
+ hideSupernovaUI: boolean;
249440
+ userId?: string | undefined;
249441
+ visibility?: "Public" | "WorkspaceMembers" | undefined;
249442
+ iterationId?: string | undefined;
249443
+ userName?: string | undefined;
249444
+ } | undefined;
249166
249445
  }>;
249167
249446
  }, "strip", z$1.ZodTypeAny, {
249168
249447
  feature: {
@@ -249195,6 +249474,14 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
249195
249474
  e2bTemplateId?: string | null | undefined;
249196
249475
  e2bIterationId?: string | null | undefined;
249197
249476
  lastReplyTimestamp?: Date | undefined;
249477
+ publishedState?: {
249478
+ visibility: "Public" | "WorkspaceMembers";
249479
+ lastPublishedAt: Date;
249480
+ hideSupernovaUI: boolean;
249481
+ userId?: string | undefined;
249482
+ iterationId?: string | undefined;
249483
+ userName?: string | undefined;
249484
+ } | undefined;
249198
249485
  };
249199
249486
  }, {
249200
249487
  feature: {
@@ -249227,9 +249514,106 @@ declare const DTOForgeProjectFeatureGetResponse: z$1.ZodObject<{
249227
249514
  numberOfIterations?: number | undefined;
249228
249515
  numberOfBookmarkedIterations?: number | undefined;
249229
249516
  lastReplyTimestamp?: Date | undefined;
249517
+ publishedState?: {
249518
+ lastPublishedAt: Date;
249519
+ hideSupernovaUI: boolean;
249520
+ userId?: string | undefined;
249521
+ visibility?: "Public" | "WorkspaceMembers" | undefined;
249522
+ iterationId?: string | undefined;
249523
+ userName?: string | undefined;
249524
+ } | undefined;
249230
249525
  };
249231
249526
  }>;
249232
249527
  type DTOForgeProjectFeatureGetResponse = z$1.infer<typeof DTOForgeProjectFeatureGetResponse>;
249528
+ declare const DTOForgeProjectPublishedFeature: z$1.ZodObject<{
249529
+ featureName: z$1.ZodString;
249530
+ iterationName: z$1.ZodString;
249531
+ projectId: z$1.ZodString;
249532
+ hideSupernovaUI: z$1.ZodBoolean;
249533
+ thumbnailUrl: z$1.ZodOptional<z$1.ZodString>;
249534
+ staticPreviewUrl: z$1.ZodString;
249535
+ }, "strip", z$1.ZodTypeAny, {
249536
+ projectId: string;
249537
+ staticPreviewUrl: string;
249538
+ featureName: string;
249539
+ iterationName: string;
249540
+ hideSupernovaUI: boolean;
249541
+ thumbnailUrl?: string | undefined;
249542
+ }, {
249543
+ projectId: string;
249544
+ staticPreviewUrl: string;
249545
+ featureName: string;
249546
+ iterationName: string;
249547
+ hideSupernovaUI: boolean;
249548
+ thumbnailUrl?: string | undefined;
249549
+ }>;
249550
+ type DTOForgeProjectPublishedFeature = z$1.infer<typeof DTOForgeProjectPublishedFeature>;
249551
+ declare const DTOForgeProjectPublishedFeatureGetResponse: z$1.ZodObject<{
249552
+ publishedFeature: z$1.ZodObject<{
249553
+ featureName: z$1.ZodString;
249554
+ iterationName: z$1.ZodString;
249555
+ projectId: z$1.ZodString;
249556
+ hideSupernovaUI: z$1.ZodBoolean;
249557
+ thumbnailUrl: z$1.ZodOptional<z$1.ZodString>;
249558
+ staticPreviewUrl: z$1.ZodString;
249559
+ }, "strip", z$1.ZodTypeAny, {
249560
+ projectId: string;
249561
+ staticPreviewUrl: string;
249562
+ featureName: string;
249563
+ iterationName: string;
249564
+ hideSupernovaUI: boolean;
249565
+ thumbnailUrl?: string | undefined;
249566
+ }, {
249567
+ projectId: string;
249568
+ staticPreviewUrl: string;
249569
+ featureName: string;
249570
+ iterationName: string;
249571
+ hideSupernovaUI: boolean;
249572
+ thumbnailUrl?: string | undefined;
249573
+ }>;
249574
+ }, "strip", z$1.ZodTypeAny, {
249575
+ publishedFeature: {
249576
+ projectId: string;
249577
+ staticPreviewUrl: string;
249578
+ featureName: string;
249579
+ iterationName: string;
249580
+ hideSupernovaUI: boolean;
249581
+ thumbnailUrl?: string | undefined;
249582
+ };
249583
+ }, {
249584
+ publishedFeature: {
249585
+ projectId: string;
249586
+ staticPreviewUrl: string;
249587
+ featureName: string;
249588
+ iterationName: string;
249589
+ hideSupernovaUI: boolean;
249590
+ thumbnailUrl?: string | undefined;
249591
+ };
249592
+ }>;
249593
+ type DTOForgeProjectPublishedFeatureGetResponse = z$1.infer<typeof DTOForgeProjectPublishedFeatureGetResponse>;
249594
+ declare const DTOForgeProjectFeaturePublishedState: z$1.ZodObject<{
249595
+ userId: z$1.ZodOptional<z$1.ZodString>;
249596
+ userName: z$1.ZodOptional<z$1.ZodString>;
249597
+ lastPublishedAt: z$1.ZodDate;
249598
+ iterationId: z$1.ZodOptional<z$1.ZodString>;
249599
+ hideSupernovaUI: z$1.ZodBoolean;
249600
+ visibility: z$1.ZodDefault<z$1.ZodEnum<["Public", "WorkspaceMembers"]>>;
249601
+ }, "strip", z$1.ZodTypeAny, {
249602
+ visibility: "Public" | "WorkspaceMembers";
249603
+ lastPublishedAt: Date;
249604
+ hideSupernovaUI: boolean;
249605
+ userId?: string | undefined;
249606
+ iterationId?: string | undefined;
249607
+ userName?: string | undefined;
249608
+ }, {
249609
+ lastPublishedAt: Date;
249610
+ hideSupernovaUI: boolean;
249611
+ userId?: string | undefined;
249612
+ visibility?: "Public" | "WorkspaceMembers" | undefined;
249613
+ iterationId?: string | undefined;
249614
+ userName?: string | undefined;
249615
+ }>;
249616
+ type DTOForgeProjectFeaturePublishedState = z$1.infer<typeof DTOForgeProjectFeaturePublishedState>;
249233
249617
  declare const DTOFeatureArtifactListQuery: z$1.ZodObject<{
249234
249618
  messageId: z$1.ZodOptional<z$1.ZodString>;
249235
249619
  iterationId: z$1.ZodOptional<z$1.ZodString>;
@@ -361290,6 +361674,14 @@ declare class ForgeProjectFeaturesEndpoint {
361290
361674
  e2bTemplateId?: string | null | undefined;
361291
361675
  e2bIterationId?: string | null | undefined;
361292
361676
  lastReplyTimestamp?: Date | undefined;
361677
+ publishedState?: {
361678
+ visibility: "Public" | "WorkspaceMembers";
361679
+ lastPublishedAt: Date;
361680
+ hideSupernovaUI: boolean;
361681
+ userId?: string | undefined;
361682
+ iterationId?: string | undefined;
361683
+ userName?: string | undefined;
361684
+ } | undefined;
361293
361685
  }[];
361294
361686
  }>;
361295
361687
  get(workspaceId: string, projectId: string, featureId: string): Promise<{
@@ -361323,6 +361715,14 @@ declare class ForgeProjectFeaturesEndpoint {
361323
361715
  e2bTemplateId?: string | null | undefined;
361324
361716
  e2bIterationId?: string | null | undefined;
361325
361717
  lastReplyTimestamp?: Date | undefined;
361718
+ publishedState?: {
361719
+ visibility: "Public" | "WorkspaceMembers";
361720
+ lastPublishedAt: Date;
361721
+ hideSupernovaUI: boolean;
361722
+ userId?: string | undefined;
361723
+ iterationId?: string | undefined;
361724
+ userName?: string | undefined;
361725
+ } | undefined;
361326
361726
  };
361327
361727
  }>;
361328
361728
  getById(featureId: string): Promise<{
@@ -361356,6 +361756,14 @@ declare class ForgeProjectFeaturesEndpoint {
361356
361756
  e2bTemplateId?: string | null | undefined;
361357
361757
  e2bIterationId?: string | null | undefined;
361358
361758
  lastReplyTimestamp?: Date | undefined;
361759
+ publishedState?: {
361760
+ visibility: "Public" | "WorkspaceMembers";
361761
+ lastPublishedAt: Date;
361762
+ hideSupernovaUI: boolean;
361763
+ userId?: string | undefined;
361764
+ iterationId?: string | undefined;
361765
+ userName?: string | undefined;
361766
+ } | undefined;
361359
361767
  };
361360
361768
  }>;
361361
361769
  agentWorkFinalized(workspaceId: string, projectId: string, featureId: string, body: DTOFeatureAgentWorkFinalizeInput): Promise<{
@@ -374667,6 +375075,14 @@ declare function applyProjectActionsLocally(input: Input): {
374667
375075
  e2bTemplateId?: string | null | undefined;
374668
375076
  e2bIterationId?: string | null | undefined;
374669
375077
  lastReplyTimestamp?: Date | undefined;
375078
+ publishedState?: {
375079
+ visibility: "Public" | "WorkspaceMembers";
375080
+ lastPublishedAt: Date;
375081
+ hideSupernovaUI: boolean;
375082
+ userId?: string | undefined;
375083
+ iterationId?: string | undefined;
375084
+ userName?: string | undefined;
375085
+ } | undefined;
374670
375086
  }[];
374671
375087
  artifactSections: {
374672
375088
  id: string;
@@ -374763,6 +375179,14 @@ declare class LocalProjectActionExecutor {
374763
375179
  e2bTemplateId?: string | null | undefined;
374764
375180
  e2bIterationId?: string | null | undefined;
374765
375181
  lastReplyTimestamp?: Date | undefined;
375182
+ publishedState?: {
375183
+ visibility: "Public" | "WorkspaceMembers";
375184
+ lastPublishedAt: Date;
375185
+ hideSupernovaUI: boolean;
375186
+ userId?: string | undefined;
375187
+ iterationId?: string | undefined;
375188
+ userName?: string | undefined;
375189
+ } | undefined;
374766
375190
  }[];
374767
375191
  artifactSections: {
374768
375192
  id: string;
@@ -374872,4 +375296,4 @@ declare function isValidRedirectPath(path: string): {
374872
375296
  reason: ValidationErrorReason | undefined;
374873
375297
  };
374874
375298
 
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 };
375299
+ 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 };