@supernova-studio/client 1.42.6 → 1.42.8

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
@@ -1,5 +1,5 @@
1
1
  import * as _supernova_studio_model from '@supernova-studio/model';
2
- import { AnalyzeCodeComponentsInPackage, DependencyDefinition, Registry, PageBlockDefinitionLayout as PageBlockDefinitionLayout$1, PageBlockV1, FigmaFileStructureNode as FigmaFileStructureNode$1, FigmaExporter, PublishedDocPageVisitsEntry, DocumentationGroupV1, DocumentationPageV1, DocumentationPageV2, ElementGroup, DocumentationPageSnapshot, ElementGroupSnapshot, DocumentationPageApproval, OmitStrict, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, Pipeline, GitOrganization, GitProject, GitRepository, GitBranch, ExtendedIntegration, IntegrationCredentials, SupernovaExceptionType, SsoProvider, UpdateMembershipRolesInput, PageBlockItemUntypedValue, PageBlockDefinition, PageBlockItemRichTextEditorValue, PageBlockText, PageBlockDefinitionProperty, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockItemV2, PageBlockItemRichTextValue, PageBlockItemMultiRichTextValue, PageBlockItemTableValue, PageBlockItemEmbedValue, PageBlockDefinitionPropertyType, ForgeProjectArtifact, ProjectFeature, ForgeSection } from '@supernova-studio/model';
2
+ import { AnalyzeCodeComponentsInPackage, DependencyDefinition, Registry, PageBlockDefinitionLayout as PageBlockDefinitionLayout$1, PageBlockV1, FigmaFileStructureNode as FigmaFileStructureNode$1, PublishedDocPageVisitsEntry, DocumentationGroupV1, DocumentationPageV1, DocumentationPageV2, ElementGroup, DocumentationPageSnapshot, ElementGroupSnapshot, DocumentationPageApproval, OmitStrict, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, Pipeline, GitOrganization, GitProject, GitRepository, GitBranch, ExtendedIntegration, IntegrationCredentials, SupernovaExceptionType, SsoProvider, UpdateMembershipRolesInput, PageBlockItemUntypedValue, PageBlockDefinition, PageBlockItemRichTextEditorValue, PageBlockText, PageBlockDefinitionProperty, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockItemV2, PageBlockItemRichTextValue, PageBlockItemMultiRichTextValue, PageBlockItemTableValue, PageBlockItemEmbedValue, PageBlockDefinitionPropertyType, ForgeProjectArtifact, ProjectFeature, ForgeSection } from '@supernova-studio/model';
3
3
  import * as z from 'zod';
4
4
  import z__default, { z as z$1, ZodSchema, ZodTypeDef } from 'zod';
5
5
  import * as Y from 'yjs';
@@ -66377,13 +66377,157 @@ declare const DTODownloadAssetsResponse: z$1.ZodObject<{
66377
66377
  }>;
66378
66378
  type DTODownloadAssetsResponse = z$1.infer<typeof DTODownloadAssetsResponse>;
66379
66379
 
66380
- declare const DTOFigmaNodeResponse: z$1.ZodType<{
66381
- nodes: FigmaExporter["AnyDesignNode"];
66380
+ declare const DTOFigmaExportNodeFormat: z$1.ZodEnum<["HTML", "JSON"]>;
66381
+ type DTOFigmaExportNodeFormat = z$1.infer<typeof DTOFigmaExportNodeFormat>;
66382
+ declare const DTOFigmaExportNodeConfiguration: z$1.ZodObject<{
66383
+ format: z$1.ZodEnum<["HTML", "JSON"]>;
66384
+ minifyOutput: z$1.ZodOptional<z$1.ZodBoolean>;
66385
+ customFontUrls: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
66386
+ }, "strip", z$1.ZodTypeAny, {
66387
+ format: "HTML" | "JSON";
66388
+ minifyOutput?: boolean | undefined;
66389
+ customFontUrls?: string[] | undefined;
66390
+ }, {
66391
+ format: "HTML" | "JSON";
66392
+ minifyOutput?: boolean | undefined;
66393
+ customFontUrls?: string[] | undefined;
66394
+ }>;
66395
+ type DTOFigmaExportNodeConfiguration = z$1.infer<typeof DTOFigmaExportNodeConfiguration>;
66396
+ declare const DTOFigmaExportNodePayload: z$1.ZodObject<{
66397
+ designSystemId: z$1.ZodString;
66398
+ versionId: z$1.ZodOptional<z$1.ZodString>;
66399
+ figmaUrl: z$1.ZodString;
66400
+ configuration: z$1.ZodObject<{
66401
+ format: z$1.ZodEnum<["HTML", "JSON"]>;
66402
+ minifyOutput: z$1.ZodOptional<z$1.ZodBoolean>;
66403
+ customFontUrls: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
66404
+ }, "strip", z$1.ZodTypeAny, {
66405
+ format: "HTML" | "JSON";
66406
+ minifyOutput?: boolean | undefined;
66407
+ customFontUrls?: string[] | undefined;
66408
+ }, {
66409
+ format: "HTML" | "JSON";
66410
+ minifyOutput?: boolean | undefined;
66411
+ customFontUrls?: string[] | undefined;
66412
+ }>;
66413
+ }, "strip", z$1.ZodTypeAny, {
66414
+ designSystemId: string;
66415
+ configuration: {
66416
+ format: "HTML" | "JSON";
66417
+ minifyOutput?: boolean | undefined;
66418
+ customFontUrls?: string[] | undefined;
66419
+ };
66420
+ figmaUrl: string;
66421
+ versionId?: string | undefined;
66422
+ }, {
66423
+ designSystemId: string;
66424
+ configuration: {
66425
+ format: "HTML" | "JSON";
66426
+ minifyOutput?: boolean | undefined;
66427
+ customFontUrls?: string[] | undefined;
66428
+ };
66429
+ figmaUrl: string;
66430
+ versionId?: string | undefined;
66382
66431
  }>;
66383
- type DTOFigmaNodeResponse = {
66384
- nodes: FigmaExporter["AnyDesignNode"];
66385
- };
66432
+ type DTOFigmaExportNodePayload = z$1.infer<typeof DTOFigmaExportNodePayload>;
66433
+ declare const DTOFigmaExportNodeResponse: z$1.ZodObject<{
66434
+ file: z$1.ZodObject<{
66435
+ id: z$1.ZodString;
66436
+ name: z$1.ZodString;
66437
+ deduplicationKey: z$1.ZodString;
66438
+ pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
66439
+ storagePath: z$1.ZodString;
66440
+ url: z$1.ZodString;
66441
+ size: z$1.ZodNumber;
66442
+ source: z$1.ZodOptional<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
66443
+ type: z$1.ZodLiteral<"UserUpload">;
66444
+ userId: z$1.ZodString;
66445
+ }, "strip", z$1.ZodTypeAny, {
66446
+ type: "UserUpload";
66447
+ userId: string;
66448
+ }, {
66449
+ type: "UserUpload";
66450
+ userId: string;
66451
+ }>, z$1.ZodObject<{
66452
+ type: z$1.ZodLiteral<"Figma">;
66453
+ renderMode: z$1.ZodEnum<["Image", "HTML", "JSON"]>;
66454
+ }, "strip", z$1.ZodTypeAny, {
66455
+ type: "Figma";
66456
+ renderMode: "Image" | "HTML" | "JSON";
66457
+ }, {
66458
+ type: "Figma";
66459
+ renderMode: "Image" | "HTML" | "JSON";
66460
+ }>]>>;
66461
+ }, "strip", z$1.ZodTypeAny, {
66462
+ id: string;
66463
+ name: string;
66464
+ url: string;
66465
+ size: number;
66466
+ deduplicationKey: string;
66467
+ storagePath: string;
66468
+ source?: {
66469
+ type: "UserUpload";
66470
+ userId: string;
66471
+ } | {
66472
+ type: "Figma";
66473
+ renderMode: "Image" | "HTML" | "JSON";
66474
+ } | undefined;
66475
+ pendingUpload?: boolean | undefined;
66476
+ }, {
66477
+ id: string;
66478
+ name: string;
66479
+ url: string;
66480
+ size: number;
66481
+ deduplicationKey: string;
66482
+ storagePath: string;
66483
+ source?: {
66484
+ type: "UserUpload";
66485
+ userId: string;
66486
+ } | {
66487
+ type: "Figma";
66488
+ renderMode: "Image" | "HTML" | "JSON";
66489
+ } | undefined;
66490
+ pendingUpload?: boolean | undefined;
66491
+ }>;
66492
+ }, "strip", z$1.ZodTypeAny, {
66493
+ file: {
66494
+ id: string;
66495
+ name: string;
66496
+ url: string;
66497
+ size: number;
66498
+ deduplicationKey: string;
66499
+ storagePath: string;
66500
+ source?: {
66501
+ type: "UserUpload";
66502
+ userId: string;
66503
+ } | {
66504
+ type: "Figma";
66505
+ renderMode: "Image" | "HTML" | "JSON";
66506
+ } | undefined;
66507
+ pendingUpload?: boolean | undefined;
66508
+ };
66509
+ }, {
66510
+ file: {
66511
+ id: string;
66512
+ name: string;
66513
+ url: string;
66514
+ size: number;
66515
+ deduplicationKey: string;
66516
+ storagePath: string;
66517
+ source?: {
66518
+ type: "UserUpload";
66519
+ userId: string;
66520
+ } | {
66521
+ type: "Figma";
66522
+ renderMode: "Image" | "HTML" | "JSON";
66523
+ } | undefined;
66524
+ pendingUpload?: boolean | undefined;
66525
+ };
66526
+ }>;
66527
+ type DTOFigmaExportNodeResponse = z$1.infer<typeof DTOFigmaExportNodeResponse>;
66386
66528
 
66529
+ declare const DTOFileFigmaRenderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
66530
+ type DTOFileFigmaRenderMode = z__default.infer<typeof DTOFileFigmaRenderMode>;
66387
66531
  declare const DTOFileSourceUpload: z__default.ZodObject<{
66388
66532
  type: z__default.ZodLiteral<"UserUpload">;
66389
66533
  userId: z__default.ZodString;
@@ -66397,13 +66541,13 @@ declare const DTOFileSourceUpload: z__default.ZodObject<{
66397
66541
  type DTOFileSourceUpload = z__default.infer<typeof DTOFileSourceUpload>;
66398
66542
  declare const DTOFileSourceFigma: z__default.ZodObject<{
66399
66543
  type: z__default.ZodLiteral<"Figma">;
66400
- renderMode: z__default.ZodEnum<["Image", "HTML"]>;
66544
+ renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
66401
66545
  }, "strip", z__default.ZodTypeAny, {
66402
66546
  type: "Figma";
66403
- renderMode: "Image" | "HTML";
66547
+ renderMode: "Image" | "HTML" | "JSON";
66404
66548
  }, {
66405
66549
  type: "Figma";
66406
- renderMode: "Image" | "HTML";
66550
+ renderMode: "Image" | "HTML" | "JSON";
66407
66551
  }>;
66408
66552
  type DTOFileSourceFigma = z__default.infer<typeof DTOFileSourceFigma>;
66409
66553
  declare const DTOFileSource: z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
@@ -66417,13 +66561,13 @@ declare const DTOFileSource: z__default.ZodDiscriminatedUnion<"type", [z__defaul
66417
66561
  userId: string;
66418
66562
  }>, z__default.ZodObject<{
66419
66563
  type: z__default.ZodLiteral<"Figma">;
66420
- renderMode: z__default.ZodEnum<["Image", "HTML"]>;
66564
+ renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
66421
66565
  }, "strip", z__default.ZodTypeAny, {
66422
66566
  type: "Figma";
66423
- renderMode: "Image" | "HTML";
66567
+ renderMode: "Image" | "HTML" | "JSON";
66424
66568
  }, {
66425
66569
  type: "Figma";
66426
- renderMode: "Image" | "HTML";
66570
+ renderMode: "Image" | "HTML" | "JSON";
66427
66571
  }>]>;
66428
66572
  type DTOFileSource = z__default.infer<typeof DTOFileSource>;
66429
66573
  declare const DTOFile: z__default.ZodObject<{
@@ -66449,13 +66593,13 @@ declare const DTOFile: z__default.ZodObject<{
66449
66593
  userId: string;
66450
66594
  }>, z__default.ZodObject<{
66451
66595
  type: z__default.ZodLiteral<"Figma">;
66452
- renderMode: z__default.ZodEnum<["Image", "HTML"]>;
66596
+ renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
66453
66597
  }, "strip", z__default.ZodTypeAny, {
66454
66598
  type: "Figma";
66455
- renderMode: "Image" | "HTML";
66599
+ renderMode: "Image" | "HTML" | "JSON";
66456
66600
  }, {
66457
66601
  type: "Figma";
66458
- renderMode: "Image" | "HTML";
66602
+ renderMode: "Image" | "HTML" | "JSON";
66459
66603
  }>]>>;
66460
66604
  }, "strip", z__default.ZodTypeAny, {
66461
66605
  id: string;
@@ -66469,7 +66613,7 @@ declare const DTOFile: z__default.ZodObject<{
66469
66613
  userId: string;
66470
66614
  } | {
66471
66615
  type: "Figma";
66472
- renderMode: "Image" | "HTML";
66616
+ renderMode: "Image" | "HTML" | "JSON";
66473
66617
  } | undefined;
66474
66618
  pendingUpload?: boolean | undefined;
66475
66619
  }, {
@@ -66484,7 +66628,7 @@ declare const DTOFile: z__default.ZodObject<{
66484
66628
  userId: string;
66485
66629
  } | {
66486
66630
  type: "Figma";
66487
- renderMode: "Image" | "HTML";
66631
+ renderMode: "Image" | "HTML" | "JSON";
66488
66632
  } | undefined;
66489
66633
  pendingUpload?: boolean | undefined;
66490
66634
  }>;
@@ -66512,13 +66656,13 @@ declare const DTOFileReference: z__default.ZodObject<Pick<{
66512
66656
  userId: string;
66513
66657
  }>, z__default.ZodObject<{
66514
66658
  type: z__default.ZodLiteral<"Figma">;
66515
- renderMode: z__default.ZodEnum<["Image", "HTML"]>;
66659
+ renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
66516
66660
  }, "strip", z__default.ZodTypeAny, {
66517
66661
  type: "Figma";
66518
- renderMode: "Image" | "HTML";
66662
+ renderMode: "Image" | "HTML" | "JSON";
66519
66663
  }, {
66520
66664
  type: "Figma";
66521
- renderMode: "Image" | "HTML";
66665
+ renderMode: "Image" | "HTML" | "JSON";
66522
66666
  }>]>>;
66523
66667
  }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
66524
66668
  id: string;
@@ -66528,7 +66672,7 @@ declare const DTOFileReference: z__default.ZodObject<Pick<{
66528
66672
  userId: string;
66529
66673
  } | {
66530
66674
  type: "Figma";
66531
- renderMode: "Image" | "HTML";
66675
+ renderMode: "Image" | "HTML" | "JSON";
66532
66676
  } | undefined;
66533
66677
  }, {
66534
66678
  id: string;
@@ -66538,7 +66682,7 @@ declare const DTOFileReference: z__default.ZodObject<Pick<{
66538
66682
  userId: string;
66539
66683
  } | {
66540
66684
  type: "Figma";
66541
- renderMode: "Image" | "HTML";
66685
+ renderMode: "Image" | "HTML" | "JSON";
66542
66686
  } | undefined;
66543
66687
  }>;
66544
66688
  type DTOFileReference = z__default.infer<typeof DTOFileReference>;
@@ -66632,13 +66776,13 @@ declare const DTOFileListResponse: z__default.ZodObject<{
66632
66776
  userId: string;
66633
66777
  }>, z__default.ZodObject<{
66634
66778
  type: z__default.ZodLiteral<"Figma">;
66635
- renderMode: z__default.ZodEnum<["Image", "HTML"]>;
66779
+ renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
66636
66780
  }, "strip", z__default.ZodTypeAny, {
66637
66781
  type: "Figma";
66638
- renderMode: "Image" | "HTML";
66782
+ renderMode: "Image" | "HTML" | "JSON";
66639
66783
  }, {
66640
66784
  type: "Figma";
66641
- renderMode: "Image" | "HTML";
66785
+ renderMode: "Image" | "HTML" | "JSON";
66642
66786
  }>]>>;
66643
66787
  }, "strip", z__default.ZodTypeAny, {
66644
66788
  id: string;
@@ -66652,7 +66796,7 @@ declare const DTOFileListResponse: z__default.ZodObject<{
66652
66796
  userId: string;
66653
66797
  } | {
66654
66798
  type: "Figma";
66655
- renderMode: "Image" | "HTML";
66799
+ renderMode: "Image" | "HTML" | "JSON";
66656
66800
  } | undefined;
66657
66801
  pendingUpload?: boolean | undefined;
66658
66802
  }, {
@@ -66667,7 +66811,7 @@ declare const DTOFileListResponse: z__default.ZodObject<{
66667
66811
  userId: string;
66668
66812
  } | {
66669
66813
  type: "Figma";
66670
- renderMode: "Image" | "HTML";
66814
+ renderMode: "Image" | "HTML" | "JSON";
66671
66815
  } | undefined;
66672
66816
  pendingUpload?: boolean | undefined;
66673
66817
  }>, "many">;
@@ -66684,7 +66828,7 @@ declare const DTOFileListResponse: z__default.ZodObject<{
66684
66828
  userId: string;
66685
66829
  } | {
66686
66830
  type: "Figma";
66687
- renderMode: "Image" | "HTML";
66831
+ renderMode: "Image" | "HTML" | "JSON";
66688
66832
  } | undefined;
66689
66833
  pendingUpload?: boolean | undefined;
66690
66834
  }[];
@@ -66701,7 +66845,7 @@ declare const DTOFileListResponse: z__default.ZodObject<{
66701
66845
  userId: string;
66702
66846
  } | {
66703
66847
  type: "Figma";
66704
- renderMode: "Image" | "HTML";
66848
+ renderMode: "Image" | "HTML" | "JSON";
66705
66849
  } | undefined;
66706
66850
  pendingUpload?: boolean | undefined;
66707
66851
  }[];
@@ -66731,13 +66875,13 @@ declare const DTOFileUploadBulkResponse: z__default.ZodObject<{
66731
66875
  userId: string;
66732
66876
  }>, z__default.ZodObject<{
66733
66877
  type: z__default.ZodLiteral<"Figma">;
66734
- renderMode: z__default.ZodEnum<["Image", "HTML"]>;
66878
+ renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
66735
66879
  }, "strip", z__default.ZodTypeAny, {
66736
66880
  type: "Figma";
66737
- renderMode: "Image" | "HTML";
66881
+ renderMode: "Image" | "HTML" | "JSON";
66738
66882
  }, {
66739
66883
  type: "Figma";
66740
- renderMode: "Image" | "HTML";
66884
+ renderMode: "Image" | "HTML" | "JSON";
66741
66885
  }>]>>;
66742
66886
  }, "strip", z__default.ZodTypeAny, {
66743
66887
  id: string;
@@ -66751,7 +66895,7 @@ declare const DTOFileUploadBulkResponse: z__default.ZodObject<{
66751
66895
  userId: string;
66752
66896
  } | {
66753
66897
  type: "Figma";
66754
- renderMode: "Image" | "HTML";
66898
+ renderMode: "Image" | "HTML" | "JSON";
66755
66899
  } | undefined;
66756
66900
  pendingUpload?: boolean | undefined;
66757
66901
  }, {
@@ -66766,7 +66910,7 @@ declare const DTOFileUploadBulkResponse: z__default.ZodObject<{
66766
66910
  userId: string;
66767
66911
  } | {
66768
66912
  type: "Figma";
66769
- renderMode: "Image" | "HTML";
66913
+ renderMode: "Image" | "HTML" | "JSON";
66770
66914
  } | undefined;
66771
66915
  pendingUpload?: boolean | undefined;
66772
66916
  }>, "many">;
@@ -66793,7 +66937,7 @@ declare const DTOFileUploadBulkResponse: z__default.ZodObject<{
66793
66937
  userId: string;
66794
66938
  } | {
66795
66939
  type: "Figma";
66796
- renderMode: "Image" | "HTML";
66940
+ renderMode: "Image" | "HTML" | "JSON";
66797
66941
  } | undefined;
66798
66942
  pendingUpload?: boolean | undefined;
66799
66943
  }[];
@@ -66814,7 +66958,7 @@ declare const DTOFileUploadBulkResponse: z__default.ZodObject<{
66814
66958
  userId: string;
66815
66959
  } | {
66816
66960
  type: "Figma";
66817
- renderMode: "Image" | "HTML";
66961
+ renderMode: "Image" | "HTML" | "JSON";
66818
66962
  } | undefined;
66819
66963
  pendingUpload?: boolean | undefined;
66820
66964
  }[];
@@ -66848,13 +66992,13 @@ declare const DTOFileFinalizeBulkResponse: z__default.ZodObject<{
66848
66992
  userId: string;
66849
66993
  }>, z__default.ZodObject<{
66850
66994
  type: z__default.ZodLiteral<"Figma">;
66851
- renderMode: z__default.ZodEnum<["Image", "HTML"]>;
66995
+ renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
66852
66996
  }, "strip", z__default.ZodTypeAny, {
66853
66997
  type: "Figma";
66854
- renderMode: "Image" | "HTML";
66998
+ renderMode: "Image" | "HTML" | "JSON";
66855
66999
  }, {
66856
67000
  type: "Figma";
66857
- renderMode: "Image" | "HTML";
67001
+ renderMode: "Image" | "HTML" | "JSON";
66858
67002
  }>]>>;
66859
67003
  }, "strip", z__default.ZodTypeAny, {
66860
67004
  id: string;
@@ -66868,7 +67012,7 @@ declare const DTOFileFinalizeBulkResponse: z__default.ZodObject<{
66868
67012
  userId: string;
66869
67013
  } | {
66870
67014
  type: "Figma";
66871
- renderMode: "Image" | "HTML";
67015
+ renderMode: "Image" | "HTML" | "JSON";
66872
67016
  } | undefined;
66873
67017
  pendingUpload?: boolean | undefined;
66874
67018
  }, {
@@ -66883,7 +67027,7 @@ declare const DTOFileFinalizeBulkResponse: z__default.ZodObject<{
66883
67027
  userId: string;
66884
67028
  } | {
66885
67029
  type: "Figma";
66886
- renderMode: "Image" | "HTML";
67030
+ renderMode: "Image" | "HTML" | "JSON";
66887
67031
  } | undefined;
66888
67032
  pendingUpload?: boolean | undefined;
66889
67033
  }>, "many">;
@@ -66900,7 +67044,7 @@ declare const DTOFileFinalizeBulkResponse: z__default.ZodObject<{
66900
67044
  userId: string;
66901
67045
  } | {
66902
67046
  type: "Figma";
66903
- renderMode: "Image" | "HTML";
67047
+ renderMode: "Image" | "HTML" | "JSON";
66904
67048
  } | undefined;
66905
67049
  pendingUpload?: boolean | undefined;
66906
67050
  }[];
@@ -66917,7 +67061,7 @@ declare const DTOFileFinalizeBulkResponse: z__default.ZodObject<{
66917
67061
  userId: string;
66918
67062
  } | {
66919
67063
  type: "Figma";
66920
- renderMode: "Image" | "HTML";
67064
+ renderMode: "Image" | "HTML" | "JSON";
66921
67065
  } | undefined;
66922
67066
  pendingUpload?: boolean | undefined;
66923
67067
  }[];
@@ -69344,13 +69488,13 @@ declare const DTOFeatureIteration: z__default.ZodObject<{
69344
69488
  userId: string;
69345
69489
  }>, z__default.ZodObject<{
69346
69490
  type: z__default.ZodLiteral<"Figma">;
69347
- renderMode: z__default.ZodEnum<["Image", "HTML"]>;
69491
+ renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
69348
69492
  }, "strip", z__default.ZodTypeAny, {
69349
69493
  type: "Figma";
69350
- renderMode: "Image" | "HTML";
69494
+ renderMode: "Image" | "HTML" | "JSON";
69351
69495
  }, {
69352
69496
  type: "Figma";
69353
- renderMode: "Image" | "HTML";
69497
+ renderMode: "Image" | "HTML" | "JSON";
69354
69498
  }>]>>;
69355
69499
  }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
69356
69500
  id: string;
@@ -69360,7 +69504,7 @@ declare const DTOFeatureIteration: z__default.ZodObject<{
69360
69504
  userId: string;
69361
69505
  } | {
69362
69506
  type: "Figma";
69363
- renderMode: "Image" | "HTML";
69507
+ renderMode: "Image" | "HTML" | "JSON";
69364
69508
  } | undefined;
69365
69509
  }, {
69366
69510
  id: string;
@@ -69370,7 +69514,7 @@ declare const DTOFeatureIteration: z__default.ZodObject<{
69370
69514
  userId: string;
69371
69515
  } | {
69372
69516
  type: "Figma";
69373
- renderMode: "Image" | "HTML";
69517
+ renderMode: "Image" | "HTML" | "JSON";
69374
69518
  } | undefined;
69375
69519
  }>>;
69376
69520
  createdAt: z__default.ZodString;
@@ -69407,7 +69551,7 @@ declare const DTOFeatureIteration: z__default.ZodObject<{
69407
69551
  userId: string;
69408
69552
  } | {
69409
69553
  type: "Figma";
69410
- renderMode: "Image" | "HTML";
69554
+ renderMode: "Image" | "HTML" | "JSON";
69411
69555
  } | undefined;
69412
69556
  } | undefined;
69413
69557
  artifactsDiff?: {
@@ -69434,7 +69578,7 @@ declare const DTOFeatureIteration: z__default.ZodObject<{
69434
69578
  userId: string;
69435
69579
  } | {
69436
69580
  type: "Figma";
69437
- renderMode: "Image" | "HTML";
69581
+ renderMode: "Image" | "HTML" | "JSON";
69438
69582
  } | undefined;
69439
69583
  } | undefined;
69440
69584
  artifactsDiff?: {
@@ -69710,13 +69854,13 @@ declare const DTOFeatureIterationCreateInput: z__default.ZodObject<Pick<{
69710
69854
  userId: string;
69711
69855
  }>, z__default.ZodObject<{
69712
69856
  type: z__default.ZodLiteral<"Figma">;
69713
- renderMode: z__default.ZodEnum<["Image", "HTML"]>;
69857
+ renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
69714
69858
  }, "strip", z__default.ZodTypeAny, {
69715
69859
  type: "Figma";
69716
- renderMode: "Image" | "HTML";
69860
+ renderMode: "Image" | "HTML" | "JSON";
69717
69861
  }, {
69718
69862
  type: "Figma";
69719
- renderMode: "Image" | "HTML";
69863
+ renderMode: "Image" | "HTML" | "JSON";
69720
69864
  }>]>>;
69721
69865
  }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
69722
69866
  id: string;
@@ -69726,7 +69870,7 @@ declare const DTOFeatureIterationCreateInput: z__default.ZodObject<Pick<{
69726
69870
  userId: string;
69727
69871
  } | {
69728
69872
  type: "Figma";
69729
- renderMode: "Image" | "HTML";
69873
+ renderMode: "Image" | "HTML" | "JSON";
69730
69874
  } | undefined;
69731
69875
  }, {
69732
69876
  id: string;
@@ -69736,7 +69880,7 @@ declare const DTOFeatureIterationCreateInput: z__default.ZodObject<Pick<{
69736
69880
  userId: string;
69737
69881
  } | {
69738
69882
  type: "Figma";
69739
- renderMode: "Image" | "HTML";
69883
+ renderMode: "Image" | "HTML" | "JSON";
69740
69884
  } | undefined;
69741
69885
  }>>;
69742
69886
  createdAt: z__default.ZodString;
@@ -70498,13 +70642,13 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
70498
70642
  userId: string;
70499
70643
  }>, z__default.ZodObject<{
70500
70644
  type: z__default.ZodLiteral<"Figma">;
70501
- renderMode: z__default.ZodEnum<["Image", "HTML"]>;
70645
+ renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
70502
70646
  }, "strip", z__default.ZodTypeAny, {
70503
70647
  type: "Figma";
70504
- renderMode: "Image" | "HTML";
70648
+ renderMode: "Image" | "HTML" | "JSON";
70505
70649
  }, {
70506
70650
  type: "Figma";
70507
- renderMode: "Image" | "HTML";
70651
+ renderMode: "Image" | "HTML" | "JSON";
70508
70652
  }>]>>;
70509
70653
  }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
70510
70654
  id: string;
@@ -70514,7 +70658,7 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
70514
70658
  userId: string;
70515
70659
  } | {
70516
70660
  type: "Figma";
70517
- renderMode: "Image" | "HTML";
70661
+ renderMode: "Image" | "HTML" | "JSON";
70518
70662
  } | undefined;
70519
70663
  }, {
70520
70664
  id: string;
@@ -70524,7 +70668,7 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
70524
70668
  userId: string;
70525
70669
  } | {
70526
70670
  type: "Figma";
70527
- renderMode: "Image" | "HTML";
70671
+ renderMode: "Image" | "HTML" | "JSON";
70528
70672
  } | undefined;
70529
70673
  }>>;
70530
70674
  createdAt: z__default.ZodString;
@@ -70561,7 +70705,7 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
70561
70705
  userId: string;
70562
70706
  } | {
70563
70707
  type: "Figma";
70564
- renderMode: "Image" | "HTML";
70708
+ renderMode: "Image" | "HTML" | "JSON";
70565
70709
  } | undefined;
70566
70710
  } | undefined;
70567
70711
  artifactsDiff?: {
@@ -70588,7 +70732,7 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
70588
70732
  userId: string;
70589
70733
  } | {
70590
70734
  type: "Figma";
70591
- renderMode: "Image" | "HTML";
70735
+ renderMode: "Image" | "HTML" | "JSON";
70592
70736
  } | undefined;
70593
70737
  } | undefined;
70594
70738
  artifactsDiff?: {
@@ -70617,7 +70761,7 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
70617
70761
  userId: string;
70618
70762
  } | {
70619
70763
  type: "Figma";
70620
- renderMode: "Image" | "HTML";
70764
+ renderMode: "Image" | "HTML" | "JSON";
70621
70765
  } | undefined;
70622
70766
  } | undefined;
70623
70767
  artifactsDiff?: {
@@ -70646,7 +70790,7 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
70646
70790
  userId: string;
70647
70791
  } | {
70648
70792
  type: "Figma";
70649
- renderMode: "Image" | "HTML";
70793
+ renderMode: "Image" | "HTML" | "JSON";
70650
70794
  } | undefined;
70651
70795
  } | undefined;
70652
70796
  artifactsDiff?: {
@@ -70708,13 +70852,13 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
70708
70852
  userId: string;
70709
70853
  }>, z__default.ZodObject<{
70710
70854
  type: z__default.ZodLiteral<"Figma">;
70711
- renderMode: z__default.ZodEnum<["Image", "HTML"]>;
70855
+ renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
70712
70856
  }, "strip", z__default.ZodTypeAny, {
70713
70857
  type: "Figma";
70714
- renderMode: "Image" | "HTML";
70858
+ renderMode: "Image" | "HTML" | "JSON";
70715
70859
  }, {
70716
70860
  type: "Figma";
70717
- renderMode: "Image" | "HTML";
70861
+ renderMode: "Image" | "HTML" | "JSON";
70718
70862
  }>]>>;
70719
70863
  }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
70720
70864
  id: string;
@@ -70724,7 +70868,7 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
70724
70868
  userId: string;
70725
70869
  } | {
70726
70870
  type: "Figma";
70727
- renderMode: "Image" | "HTML";
70871
+ renderMode: "Image" | "HTML" | "JSON";
70728
70872
  } | undefined;
70729
70873
  }, {
70730
70874
  id: string;
@@ -70734,7 +70878,7 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
70734
70878
  userId: string;
70735
70879
  } | {
70736
70880
  type: "Figma";
70737
- renderMode: "Image" | "HTML";
70881
+ renderMode: "Image" | "HTML" | "JSON";
70738
70882
  } | undefined;
70739
70883
  }>>;
70740
70884
  createdAt: z__default.ZodString;
@@ -70771,7 +70915,7 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
70771
70915
  userId: string;
70772
70916
  } | {
70773
70917
  type: "Figma";
70774
- renderMode: "Image" | "HTML";
70918
+ renderMode: "Image" | "HTML" | "JSON";
70775
70919
  } | undefined;
70776
70920
  } | undefined;
70777
70921
  artifactsDiff?: {
@@ -70798,7 +70942,7 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
70798
70942
  userId: string;
70799
70943
  } | {
70800
70944
  type: "Figma";
70801
- renderMode: "Image" | "HTML";
70945
+ renderMode: "Image" | "HTML" | "JSON";
70802
70946
  } | undefined;
70803
70947
  } | undefined;
70804
70948
  artifactsDiff?: {
@@ -70827,7 +70971,7 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
70827
70971
  userId: string;
70828
70972
  } | {
70829
70973
  type: "Figma";
70830
- renderMode: "Image" | "HTML";
70974
+ renderMode: "Image" | "HTML" | "JSON";
70831
70975
  } | undefined;
70832
70976
  } | undefined;
70833
70977
  artifactsDiff?: {
@@ -70856,7 +71000,7 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
70856
71000
  userId: string;
70857
71001
  } | {
70858
71002
  type: "Figma";
70859
- renderMode: "Image" | "HTML";
71003
+ renderMode: "Image" | "HTML" | "JSON";
70860
71004
  } | undefined;
70861
71005
  } | undefined;
70862
71006
  artifactsDiff?: {
@@ -72420,7 +72564,6 @@ declare const DTOForgeIterationMessage: z$1.ZodObject<Omit<{
72420
72564
  id: string;
72421
72565
  createdAt: Date;
72422
72566
  type: "Note" | "Action" | "Steps";
72423
- text: string;
72424
72567
  projectIterationId: string;
72425
72568
  participantId: string;
72426
72569
  participant: {
@@ -72454,6 +72597,7 @@ declare const DTOForgeIterationMessage: z$1.ZodObject<Omit<{
72454
72597
  } | undefined;
72455
72598
  agentId?: string | undefined;
72456
72599
  };
72600
+ text: string;
72457
72601
  steps?: {
72458
72602
  status: "error" | "pending" | "started" | "completed";
72459
72603
  name: string;
@@ -72463,7 +72607,6 @@ declare const DTOForgeIterationMessage: z$1.ZodObject<Omit<{
72463
72607
  id: string;
72464
72608
  createdAt: Date;
72465
72609
  type: "Note" | "Action" | "Steps";
72466
- text: string;
72467
72610
  projectIterationId: string;
72468
72611
  participantId: string;
72469
72612
  participant: {
@@ -72497,6 +72640,7 @@ declare const DTOForgeIterationMessage: z$1.ZodObject<Omit<{
72497
72640
  } | undefined;
72498
72641
  agentId?: string | undefined;
72499
72642
  };
72643
+ text: string;
72500
72644
  steps?: {
72501
72645
  status: "error" | "pending" | "started" | "completed";
72502
72646
  name: string;
@@ -73484,7 +73628,6 @@ declare const DTOGetForgeIterationMessageResponse: z$1.ZodObject<{
73484
73628
  id: string;
73485
73629
  createdAt: Date;
73486
73630
  type: "Note" | "Action" | "Steps";
73487
- text: string;
73488
73631
  projectIterationId: string;
73489
73632
  participantId: string;
73490
73633
  participant: {
@@ -73518,6 +73661,7 @@ declare const DTOGetForgeIterationMessageResponse: z$1.ZodObject<{
73518
73661
  } | undefined;
73519
73662
  agentId?: string | undefined;
73520
73663
  };
73664
+ text: string;
73521
73665
  steps?: {
73522
73666
  status: "error" | "pending" | "started" | "completed";
73523
73667
  name: string;
@@ -73527,7 +73671,6 @@ declare const DTOGetForgeIterationMessageResponse: z$1.ZodObject<{
73527
73671
  id: string;
73528
73672
  createdAt: Date;
73529
73673
  type: "Note" | "Action" | "Steps";
73530
- text: string;
73531
73674
  projectIterationId: string;
73532
73675
  participantId: string;
73533
73676
  participant: {
@@ -73561,6 +73704,7 @@ declare const DTOGetForgeIterationMessageResponse: z$1.ZodObject<{
73561
73704
  } | undefined;
73562
73705
  agentId?: string | undefined;
73563
73706
  };
73707
+ text: string;
73564
73708
  steps?: {
73565
73709
  status: "error" | "pending" | "started" | "completed";
73566
73710
  name: string;
@@ -73572,7 +73716,6 @@ declare const DTOGetForgeIterationMessageResponse: z$1.ZodObject<{
73572
73716
  id: string;
73573
73717
  createdAt: Date;
73574
73718
  type: "Note" | "Action" | "Steps";
73575
- text: string;
73576
73719
  projectIterationId: string;
73577
73720
  participantId: string;
73578
73721
  participant: {
@@ -73606,6 +73749,7 @@ declare const DTOGetForgeIterationMessageResponse: z$1.ZodObject<{
73606
73749
  } | undefined;
73607
73750
  agentId?: string | undefined;
73608
73751
  };
73752
+ text: string;
73609
73753
  steps?: {
73610
73754
  status: "error" | "pending" | "started" | "completed";
73611
73755
  name: string;
@@ -73617,7 +73761,6 @@ declare const DTOGetForgeIterationMessageResponse: z$1.ZodObject<{
73617
73761
  id: string;
73618
73762
  createdAt: Date;
73619
73763
  type: "Note" | "Action" | "Steps";
73620
- text: string;
73621
73764
  projectIterationId: string;
73622
73765
  participantId: string;
73623
73766
  participant: {
@@ -73651,6 +73794,7 @@ declare const DTOGetForgeIterationMessageResponse: z$1.ZodObject<{
73651
73794
  } | undefined;
73652
73795
  agentId?: string | undefined;
73653
73796
  };
73797
+ text: string;
73654
73798
  steps?: {
73655
73799
  status: "error" | "pending" | "started" | "completed";
73656
73800
  name: string;
@@ -74639,7 +74783,6 @@ declare const DTOForgeIterationMessagesListResponse: z$1.ZodObject<{
74639
74783
  id: string;
74640
74784
  createdAt: Date;
74641
74785
  type: "Note" | "Action" | "Steps";
74642
- text: string;
74643
74786
  projectIterationId: string;
74644
74787
  participantId: string;
74645
74788
  participant: {
@@ -74673,6 +74816,7 @@ declare const DTOForgeIterationMessagesListResponse: z$1.ZodObject<{
74673
74816
  } | undefined;
74674
74817
  agentId?: string | undefined;
74675
74818
  };
74819
+ text: string;
74676
74820
  steps?: {
74677
74821
  status: "error" | "pending" | "started" | "completed";
74678
74822
  name: string;
@@ -74682,7 +74826,6 @@ declare const DTOForgeIterationMessagesListResponse: z$1.ZodObject<{
74682
74826
  id: string;
74683
74827
  createdAt: Date;
74684
74828
  type: "Note" | "Action" | "Steps";
74685
- text: string;
74686
74829
  projectIterationId: string;
74687
74830
  participantId: string;
74688
74831
  participant: {
@@ -74716,6 +74859,7 @@ declare const DTOForgeIterationMessagesListResponse: z$1.ZodObject<{
74716
74859
  } | undefined;
74717
74860
  agentId?: string | undefined;
74718
74861
  };
74862
+ text: string;
74719
74863
  steps?: {
74720
74864
  status: "error" | "pending" | "started" | "completed";
74721
74865
  name: string;
@@ -74727,7 +74871,6 @@ declare const DTOForgeIterationMessagesListResponse: z$1.ZodObject<{
74727
74871
  id: string;
74728
74872
  createdAt: Date;
74729
74873
  type: "Note" | "Action" | "Steps";
74730
- text: string;
74731
74874
  projectIterationId: string;
74732
74875
  participantId: string;
74733
74876
  participant: {
@@ -74761,6 +74904,7 @@ declare const DTOForgeIterationMessagesListResponse: z$1.ZodObject<{
74761
74904
  } | undefined;
74762
74905
  agentId?: string | undefined;
74763
74906
  };
74907
+ text: string;
74764
74908
  steps?: {
74765
74909
  status: "error" | "pending" | "started" | "completed";
74766
74910
  name: string;
@@ -74772,7 +74916,6 @@ declare const DTOForgeIterationMessagesListResponse: z$1.ZodObject<{
74772
74916
  id: string;
74773
74917
  createdAt: Date;
74774
74918
  type: "Note" | "Action" | "Steps";
74775
- text: string;
74776
74919
  projectIterationId: string;
74777
74920
  participantId: string;
74778
74921
  participant: {
@@ -74806,6 +74949,7 @@ declare const DTOForgeIterationMessagesListResponse: z$1.ZodObject<{
74806
74949
  } | undefined;
74807
74950
  agentId?: string | undefined;
74808
74951
  };
74952
+ text: string;
74809
74953
  steps?: {
74810
74954
  status: "error" | "pending" | "started" | "completed";
74811
74955
  name: string;
@@ -75793,8 +75937,8 @@ declare const DTOCreateForgeIterationMessage: z$1.ZodObject<Omit<Omit<{
75793
75937
  id: string;
75794
75938
  createdAt: Date;
75795
75939
  type: "Note" | "Action" | "Steps";
75796
- text: string;
75797
75940
  participantId: string;
75941
+ text: string;
75798
75942
  steps?: {
75799
75943
  status: "error" | "pending" | "started" | "completed";
75800
75944
  name: string;
@@ -75804,8 +75948,8 @@ declare const DTOCreateForgeIterationMessage: z$1.ZodObject<Omit<Omit<{
75804
75948
  id: string;
75805
75949
  createdAt: Date;
75806
75950
  type: "Note" | "Action" | "Steps";
75807
- text: string;
75808
75951
  participantId: string;
75952
+ text: string;
75809
75953
  steps?: {
75810
75954
  status: "error" | "pending" | "started" | "completed";
75811
75955
  name: string;
@@ -75816,7 +75960,6 @@ type DTOCreateForgeIterationMessage = z$1.infer<typeof DTOCreateForgeIterationMe
75816
75960
  declare const DTOUpdateForgeIterationMessage: z$1.ZodObject<{
75817
75961
  createdAt: z$1.ZodDate;
75818
75962
  type: z$1.ZodEnum<["Note", "Action", "Steps"]>;
75819
- text: z$1.ZodString;
75820
75963
  participantId: z$1.ZodString;
75821
75964
  steps: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
75822
75965
  name: z$1.ZodString;
@@ -75831,14 +75974,15 @@ declare const DTOUpdateForgeIterationMessage: z$1.ZodObject<{
75831
75974
  name: string;
75832
75975
  text: string;
75833
75976
  }>, "many">>;
75977
+ text: z$1.ZodString;
75834
75978
  } & {
75835
75979
  id: z$1.ZodString;
75836
75980
  }, "strip", z$1.ZodTypeAny, {
75837
75981
  id: string;
75838
75982
  createdAt: Date;
75839
75983
  type: "Note" | "Action" | "Steps";
75840
- text: string;
75841
75984
  participantId: string;
75985
+ text: string;
75842
75986
  steps?: {
75843
75987
  status: "error" | "pending" | "started" | "completed";
75844
75988
  name: string;
@@ -75848,8 +75992,8 @@ declare const DTOUpdateForgeIterationMessage: z$1.ZodObject<{
75848
75992
  id: string;
75849
75993
  createdAt: Date;
75850
75994
  type: "Note" | "Action" | "Steps";
75851
- text: string;
75852
75995
  participantId: string;
75996
+ text: string;
75853
75997
  steps?: {
75854
75998
  status: "error" | "pending" | "started" | "completed";
75855
75999
  name: string;
@@ -76837,7 +76981,6 @@ declare const DTOCreateForgeIterationMessageResponse: z$1.ZodObject<{
76837
76981
  id: string;
76838
76982
  createdAt: Date;
76839
76983
  type: "Note" | "Action" | "Steps";
76840
- text: string;
76841
76984
  projectIterationId: string;
76842
76985
  participantId: string;
76843
76986
  participant: {
@@ -76871,6 +77014,7 @@ declare const DTOCreateForgeIterationMessageResponse: z$1.ZodObject<{
76871
77014
  } | undefined;
76872
77015
  agentId?: string | undefined;
76873
77016
  };
77017
+ text: string;
76874
77018
  steps?: {
76875
77019
  status: "error" | "pending" | "started" | "completed";
76876
77020
  name: string;
@@ -76880,7 +77024,6 @@ declare const DTOCreateForgeIterationMessageResponse: z$1.ZodObject<{
76880
77024
  id: string;
76881
77025
  createdAt: Date;
76882
77026
  type: "Note" | "Action" | "Steps";
76883
- text: string;
76884
77027
  projectIterationId: string;
76885
77028
  participantId: string;
76886
77029
  participant: {
@@ -76914,6 +77057,7 @@ declare const DTOCreateForgeIterationMessageResponse: z$1.ZodObject<{
76914
77057
  } | undefined;
76915
77058
  agentId?: string | undefined;
76916
77059
  };
77060
+ text: string;
76917
77061
  steps?: {
76918
77062
  status: "error" | "pending" | "started" | "completed";
76919
77063
  name: string;
@@ -76925,7 +77069,6 @@ declare const DTOCreateForgeIterationMessageResponse: z$1.ZodObject<{
76925
77069
  id: string;
76926
77070
  createdAt: Date;
76927
77071
  type: "Note" | "Action" | "Steps";
76928
- text: string;
76929
77072
  projectIterationId: string;
76930
77073
  participantId: string;
76931
77074
  participant: {
@@ -76959,6 +77102,7 @@ declare const DTOCreateForgeIterationMessageResponse: z$1.ZodObject<{
76959
77102
  } | undefined;
76960
77103
  agentId?: string | undefined;
76961
77104
  };
77105
+ text: string;
76962
77106
  steps?: {
76963
77107
  status: "error" | "pending" | "started" | "completed";
76964
77108
  name: string;
@@ -76970,7 +77114,6 @@ declare const DTOCreateForgeIterationMessageResponse: z$1.ZodObject<{
76970
77114
  id: string;
76971
77115
  createdAt: Date;
76972
77116
  type: "Note" | "Action" | "Steps";
76973
- text: string;
76974
77117
  projectIterationId: string;
76975
77118
  participantId: string;
76976
77119
  participant: {
@@ -77004,6 +77147,7 @@ declare const DTOCreateForgeIterationMessageResponse: z$1.ZodObject<{
77004
77147
  } | undefined;
77005
77148
  agentId?: string | undefined;
77006
77149
  };
77150
+ text: string;
77007
77151
  steps?: {
77008
77152
  status: "error" | "pending" | "started" | "completed";
77009
77153
  name: string;
@@ -77992,7 +78136,6 @@ declare const DTOUpdateForgeIterationMessageResponse: z$1.ZodObject<{
77992
78136
  id: string;
77993
78137
  createdAt: Date;
77994
78138
  type: "Note" | "Action" | "Steps";
77995
- text: string;
77996
78139
  projectIterationId: string;
77997
78140
  participantId: string;
77998
78141
  participant: {
@@ -78026,6 +78169,7 @@ declare const DTOUpdateForgeIterationMessageResponse: z$1.ZodObject<{
78026
78169
  } | undefined;
78027
78170
  agentId?: string | undefined;
78028
78171
  };
78172
+ text: string;
78029
78173
  steps?: {
78030
78174
  status: "error" | "pending" | "started" | "completed";
78031
78175
  name: string;
@@ -78035,7 +78179,6 @@ declare const DTOUpdateForgeIterationMessageResponse: z$1.ZodObject<{
78035
78179
  id: string;
78036
78180
  createdAt: Date;
78037
78181
  type: "Note" | "Action" | "Steps";
78038
- text: string;
78039
78182
  projectIterationId: string;
78040
78183
  participantId: string;
78041
78184
  participant: {
@@ -78069,6 +78212,7 @@ declare const DTOUpdateForgeIterationMessageResponse: z$1.ZodObject<{
78069
78212
  } | undefined;
78070
78213
  agentId?: string | undefined;
78071
78214
  };
78215
+ text: string;
78072
78216
  steps?: {
78073
78217
  status: "error" | "pending" | "started" | "completed";
78074
78218
  name: string;
@@ -78080,7 +78224,6 @@ declare const DTOUpdateForgeIterationMessageResponse: z$1.ZodObject<{
78080
78224
  id: string;
78081
78225
  createdAt: Date;
78082
78226
  type: "Note" | "Action" | "Steps";
78083
- text: string;
78084
78227
  projectIterationId: string;
78085
78228
  participantId: string;
78086
78229
  participant: {
@@ -78114,6 +78257,7 @@ declare const DTOUpdateForgeIterationMessageResponse: z$1.ZodObject<{
78114
78257
  } | undefined;
78115
78258
  agentId?: string | undefined;
78116
78259
  };
78260
+ text: string;
78117
78261
  steps?: {
78118
78262
  status: "error" | "pending" | "started" | "completed";
78119
78263
  name: string;
@@ -78125,7 +78269,6 @@ declare const DTOUpdateForgeIterationMessageResponse: z$1.ZodObject<{
78125
78269
  id: string;
78126
78270
  createdAt: Date;
78127
78271
  type: "Note" | "Action" | "Steps";
78128
- text: string;
78129
78272
  projectIterationId: string;
78130
78273
  participantId: string;
78131
78274
  participant: {
@@ -78159,6 +78302,7 @@ declare const DTOUpdateForgeIterationMessageResponse: z$1.ZodObject<{
78159
78302
  } | undefined;
78160
78303
  agentId?: string | undefined;
78161
78304
  };
78305
+ text: string;
78162
78306
  steps?: {
78163
78307
  status: "error" | "pending" | "started" | "completed";
78164
78308
  name: string;
@@ -81379,13 +81523,13 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
81379
81523
  userId: string;
81380
81524
  }>, z__default.ZodObject<{
81381
81525
  type: z__default.ZodLiteral<"Figma">;
81382
- renderMode: z__default.ZodEnum<["Image", "HTML"]>;
81526
+ renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
81383
81527
  }, "strip", z__default.ZodTypeAny, {
81384
81528
  type: "Figma";
81385
- renderMode: "Image" | "HTML";
81529
+ renderMode: "Image" | "HTML" | "JSON";
81386
81530
  }, {
81387
81531
  type: "Figma";
81388
- renderMode: "Image" | "HTML";
81532
+ renderMode: "Image" | "HTML" | "JSON";
81389
81533
  }>]>>;
81390
81534
  }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
81391
81535
  id: string;
@@ -81395,7 +81539,7 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
81395
81539
  userId: string;
81396
81540
  } | {
81397
81541
  type: "Figma";
81398
- renderMode: "Image" | "HTML";
81542
+ renderMode: "Image" | "HTML" | "JSON";
81399
81543
  } | undefined;
81400
81544
  }, {
81401
81545
  id: string;
@@ -81405,7 +81549,7 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
81405
81549
  userId: string;
81406
81550
  } | {
81407
81551
  type: "Figma";
81408
- renderMode: "Image" | "HTML";
81552
+ renderMode: "Image" | "HTML" | "JSON";
81409
81553
  } | undefined;
81410
81554
  }>, "many">>;
81411
81555
  }, "strip", z__default.ZodTypeAny, {
@@ -81417,7 +81561,7 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
81417
81561
  userId: string;
81418
81562
  } | {
81419
81563
  type: "Figma";
81420
- renderMode: "Image" | "HTML";
81564
+ renderMode: "Image" | "HTML" | "JSON";
81421
81565
  } | undefined;
81422
81566
  }[] | undefined;
81423
81567
  iterationId?: string | undefined;
@@ -81430,7 +81574,7 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
81430
81574
  userId: string;
81431
81575
  } | {
81432
81576
  type: "Figma";
81433
- renderMode: "Image" | "HTML";
81577
+ renderMode: "Image" | "HTML" | "JSON";
81434
81578
  } | undefined;
81435
81579
  }[] | undefined;
81436
81580
  iterationId?: string | undefined;
@@ -81704,13 +81848,13 @@ declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
81704
81848
  userId: string;
81705
81849
  }>, z__default.ZodObject<{
81706
81850
  type: z__default.ZodLiteral<"Figma">;
81707
- renderMode: z__default.ZodEnum<["Image", "HTML"]>;
81851
+ renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
81708
81852
  }, "strip", z__default.ZodTypeAny, {
81709
81853
  type: "Figma";
81710
- renderMode: "Image" | "HTML";
81854
+ renderMode: "Image" | "HTML" | "JSON";
81711
81855
  }, {
81712
81856
  type: "Figma";
81713
- renderMode: "Image" | "HTML";
81857
+ renderMode: "Image" | "HTML" | "JSON";
81714
81858
  }>]>>;
81715
81859
  }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
81716
81860
  id: string;
@@ -81720,7 +81864,7 @@ declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
81720
81864
  userId: string;
81721
81865
  } | {
81722
81866
  type: "Figma";
81723
- renderMode: "Image" | "HTML";
81867
+ renderMode: "Image" | "HTML" | "JSON";
81724
81868
  } | undefined;
81725
81869
  }, {
81726
81870
  id: string;
@@ -81730,7 +81874,7 @@ declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
81730
81874
  userId: string;
81731
81875
  } | {
81732
81876
  type: "Figma";
81733
- renderMode: "Image" | "HTML";
81877
+ renderMode: "Image" | "HTML" | "JSON";
81734
81878
  } | undefined;
81735
81879
  }>, "many">>;
81736
81880
  }, "strip", z__default.ZodTypeAny, {
@@ -81742,7 +81886,7 @@ declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
81742
81886
  userId: string;
81743
81887
  } | {
81744
81888
  type: "Figma";
81745
- renderMode: "Image" | "HTML";
81889
+ renderMode: "Image" | "HTML" | "JSON";
81746
81890
  } | undefined;
81747
81891
  }[] | undefined;
81748
81892
  iterationId?: string | undefined;
@@ -81755,7 +81899,7 @@ declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
81755
81899
  userId: string;
81756
81900
  } | {
81757
81901
  type: "Figma";
81758
- renderMode: "Image" | "HTML";
81902
+ renderMode: "Image" | "HTML" | "JSON";
81759
81903
  } | undefined;
81760
81904
  }[] | undefined;
81761
81905
  iterationId?: string | undefined;
@@ -82149,13 +82293,13 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
82149
82293
  userId: string;
82150
82294
  }>, z__default.ZodObject<{
82151
82295
  type: z__default.ZodLiteral<"Figma">;
82152
- renderMode: z__default.ZodEnum<["Image", "HTML"]>;
82296
+ renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
82153
82297
  }, "strip", z__default.ZodTypeAny, {
82154
82298
  type: "Figma";
82155
- renderMode: "Image" | "HTML";
82299
+ renderMode: "Image" | "HTML" | "JSON";
82156
82300
  }, {
82157
82301
  type: "Figma";
82158
- renderMode: "Image" | "HTML";
82302
+ renderMode: "Image" | "HTML" | "JSON";
82159
82303
  }>]>>;
82160
82304
  }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
82161
82305
  id: string;
@@ -82165,7 +82309,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
82165
82309
  userId: string;
82166
82310
  } | {
82167
82311
  type: "Figma";
82168
- renderMode: "Image" | "HTML";
82312
+ renderMode: "Image" | "HTML" | "JSON";
82169
82313
  } | undefined;
82170
82314
  }, {
82171
82315
  id: string;
@@ -82175,7 +82319,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
82175
82319
  userId: string;
82176
82320
  } | {
82177
82321
  type: "Figma";
82178
- renderMode: "Image" | "HTML";
82322
+ renderMode: "Image" | "HTML" | "JSON";
82179
82323
  } | undefined;
82180
82324
  }>, "many">>;
82181
82325
  }, "strip", z__default.ZodTypeAny, {
@@ -82187,7 +82331,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
82187
82331
  userId: string;
82188
82332
  } | {
82189
82333
  type: "Figma";
82190
- renderMode: "Image" | "HTML";
82334
+ renderMode: "Image" | "HTML" | "JSON";
82191
82335
  } | undefined;
82192
82336
  }[] | undefined;
82193
82337
  iterationId?: string | undefined;
@@ -82200,7 +82344,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
82200
82344
  userId: string;
82201
82345
  } | {
82202
82346
  type: "Figma";
82203
- renderMode: "Image" | "HTML";
82347
+ renderMode: "Image" | "HTML" | "JSON";
82204
82348
  } | undefined;
82205
82349
  }[] | undefined;
82206
82350
  iterationId?: string | undefined;
@@ -82466,13 +82610,13 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
82466
82610
  userId: string;
82467
82611
  }>, z__default.ZodObject<{
82468
82612
  type: z__default.ZodLiteral<"Figma">;
82469
- renderMode: z__default.ZodEnum<["Image", "HTML"]>;
82613
+ renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
82470
82614
  }, "strip", z__default.ZodTypeAny, {
82471
82615
  type: "Figma";
82472
- renderMode: "Image" | "HTML";
82616
+ renderMode: "Image" | "HTML" | "JSON";
82473
82617
  }, {
82474
82618
  type: "Figma";
82475
- renderMode: "Image" | "HTML";
82619
+ renderMode: "Image" | "HTML" | "JSON";
82476
82620
  }>]>>;
82477
82621
  }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
82478
82622
  id: string;
@@ -82482,7 +82626,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
82482
82626
  userId: string;
82483
82627
  } | {
82484
82628
  type: "Figma";
82485
- renderMode: "Image" | "HTML";
82629
+ renderMode: "Image" | "HTML" | "JSON";
82486
82630
  } | undefined;
82487
82631
  }, {
82488
82632
  id: string;
@@ -82492,7 +82636,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
82492
82636
  userId: string;
82493
82637
  } | {
82494
82638
  type: "Figma";
82495
- renderMode: "Image" | "HTML";
82639
+ renderMode: "Image" | "HTML" | "JSON";
82496
82640
  } | undefined;
82497
82641
  }>, "many">>;
82498
82642
  }, "strip", z__default.ZodTypeAny, {
@@ -82504,7 +82648,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
82504
82648
  userId: string;
82505
82649
  } | {
82506
82650
  type: "Figma";
82507
- renderMode: "Image" | "HTML";
82651
+ renderMode: "Image" | "HTML" | "JSON";
82508
82652
  } | undefined;
82509
82653
  }[] | undefined;
82510
82654
  iterationId?: string | undefined;
@@ -82517,7 +82661,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
82517
82661
  userId: string;
82518
82662
  } | {
82519
82663
  type: "Figma";
82520
- renderMode: "Image" | "HTML";
82664
+ renderMode: "Image" | "HTML" | "JSON";
82521
82665
  } | undefined;
82522
82666
  }[] | undefined;
82523
82667
  iterationId?: string | undefined;
@@ -82981,13 +83125,13 @@ declare const DTOForgeProjectArtifactCreateInput: z$1.ZodObject<{
82981
83125
  userId: string;
82982
83126
  }>, z$1.ZodObject<{
82983
83127
  type: z$1.ZodLiteral<"Figma">;
82984
- renderMode: z$1.ZodEnum<["Image", "HTML"]>;
83128
+ renderMode: z$1.ZodEnum<["Image", "HTML", "JSON"]>;
82985
83129
  }, "strip", z$1.ZodTypeAny, {
82986
83130
  type: "Figma";
82987
- renderMode: "Image" | "HTML";
83131
+ renderMode: "Image" | "HTML" | "JSON";
82988
83132
  }, {
82989
83133
  type: "Figma";
82990
- renderMode: "Image" | "HTML";
83134
+ renderMode: "Image" | "HTML" | "JSON";
82991
83135
  }>]>>;
82992
83136
  }, "id" | "url" | "source">, "strip", z$1.ZodTypeAny, {
82993
83137
  id: string;
@@ -82997,7 +83141,7 @@ declare const DTOForgeProjectArtifactCreateInput: z$1.ZodObject<{
82997
83141
  userId: string;
82998
83142
  } | {
82999
83143
  type: "Figma";
83000
- renderMode: "Image" | "HTML";
83144
+ renderMode: "Image" | "HTML" | "JSON";
83001
83145
  } | undefined;
83002
83146
  }, {
83003
83147
  id: string;
@@ -83007,7 +83151,7 @@ declare const DTOForgeProjectArtifactCreateInput: z$1.ZodObject<{
83007
83151
  userId: string;
83008
83152
  } | {
83009
83153
  type: "Figma";
83010
- renderMode: "Image" | "HTML";
83154
+ renderMode: "Image" | "HTML" | "JSON";
83011
83155
  } | undefined;
83012
83156
  }>, "many">>;
83013
83157
  }, "strip", z$1.ZodTypeAny, {
@@ -83019,7 +83163,7 @@ declare const DTOForgeProjectArtifactCreateInput: z$1.ZodObject<{
83019
83163
  userId: string;
83020
83164
  } | {
83021
83165
  type: "Figma";
83022
- renderMode: "Image" | "HTML";
83166
+ renderMode: "Image" | "HTML" | "JSON";
83023
83167
  } | undefined;
83024
83168
  }[] | undefined;
83025
83169
  iterationId?: string | undefined;
@@ -83032,7 +83176,7 @@ declare const DTOForgeProjectArtifactCreateInput: z$1.ZodObject<{
83032
83176
  userId: string;
83033
83177
  } | {
83034
83178
  type: "Figma";
83035
- renderMode: "Image" | "HTML";
83179
+ renderMode: "Image" | "HTML" | "JSON";
83036
83180
  } | undefined;
83037
83181
  }[] | undefined;
83038
83182
  iterationId?: string | undefined;
@@ -138300,13 +138444,13 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
138300
138444
  userId: string;
138301
138445
  }>, z__default.ZodObject<{
138302
138446
  type: z__default.ZodLiteral<"Figma">;
138303
- renderMode: z__default.ZodEnum<["Image", "HTML"]>;
138447
+ renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
138304
138448
  }, "strip", z__default.ZodTypeAny, {
138305
138449
  type: "Figma";
138306
- renderMode: "Image" | "HTML";
138450
+ renderMode: "Image" | "HTML" | "JSON";
138307
138451
  }, {
138308
138452
  type: "Figma";
138309
- renderMode: "Image" | "HTML";
138453
+ renderMode: "Image" | "HTML" | "JSON";
138310
138454
  }>]>>;
138311
138455
  }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
138312
138456
  id: string;
@@ -138316,7 +138460,7 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
138316
138460
  userId: string;
138317
138461
  } | {
138318
138462
  type: "Figma";
138319
- renderMode: "Image" | "HTML";
138463
+ renderMode: "Image" | "HTML" | "JSON";
138320
138464
  } | undefined;
138321
138465
  }, {
138322
138466
  id: string;
@@ -138326,7 +138470,7 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
138326
138470
  userId: string;
138327
138471
  } | {
138328
138472
  type: "Figma";
138329
- renderMode: "Image" | "HTML";
138473
+ renderMode: "Image" | "HTML" | "JSON";
138330
138474
  } | undefined;
138331
138475
  }>, "many">>;
138332
138476
  }, "strip", z__default.ZodTypeAny, {
@@ -138338,7 +138482,7 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
138338
138482
  userId: string;
138339
138483
  } | {
138340
138484
  type: "Figma";
138341
- renderMode: "Image" | "HTML";
138485
+ renderMode: "Image" | "HTML" | "JSON";
138342
138486
  } | undefined;
138343
138487
  }[] | undefined;
138344
138488
  iterationId?: string | undefined;
@@ -138351,7 +138495,7 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
138351
138495
  userId: string;
138352
138496
  } | {
138353
138497
  type: "Figma";
138354
- renderMode: "Image" | "HTML";
138498
+ renderMode: "Image" | "HTML" | "JSON";
138355
138499
  } | undefined;
138356
138500
  }[] | undefined;
138357
138501
  iterationId?: string | undefined;
@@ -141056,7 +141200,6 @@ declare const DTOForgeProjectIteration: z$1.ZodObject<Omit<{
141056
141200
  id: string;
141057
141201
  createdAt: Date;
141058
141202
  type: "Note" | "Action" | "Steps";
141059
- text: string;
141060
141203
  projectIterationId: string;
141061
141204
  participantId: string;
141062
141205
  participant: {
@@ -141090,6 +141233,7 @@ declare const DTOForgeProjectIteration: z$1.ZodObject<Omit<{
141090
141233
  } | undefined;
141091
141234
  agentId?: string | undefined;
141092
141235
  };
141236
+ text: string;
141093
141237
  steps?: {
141094
141238
  status: "error" | "pending" | "started" | "completed";
141095
141239
  name: string;
@@ -141099,7 +141243,6 @@ declare const DTOForgeProjectIteration: z$1.ZodObject<Omit<{
141099
141243
  id: string;
141100
141244
  createdAt: Date;
141101
141245
  type: "Note" | "Action" | "Steps";
141102
- text: string;
141103
141246
  projectIterationId: string;
141104
141247
  participantId: string;
141105
141248
  participant: {
@@ -141133,6 +141276,7 @@ declare const DTOForgeProjectIteration: z$1.ZodObject<Omit<{
141133
141276
  } | undefined;
141134
141277
  agentId?: string | undefined;
141135
141278
  };
141279
+ text: string;
141136
141280
  steps?: {
141137
141281
  status: "error" | "pending" | "started" | "completed";
141138
141282
  name: string;
@@ -141195,7 +141339,6 @@ declare const DTOForgeProjectIteration: z$1.ZodObject<Omit<{
141195
141339
  id: string;
141196
141340
  createdAt: Date;
141197
141341
  type: "Note" | "Action" | "Steps";
141198
- text: string;
141199
141342
  projectIterationId: string;
141200
141343
  participantId: string;
141201
141344
  participant: {
@@ -141229,6 +141372,7 @@ declare const DTOForgeProjectIteration: z$1.ZodObject<Omit<{
141229
141372
  } | undefined;
141230
141373
  agentId?: string | undefined;
141231
141374
  };
141375
+ text: string;
141232
141376
  steps?: {
141233
141377
  status: "error" | "pending" | "started" | "completed";
141234
141378
  name: string;
@@ -141290,7 +141434,6 @@ declare const DTOForgeProjectIteration: z$1.ZodObject<Omit<{
141290
141434
  id: string;
141291
141435
  createdAt: Date;
141292
141436
  type: "Note" | "Action" | "Steps";
141293
- text: string;
141294
141437
  projectIterationId: string;
141295
141438
  participantId: string;
141296
141439
  participant: {
@@ -141324,6 +141467,7 @@ declare const DTOForgeProjectIteration: z$1.ZodObject<Omit<{
141324
141467
  } | undefined;
141325
141468
  agentId?: string | undefined;
141326
141469
  };
141470
+ text: string;
141327
141471
  steps?: {
141328
141472
  status: "error" | "pending" | "started" | "completed";
141329
141473
  name: string;
@@ -143258,7 +143402,6 @@ declare const DTOForgeProjectIterationListResponse: z$1.ZodObject<{
143258
143402
  id: string;
143259
143403
  createdAt: Date;
143260
143404
  type: "Note" | "Action" | "Steps";
143261
- text: string;
143262
143405
  projectIterationId: string;
143263
143406
  participantId: string;
143264
143407
  participant: {
@@ -143292,6 +143435,7 @@ declare const DTOForgeProjectIterationListResponse: z$1.ZodObject<{
143292
143435
  } | undefined;
143293
143436
  agentId?: string | undefined;
143294
143437
  };
143438
+ text: string;
143295
143439
  steps?: {
143296
143440
  status: "error" | "pending" | "started" | "completed";
143297
143441
  name: string;
@@ -143301,7 +143445,6 @@ declare const DTOForgeProjectIterationListResponse: z$1.ZodObject<{
143301
143445
  id: string;
143302
143446
  createdAt: Date;
143303
143447
  type: "Note" | "Action" | "Steps";
143304
- text: string;
143305
143448
  projectIterationId: string;
143306
143449
  participantId: string;
143307
143450
  participant: {
@@ -143335,6 +143478,7 @@ declare const DTOForgeProjectIterationListResponse: z$1.ZodObject<{
143335
143478
  } | undefined;
143336
143479
  agentId?: string | undefined;
143337
143480
  };
143481
+ text: string;
143338
143482
  steps?: {
143339
143483
  status: "error" | "pending" | "started" | "completed";
143340
143484
  name: string;
@@ -143397,7 +143541,6 @@ declare const DTOForgeProjectIterationListResponse: z$1.ZodObject<{
143397
143541
  id: string;
143398
143542
  createdAt: Date;
143399
143543
  type: "Note" | "Action" | "Steps";
143400
- text: string;
143401
143544
  projectIterationId: string;
143402
143545
  participantId: string;
143403
143546
  participant: {
@@ -143431,6 +143574,7 @@ declare const DTOForgeProjectIterationListResponse: z$1.ZodObject<{
143431
143574
  } | undefined;
143432
143575
  agentId?: string | undefined;
143433
143576
  };
143577
+ text: string;
143434
143578
  steps?: {
143435
143579
  status: "error" | "pending" | "started" | "completed";
143436
143580
  name: string;
@@ -143492,7 +143636,6 @@ declare const DTOForgeProjectIterationListResponse: z$1.ZodObject<{
143492
143636
  id: string;
143493
143637
  createdAt: Date;
143494
143638
  type: "Note" | "Action" | "Steps";
143495
- text: string;
143496
143639
  projectIterationId: string;
143497
143640
  participantId: string;
143498
143641
  participant: {
@@ -143526,6 +143669,7 @@ declare const DTOForgeProjectIterationListResponse: z$1.ZodObject<{
143526
143669
  } | undefined;
143527
143670
  agentId?: string | undefined;
143528
143671
  };
143672
+ text: string;
143529
143673
  steps?: {
143530
143674
  status: "error" | "pending" | "started" | "completed";
143531
143675
  name: string;
@@ -143589,7 +143733,6 @@ declare const DTOForgeProjectIterationListResponse: z$1.ZodObject<{
143589
143733
  id: string;
143590
143734
  createdAt: Date;
143591
143735
  type: "Note" | "Action" | "Steps";
143592
- text: string;
143593
143736
  projectIterationId: string;
143594
143737
  participantId: string;
143595
143738
  participant: {
@@ -143623,6 +143766,7 @@ declare const DTOForgeProjectIterationListResponse: z$1.ZodObject<{
143623
143766
  } | undefined;
143624
143767
  agentId?: string | undefined;
143625
143768
  };
143769
+ text: string;
143626
143770
  steps?: {
143627
143771
  status: "error" | "pending" | "started" | "completed";
143628
143772
  name: string;
@@ -143686,7 +143830,6 @@ declare const DTOForgeProjectIterationListResponse: z$1.ZodObject<{
143686
143830
  id: string;
143687
143831
  createdAt: Date;
143688
143832
  type: "Note" | "Action" | "Steps";
143689
- text: string;
143690
143833
  projectIterationId: string;
143691
143834
  participantId: string;
143692
143835
  participant: {
@@ -143720,6 +143863,7 @@ declare const DTOForgeProjectIterationListResponse: z$1.ZodObject<{
143720
143863
  } | undefined;
143721
143864
  agentId?: string | undefined;
143722
143865
  };
143866
+ text: string;
143723
143867
  steps?: {
143724
143868
  status: "error" | "pending" | "started" | "completed";
143725
143869
  name: string;
@@ -145655,7 +145799,6 @@ declare const DTOGetForgeProjectIterationResponse: z$1.ZodObject<{
145655
145799
  id: string;
145656
145800
  createdAt: Date;
145657
145801
  type: "Note" | "Action" | "Steps";
145658
- text: string;
145659
145802
  projectIterationId: string;
145660
145803
  participantId: string;
145661
145804
  participant: {
@@ -145689,6 +145832,7 @@ declare const DTOGetForgeProjectIterationResponse: z$1.ZodObject<{
145689
145832
  } | undefined;
145690
145833
  agentId?: string | undefined;
145691
145834
  };
145835
+ text: string;
145692
145836
  steps?: {
145693
145837
  status: "error" | "pending" | "started" | "completed";
145694
145838
  name: string;
@@ -145698,7 +145842,6 @@ declare const DTOGetForgeProjectIterationResponse: z$1.ZodObject<{
145698
145842
  id: string;
145699
145843
  createdAt: Date;
145700
145844
  type: "Note" | "Action" | "Steps";
145701
- text: string;
145702
145845
  projectIterationId: string;
145703
145846
  participantId: string;
145704
145847
  participant: {
@@ -145732,6 +145875,7 @@ declare const DTOGetForgeProjectIterationResponse: z$1.ZodObject<{
145732
145875
  } | undefined;
145733
145876
  agentId?: string | undefined;
145734
145877
  };
145878
+ text: string;
145735
145879
  steps?: {
145736
145880
  status: "error" | "pending" | "started" | "completed";
145737
145881
  name: string;
@@ -145794,7 +145938,6 @@ declare const DTOGetForgeProjectIterationResponse: z$1.ZodObject<{
145794
145938
  id: string;
145795
145939
  createdAt: Date;
145796
145940
  type: "Note" | "Action" | "Steps";
145797
- text: string;
145798
145941
  projectIterationId: string;
145799
145942
  participantId: string;
145800
145943
  participant: {
@@ -145828,6 +145971,7 @@ declare const DTOGetForgeProjectIterationResponse: z$1.ZodObject<{
145828
145971
  } | undefined;
145829
145972
  agentId?: string | undefined;
145830
145973
  };
145974
+ text: string;
145831
145975
  steps?: {
145832
145976
  status: "error" | "pending" | "started" | "completed";
145833
145977
  name: string;
@@ -145889,7 +146033,6 @@ declare const DTOGetForgeProjectIterationResponse: z$1.ZodObject<{
145889
146033
  id: string;
145890
146034
  createdAt: Date;
145891
146035
  type: "Note" | "Action" | "Steps";
145892
- text: string;
145893
146036
  projectIterationId: string;
145894
146037
  participantId: string;
145895
146038
  participant: {
@@ -145923,6 +146066,7 @@ declare const DTOGetForgeProjectIterationResponse: z$1.ZodObject<{
145923
146066
  } | undefined;
145924
146067
  agentId?: string | undefined;
145925
146068
  };
146069
+ text: string;
145926
146070
  steps?: {
145927
146071
  status: "error" | "pending" | "started" | "completed";
145928
146072
  name: string;
@@ -145986,7 +146130,6 @@ declare const DTOGetForgeProjectIterationResponse: z$1.ZodObject<{
145986
146130
  id: string;
145987
146131
  createdAt: Date;
145988
146132
  type: "Note" | "Action" | "Steps";
145989
- text: string;
145990
146133
  projectIterationId: string;
145991
146134
  participantId: string;
145992
146135
  participant: {
@@ -146020,6 +146163,7 @@ declare const DTOGetForgeProjectIterationResponse: z$1.ZodObject<{
146020
146163
  } | undefined;
146021
146164
  agentId?: string | undefined;
146022
146165
  };
146166
+ text: string;
146023
146167
  steps?: {
146024
146168
  status: "error" | "pending" | "started" | "completed";
146025
146169
  name: string;
@@ -146083,7 +146227,6 @@ declare const DTOGetForgeProjectIterationResponse: z$1.ZodObject<{
146083
146227
  id: string;
146084
146228
  createdAt: Date;
146085
146229
  type: "Note" | "Action" | "Steps";
146086
- text: string;
146087
146230
  projectIterationId: string;
146088
146231
  participantId: string;
146089
146232
  participant: {
@@ -146117,6 +146260,7 @@ declare const DTOGetForgeProjectIterationResponse: z$1.ZodObject<{
146117
146260
  } | undefined;
146118
146261
  agentId?: string | undefined;
146119
146262
  };
146263
+ text: string;
146120
146264
  steps?: {
146121
146265
  status: "error" | "pending" | "started" | "completed";
146122
146266
  name: string;
@@ -148051,7 +148195,6 @@ declare const DTOCreateForgeProjectIteration: z$1.ZodObject<Omit<Omit<{
148051
148195
  id: string;
148052
148196
  createdAt: Date;
148053
148197
  type: "Note" | "Action" | "Steps";
148054
- text: string;
148055
148198
  projectIterationId: string;
148056
148199
  participantId: string;
148057
148200
  participant: {
@@ -148085,6 +148228,7 @@ declare const DTOCreateForgeProjectIteration: z$1.ZodObject<Omit<Omit<{
148085
148228
  } | undefined;
148086
148229
  agentId?: string | undefined;
148087
148230
  };
148231
+ text: string;
148088
148232
  steps?: {
148089
148233
  status: "error" | "pending" | "started" | "completed";
148090
148234
  name: string;
@@ -148094,7 +148238,6 @@ declare const DTOCreateForgeProjectIteration: z$1.ZodObject<Omit<Omit<{
148094
148238
  id: string;
148095
148239
  createdAt: Date;
148096
148240
  type: "Note" | "Action" | "Steps";
148097
- text: string;
148098
148241
  projectIterationId: string;
148099
148242
  participantId: string;
148100
148243
  participant: {
@@ -148128,6 +148271,7 @@ declare const DTOCreateForgeProjectIteration: z$1.ZodObject<Omit<Omit<{
148128
148271
  } | undefined;
148129
148272
  agentId?: string | undefined;
148130
148273
  };
148274
+ text: string;
148131
148275
  steps?: {
148132
148276
  status: "error" | "pending" | "started" | "completed";
148133
148277
  name: string;
@@ -150096,7 +150240,6 @@ declare const DTOCreateForgeProjectIterationResponse: z$1.ZodObject<{
150096
150240
  id: string;
150097
150241
  createdAt: Date;
150098
150242
  type: "Note" | "Action" | "Steps";
150099
- text: string;
150100
150243
  projectIterationId: string;
150101
150244
  participantId: string;
150102
150245
  participant: {
@@ -150130,6 +150273,7 @@ declare const DTOCreateForgeProjectIterationResponse: z$1.ZodObject<{
150130
150273
  } | undefined;
150131
150274
  agentId?: string | undefined;
150132
150275
  };
150276
+ text: string;
150133
150277
  steps?: {
150134
150278
  status: "error" | "pending" | "started" | "completed";
150135
150279
  name: string;
@@ -150139,7 +150283,6 @@ declare const DTOCreateForgeProjectIterationResponse: z$1.ZodObject<{
150139
150283
  id: string;
150140
150284
  createdAt: Date;
150141
150285
  type: "Note" | "Action" | "Steps";
150142
- text: string;
150143
150286
  projectIterationId: string;
150144
150287
  participantId: string;
150145
150288
  participant: {
@@ -150173,6 +150316,7 @@ declare const DTOCreateForgeProjectIterationResponse: z$1.ZodObject<{
150173
150316
  } | undefined;
150174
150317
  agentId?: string | undefined;
150175
150318
  };
150319
+ text: string;
150176
150320
  steps?: {
150177
150321
  status: "error" | "pending" | "started" | "completed";
150178
150322
  name: string;
@@ -150235,7 +150379,6 @@ declare const DTOCreateForgeProjectIterationResponse: z$1.ZodObject<{
150235
150379
  id: string;
150236
150380
  createdAt: Date;
150237
150381
  type: "Note" | "Action" | "Steps";
150238
- text: string;
150239
150382
  projectIterationId: string;
150240
150383
  participantId: string;
150241
150384
  participant: {
@@ -150269,6 +150412,7 @@ declare const DTOCreateForgeProjectIterationResponse: z$1.ZodObject<{
150269
150412
  } | undefined;
150270
150413
  agentId?: string | undefined;
150271
150414
  };
150415
+ text: string;
150272
150416
  steps?: {
150273
150417
  status: "error" | "pending" | "started" | "completed";
150274
150418
  name: string;
@@ -150330,7 +150474,6 @@ declare const DTOCreateForgeProjectIterationResponse: z$1.ZodObject<{
150330
150474
  id: string;
150331
150475
  createdAt: Date;
150332
150476
  type: "Note" | "Action" | "Steps";
150333
- text: string;
150334
150477
  projectIterationId: string;
150335
150478
  participantId: string;
150336
150479
  participant: {
@@ -150364,6 +150507,7 @@ declare const DTOCreateForgeProjectIterationResponse: z$1.ZodObject<{
150364
150507
  } | undefined;
150365
150508
  agentId?: string | undefined;
150366
150509
  };
150510
+ text: string;
150367
150511
  steps?: {
150368
150512
  status: "error" | "pending" | "started" | "completed";
150369
150513
  name: string;
@@ -150427,7 +150571,6 @@ declare const DTOCreateForgeProjectIterationResponse: z$1.ZodObject<{
150427
150571
  id: string;
150428
150572
  createdAt: Date;
150429
150573
  type: "Note" | "Action" | "Steps";
150430
- text: string;
150431
150574
  projectIterationId: string;
150432
150575
  participantId: string;
150433
150576
  participant: {
@@ -150461,6 +150604,7 @@ declare const DTOCreateForgeProjectIterationResponse: z$1.ZodObject<{
150461
150604
  } | undefined;
150462
150605
  agentId?: string | undefined;
150463
150606
  };
150607
+ text: string;
150464
150608
  steps?: {
150465
150609
  status: "error" | "pending" | "started" | "completed";
150466
150610
  name: string;
@@ -150524,7 +150668,6 @@ declare const DTOCreateForgeProjectIterationResponse: z$1.ZodObject<{
150524
150668
  id: string;
150525
150669
  createdAt: Date;
150526
150670
  type: "Note" | "Action" | "Steps";
150527
- text: string;
150528
150671
  projectIterationId: string;
150529
150672
  participantId: string;
150530
150673
  participant: {
@@ -150558,6 +150701,7 @@ declare const DTOCreateForgeProjectIterationResponse: z$1.ZodObject<{
150558
150701
  } | undefined;
150559
150702
  agentId?: string | undefined;
150560
150703
  };
150704
+ text: string;
150561
150705
  steps?: {
150562
150706
  status: "error" | "pending" | "started" | "completed";
150563
150707
  name: string;
@@ -152493,7 +152637,6 @@ declare const DTOUpdateForgeProjectIterationResponse: z$1.ZodObject<{
152493
152637
  id: string;
152494
152638
  createdAt: Date;
152495
152639
  type: "Note" | "Action" | "Steps";
152496
- text: string;
152497
152640
  projectIterationId: string;
152498
152641
  participantId: string;
152499
152642
  participant: {
@@ -152527,6 +152670,7 @@ declare const DTOUpdateForgeProjectIterationResponse: z$1.ZodObject<{
152527
152670
  } | undefined;
152528
152671
  agentId?: string | undefined;
152529
152672
  };
152673
+ text: string;
152530
152674
  steps?: {
152531
152675
  status: "error" | "pending" | "started" | "completed";
152532
152676
  name: string;
@@ -152536,7 +152680,6 @@ declare const DTOUpdateForgeProjectIterationResponse: z$1.ZodObject<{
152536
152680
  id: string;
152537
152681
  createdAt: Date;
152538
152682
  type: "Note" | "Action" | "Steps";
152539
- text: string;
152540
152683
  projectIterationId: string;
152541
152684
  participantId: string;
152542
152685
  participant: {
@@ -152570,6 +152713,7 @@ declare const DTOUpdateForgeProjectIterationResponse: z$1.ZodObject<{
152570
152713
  } | undefined;
152571
152714
  agentId?: string | undefined;
152572
152715
  };
152716
+ text: string;
152573
152717
  steps?: {
152574
152718
  status: "error" | "pending" | "started" | "completed";
152575
152719
  name: string;
@@ -152632,7 +152776,6 @@ declare const DTOUpdateForgeProjectIterationResponse: z$1.ZodObject<{
152632
152776
  id: string;
152633
152777
  createdAt: Date;
152634
152778
  type: "Note" | "Action" | "Steps";
152635
- text: string;
152636
152779
  projectIterationId: string;
152637
152780
  participantId: string;
152638
152781
  participant: {
@@ -152666,6 +152809,7 @@ declare const DTOUpdateForgeProjectIterationResponse: z$1.ZodObject<{
152666
152809
  } | undefined;
152667
152810
  agentId?: string | undefined;
152668
152811
  };
152812
+ text: string;
152669
152813
  steps?: {
152670
152814
  status: "error" | "pending" | "started" | "completed";
152671
152815
  name: string;
@@ -152727,7 +152871,6 @@ declare const DTOUpdateForgeProjectIterationResponse: z$1.ZodObject<{
152727
152871
  id: string;
152728
152872
  createdAt: Date;
152729
152873
  type: "Note" | "Action" | "Steps";
152730
- text: string;
152731
152874
  projectIterationId: string;
152732
152875
  participantId: string;
152733
152876
  participant: {
@@ -152761,6 +152904,7 @@ declare const DTOUpdateForgeProjectIterationResponse: z$1.ZodObject<{
152761
152904
  } | undefined;
152762
152905
  agentId?: string | undefined;
152763
152906
  };
152907
+ text: string;
152764
152908
  steps?: {
152765
152909
  status: "error" | "pending" | "started" | "completed";
152766
152910
  name: string;
@@ -152824,7 +152968,6 @@ declare const DTOUpdateForgeProjectIterationResponse: z$1.ZodObject<{
152824
152968
  id: string;
152825
152969
  createdAt: Date;
152826
152970
  type: "Note" | "Action" | "Steps";
152827
- text: string;
152828
152971
  projectIterationId: string;
152829
152972
  participantId: string;
152830
152973
  participant: {
@@ -152858,6 +153001,7 @@ declare const DTOUpdateForgeProjectIterationResponse: z$1.ZodObject<{
152858
153001
  } | undefined;
152859
153002
  agentId?: string | undefined;
152860
153003
  };
153004
+ text: string;
152861
153005
  steps?: {
152862
153006
  status: "error" | "pending" | "started" | "completed";
152863
153007
  name: string;
@@ -152921,7 +153065,6 @@ declare const DTOUpdateForgeProjectIterationResponse: z$1.ZodObject<{
152921
153065
  id: string;
152922
153066
  createdAt: Date;
152923
153067
  type: "Note" | "Action" | "Steps";
152924
- text: string;
152925
153068
  projectIterationId: string;
152926
153069
  participantId: string;
152927
153070
  participant: {
@@ -152955,6 +153098,7 @@ declare const DTOUpdateForgeProjectIterationResponse: z$1.ZodObject<{
152955
153098
  } | undefined;
152956
153099
  agentId?: string | undefined;
152957
153100
  };
153101
+ text: string;
152958
153102
  steps?: {
152959
153103
  status: "error" | "pending" | "started" | "completed";
152960
153104
  name: string;
@@ -173119,13 +173263,13 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
173119
173263
  userId: string;
173120
173264
  }>, z$1.ZodObject<{
173121
173265
  type: z$1.ZodLiteral<"Figma">;
173122
- renderMode: z$1.ZodEnum<["Image", "HTML"]>;
173266
+ renderMode: z$1.ZodEnum<["Image", "HTML", "JSON"]>;
173123
173267
  }, "strip", z$1.ZodTypeAny, {
173124
173268
  type: "Figma";
173125
- renderMode: "Image" | "HTML";
173269
+ renderMode: "Image" | "HTML" | "JSON";
173126
173270
  }, {
173127
173271
  type: "Figma";
173128
- renderMode: "Image" | "HTML";
173272
+ renderMode: "Image" | "HTML" | "JSON";
173129
173273
  }>]>>;
173130
173274
  }, "id" | "url" | "source">, "strip", z$1.ZodTypeAny, {
173131
173275
  id: string;
@@ -173135,7 +173279,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
173135
173279
  userId: string;
173136
173280
  } | {
173137
173281
  type: "Figma";
173138
- renderMode: "Image" | "HTML";
173282
+ renderMode: "Image" | "HTML" | "JSON";
173139
173283
  } | undefined;
173140
173284
  }, {
173141
173285
  id: string;
@@ -173145,7 +173289,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
173145
173289
  userId: string;
173146
173290
  } | {
173147
173291
  type: "Figma";
173148
- renderMode: "Image" | "HTML";
173292
+ renderMode: "Image" | "HTML" | "JSON";
173149
173293
  } | undefined;
173150
173294
  }>, "many">>;
173151
173295
  }, "strip", z$1.ZodTypeAny, {
@@ -173157,7 +173301,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
173157
173301
  userId: string;
173158
173302
  } | {
173159
173303
  type: "Figma";
173160
- renderMode: "Image" | "HTML";
173304
+ renderMode: "Image" | "HTML" | "JSON";
173161
173305
  } | undefined;
173162
173306
  }[] | undefined;
173163
173307
  iterationId?: string | undefined;
@@ -173170,7 +173314,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
173170
173314
  userId: string;
173171
173315
  } | {
173172
173316
  type: "Figma";
173173
- renderMode: "Image" | "HTML";
173317
+ renderMode: "Image" | "HTML" | "JSON";
173174
173318
  } | undefined;
173175
173319
  }[] | undefined;
173176
173320
  iterationId?: string | undefined;
@@ -173307,13 +173451,13 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
173307
173451
  userId: string;
173308
173452
  }>, z$1.ZodObject<{
173309
173453
  type: z$1.ZodLiteral<"Figma">;
173310
- renderMode: z$1.ZodEnum<["Image", "HTML"]>;
173454
+ renderMode: z$1.ZodEnum<["Image", "HTML", "JSON"]>;
173311
173455
  }, "strip", z$1.ZodTypeAny, {
173312
173456
  type: "Figma";
173313
- renderMode: "Image" | "HTML";
173457
+ renderMode: "Image" | "HTML" | "JSON";
173314
173458
  }, {
173315
173459
  type: "Figma";
173316
- renderMode: "Image" | "HTML";
173460
+ renderMode: "Image" | "HTML" | "JSON";
173317
173461
  }>]>>;
173318
173462
  }, "id" | "url" | "source">, "strip", z$1.ZodTypeAny, {
173319
173463
  id: string;
@@ -173323,7 +173467,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
173323
173467
  userId: string;
173324
173468
  } | {
173325
173469
  type: "Figma";
173326
- renderMode: "Image" | "HTML";
173470
+ renderMode: "Image" | "HTML" | "JSON";
173327
173471
  } | undefined;
173328
173472
  }, {
173329
173473
  id: string;
@@ -173333,7 +173477,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
173333
173477
  userId: string;
173334
173478
  } | {
173335
173479
  type: "Figma";
173336
- renderMode: "Image" | "HTML";
173480
+ renderMode: "Image" | "HTML" | "JSON";
173337
173481
  } | undefined;
173338
173482
  }>, "many">>;
173339
173483
  }, "strip", z$1.ZodTypeAny, {
@@ -173345,7 +173489,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
173345
173489
  userId: string;
173346
173490
  } | {
173347
173491
  type: "Figma";
173348
- renderMode: "Image" | "HTML";
173492
+ renderMode: "Image" | "HTML" | "JSON";
173349
173493
  } | undefined;
173350
173494
  }[] | undefined;
173351
173495
  iterationId?: string | undefined;
@@ -173358,7 +173502,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
173358
173502
  userId: string;
173359
173503
  } | {
173360
173504
  type: "Figma";
173361
- renderMode: "Image" | "HTML";
173505
+ renderMode: "Image" | "HTML" | "JSON";
173362
173506
  } | undefined;
173363
173507
  }[] | undefined;
173364
173508
  iterationId?: string | undefined;
@@ -173624,13 +173768,13 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
173624
173768
  userId: string;
173625
173769
  }>, z$1.ZodObject<{
173626
173770
  type: z$1.ZodLiteral<"Figma">;
173627
- renderMode: z$1.ZodEnum<["Image", "HTML"]>;
173771
+ renderMode: z$1.ZodEnum<["Image", "HTML", "JSON"]>;
173628
173772
  }, "strip", z$1.ZodTypeAny, {
173629
173773
  type: "Figma";
173630
- renderMode: "Image" | "HTML";
173774
+ renderMode: "Image" | "HTML" | "JSON";
173631
173775
  }, {
173632
173776
  type: "Figma";
173633
- renderMode: "Image" | "HTML";
173777
+ renderMode: "Image" | "HTML" | "JSON";
173634
173778
  }>]>>;
173635
173779
  }, "id" | "url" | "source">, "strip", z$1.ZodTypeAny, {
173636
173780
  id: string;
@@ -173640,7 +173784,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
173640
173784
  userId: string;
173641
173785
  } | {
173642
173786
  type: "Figma";
173643
- renderMode: "Image" | "HTML";
173787
+ renderMode: "Image" | "HTML" | "JSON";
173644
173788
  } | undefined;
173645
173789
  }, {
173646
173790
  id: string;
@@ -173650,7 +173794,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
173650
173794
  userId: string;
173651
173795
  } | {
173652
173796
  type: "Figma";
173653
- renderMode: "Image" | "HTML";
173797
+ renderMode: "Image" | "HTML" | "JSON";
173654
173798
  } | undefined;
173655
173799
  }>, "many">>;
173656
173800
  }, "strip", z$1.ZodTypeAny, {
@@ -173662,7 +173806,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
173662
173806
  userId: string;
173663
173807
  } | {
173664
173808
  type: "Figma";
173665
- renderMode: "Image" | "HTML";
173809
+ renderMode: "Image" | "HTML" | "JSON";
173666
173810
  } | undefined;
173667
173811
  }[] | undefined;
173668
173812
  iterationId?: string | undefined;
@@ -173675,7 +173819,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
173675
173819
  userId: string;
173676
173820
  } | {
173677
173821
  type: "Figma";
173678
- renderMode: "Image" | "HTML";
173822
+ renderMode: "Image" | "HTML" | "JSON";
173679
173823
  } | undefined;
173680
173824
  }[] | undefined;
173681
173825
  iterationId?: string | undefined;
@@ -173812,13 +173956,13 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
173812
173956
  userId: string;
173813
173957
  }>, z$1.ZodObject<{
173814
173958
  type: z$1.ZodLiteral<"Figma">;
173815
- renderMode: z$1.ZodEnum<["Image", "HTML"]>;
173959
+ renderMode: z$1.ZodEnum<["Image", "HTML", "JSON"]>;
173816
173960
  }, "strip", z$1.ZodTypeAny, {
173817
173961
  type: "Figma";
173818
- renderMode: "Image" | "HTML";
173962
+ renderMode: "Image" | "HTML" | "JSON";
173819
173963
  }, {
173820
173964
  type: "Figma";
173821
- renderMode: "Image" | "HTML";
173965
+ renderMode: "Image" | "HTML" | "JSON";
173822
173966
  }>]>>;
173823
173967
  }, "id" | "url" | "source">, "strip", z$1.ZodTypeAny, {
173824
173968
  id: string;
@@ -173828,7 +173972,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
173828
173972
  userId: string;
173829
173973
  } | {
173830
173974
  type: "Figma";
173831
- renderMode: "Image" | "HTML";
173975
+ renderMode: "Image" | "HTML" | "JSON";
173832
173976
  } | undefined;
173833
173977
  }, {
173834
173978
  id: string;
@@ -173838,7 +173982,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
173838
173982
  userId: string;
173839
173983
  } | {
173840
173984
  type: "Figma";
173841
- renderMode: "Image" | "HTML";
173985
+ renderMode: "Image" | "HTML" | "JSON";
173842
173986
  } | undefined;
173843
173987
  }>, "many">>;
173844
173988
  }, "strip", z$1.ZodTypeAny, {
@@ -173850,7 +173994,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
173850
173994
  userId: string;
173851
173995
  } | {
173852
173996
  type: "Figma";
173853
- renderMode: "Image" | "HTML";
173997
+ renderMode: "Image" | "HTML" | "JSON";
173854
173998
  } | undefined;
173855
173999
  }[] | undefined;
173856
174000
  iterationId?: string | undefined;
@@ -173863,7 +174007,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
173863
174007
  userId: string;
173864
174008
  } | {
173865
174009
  type: "Figma";
173866
- renderMode: "Image" | "HTML";
174010
+ renderMode: "Image" | "HTML" | "JSON";
173867
174011
  } | undefined;
173868
174012
  }[] | undefined;
173869
174013
  iterationId?: string | undefined;
@@ -173938,6 +174082,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
173938
174082
  }>>>;
173939
174083
  } & {
173940
174084
  id: z$1.ZodString;
174085
+ isArchived: z$1.ZodOptional<z$1.ZodBoolean>;
173941
174086
  }, "strip", z$1.ZodTypeAny, {
173942
174087
  id: string;
173943
174088
  name?: string | undefined;
@@ -173949,6 +174094,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
173949
174094
  emoji?: string | undefined;
173950
174095
  tags?: string[] | undefined;
173951
174096
  accessMode?: "Open" | "InviteOnly" | "Unlisted" | undefined;
174097
+ isArchived?: boolean | undefined;
173952
174098
  projectContextId?: string | undefined;
173953
174099
  instruction?: string | null | undefined;
173954
174100
  defaultRole?: "Viewer" | "Builder" | undefined;
@@ -173999,6 +174145,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
173999
174145
  emoji?: string | undefined;
174000
174146
  tags?: string[] | undefined;
174001
174147
  accessMode?: "Open" | "InviteOnly" | "Unlisted" | undefined;
174148
+ isArchived?: boolean | undefined;
174002
174149
  projectContextId?: string | undefined;
174003
174150
  instruction?: string | null | undefined;
174004
174151
  defaultRole?: "Viewer" | "Builder" | undefined;
@@ -182618,6 +182765,8 @@ declare const DTOForgeProjectResponse: z$1.ZodObject<{
182618
182765
  additionalContext?: string | undefined;
182619
182766
  themePreset?: "Default" | "Airbnb" | "Spotify" | "Windows98" | undefined;
182620
182767
  }>;
182768
+ } & {
182769
+ effectiveRole: z$1.ZodEnum<["Viewer", "Builder", "Admin"]>;
182621
182770
  }, "strip", z$1.ZodTypeAny, {
182622
182771
  id: string;
182623
182772
  createdAt: Date;
@@ -182630,6 +182779,7 @@ declare const DTOForgeProjectResponse: z$1.ZodObject<{
182630
182779
  updatedAt: Date;
182631
182780
  workspaceId: string;
182632
182781
  accessMode: "Open" | "InviteOnly" | "Unlisted";
182782
+ effectiveRole: "Admin" | "Viewer" | "Builder";
182633
182783
  context: {
182634
182784
  id: string;
182635
182785
  createdAt: Date;
@@ -183617,6 +183767,7 @@ declare const DTOForgeProjectResponse: z$1.ZodObject<{
183617
183767
  updatedAt: Date;
183618
183768
  workspaceId: string;
183619
183769
  accessMode: "Open" | "InviteOnly" | "Unlisted";
183770
+ effectiveRole: "Admin" | "Viewer" | "Builder";
183620
183771
  context: {
183621
183772
  id: string;
183622
183773
  createdAt: Date;
@@ -184608,6 +184759,7 @@ declare const DTOForgeProjectResponse: z$1.ZodObject<{
184608
184759
  updatedAt: Date;
184609
184760
  workspaceId: string;
184610
184761
  accessMode: "Open" | "InviteOnly" | "Unlisted";
184762
+ effectiveRole: "Admin" | "Viewer" | "Builder";
184611
184763
  context: {
184612
184764
  id: string;
184613
184765
  createdAt: Date;
@@ -185597,6 +185749,7 @@ declare const DTOForgeProjectResponse: z$1.ZodObject<{
185597
185749
  updatedAt: Date;
185598
185750
  workspaceId: string;
185599
185751
  accessMode: "Open" | "InviteOnly" | "Unlisted";
185752
+ effectiveRole: "Admin" | "Viewer" | "Builder";
185600
185753
  context: {
185601
185754
  id: string;
185602
185755
  createdAt: Date;
@@ -219017,13 +219170,13 @@ declare const DTOThreadMessage: z__default.ZodObject<{
219017
219170
  userId: string;
219018
219171
  }>, z__default.ZodObject<{
219019
219172
  type: z__default.ZodLiteral<"Figma">;
219020
- renderMode: z__default.ZodEnum<["Image", "HTML"]>;
219173
+ renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
219021
219174
  }, "strip", z__default.ZodTypeAny, {
219022
219175
  type: "Figma";
219023
- renderMode: "Image" | "HTML";
219176
+ renderMode: "Image" | "HTML" | "JSON";
219024
219177
  }, {
219025
219178
  type: "Figma";
219026
- renderMode: "Image" | "HTML";
219179
+ renderMode: "Image" | "HTML" | "JSON";
219027
219180
  }>]>>;
219028
219181
  }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
219029
219182
  id: string;
@@ -219033,7 +219186,7 @@ declare const DTOThreadMessage: z__default.ZodObject<{
219033
219186
  userId: string;
219034
219187
  } | {
219035
219188
  type: "Figma";
219036
- renderMode: "Image" | "HTML";
219189
+ renderMode: "Image" | "HTML" | "JSON";
219037
219190
  } | undefined;
219038
219191
  }, {
219039
219192
  id: string;
@@ -219043,7 +219196,7 @@ declare const DTOThreadMessage: z__default.ZodObject<{
219043
219196
  userId: string;
219044
219197
  } | {
219045
219198
  type: "Figma";
219046
- renderMode: "Image" | "HTML";
219199
+ renderMode: "Image" | "HTML" | "JSON";
219047
219200
  } | undefined;
219048
219201
  }>, "many">>;
219049
219202
  }, "strip", z__default.ZodTypeAny, {
@@ -219055,7 +219208,7 @@ declare const DTOThreadMessage: z__default.ZodObject<{
219055
219208
  userId: string;
219056
219209
  } | {
219057
219210
  type: "Figma";
219058
- renderMode: "Image" | "HTML";
219211
+ renderMode: "Image" | "HTML" | "JSON";
219059
219212
  } | undefined;
219060
219213
  }[] | undefined;
219061
219214
  iterationId?: string | undefined;
@@ -219068,7 +219221,7 @@ declare const DTOThreadMessage: z__default.ZodObject<{
219068
219221
  userId: string;
219069
219222
  } | {
219070
219223
  type: "Figma";
219071
- renderMode: "Image" | "HTML";
219224
+ renderMode: "Image" | "HTML" | "JSON";
219072
219225
  } | undefined;
219073
219226
  }[] | undefined;
219074
219227
  iterationId?: string | undefined;
@@ -219108,7 +219261,7 @@ declare const DTOThreadMessage: z__default.ZodObject<{
219108
219261
  userId: string;
219109
219262
  } | {
219110
219263
  type: "Figma";
219111
- renderMode: "Image" | "HTML";
219264
+ renderMode: "Image" | "HTML" | "JSON";
219112
219265
  } | undefined;
219113
219266
  }[] | undefined;
219114
219267
  iterationId?: string | undefined;
@@ -219143,7 +219296,7 @@ declare const DTOThreadMessage: z__default.ZodObject<{
219143
219296
  userId: string;
219144
219297
  } | {
219145
219298
  type: "Figma";
219146
- renderMode: "Image" | "HTML";
219299
+ renderMode: "Image" | "HTML" | "JSON";
219147
219300
  } | undefined;
219148
219301
  }[] | undefined;
219149
219302
  iterationId?: string | undefined;
@@ -219172,13 +219325,13 @@ declare const DTOThreadMessageAttachments: z__default.ZodObject<{
219172
219325
  userId: string;
219173
219326
  }>, z__default.ZodObject<{
219174
219327
  type: z__default.ZodLiteral<"Figma">;
219175
- renderMode: z__default.ZodEnum<["Image", "HTML"]>;
219328
+ renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
219176
219329
  }, "strip", z__default.ZodTypeAny, {
219177
219330
  type: "Figma";
219178
- renderMode: "Image" | "HTML";
219331
+ renderMode: "Image" | "HTML" | "JSON";
219179
219332
  }, {
219180
219333
  type: "Figma";
219181
- renderMode: "Image" | "HTML";
219334
+ renderMode: "Image" | "HTML" | "JSON";
219182
219335
  }>]>>;
219183
219336
  }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
219184
219337
  id: string;
@@ -219188,7 +219341,7 @@ declare const DTOThreadMessageAttachments: z__default.ZodObject<{
219188
219341
  userId: string;
219189
219342
  } | {
219190
219343
  type: "Figma";
219191
- renderMode: "Image" | "HTML";
219344
+ renderMode: "Image" | "HTML" | "JSON";
219192
219345
  } | undefined;
219193
219346
  }, {
219194
219347
  id: string;
@@ -219198,7 +219351,7 @@ declare const DTOThreadMessageAttachments: z__default.ZodObject<{
219198
219351
  userId: string;
219199
219352
  } | {
219200
219353
  type: "Figma";
219201
- renderMode: "Image" | "HTML";
219354
+ renderMode: "Image" | "HTML" | "JSON";
219202
219355
  } | undefined;
219203
219356
  }>, "many">>;
219204
219357
  }, "strip", z__default.ZodTypeAny, {
@@ -219210,7 +219363,7 @@ declare const DTOThreadMessageAttachments: z__default.ZodObject<{
219210
219363
  userId: string;
219211
219364
  } | {
219212
219365
  type: "Figma";
219213
- renderMode: "Image" | "HTML";
219366
+ renderMode: "Image" | "HTML" | "JSON";
219214
219367
  } | undefined;
219215
219368
  }[] | undefined;
219216
219369
  iterationId?: string | undefined;
@@ -219223,7 +219376,7 @@ declare const DTOThreadMessageAttachments: z__default.ZodObject<{
219223
219376
  userId: string;
219224
219377
  } | {
219225
219378
  type: "Figma";
219226
- renderMode: "Image" | "HTML";
219379
+ renderMode: "Image" | "HTML" | "JSON";
219227
219380
  } | undefined;
219228
219381
  }[] | undefined;
219229
219382
  iterationId?: string | undefined;
@@ -219338,13 +219491,13 @@ declare const DTOThreadMessageCreateInput: z__default.ZodObject<Pick<{
219338
219491
  userId: string;
219339
219492
  }>, z__default.ZodObject<{
219340
219493
  type: z__default.ZodLiteral<"Figma">;
219341
- renderMode: z__default.ZodEnum<["Image", "HTML"]>;
219494
+ renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
219342
219495
  }, "strip", z__default.ZodTypeAny, {
219343
219496
  type: "Figma";
219344
- renderMode: "Image" | "HTML";
219497
+ renderMode: "Image" | "HTML" | "JSON";
219345
219498
  }, {
219346
219499
  type: "Figma";
219347
- renderMode: "Image" | "HTML";
219500
+ renderMode: "Image" | "HTML" | "JSON";
219348
219501
  }>]>>;
219349
219502
  }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
219350
219503
  id: string;
@@ -219354,7 +219507,7 @@ declare const DTOThreadMessageCreateInput: z__default.ZodObject<Pick<{
219354
219507
  userId: string;
219355
219508
  } | {
219356
219509
  type: "Figma";
219357
- renderMode: "Image" | "HTML";
219510
+ renderMode: "Image" | "HTML" | "JSON";
219358
219511
  } | undefined;
219359
219512
  }, {
219360
219513
  id: string;
@@ -219364,7 +219517,7 @@ declare const DTOThreadMessageCreateInput: z__default.ZodObject<Pick<{
219364
219517
  userId: string;
219365
219518
  } | {
219366
219519
  type: "Figma";
219367
- renderMode: "Image" | "HTML";
219520
+ renderMode: "Image" | "HTML" | "JSON";
219368
219521
  } | undefined;
219369
219522
  }>, "many">>;
219370
219523
  }, "strip", z__default.ZodTypeAny, {
@@ -219376,7 +219529,7 @@ declare const DTOThreadMessageCreateInput: z__default.ZodObject<Pick<{
219376
219529
  userId: string;
219377
219530
  } | {
219378
219531
  type: "Figma";
219379
- renderMode: "Image" | "HTML";
219532
+ renderMode: "Image" | "HTML" | "JSON";
219380
219533
  } | undefined;
219381
219534
  }[] | undefined;
219382
219535
  iterationId?: string | undefined;
@@ -219389,7 +219542,7 @@ declare const DTOThreadMessageCreateInput: z__default.ZodObject<Pick<{
219389
219542
  userId: string;
219390
219543
  } | {
219391
219544
  type: "Figma";
219392
- renderMode: "Image" | "HTML";
219545
+ renderMode: "Image" | "HTML" | "JSON";
219393
219546
  } | undefined;
219394
219547
  }[] | undefined;
219395
219548
  iterationId?: string | undefined;
@@ -219509,13 +219662,13 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
219509
219662
  userId: string;
219510
219663
  }>, z__default.ZodObject<{
219511
219664
  type: z__default.ZodLiteral<"Figma">;
219512
- renderMode: z__default.ZodEnum<["Image", "HTML"]>;
219665
+ renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
219513
219666
  }, "strip", z__default.ZodTypeAny, {
219514
219667
  type: "Figma";
219515
- renderMode: "Image" | "HTML";
219668
+ renderMode: "Image" | "HTML" | "JSON";
219516
219669
  }, {
219517
219670
  type: "Figma";
219518
- renderMode: "Image" | "HTML";
219671
+ renderMode: "Image" | "HTML" | "JSON";
219519
219672
  }>]>>;
219520
219673
  }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
219521
219674
  id: string;
@@ -219525,7 +219678,7 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
219525
219678
  userId: string;
219526
219679
  } | {
219527
219680
  type: "Figma";
219528
- renderMode: "Image" | "HTML";
219681
+ renderMode: "Image" | "HTML" | "JSON";
219529
219682
  } | undefined;
219530
219683
  }, {
219531
219684
  id: string;
@@ -219535,7 +219688,7 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
219535
219688
  userId: string;
219536
219689
  } | {
219537
219690
  type: "Figma";
219538
- renderMode: "Image" | "HTML";
219691
+ renderMode: "Image" | "HTML" | "JSON";
219539
219692
  } | undefined;
219540
219693
  }>, "many">>;
219541
219694
  }, "strip", z__default.ZodTypeAny, {
@@ -219547,7 +219700,7 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
219547
219700
  userId: string;
219548
219701
  } | {
219549
219702
  type: "Figma";
219550
- renderMode: "Image" | "HTML";
219703
+ renderMode: "Image" | "HTML" | "JSON";
219551
219704
  } | undefined;
219552
219705
  }[] | undefined;
219553
219706
  iterationId?: string | undefined;
@@ -219560,7 +219713,7 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
219560
219713
  userId: string;
219561
219714
  } | {
219562
219715
  type: "Figma";
219563
- renderMode: "Image" | "HTML";
219716
+ renderMode: "Image" | "HTML" | "JSON";
219564
219717
  } | undefined;
219565
219718
  }[] | undefined;
219566
219719
  iterationId?: string | undefined;
@@ -219594,13 +219747,13 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
219594
219747
  userId: string;
219595
219748
  }>, z__default.ZodObject<{
219596
219749
  type: z__default.ZodLiteral<"Figma">;
219597
- renderMode: z__default.ZodEnum<["Image", "HTML"]>;
219750
+ renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
219598
219751
  }, "strip", z__default.ZodTypeAny, {
219599
219752
  type: "Figma";
219600
- renderMode: "Image" | "HTML";
219753
+ renderMode: "Image" | "HTML" | "JSON";
219601
219754
  }, {
219602
219755
  type: "Figma";
219603
- renderMode: "Image" | "HTML";
219756
+ renderMode: "Image" | "HTML" | "JSON";
219604
219757
  }>]>>;
219605
219758
  }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
219606
219759
  id: string;
@@ -219610,7 +219763,7 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
219610
219763
  userId: string;
219611
219764
  } | {
219612
219765
  type: "Figma";
219613
- renderMode: "Image" | "HTML";
219766
+ renderMode: "Image" | "HTML" | "JSON";
219614
219767
  } | undefined;
219615
219768
  }, {
219616
219769
  id: string;
@@ -219620,7 +219773,7 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
219620
219773
  userId: string;
219621
219774
  } | {
219622
219775
  type: "Figma";
219623
- renderMode: "Image" | "HTML";
219776
+ renderMode: "Image" | "HTML" | "JSON";
219624
219777
  } | undefined;
219625
219778
  }>, "many">>;
219626
219779
  }, "strip", z__default.ZodTypeAny, {
@@ -219632,7 +219785,7 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
219632
219785
  userId: string;
219633
219786
  } | {
219634
219787
  type: "Figma";
219635
- renderMode: "Image" | "HTML";
219788
+ renderMode: "Image" | "HTML" | "JSON";
219636
219789
  } | undefined;
219637
219790
  }[] | undefined;
219638
219791
  iterationId?: string | undefined;
@@ -219645,7 +219798,7 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
219645
219798
  userId: string;
219646
219799
  } | {
219647
219800
  type: "Figma";
219648
- renderMode: "Image" | "HTML";
219801
+ renderMode: "Image" | "HTML" | "JSON";
219649
219802
  } | undefined;
219650
219803
  }[] | undefined;
219651
219804
  iterationId?: string | undefined;
@@ -219664,7 +219817,7 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
219664
219817
  userId: string;
219665
219818
  } | {
219666
219819
  type: "Figma";
219667
- renderMode: "Image" | "HTML";
219820
+ renderMode: "Image" | "HTML" | "JSON";
219668
219821
  } | undefined;
219669
219822
  }[] | undefined;
219670
219823
  iterationId?: string | undefined;
@@ -219682,7 +219835,7 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
219682
219835
  userId: string;
219683
219836
  } | {
219684
219837
  type: "Figma";
219685
- renderMode: "Image" | "HTML";
219838
+ renderMode: "Image" | "HTML" | "JSON";
219686
219839
  } | undefined;
219687
219840
  }[] | undefined;
219688
219841
  iterationId?: string | undefined;
@@ -219788,13 +219941,13 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
219788
219941
  userId: string;
219789
219942
  }>, z__default.ZodObject<{
219790
219943
  type: z__default.ZodLiteral<"Figma">;
219791
- renderMode: z__default.ZodEnum<["Image", "HTML"]>;
219944
+ renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
219792
219945
  }, "strip", z__default.ZodTypeAny, {
219793
219946
  type: "Figma";
219794
- renderMode: "Image" | "HTML";
219947
+ renderMode: "Image" | "HTML" | "JSON";
219795
219948
  }, {
219796
219949
  type: "Figma";
219797
- renderMode: "Image" | "HTML";
219950
+ renderMode: "Image" | "HTML" | "JSON";
219798
219951
  }>]>>;
219799
219952
  }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
219800
219953
  id: string;
@@ -219804,7 +219957,7 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
219804
219957
  userId: string;
219805
219958
  } | {
219806
219959
  type: "Figma";
219807
- renderMode: "Image" | "HTML";
219960
+ renderMode: "Image" | "HTML" | "JSON";
219808
219961
  } | undefined;
219809
219962
  }, {
219810
219963
  id: string;
@@ -219814,7 +219967,7 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
219814
219967
  userId: string;
219815
219968
  } | {
219816
219969
  type: "Figma";
219817
- renderMode: "Image" | "HTML";
219970
+ renderMode: "Image" | "HTML" | "JSON";
219818
219971
  } | undefined;
219819
219972
  }>, "many">>;
219820
219973
  }, "strip", z__default.ZodTypeAny, {
@@ -219826,7 +219979,7 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
219826
219979
  userId: string;
219827
219980
  } | {
219828
219981
  type: "Figma";
219829
- renderMode: "Image" | "HTML";
219982
+ renderMode: "Image" | "HTML" | "JSON";
219830
219983
  } | undefined;
219831
219984
  }[] | undefined;
219832
219985
  iterationId?: string | undefined;
@@ -219839,7 +219992,7 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
219839
219992
  userId: string;
219840
219993
  } | {
219841
219994
  type: "Figma";
219842
- renderMode: "Image" | "HTML";
219995
+ renderMode: "Image" | "HTML" | "JSON";
219843
219996
  } | undefined;
219844
219997
  }[] | undefined;
219845
219998
  iterationId?: string | undefined;
@@ -219879,7 +220032,7 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
219879
220032
  userId: string;
219880
220033
  } | {
219881
220034
  type: "Figma";
219882
- renderMode: "Image" | "HTML";
220035
+ renderMode: "Image" | "HTML" | "JSON";
219883
220036
  } | undefined;
219884
220037
  }[] | undefined;
219885
220038
  iterationId?: string | undefined;
@@ -219914,7 +220067,7 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
219914
220067
  userId: string;
219915
220068
  } | {
219916
220069
  type: "Figma";
219917
- renderMode: "Image" | "HTML";
220070
+ renderMode: "Image" | "HTML" | "JSON";
219918
220071
  } | undefined;
219919
220072
  }[] | undefined;
219920
220073
  iterationId?: string | undefined;
@@ -219951,7 +220104,7 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
219951
220104
  userId: string;
219952
220105
  } | {
219953
220106
  type: "Figma";
219954
- renderMode: "Image" | "HTML";
220107
+ renderMode: "Image" | "HTML" | "JSON";
219955
220108
  } | undefined;
219956
220109
  }[] | undefined;
219957
220110
  iterationId?: string | undefined;
@@ -219988,7 +220141,7 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
219988
220141
  userId: string;
219989
220142
  } | {
219990
220143
  type: "Figma";
219991
- renderMode: "Image" | "HTML";
220144
+ renderMode: "Image" | "HTML" | "JSON";
219992
220145
  } | undefined;
219993
220146
  }[] | undefined;
219994
220147
  iterationId?: string | undefined;
@@ -220107,13 +220260,13 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
220107
220260
  userId: string;
220108
220261
  }>, z__default.ZodObject<{
220109
220262
  type: z__default.ZodLiteral<"Figma">;
220110
- renderMode: z__default.ZodEnum<["Image", "HTML"]>;
220263
+ renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
220111
220264
  }, "strip", z__default.ZodTypeAny, {
220112
220265
  type: "Figma";
220113
- renderMode: "Image" | "HTML";
220266
+ renderMode: "Image" | "HTML" | "JSON";
220114
220267
  }, {
220115
220268
  type: "Figma";
220116
- renderMode: "Image" | "HTML";
220269
+ renderMode: "Image" | "HTML" | "JSON";
220117
220270
  }>]>>;
220118
220271
  }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
220119
220272
  id: string;
@@ -220123,7 +220276,7 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
220123
220276
  userId: string;
220124
220277
  } | {
220125
220278
  type: "Figma";
220126
- renderMode: "Image" | "HTML";
220279
+ renderMode: "Image" | "HTML" | "JSON";
220127
220280
  } | undefined;
220128
220281
  }, {
220129
220282
  id: string;
@@ -220133,7 +220286,7 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
220133
220286
  userId: string;
220134
220287
  } | {
220135
220288
  type: "Figma";
220136
- renderMode: "Image" | "HTML";
220289
+ renderMode: "Image" | "HTML" | "JSON";
220137
220290
  } | undefined;
220138
220291
  }>, "many">>;
220139
220292
  }, "strip", z__default.ZodTypeAny, {
@@ -220145,7 +220298,7 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
220145
220298
  userId: string;
220146
220299
  } | {
220147
220300
  type: "Figma";
220148
- renderMode: "Image" | "HTML";
220301
+ renderMode: "Image" | "HTML" | "JSON";
220149
220302
  } | undefined;
220150
220303
  }[] | undefined;
220151
220304
  iterationId?: string | undefined;
@@ -220158,7 +220311,7 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
220158
220311
  userId: string;
220159
220312
  } | {
220160
220313
  type: "Figma";
220161
- renderMode: "Image" | "HTML";
220314
+ renderMode: "Image" | "HTML" | "JSON";
220162
220315
  } | undefined;
220163
220316
  }[] | undefined;
220164
220317
  iterationId?: string | undefined;
@@ -220198,7 +220351,7 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
220198
220351
  userId: string;
220199
220352
  } | {
220200
220353
  type: "Figma";
220201
- renderMode: "Image" | "HTML";
220354
+ renderMode: "Image" | "HTML" | "JSON";
220202
220355
  } | undefined;
220203
220356
  }[] | undefined;
220204
220357
  iterationId?: string | undefined;
@@ -220233,7 +220386,7 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
220233
220386
  userId: string;
220234
220387
  } | {
220235
220388
  type: "Figma";
220236
- renderMode: "Image" | "HTML";
220389
+ renderMode: "Image" | "HTML" | "JSON";
220237
220390
  } | undefined;
220238
220391
  }[] | undefined;
220239
220392
  iterationId?: string | undefined;
@@ -220287,7 +220440,7 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
220287
220440
  userId: string;
220288
220441
  } | {
220289
220442
  type: "Figma";
220290
- renderMode: "Image" | "HTML";
220443
+ renderMode: "Image" | "HTML" | "JSON";
220291
220444
  } | undefined;
220292
220445
  }[] | undefined;
220293
220446
  iterationId?: string | undefined;
@@ -220331,7 +220484,7 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
220331
220484
  userId: string;
220332
220485
  } | {
220333
220486
  type: "Figma";
220334
- renderMode: "Image" | "HTML";
220487
+ renderMode: "Image" | "HTML" | "JSON";
220335
220488
  } | undefined;
220336
220489
  }[] | undefined;
220337
220490
  iterationId?: string | undefined;
@@ -220425,13 +220578,13 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
220425
220578
  userId: string;
220426
220579
  }>, z__default.ZodObject<{
220427
220580
  type: z__default.ZodLiteral<"Figma">;
220428
- renderMode: z__default.ZodEnum<["Image", "HTML"]>;
220581
+ renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
220429
220582
  }, "strip", z__default.ZodTypeAny, {
220430
220583
  type: "Figma";
220431
- renderMode: "Image" | "HTML";
220584
+ renderMode: "Image" | "HTML" | "JSON";
220432
220585
  }, {
220433
220586
  type: "Figma";
220434
- renderMode: "Image" | "HTML";
220587
+ renderMode: "Image" | "HTML" | "JSON";
220435
220588
  }>]>>;
220436
220589
  }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
220437
220590
  id: string;
@@ -220441,7 +220594,7 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
220441
220594
  userId: string;
220442
220595
  } | {
220443
220596
  type: "Figma";
220444
- renderMode: "Image" | "HTML";
220597
+ renderMode: "Image" | "HTML" | "JSON";
220445
220598
  } | undefined;
220446
220599
  }, {
220447
220600
  id: string;
@@ -220451,7 +220604,7 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
220451
220604
  userId: string;
220452
220605
  } | {
220453
220606
  type: "Figma";
220454
- renderMode: "Image" | "HTML";
220607
+ renderMode: "Image" | "HTML" | "JSON";
220455
220608
  } | undefined;
220456
220609
  }>, "many">>;
220457
220610
  }, "strip", z__default.ZodTypeAny, {
@@ -220463,7 +220616,7 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
220463
220616
  userId: string;
220464
220617
  } | {
220465
220618
  type: "Figma";
220466
- renderMode: "Image" | "HTML";
220619
+ renderMode: "Image" | "HTML" | "JSON";
220467
220620
  } | undefined;
220468
220621
  }[] | undefined;
220469
220622
  iterationId?: string | undefined;
@@ -220476,7 +220629,7 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
220476
220629
  userId: string;
220477
220630
  } | {
220478
220631
  type: "Figma";
220479
- renderMode: "Image" | "HTML";
220632
+ renderMode: "Image" | "HTML" | "JSON";
220480
220633
  } | undefined;
220481
220634
  }[] | undefined;
220482
220635
  iterationId?: string | undefined;
@@ -220516,7 +220669,7 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
220516
220669
  userId: string;
220517
220670
  } | {
220518
220671
  type: "Figma";
220519
- renderMode: "Image" | "HTML";
220672
+ renderMode: "Image" | "HTML" | "JSON";
220520
220673
  } | undefined;
220521
220674
  }[] | undefined;
220522
220675
  iterationId?: string | undefined;
@@ -220551,7 +220704,7 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
220551
220704
  userId: string;
220552
220705
  } | {
220553
220706
  type: "Figma";
220554
- renderMode: "Image" | "HTML";
220707
+ renderMode: "Image" | "HTML" | "JSON";
220555
220708
  } | undefined;
220556
220709
  }[] | undefined;
220557
220710
  iterationId?: string | undefined;
@@ -220589,7 +220742,7 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
220589
220742
  userId: string;
220590
220743
  } | {
220591
220744
  type: "Figma";
220592
- renderMode: "Image" | "HTML";
220745
+ renderMode: "Image" | "HTML" | "JSON";
220593
220746
  } | undefined;
220594
220747
  }[] | undefined;
220595
220748
  iterationId?: string | undefined;
@@ -220627,7 +220780,7 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
220627
220780
  userId: string;
220628
220781
  } | {
220629
220782
  type: "Figma";
220630
- renderMode: "Image" | "HTML";
220783
+ renderMode: "Image" | "HTML" | "JSON";
220631
220784
  } | undefined;
220632
220785
  }[] | undefined;
220633
220786
  iterationId?: string | undefined;
@@ -220714,13 +220867,13 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
220714
220867
  userId: string;
220715
220868
  }>, z__default.ZodObject<{
220716
220869
  type: z__default.ZodLiteral<"Figma">;
220717
- renderMode: z__default.ZodEnum<["Image", "HTML"]>;
220870
+ renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
220718
220871
  }, "strip", z__default.ZodTypeAny, {
220719
220872
  type: "Figma";
220720
- renderMode: "Image" | "HTML";
220873
+ renderMode: "Image" | "HTML" | "JSON";
220721
220874
  }, {
220722
220875
  type: "Figma";
220723
- renderMode: "Image" | "HTML";
220876
+ renderMode: "Image" | "HTML" | "JSON";
220724
220877
  }>]>>;
220725
220878
  }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
220726
220879
  id: string;
@@ -220730,7 +220883,7 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
220730
220883
  userId: string;
220731
220884
  } | {
220732
220885
  type: "Figma";
220733
- renderMode: "Image" | "HTML";
220886
+ renderMode: "Image" | "HTML" | "JSON";
220734
220887
  } | undefined;
220735
220888
  }, {
220736
220889
  id: string;
@@ -220740,7 +220893,7 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
220740
220893
  userId: string;
220741
220894
  } | {
220742
220895
  type: "Figma";
220743
- renderMode: "Image" | "HTML";
220896
+ renderMode: "Image" | "HTML" | "JSON";
220744
220897
  } | undefined;
220745
220898
  }>, "many">>;
220746
220899
  }, "strip", z__default.ZodTypeAny, {
@@ -220752,7 +220905,7 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
220752
220905
  userId: string;
220753
220906
  } | {
220754
220907
  type: "Figma";
220755
- renderMode: "Image" | "HTML";
220908
+ renderMode: "Image" | "HTML" | "JSON";
220756
220909
  } | undefined;
220757
220910
  }[] | undefined;
220758
220911
  iterationId?: string | undefined;
@@ -220765,7 +220918,7 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
220765
220918
  userId: string;
220766
220919
  } | {
220767
220920
  type: "Figma";
220768
- renderMode: "Image" | "HTML";
220921
+ renderMode: "Image" | "HTML" | "JSON";
220769
220922
  } | undefined;
220770
220923
  }[] | undefined;
220771
220924
  iterationId?: string | undefined;
@@ -220805,7 +220958,7 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
220805
220958
  userId: string;
220806
220959
  } | {
220807
220960
  type: "Figma";
220808
- renderMode: "Image" | "HTML";
220961
+ renderMode: "Image" | "HTML" | "JSON";
220809
220962
  } | undefined;
220810
220963
  }[] | undefined;
220811
220964
  iterationId?: string | undefined;
@@ -220840,7 +220993,7 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
220840
220993
  userId: string;
220841
220994
  } | {
220842
220995
  type: "Figma";
220843
- renderMode: "Image" | "HTML";
220996
+ renderMode: "Image" | "HTML" | "JSON";
220844
220997
  } | undefined;
220845
220998
  }[] | undefined;
220846
220999
  iterationId?: string | undefined;
@@ -220878,7 +221031,7 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
220878
221031
  userId: string;
220879
221032
  } | {
220880
221033
  type: "Figma";
220881
- renderMode: "Image" | "HTML";
221034
+ renderMode: "Image" | "HTML" | "JSON";
220882
221035
  } | undefined;
220883
221036
  }[] | undefined;
220884
221037
  iterationId?: string | undefined;
@@ -220916,7 +221069,7 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
220916
221069
  userId: string;
220917
221070
  } | {
220918
221071
  type: "Figma";
220919
- renderMode: "Image" | "HTML";
221072
+ renderMode: "Image" | "HTML" | "JSON";
220920
221073
  } | undefined;
220921
221074
  }[] | undefined;
220922
221075
  iterationId?: string | undefined;
@@ -221075,13 +221228,13 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
221075
221228
  userId: string;
221076
221229
  }>, z__default.ZodObject<{
221077
221230
  type: z__default.ZodLiteral<"Figma">;
221078
- renderMode: z__default.ZodEnum<["Image", "HTML"]>;
221231
+ renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
221079
221232
  }, "strip", z__default.ZodTypeAny, {
221080
221233
  type: "Figma";
221081
- renderMode: "Image" | "HTML";
221234
+ renderMode: "Image" | "HTML" | "JSON";
221082
221235
  }, {
221083
221236
  type: "Figma";
221084
- renderMode: "Image" | "HTML";
221237
+ renderMode: "Image" | "HTML" | "JSON";
221085
221238
  }>]>>;
221086
221239
  }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
221087
221240
  id: string;
@@ -221091,7 +221244,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
221091
221244
  userId: string;
221092
221245
  } | {
221093
221246
  type: "Figma";
221094
- renderMode: "Image" | "HTML";
221247
+ renderMode: "Image" | "HTML" | "JSON";
221095
221248
  } | undefined;
221096
221249
  }, {
221097
221250
  id: string;
@@ -221101,7 +221254,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
221101
221254
  userId: string;
221102
221255
  } | {
221103
221256
  type: "Figma";
221104
- renderMode: "Image" | "HTML";
221257
+ renderMode: "Image" | "HTML" | "JSON";
221105
221258
  } | undefined;
221106
221259
  }>, "many">>;
221107
221260
  }, "strip", z__default.ZodTypeAny, {
@@ -221113,7 +221266,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
221113
221266
  userId: string;
221114
221267
  } | {
221115
221268
  type: "Figma";
221116
- renderMode: "Image" | "HTML";
221269
+ renderMode: "Image" | "HTML" | "JSON";
221117
221270
  } | undefined;
221118
221271
  }[] | undefined;
221119
221272
  iterationId?: string | undefined;
@@ -221126,7 +221279,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
221126
221279
  userId: string;
221127
221280
  } | {
221128
221281
  type: "Figma";
221129
- renderMode: "Image" | "HTML";
221282
+ renderMode: "Image" | "HTML" | "JSON";
221130
221283
  } | undefined;
221131
221284
  }[] | undefined;
221132
221285
  iterationId?: string | undefined;
@@ -221166,7 +221319,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
221166
221319
  userId: string;
221167
221320
  } | {
221168
221321
  type: "Figma";
221169
- renderMode: "Image" | "HTML";
221322
+ renderMode: "Image" | "HTML" | "JSON";
221170
221323
  } | undefined;
221171
221324
  }[] | undefined;
221172
221325
  iterationId?: string | undefined;
@@ -221201,7 +221354,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
221201
221354
  userId: string;
221202
221355
  } | {
221203
221356
  type: "Figma";
221204
- renderMode: "Image" | "HTML";
221357
+ renderMode: "Image" | "HTML" | "JSON";
221205
221358
  } | undefined;
221206
221359
  }[] | undefined;
221207
221360
  iterationId?: string | undefined;
@@ -221239,7 +221392,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
221239
221392
  userId: string;
221240
221393
  } | {
221241
221394
  type: "Figma";
221242
- renderMode: "Image" | "HTML";
221395
+ renderMode: "Image" | "HTML" | "JSON";
221243
221396
  } | undefined;
221244
221397
  }[] | undefined;
221245
221398
  iterationId?: string | undefined;
@@ -221277,7 +221430,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
221277
221430
  userId: string;
221278
221431
  } | {
221279
221432
  type: "Figma";
221280
- renderMode: "Image" | "HTML";
221433
+ renderMode: "Image" | "HTML" | "JSON";
221281
221434
  } | undefined;
221282
221435
  }[] | undefined;
221283
221436
  iterationId?: string | undefined;
@@ -221362,13 +221515,13 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
221362
221515
  userId: string;
221363
221516
  }>, z__default.ZodObject<{
221364
221517
  type: z__default.ZodLiteral<"Figma">;
221365
- renderMode: z__default.ZodEnum<["Image", "HTML"]>;
221518
+ renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
221366
221519
  }, "strip", z__default.ZodTypeAny, {
221367
221520
  type: "Figma";
221368
- renderMode: "Image" | "HTML";
221521
+ renderMode: "Image" | "HTML" | "JSON";
221369
221522
  }, {
221370
221523
  type: "Figma";
221371
- renderMode: "Image" | "HTML";
221524
+ renderMode: "Image" | "HTML" | "JSON";
221372
221525
  }>]>>;
221373
221526
  }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
221374
221527
  id: string;
@@ -221378,7 +221531,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
221378
221531
  userId: string;
221379
221532
  } | {
221380
221533
  type: "Figma";
221381
- renderMode: "Image" | "HTML";
221534
+ renderMode: "Image" | "HTML" | "JSON";
221382
221535
  } | undefined;
221383
221536
  }, {
221384
221537
  id: string;
@@ -221388,7 +221541,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
221388
221541
  userId: string;
221389
221542
  } | {
221390
221543
  type: "Figma";
221391
- renderMode: "Image" | "HTML";
221544
+ renderMode: "Image" | "HTML" | "JSON";
221392
221545
  } | undefined;
221393
221546
  }>, "many">>;
221394
221547
  }, "strip", z__default.ZodTypeAny, {
@@ -221400,7 +221553,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
221400
221553
  userId: string;
221401
221554
  } | {
221402
221555
  type: "Figma";
221403
- renderMode: "Image" | "HTML";
221556
+ renderMode: "Image" | "HTML" | "JSON";
221404
221557
  } | undefined;
221405
221558
  }[] | undefined;
221406
221559
  iterationId?: string | undefined;
@@ -221413,7 +221566,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
221413
221566
  userId: string;
221414
221567
  } | {
221415
221568
  type: "Figma";
221416
- renderMode: "Image" | "HTML";
221569
+ renderMode: "Image" | "HTML" | "JSON";
221417
221570
  } | undefined;
221418
221571
  }[] | undefined;
221419
221572
  iterationId?: string | undefined;
@@ -221453,7 +221606,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
221453
221606
  userId: string;
221454
221607
  } | {
221455
221608
  type: "Figma";
221456
- renderMode: "Image" | "HTML";
221609
+ renderMode: "Image" | "HTML" | "JSON";
221457
221610
  } | undefined;
221458
221611
  }[] | undefined;
221459
221612
  iterationId?: string | undefined;
@@ -221488,7 +221641,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
221488
221641
  userId: string;
221489
221642
  } | {
221490
221643
  type: "Figma";
221491
- renderMode: "Image" | "HTML";
221644
+ renderMode: "Image" | "HTML" | "JSON";
221492
221645
  } | undefined;
221493
221646
  }[] | undefined;
221494
221647
  iterationId?: string | undefined;
@@ -221526,7 +221679,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
221526
221679
  userId: string;
221527
221680
  } | {
221528
221681
  type: "Figma";
221529
- renderMode: "Image" | "HTML";
221682
+ renderMode: "Image" | "HTML" | "JSON";
221530
221683
  } | undefined;
221531
221684
  }[] | undefined;
221532
221685
  iterationId?: string | undefined;
@@ -221564,7 +221717,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
221564
221717
  userId: string;
221565
221718
  } | {
221566
221719
  type: "Figma";
221567
- renderMode: "Image" | "HTML";
221720
+ renderMode: "Image" | "HTML" | "JSON";
221568
221721
  } | undefined;
221569
221722
  }[] | undefined;
221570
221723
  iterationId?: string | undefined;
@@ -243301,7 +243454,7 @@ declare class ForgeFeatureIterationsEndpoint {
243301
243454
  userId: string;
243302
243455
  } | {
243303
243456
  type: "Figma";
243304
- renderMode: "Image" | "HTML";
243457
+ renderMode: "Image" | "HTML" | "JSON";
243305
243458
  } | undefined;
243306
243459
  } | undefined;
243307
243460
  artifactsDiff?: {
@@ -243460,7 +243613,7 @@ declare class ForgeProjectFeaturesEndpoint {
243460
243613
  userId: string;
243461
243614
  } | {
243462
243615
  type: "Figma";
243463
- renderMode: "Image" | "HTML";
243616
+ renderMode: "Image" | "HTML" | "JSON";
243464
243617
  } | undefined;
243465
243618
  } | undefined;
243466
243619
  artifactsDiff?: {
@@ -244792,6 +244945,7 @@ declare class ForgeProjectsEndpoint {
244792
244945
  updatedAt: Date;
244793
244946
  workspaceId: string;
244794
244947
  accessMode: "Open" | "InviteOnly" | "Unlisted";
244948
+ effectiveRole: "Admin" | "Viewer" | "Builder";
244795
244949
  context: {
244796
244950
  id: string;
244797
244951
  createdAt: Date;
@@ -245783,6 +245937,7 @@ declare class ForgeProjectsEndpoint {
245783
245937
  updatedAt: Date;
245784
245938
  workspaceId: string;
245785
245939
  accessMode: "Open" | "InviteOnly" | "Unlisted";
245940
+ effectiveRole: "Admin" | "Viewer" | "Builder";
245786
245941
  context: {
245787
245942
  id: string;
245788
245943
  createdAt: Date;
@@ -246774,6 +246929,7 @@ declare class ForgeProjectsEndpoint {
246774
246929
  updatedAt: Date;
246775
246930
  workspaceId: string;
246776
246931
  accessMode: "Open" | "InviteOnly" | "Unlisted";
246932
+ effectiveRole: "Admin" | "Viewer" | "Builder";
246777
246933
  context: {
246778
246934
  id: string;
246779
246935
  createdAt: Date;
@@ -247765,6 +247921,7 @@ declare class ForgeProjectsEndpoint {
247765
247921
  updatedAt: Date;
247766
247922
  workspaceId: string;
247767
247923
  accessMode: "Open" | "InviteOnly" | "Unlisted";
247924
+ effectiveRole: "Admin" | "Viewer" | "Builder";
247768
247925
  context: {
247769
247926
  id: string;
247770
247927
  createdAt: Date;
@@ -248807,7 +248964,6 @@ declare class ForgeProjectIterationsEndpoint {
248807
248964
  id: string;
248808
248965
  createdAt: Date;
248809
248966
  type: "Note" | "Action" | "Steps";
248810
- text: string;
248811
248967
  projectIterationId: string;
248812
248968
  participantId: string;
248813
248969
  participant: {
@@ -248841,6 +248997,7 @@ declare class ForgeProjectIterationsEndpoint {
248841
248997
  } | undefined;
248842
248998
  agentId?: string | undefined;
248843
248999
  };
249000
+ text: string;
248844
249001
  steps?: {
248845
249002
  status: "error" | "pending" | "started" | "completed";
248846
249003
  name: string;
@@ -248905,7 +249062,6 @@ declare class ForgeProjectIterationsEndpoint {
248905
249062
  id: string;
248906
249063
  createdAt: Date;
248907
249064
  type: "Note" | "Action" | "Steps";
248908
- text: string;
248909
249065
  projectIterationId: string;
248910
249066
  participantId: string;
248911
249067
  participant: {
@@ -248939,6 +249095,7 @@ declare class ForgeProjectIterationsEndpoint {
248939
249095
  } | undefined;
248940
249096
  agentId?: string | undefined;
248941
249097
  };
249098
+ text: string;
248942
249099
  steps?: {
248943
249100
  status: "error" | "pending" | "started" | "completed";
248944
249101
  name: string;
@@ -249003,7 +249160,6 @@ declare class ForgeProjectIterationsEndpoint {
249003
249160
  id: string;
249004
249161
  createdAt: Date;
249005
249162
  type: "Note" | "Action" | "Steps";
249006
- text: string;
249007
249163
  projectIterationId: string;
249008
249164
  participantId: string;
249009
249165
  participant: {
@@ -249037,6 +249193,7 @@ declare class ForgeProjectIterationsEndpoint {
249037
249193
  } | undefined;
249038
249194
  agentId?: string | undefined;
249039
249195
  };
249196
+ text: string;
249040
249197
  steps?: {
249041
249198
  status: "error" | "pending" | "started" | "completed";
249042
249199
  name: string;
@@ -249101,7 +249258,6 @@ declare class ForgeProjectIterationsEndpoint {
249101
249258
  id: string;
249102
249259
  createdAt: Date;
249103
249260
  type: "Note" | "Action" | "Steps";
249104
- text: string;
249105
249261
  projectIterationId: string;
249106
249262
  participantId: string;
249107
249263
  participant: {
@@ -249135,6 +249291,7 @@ declare class ForgeProjectIterationsEndpoint {
249135
249291
  } | undefined;
249136
249292
  agentId?: string | undefined;
249137
249293
  };
249294
+ text: string;
249138
249295
  steps?: {
249139
249296
  status: "error" | "pending" | "started" | "completed";
249140
249297
  name: string;
@@ -250034,7 +250191,7 @@ declare class FilesEndpoint {
250034
250191
  userId: string;
250035
250192
  } | {
250036
250193
  type: "Figma";
250037
- renderMode: "Image" | "HTML";
250194
+ renderMode: "Image" | "HTML" | "JSON";
250038
250195
  } | undefined;
250039
250196
  pendingUpload?: boolean | undefined;
250040
250197
  }[];
@@ -250056,7 +250213,7 @@ declare class FilesEndpoint {
250056
250213
  userId: string;
250057
250214
  } | {
250058
250215
  type: "Figma";
250059
- renderMode: "Image" | "HTML";
250216
+ renderMode: "Image" | "HTML" | "JSON";
250060
250217
  } | undefined;
250061
250218
  pendingUpload?: boolean | undefined;
250062
250219
  }[];
@@ -250104,7 +250261,7 @@ declare class ThreadsEndpoint {
250104
250261
  userId: string;
250105
250262
  } | {
250106
250263
  type: "Figma";
250107
- renderMode: "Image" | "HTML";
250264
+ renderMode: "Image" | "HTML" | "JSON";
250108
250265
  } | undefined;
250109
250266
  }[] | undefined;
250110
250267
  iterationId?: string | undefined;
@@ -250149,7 +250306,7 @@ declare class ThreadsEndpoint {
250149
250306
  userId: string;
250150
250307
  } | {
250151
250308
  type: "Figma";
250152
- renderMode: "Image" | "HTML";
250309
+ renderMode: "Image" | "HTML" | "JSON";
250153
250310
  } | undefined;
250154
250311
  }[] | undefined;
250155
250312
  iterationId?: string | undefined;
@@ -252089,9 +252246,9 @@ declare const DocumentationPageEditorModel: z$1.ZodObject<{
252089
252246
  }>;
252090
252247
  type DocumentationPageEditorModel = z$1.infer<typeof DocumentationPageEditorModel>;
252091
252248
 
252092
- declare const innerEditorProsemirrorSchema: Schema<"text" | "doc" | "paragraph" | "listItem" | "hardBreak" | "bulletList" | "orderedList", "code" | "italic" | "bold" | "link" | "strike">;
252249
+ declare const innerEditorProsemirrorSchema: Schema<"text" | "doc" | "paragraph" | "listItem" | "hardBreak" | "bulletList" | "orderedList", "code" | "bold" | "link" | "strike" | "italic">;
252093
252250
 
252094
- declare const mainEditorProsemirrorSchema: Schema<"image" | "text" | "doc" | "paragraph" | "listItem" | "hardBreak" | "bulletList" | "orderedList" | "table" | "tableContainer" | "blockquote" | "sectionItem" | "sectionItemColumn" | "callout" | "reactComponent" | "tableRow" | "tableCell" | "tableHeader" | "heading" | "horizontalRule" | "plainSection" | "tabsSection" | "blockNode", "code" | "italic" | "bold" | "link" | "strike" | "commentHighlight">;
252251
+ declare const mainEditorProsemirrorSchema: Schema<"image" | "text" | "doc" | "paragraph" | "listItem" | "hardBreak" | "bulletList" | "orderedList" | "table" | "tableContainer" | "blockquote" | "sectionItem" | "sectionItemColumn" | "callout" | "reactComponent" | "tableRow" | "tableCell" | "tableHeader" | "heading" | "horizontalRule" | "plainSection" | "tabsSection" | "blockNode", "code" | "bold" | "link" | "strike" | "italic" | "commentHighlight">;
252095
252252
 
252096
252253
  type ProsemirrorNode = {
252097
252254
  type: string;
@@ -253126,4 +253283,4 @@ declare function isValidRedirectPath(path: string): {
253126
253283
  reason: ValidationErrorReason | undefined;
253127
253284
  };
253128
253285
 
253129
- 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, 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, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, 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, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectDefaultRole, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemePreset, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, 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, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, 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, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, 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, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, 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, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, 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 };
253286
+ 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, 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, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, 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, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectDefaultRole, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemePreset, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, 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, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, 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, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, 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, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, 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, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, 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 };