@supernova-studio/client 1.41.4 → 1.42.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -214488,6 +214488,292 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
214488
214488
  role: "Admin" | "Viewer" | "Builder";
214489
214489
  workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
214490
214490
  }>, "many">>;
214491
+ initialFeature: z$1.ZodOptional<z$1.ZodObject<{
214492
+ id: z$1.ZodString;
214493
+ name: z$1.ZodOptional<z$1.ZodString>;
214494
+ description: z$1.ZodString;
214495
+ sectionId: z$1.ZodOptional<z$1.ZodString>;
214496
+ afterFeatureId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
214497
+ initialMessage: z$1.ZodObject<Pick<{
214498
+ id: z$1.ZodString;
214499
+ sender: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
214500
+ type: z$1.ZodLiteral<"User">;
214501
+ userId: z$1.ZodString;
214502
+ }, "strip", z$1.ZodTypeAny, {
214503
+ type: "User";
214504
+ userId: string;
214505
+ }, {
214506
+ type: "User";
214507
+ userId: string;
214508
+ }>, z$1.ZodObject<{
214509
+ type: z$1.ZodLiteral<"Agent">;
214510
+ }, "strip", z$1.ZodTypeAny, {
214511
+ type: "Agent";
214512
+ }, {
214513
+ type: "Agent";
214514
+ }>, z$1.ZodObject<{
214515
+ type: z$1.ZodLiteral<"System">;
214516
+ onBehalfOfUserId: z$1.ZodString;
214517
+ }, "strip", z$1.ZodTypeAny, {
214518
+ type: "System";
214519
+ onBehalfOfUserId: string;
214520
+ }, {
214521
+ type: "System";
214522
+ onBehalfOfUserId: string;
214523
+ }>]>;
214524
+ body: z$1.ZodString;
214525
+ isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
214526
+ startsNewThread: z$1.ZodOptional<z$1.ZodBoolean>;
214527
+ parentMessageId: z$1.ZodOptional<z$1.ZodString>;
214528
+ agentResponseTrackerId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
214529
+ attachments: z$1.ZodOptional<z$1.ZodObject<{
214530
+ iterationId: z$1.ZodOptional<z$1.ZodString>;
214531
+ }, "strip", z$1.ZodTypeAny, {
214532
+ iterationId?: string | undefined;
214533
+ }, {
214534
+ iterationId?: string | undefined;
214535
+ }>>;
214536
+ replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
214537
+ createdAt: z$1.ZodString;
214538
+ updatedAt: z$1.ZodOptional<z$1.ZodString>;
214539
+ }, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId" | "attachments">, "strip", z$1.ZodTypeAny, {
214540
+ id: string;
214541
+ body: string;
214542
+ isPrompt?: boolean | undefined;
214543
+ startsNewThread?: boolean | undefined;
214544
+ parentMessageId?: string | undefined;
214545
+ attachments?: {
214546
+ iterationId?: string | undefined;
214547
+ } | undefined;
214548
+ }, {
214549
+ id: string;
214550
+ body: string;
214551
+ isPrompt?: boolean | undefined;
214552
+ startsNewThread?: boolean | undefined;
214553
+ parentMessageId?: string | undefined;
214554
+ attachments?: {
214555
+ iterationId?: string | undefined;
214556
+ } | undefined;
214557
+ }>;
214558
+ }, "strip", z$1.ZodTypeAny, {
214559
+ id: string;
214560
+ description: string;
214561
+ initialMessage: {
214562
+ id: string;
214563
+ body: string;
214564
+ isPrompt?: boolean | undefined;
214565
+ startsNewThread?: boolean | undefined;
214566
+ parentMessageId?: string | undefined;
214567
+ attachments?: {
214568
+ iterationId?: string | undefined;
214569
+ } | undefined;
214570
+ };
214571
+ name?: string | undefined;
214572
+ sectionId?: string | undefined;
214573
+ afterFeatureId?: string | null | undefined;
214574
+ }, {
214575
+ id: string;
214576
+ description: string;
214577
+ initialMessage: {
214578
+ id: string;
214579
+ body: string;
214580
+ isPrompt?: boolean | undefined;
214581
+ startsNewThread?: boolean | undefined;
214582
+ parentMessageId?: string | undefined;
214583
+ attachments?: {
214584
+ iterationId?: string | undefined;
214585
+ } | undefined;
214586
+ };
214587
+ name?: string | undefined;
214588
+ sectionId?: string | undefined;
214589
+ afterFeatureId?: string | null | undefined;
214590
+ }>>;
214591
+ initialArtifact: z$1.ZodOptional<z$1.ZodObject<{
214592
+ id: z$1.ZodString;
214593
+ title: z$1.ZodString;
214594
+ sectionId: z$1.ZodOptional<z$1.ZodString>;
214595
+ afterArtifactId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
214596
+ initialMessage: z$1.ZodOptional<z$1.ZodObject<Pick<{
214597
+ id: z$1.ZodString;
214598
+ threadId: z$1.ZodString;
214599
+ sender: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
214600
+ type: z$1.ZodLiteral<"User">;
214601
+ userId: z$1.ZodString;
214602
+ }, "strip", z$1.ZodTypeAny, {
214603
+ type: "User";
214604
+ userId: string;
214605
+ }, {
214606
+ type: "User";
214607
+ userId: string;
214608
+ }>, z$1.ZodObject<{
214609
+ type: z$1.ZodLiteral<"Agent">;
214610
+ agentType: z$1.ZodEnum<["Ask", "Document", "Prototype", "ReleaseNotes"]>;
214611
+ }, "strip", z$1.ZodTypeAny, {
214612
+ type: "Agent";
214613
+ agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
214614
+ }, {
214615
+ type: "Agent";
214616
+ agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
214617
+ }>, z$1.ZodObject<{
214618
+ type: z$1.ZodLiteral<"System">;
214619
+ onBehalfOfUserId: z$1.ZodString;
214620
+ }, "strip", z$1.ZodTypeAny, {
214621
+ type: "System";
214622
+ onBehalfOfUserId: string;
214623
+ }, {
214624
+ type: "System";
214625
+ onBehalfOfUserId: string;
214626
+ }>]>;
214627
+ body: z$1.ZodString;
214628
+ isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
214629
+ startsNewThread: z$1.ZodOptional<z$1.ZodBoolean>;
214630
+ parentMessageId: z$1.ZodOptional<z$1.ZodString>;
214631
+ agentResponseTrackerId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
214632
+ attachments: z$1.ZodOptional<z$1.ZodObject<{
214633
+ iterationId: z$1.ZodOptional<z$1.ZodString>;
214634
+ files: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<Pick<{
214635
+ id: z$1.ZodString;
214636
+ name: z$1.ZodString;
214637
+ deduplicationKey: z$1.ZodString;
214638
+ pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
214639
+ storagePath: z$1.ZodString;
214640
+ url: z$1.ZodString;
214641
+ size: z$1.ZodNumber;
214642
+ source: z$1.ZodOptional<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
214643
+ type: z$1.ZodLiteral<"UserUpload">;
214644
+ userId: z$1.ZodString;
214645
+ }, "strip", z$1.ZodTypeAny, {
214646
+ type: "UserUpload";
214647
+ userId: string;
214648
+ }, {
214649
+ type: "UserUpload";
214650
+ userId: string;
214651
+ }>, z$1.ZodObject<{
214652
+ type: z$1.ZodLiteral<"Figma">;
214653
+ renderMode: z$1.ZodEnum<["Image", "HTML"]>;
214654
+ }, "strip", z$1.ZodTypeAny, {
214655
+ type: "Figma";
214656
+ renderMode: "Image" | "HTML";
214657
+ }, {
214658
+ type: "Figma";
214659
+ renderMode: "Image" | "HTML";
214660
+ }>]>>;
214661
+ }, "id" | "url" | "source">, "strip", z$1.ZodTypeAny, {
214662
+ id: string;
214663
+ url: string;
214664
+ source?: {
214665
+ type: "UserUpload";
214666
+ userId: string;
214667
+ } | {
214668
+ type: "Figma";
214669
+ renderMode: "Image" | "HTML";
214670
+ } | undefined;
214671
+ }, {
214672
+ id: string;
214673
+ url: string;
214674
+ source?: {
214675
+ type: "UserUpload";
214676
+ userId: string;
214677
+ } | {
214678
+ type: "Figma";
214679
+ renderMode: "Image" | "HTML";
214680
+ } | undefined;
214681
+ }>, "many">>;
214682
+ }, "strip", z$1.ZodTypeAny, {
214683
+ files?: {
214684
+ id: string;
214685
+ url: string;
214686
+ source?: {
214687
+ type: "UserUpload";
214688
+ userId: string;
214689
+ } | {
214690
+ type: "Figma";
214691
+ renderMode: "Image" | "HTML";
214692
+ } | undefined;
214693
+ }[] | undefined;
214694
+ iterationId?: string | undefined;
214695
+ }, {
214696
+ files?: {
214697
+ id: string;
214698
+ url: string;
214699
+ source?: {
214700
+ type: "UserUpload";
214701
+ userId: string;
214702
+ } | {
214703
+ type: "Figma";
214704
+ renderMode: "Image" | "HTML";
214705
+ } | undefined;
214706
+ }[] | undefined;
214707
+ iterationId?: string | undefined;
214708
+ }>>;
214709
+ replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
214710
+ createdAt: z$1.ZodString;
214711
+ updatedAt: z$1.ZodOptional<z$1.ZodString>;
214712
+ }, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
214713
+ attachments: z$1.ZodOptional<z$1.ZodObject<{
214714
+ iterationId: z$1.ZodOptional<z$1.ZodString>;
214715
+ fileIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
214716
+ }, "strip", z$1.ZodTypeAny, {
214717
+ fileIds?: string[] | undefined;
214718
+ iterationId?: string | undefined;
214719
+ }, {
214720
+ fileIds?: string[] | undefined;
214721
+ iterationId?: string | undefined;
214722
+ }>>;
214723
+ }, "strip", z$1.ZodTypeAny, {
214724
+ id: string;
214725
+ body: string;
214726
+ isPrompt?: boolean | undefined;
214727
+ startsNewThread?: boolean | undefined;
214728
+ parentMessageId?: string | undefined;
214729
+ attachments?: {
214730
+ fileIds?: string[] | undefined;
214731
+ iterationId?: string | undefined;
214732
+ } | undefined;
214733
+ }, {
214734
+ id: string;
214735
+ body: string;
214736
+ isPrompt?: boolean | undefined;
214737
+ startsNewThread?: boolean | undefined;
214738
+ parentMessageId?: string | undefined;
214739
+ attachments?: {
214740
+ fileIds?: string[] | undefined;
214741
+ iterationId?: string | undefined;
214742
+ } | undefined;
214743
+ }>>;
214744
+ }, "strip", z$1.ZodTypeAny, {
214745
+ id: string;
214746
+ title: string;
214747
+ sectionId?: string | undefined;
214748
+ afterArtifactId?: string | null | undefined;
214749
+ initialMessage?: {
214750
+ id: string;
214751
+ body: string;
214752
+ isPrompt?: boolean | undefined;
214753
+ startsNewThread?: boolean | undefined;
214754
+ parentMessageId?: string | undefined;
214755
+ attachments?: {
214756
+ fileIds?: string[] | undefined;
214757
+ iterationId?: string | undefined;
214758
+ } | undefined;
214759
+ } | undefined;
214760
+ }, {
214761
+ id: string;
214762
+ title: string;
214763
+ sectionId?: string | undefined;
214764
+ afterArtifactId?: string | null | undefined;
214765
+ initialMessage?: {
214766
+ id: string;
214767
+ body: string;
214768
+ isPrompt?: boolean | undefined;
214769
+ startsNewThread?: boolean | undefined;
214770
+ parentMessageId?: string | undefined;
214771
+ attachments?: {
214772
+ fileIds?: string[] | undefined;
214773
+ iterationId?: string | undefined;
214774
+ } | undefined;
214775
+ } | undefined;
214776
+ }>>;
214491
214777
  }, "strip", z$1.ZodTypeAny, {
214492
214778
  name: string;
214493
214779
  meta: {
@@ -214506,6 +214792,40 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
214506
214792
  role: "Admin" | "Viewer" | "Builder";
214507
214793
  workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
214508
214794
  }[] | undefined;
214795
+ initialFeature?: {
214796
+ id: string;
214797
+ description: string;
214798
+ initialMessage: {
214799
+ id: string;
214800
+ body: string;
214801
+ isPrompt?: boolean | undefined;
214802
+ startsNewThread?: boolean | undefined;
214803
+ parentMessageId?: string | undefined;
214804
+ attachments?: {
214805
+ iterationId?: string | undefined;
214806
+ } | undefined;
214807
+ };
214808
+ name?: string | undefined;
214809
+ sectionId?: string | undefined;
214810
+ afterFeatureId?: string | null | undefined;
214811
+ } | undefined;
214812
+ initialArtifact?: {
214813
+ id: string;
214814
+ title: string;
214815
+ sectionId?: string | undefined;
214816
+ afterArtifactId?: string | null | undefined;
214817
+ initialMessage?: {
214818
+ id: string;
214819
+ body: string;
214820
+ isPrompt?: boolean | undefined;
214821
+ startsNewThread?: boolean | undefined;
214822
+ parentMessageId?: string | undefined;
214823
+ attachments?: {
214824
+ fileIds?: string[] | undefined;
214825
+ iterationId?: string | undefined;
214826
+ } | undefined;
214827
+ } | undefined;
214828
+ } | undefined;
214509
214829
  }, {
214510
214830
  name: string;
214511
214831
  meta: {
@@ -214524,6 +214844,40 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
214524
214844
  workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
214525
214845
  }[] | undefined;
214526
214846
  defaultRole?: "Viewer" | "Builder" | undefined;
214847
+ initialFeature?: {
214848
+ id: string;
214849
+ description: string;
214850
+ initialMessage: {
214851
+ id: string;
214852
+ body: string;
214853
+ isPrompt?: boolean | undefined;
214854
+ startsNewThread?: boolean | undefined;
214855
+ parentMessageId?: string | undefined;
214856
+ attachments?: {
214857
+ iterationId?: string | undefined;
214858
+ } | undefined;
214859
+ };
214860
+ name?: string | undefined;
214861
+ sectionId?: string | undefined;
214862
+ afterFeatureId?: string | null | undefined;
214863
+ } | undefined;
214864
+ initialArtifact?: {
214865
+ id: string;
214866
+ title: string;
214867
+ sectionId?: string | undefined;
214868
+ afterArtifactId?: string | null | undefined;
214869
+ initialMessage?: {
214870
+ id: string;
214871
+ body: string;
214872
+ isPrompt?: boolean | undefined;
214873
+ startsNewThread?: boolean | undefined;
214874
+ parentMessageId?: string | undefined;
214875
+ attachments?: {
214876
+ fileIds?: string[] | undefined;
214877
+ iterationId?: string | undefined;
214878
+ } | undefined;
214879
+ } | undefined;
214880
+ } | undefined;
214527
214881
  }>;
214528
214882
  type DTOForgeProjectCreate = z$1.infer<typeof DTOForgeProjectCreate>;
214529
214883
  declare const DTOForgeProjectUpdate: z$1.ZodObject<{
@@ -214545,161 +214899,515 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
214545
214899
  fpContextId: z$1.ZodOptional<z$1.ZodString>;
214546
214900
  instruction: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
214547
214901
  defaultRole: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodEnum<["Viewer", "Builder"]>>>;
214548
- } & {
214549
- id: z$1.ZodString;
214550
- }, "strip", z$1.ZodTypeAny, {
214551
- id: string;
214552
- name?: string | undefined;
214553
- meta?: {
214554
- name: string;
214555
- description?: string | undefined;
214556
- } | undefined;
214557
- emoji?: string | undefined;
214558
- tags?: string[] | undefined;
214559
- accessMode?: "Open" | "InviteOnly" | "Unlisted" | undefined;
214560
- isArchived?: boolean | undefined;
214561
- fpContextId?: string | undefined;
214562
- instruction?: string | null | undefined;
214563
- defaultRole?: "Viewer" | "Builder" | undefined;
214564
- }, {
214565
- id: string;
214566
- name?: string | undefined;
214567
- meta?: {
214568
- name: string;
214569
- description?: string | undefined;
214570
- } | undefined;
214571
- emoji?: string | undefined;
214572
- tags?: string[] | undefined;
214573
- accessMode?: "Open" | "InviteOnly" | "Unlisted" | undefined;
214574
- isArchived?: boolean | undefined;
214575
- fpContextId?: string | undefined;
214576
- instruction?: string | null | undefined;
214577
- defaultRole?: "Viewer" | "Builder" | undefined;
214578
- }>;
214579
- type DTOForgeProjectUpdate = z$1.infer<typeof DTOForgeProjectUpdate>;
214580
- declare const DTOForgeProjectRemoveResponse: z$1.ZodObject<{
214581
- ok: z$1.ZodLiteral<true>;
214582
- }, "strip", z$1.ZodTypeAny, {
214583
- ok: true;
214584
- }, {
214585
- ok: true;
214586
- }>;
214587
- type DTOForgeProjectRemoveResponse = z$1.infer<typeof DTOForgeProjectRemoveResponse>;
214588
-
214589
- declare const DTOForgeChatMessage: z$1.ZodObject<{
214590
- id: z$1.ZodString;
214591
- threadId: z$1.ZodString;
214592
- payload: z$1.ZodString;
214593
- createdAt: z$1.ZodDate;
214594
- updatedAt: z$1.ZodDate;
214595
- opikTraceId: z$1.ZodOptional<z$1.ZodString>;
214596
- sender: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
214597
- type: z$1.ZodLiteral<"User">;
214598
- userId: z$1.ZodString;
214599
- }, "strip", z$1.ZodTypeAny, {
214600
- type: "User";
214601
- userId: string;
214602
- }, {
214603
- type: "User";
214604
- userId: string;
214605
- }>, z$1.ZodObject<{
214606
- type: z$1.ZodLiteral<"Agent">;
214607
- persona: z$1.ZodLiteral<"Amy">;
214608
- }, "strip", z$1.ZodTypeAny, {
214609
- type: "Agent";
214610
- persona: "Amy";
214611
- }, {
214612
- type: "Agent";
214613
- persona: "Amy";
214614
- }>, z$1.ZodObject<{
214615
- type: z$1.ZodLiteral<"Developer">;
214616
- }, "strip", z$1.ZodTypeAny, {
214617
- type: "Developer";
214618
- }, {
214619
- type: "Developer";
214620
- }>, z$1.ZodObject<{
214621
- type: z$1.ZodLiteral<"FunctionCallInput">;
214622
- }, "strip", z$1.ZodTypeAny, {
214623
- type: "FunctionCallInput";
214624
- }, {
214625
- type: "FunctionCallInput";
214626
- }>, z$1.ZodObject<{
214627
- type: z$1.ZodLiteral<"FunctionCallOutput">;
214628
- }, "strip", z$1.ZodTypeAny, {
214629
- type: "FunctionCallOutput";
214630
- }, {
214631
- type: "FunctionCallOutput";
214632
- }>]>;
214633
- userScore: z$1.ZodOptional<z$1.ZodObject<{
214634
- type: z$1.ZodEnum<["Positive", "Negative"]>;
214635
- tags: z$1.ZodArray<z$1.ZodString, "many">;
214636
- comment: z$1.ZodOptional<z$1.ZodString>;
214902
+ initialFeature: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
214903
+ id: z$1.ZodString;
214904
+ name: z$1.ZodOptional<z$1.ZodString>;
214905
+ description: z$1.ZodString;
214906
+ sectionId: z$1.ZodOptional<z$1.ZodString>;
214907
+ afterFeatureId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
214908
+ initialMessage: z$1.ZodObject<Pick<{
214909
+ id: z$1.ZodString;
214910
+ sender: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
214911
+ type: z$1.ZodLiteral<"User">;
214912
+ userId: z$1.ZodString;
214913
+ }, "strip", z$1.ZodTypeAny, {
214914
+ type: "User";
214915
+ userId: string;
214916
+ }, {
214917
+ type: "User";
214918
+ userId: string;
214919
+ }>, z$1.ZodObject<{
214920
+ type: z$1.ZodLiteral<"Agent">;
214921
+ }, "strip", z$1.ZodTypeAny, {
214922
+ type: "Agent";
214923
+ }, {
214924
+ type: "Agent";
214925
+ }>, z$1.ZodObject<{
214926
+ type: z$1.ZodLiteral<"System">;
214927
+ onBehalfOfUserId: z$1.ZodString;
214928
+ }, "strip", z$1.ZodTypeAny, {
214929
+ type: "System";
214930
+ onBehalfOfUserId: string;
214931
+ }, {
214932
+ type: "System";
214933
+ onBehalfOfUserId: string;
214934
+ }>]>;
214935
+ body: z$1.ZodString;
214936
+ isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
214937
+ startsNewThread: z$1.ZodOptional<z$1.ZodBoolean>;
214938
+ parentMessageId: z$1.ZodOptional<z$1.ZodString>;
214939
+ agentResponseTrackerId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
214940
+ attachments: z$1.ZodOptional<z$1.ZodObject<{
214941
+ iterationId: z$1.ZodOptional<z$1.ZodString>;
214942
+ }, "strip", z$1.ZodTypeAny, {
214943
+ iterationId?: string | undefined;
214944
+ }, {
214945
+ iterationId?: string | undefined;
214946
+ }>>;
214947
+ replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
214948
+ createdAt: z$1.ZodString;
214949
+ updatedAt: z$1.ZodOptional<z$1.ZodString>;
214950
+ }, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId" | "attachments">, "strip", z$1.ZodTypeAny, {
214951
+ id: string;
214952
+ body: string;
214953
+ isPrompt?: boolean | undefined;
214954
+ startsNewThread?: boolean | undefined;
214955
+ parentMessageId?: string | undefined;
214956
+ attachments?: {
214957
+ iterationId?: string | undefined;
214958
+ } | undefined;
214959
+ }, {
214960
+ id: string;
214961
+ body: string;
214962
+ isPrompt?: boolean | undefined;
214963
+ startsNewThread?: boolean | undefined;
214964
+ parentMessageId?: string | undefined;
214965
+ attachments?: {
214966
+ iterationId?: string | undefined;
214967
+ } | undefined;
214968
+ }>;
214637
214969
  }, "strip", z$1.ZodTypeAny, {
214638
- type: "Positive" | "Negative";
214639
- tags: string[];
214640
- comment?: string | undefined;
214970
+ id: string;
214971
+ description: string;
214972
+ initialMessage: {
214973
+ id: string;
214974
+ body: string;
214975
+ isPrompt?: boolean | undefined;
214976
+ startsNewThread?: boolean | undefined;
214977
+ parentMessageId?: string | undefined;
214978
+ attachments?: {
214979
+ iterationId?: string | undefined;
214980
+ } | undefined;
214981
+ };
214982
+ name?: string | undefined;
214983
+ sectionId?: string | undefined;
214984
+ afterFeatureId?: string | null | undefined;
214641
214985
  }, {
214642
- type: "Positive" | "Negative";
214643
- tags: string[];
214644
- comment?: string | undefined;
214645
- }>>;
214646
- }, "strip", z$1.ZodTypeAny, {
214647
- id: string;
214648
- createdAt: Date;
214649
- updatedAt: Date;
214650
- threadId: string;
214651
- payload: string;
214652
- sender: {
214653
- type: "User";
214654
- userId: string;
214655
- } | {
214656
- type: "Agent";
214657
- persona: "Amy";
214658
- } | {
214659
- type: "Developer";
214660
- } | {
214661
- type: "FunctionCallInput";
214662
- } | {
214663
- type: "FunctionCallOutput";
214664
- };
214665
- opikTraceId?: string | undefined;
214666
- userScore?: {
214667
- type: "Positive" | "Negative";
214668
- tags: string[];
214669
- comment?: string | undefined;
214670
- } | undefined;
214671
- }, {
214672
- id: string;
214673
- createdAt: Date;
214674
- updatedAt: Date;
214675
- threadId: string;
214676
- payload: string;
214677
- sender: {
214678
- type: "User";
214679
- userId: string;
214680
- } | {
214681
- type: "Agent";
214682
- persona: "Amy";
214683
- } | {
214684
- type: "Developer";
214685
- } | {
214686
- type: "FunctionCallInput";
214687
- } | {
214688
- type: "FunctionCallOutput";
214689
- };
214690
- opikTraceId?: string | undefined;
214691
- userScore?: {
214692
- type: "Positive" | "Negative";
214693
- tags: string[];
214694
- comment?: string | undefined;
214695
- } | undefined;
214696
- }>;
214697
- type DTOForgeChatMessage = z$1.infer<typeof DTOForgeChatMessage>;
214698
- declare const DTOForgeChatThread: z$1.ZodObject<{
214699
- id: z$1.ZodString;
214700
- title: z$1.ZodString;
214701
- workspaceId: z$1.ZodString;
214702
- userId: z$1.ZodString;
214986
+ id: string;
214987
+ description: string;
214988
+ initialMessage: {
214989
+ id: string;
214990
+ body: string;
214991
+ isPrompt?: boolean | undefined;
214992
+ startsNewThread?: boolean | undefined;
214993
+ parentMessageId?: string | undefined;
214994
+ attachments?: {
214995
+ iterationId?: string | undefined;
214996
+ } | undefined;
214997
+ };
214998
+ name?: string | undefined;
214999
+ sectionId?: string | undefined;
215000
+ afterFeatureId?: string | null | undefined;
215001
+ }>>>;
215002
+ initialArtifact: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
215003
+ id: z$1.ZodString;
215004
+ title: z$1.ZodString;
215005
+ sectionId: z$1.ZodOptional<z$1.ZodString>;
215006
+ afterArtifactId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
215007
+ initialMessage: z$1.ZodOptional<z$1.ZodObject<Pick<{
215008
+ id: z$1.ZodString;
215009
+ threadId: z$1.ZodString;
215010
+ sender: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
215011
+ type: z$1.ZodLiteral<"User">;
215012
+ userId: z$1.ZodString;
215013
+ }, "strip", z$1.ZodTypeAny, {
215014
+ type: "User";
215015
+ userId: string;
215016
+ }, {
215017
+ type: "User";
215018
+ userId: string;
215019
+ }>, z$1.ZodObject<{
215020
+ type: z$1.ZodLiteral<"Agent">;
215021
+ agentType: z$1.ZodEnum<["Ask", "Document", "Prototype", "ReleaseNotes"]>;
215022
+ }, "strip", z$1.ZodTypeAny, {
215023
+ type: "Agent";
215024
+ agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
215025
+ }, {
215026
+ type: "Agent";
215027
+ agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
215028
+ }>, z$1.ZodObject<{
215029
+ type: z$1.ZodLiteral<"System">;
215030
+ onBehalfOfUserId: z$1.ZodString;
215031
+ }, "strip", z$1.ZodTypeAny, {
215032
+ type: "System";
215033
+ onBehalfOfUserId: string;
215034
+ }, {
215035
+ type: "System";
215036
+ onBehalfOfUserId: string;
215037
+ }>]>;
215038
+ body: z$1.ZodString;
215039
+ isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
215040
+ startsNewThread: z$1.ZodOptional<z$1.ZodBoolean>;
215041
+ parentMessageId: z$1.ZodOptional<z$1.ZodString>;
215042
+ agentResponseTrackerId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
215043
+ attachments: z$1.ZodOptional<z$1.ZodObject<{
215044
+ iterationId: z$1.ZodOptional<z$1.ZodString>;
215045
+ files: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<Pick<{
215046
+ id: z$1.ZodString;
215047
+ name: z$1.ZodString;
215048
+ deduplicationKey: z$1.ZodString;
215049
+ pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
215050
+ storagePath: z$1.ZodString;
215051
+ url: z$1.ZodString;
215052
+ size: z$1.ZodNumber;
215053
+ source: z$1.ZodOptional<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
215054
+ type: z$1.ZodLiteral<"UserUpload">;
215055
+ userId: z$1.ZodString;
215056
+ }, "strip", z$1.ZodTypeAny, {
215057
+ type: "UserUpload";
215058
+ userId: string;
215059
+ }, {
215060
+ type: "UserUpload";
215061
+ userId: string;
215062
+ }>, z$1.ZodObject<{
215063
+ type: z$1.ZodLiteral<"Figma">;
215064
+ renderMode: z$1.ZodEnum<["Image", "HTML"]>;
215065
+ }, "strip", z$1.ZodTypeAny, {
215066
+ type: "Figma";
215067
+ renderMode: "Image" | "HTML";
215068
+ }, {
215069
+ type: "Figma";
215070
+ renderMode: "Image" | "HTML";
215071
+ }>]>>;
215072
+ }, "id" | "url" | "source">, "strip", z$1.ZodTypeAny, {
215073
+ id: string;
215074
+ url: string;
215075
+ source?: {
215076
+ type: "UserUpload";
215077
+ userId: string;
215078
+ } | {
215079
+ type: "Figma";
215080
+ renderMode: "Image" | "HTML";
215081
+ } | undefined;
215082
+ }, {
215083
+ id: string;
215084
+ url: string;
215085
+ source?: {
215086
+ type: "UserUpload";
215087
+ userId: string;
215088
+ } | {
215089
+ type: "Figma";
215090
+ renderMode: "Image" | "HTML";
215091
+ } | undefined;
215092
+ }>, "many">>;
215093
+ }, "strip", z$1.ZodTypeAny, {
215094
+ files?: {
215095
+ id: string;
215096
+ url: string;
215097
+ source?: {
215098
+ type: "UserUpload";
215099
+ userId: string;
215100
+ } | {
215101
+ type: "Figma";
215102
+ renderMode: "Image" | "HTML";
215103
+ } | undefined;
215104
+ }[] | undefined;
215105
+ iterationId?: string | undefined;
215106
+ }, {
215107
+ files?: {
215108
+ id: string;
215109
+ url: string;
215110
+ source?: {
215111
+ type: "UserUpload";
215112
+ userId: string;
215113
+ } | {
215114
+ type: "Figma";
215115
+ renderMode: "Image" | "HTML";
215116
+ } | undefined;
215117
+ }[] | undefined;
215118
+ iterationId?: string | undefined;
215119
+ }>>;
215120
+ replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
215121
+ createdAt: z$1.ZodString;
215122
+ updatedAt: z$1.ZodOptional<z$1.ZodString>;
215123
+ }, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
215124
+ attachments: z$1.ZodOptional<z$1.ZodObject<{
215125
+ iterationId: z$1.ZodOptional<z$1.ZodString>;
215126
+ fileIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
215127
+ }, "strip", z$1.ZodTypeAny, {
215128
+ fileIds?: string[] | undefined;
215129
+ iterationId?: string | undefined;
215130
+ }, {
215131
+ fileIds?: string[] | undefined;
215132
+ iterationId?: string | undefined;
215133
+ }>>;
215134
+ }, "strip", z$1.ZodTypeAny, {
215135
+ id: string;
215136
+ body: string;
215137
+ isPrompt?: boolean | undefined;
215138
+ startsNewThread?: boolean | undefined;
215139
+ parentMessageId?: string | undefined;
215140
+ attachments?: {
215141
+ fileIds?: string[] | undefined;
215142
+ iterationId?: string | undefined;
215143
+ } | undefined;
215144
+ }, {
215145
+ id: string;
215146
+ body: string;
215147
+ isPrompt?: boolean | undefined;
215148
+ startsNewThread?: boolean | undefined;
215149
+ parentMessageId?: string | undefined;
215150
+ attachments?: {
215151
+ fileIds?: string[] | undefined;
215152
+ iterationId?: string | undefined;
215153
+ } | undefined;
215154
+ }>>;
215155
+ }, "strip", z$1.ZodTypeAny, {
215156
+ id: string;
215157
+ title: string;
215158
+ sectionId?: string | undefined;
215159
+ afterArtifactId?: string | null | undefined;
215160
+ initialMessage?: {
215161
+ id: string;
215162
+ body: string;
215163
+ isPrompt?: boolean | undefined;
215164
+ startsNewThread?: boolean | undefined;
215165
+ parentMessageId?: string | undefined;
215166
+ attachments?: {
215167
+ fileIds?: string[] | undefined;
215168
+ iterationId?: string | undefined;
215169
+ } | undefined;
215170
+ } | undefined;
215171
+ }, {
215172
+ id: string;
215173
+ title: string;
215174
+ sectionId?: string | undefined;
215175
+ afterArtifactId?: string | null | undefined;
215176
+ initialMessage?: {
215177
+ id: string;
215178
+ body: string;
215179
+ isPrompt?: boolean | undefined;
215180
+ startsNewThread?: boolean | undefined;
215181
+ parentMessageId?: string | undefined;
215182
+ attachments?: {
215183
+ fileIds?: string[] | undefined;
215184
+ iterationId?: string | undefined;
215185
+ } | undefined;
215186
+ } | undefined;
215187
+ }>>>;
215188
+ } & {
215189
+ id: z$1.ZodString;
215190
+ }, "strip", z$1.ZodTypeAny, {
215191
+ id: string;
215192
+ name?: string | undefined;
215193
+ meta?: {
215194
+ name: string;
215195
+ description?: string | undefined;
215196
+ } | undefined;
215197
+ emoji?: string | undefined;
215198
+ tags?: string[] | undefined;
215199
+ accessMode?: "Open" | "InviteOnly" | "Unlisted" | undefined;
215200
+ isArchived?: boolean | undefined;
215201
+ fpContextId?: string | undefined;
215202
+ instruction?: string | null | undefined;
215203
+ defaultRole?: "Viewer" | "Builder" | undefined;
215204
+ initialFeature?: {
215205
+ id: string;
215206
+ description: string;
215207
+ initialMessage: {
215208
+ id: string;
215209
+ body: string;
215210
+ isPrompt?: boolean | undefined;
215211
+ startsNewThread?: boolean | undefined;
215212
+ parentMessageId?: string | undefined;
215213
+ attachments?: {
215214
+ iterationId?: string | undefined;
215215
+ } | undefined;
215216
+ };
215217
+ name?: string | undefined;
215218
+ sectionId?: string | undefined;
215219
+ afterFeatureId?: string | null | undefined;
215220
+ } | undefined;
215221
+ initialArtifact?: {
215222
+ id: string;
215223
+ title: string;
215224
+ sectionId?: string | undefined;
215225
+ afterArtifactId?: string | null | undefined;
215226
+ initialMessage?: {
215227
+ id: string;
215228
+ body: string;
215229
+ isPrompt?: boolean | undefined;
215230
+ startsNewThread?: boolean | undefined;
215231
+ parentMessageId?: string | undefined;
215232
+ attachments?: {
215233
+ fileIds?: string[] | undefined;
215234
+ iterationId?: string | undefined;
215235
+ } | undefined;
215236
+ } | undefined;
215237
+ } | undefined;
215238
+ }, {
215239
+ id: string;
215240
+ name?: string | undefined;
215241
+ meta?: {
215242
+ name: string;
215243
+ description?: string | undefined;
215244
+ } | undefined;
215245
+ emoji?: string | undefined;
215246
+ tags?: string[] | undefined;
215247
+ accessMode?: "Open" | "InviteOnly" | "Unlisted" | undefined;
215248
+ isArchived?: boolean | undefined;
215249
+ fpContextId?: string | undefined;
215250
+ instruction?: string | null | undefined;
215251
+ defaultRole?: "Viewer" | "Builder" | undefined;
215252
+ initialFeature?: {
215253
+ id: string;
215254
+ description: string;
215255
+ initialMessage: {
215256
+ id: string;
215257
+ body: string;
215258
+ isPrompt?: boolean | undefined;
215259
+ startsNewThread?: boolean | undefined;
215260
+ parentMessageId?: string | undefined;
215261
+ attachments?: {
215262
+ iterationId?: string | undefined;
215263
+ } | undefined;
215264
+ };
215265
+ name?: string | undefined;
215266
+ sectionId?: string | undefined;
215267
+ afterFeatureId?: string | null | undefined;
215268
+ } | undefined;
215269
+ initialArtifact?: {
215270
+ id: string;
215271
+ title: string;
215272
+ sectionId?: string | undefined;
215273
+ afterArtifactId?: string | null | undefined;
215274
+ initialMessage?: {
215275
+ id: string;
215276
+ body: string;
215277
+ isPrompt?: boolean | undefined;
215278
+ startsNewThread?: boolean | undefined;
215279
+ parentMessageId?: string | undefined;
215280
+ attachments?: {
215281
+ fileIds?: string[] | undefined;
215282
+ iterationId?: string | undefined;
215283
+ } | undefined;
215284
+ } | undefined;
215285
+ } | undefined;
215286
+ }>;
215287
+ type DTOForgeProjectUpdate = z$1.infer<typeof DTOForgeProjectUpdate>;
215288
+ declare const DTOForgeProjectRemoveResponse: z$1.ZodObject<{
215289
+ ok: z$1.ZodLiteral<true>;
215290
+ }, "strip", z$1.ZodTypeAny, {
215291
+ ok: true;
215292
+ }, {
215293
+ ok: true;
215294
+ }>;
215295
+ type DTOForgeProjectRemoveResponse = z$1.infer<typeof DTOForgeProjectRemoveResponse>;
215296
+
215297
+ declare const DTOForgeChatMessage: z$1.ZodObject<{
215298
+ id: z$1.ZodString;
215299
+ threadId: z$1.ZodString;
215300
+ payload: z$1.ZodString;
215301
+ createdAt: z$1.ZodDate;
215302
+ updatedAt: z$1.ZodDate;
215303
+ opikTraceId: z$1.ZodOptional<z$1.ZodString>;
215304
+ sender: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
215305
+ type: z$1.ZodLiteral<"User">;
215306
+ userId: z$1.ZodString;
215307
+ }, "strip", z$1.ZodTypeAny, {
215308
+ type: "User";
215309
+ userId: string;
215310
+ }, {
215311
+ type: "User";
215312
+ userId: string;
215313
+ }>, z$1.ZodObject<{
215314
+ type: z$1.ZodLiteral<"Agent">;
215315
+ persona: z$1.ZodLiteral<"Amy">;
215316
+ }, "strip", z$1.ZodTypeAny, {
215317
+ type: "Agent";
215318
+ persona: "Amy";
215319
+ }, {
215320
+ type: "Agent";
215321
+ persona: "Amy";
215322
+ }>, z$1.ZodObject<{
215323
+ type: z$1.ZodLiteral<"Developer">;
215324
+ }, "strip", z$1.ZodTypeAny, {
215325
+ type: "Developer";
215326
+ }, {
215327
+ type: "Developer";
215328
+ }>, z$1.ZodObject<{
215329
+ type: z$1.ZodLiteral<"FunctionCallInput">;
215330
+ }, "strip", z$1.ZodTypeAny, {
215331
+ type: "FunctionCallInput";
215332
+ }, {
215333
+ type: "FunctionCallInput";
215334
+ }>, z$1.ZodObject<{
215335
+ type: z$1.ZodLiteral<"FunctionCallOutput">;
215336
+ }, "strip", z$1.ZodTypeAny, {
215337
+ type: "FunctionCallOutput";
215338
+ }, {
215339
+ type: "FunctionCallOutput";
215340
+ }>]>;
215341
+ userScore: z$1.ZodOptional<z$1.ZodObject<{
215342
+ type: z$1.ZodEnum<["Positive", "Negative"]>;
215343
+ tags: z$1.ZodArray<z$1.ZodString, "many">;
215344
+ comment: z$1.ZodOptional<z$1.ZodString>;
215345
+ }, "strip", z$1.ZodTypeAny, {
215346
+ type: "Positive" | "Negative";
215347
+ tags: string[];
215348
+ comment?: string | undefined;
215349
+ }, {
215350
+ type: "Positive" | "Negative";
215351
+ tags: string[];
215352
+ comment?: string | undefined;
215353
+ }>>;
215354
+ }, "strip", z$1.ZodTypeAny, {
215355
+ id: string;
215356
+ createdAt: Date;
215357
+ updatedAt: Date;
215358
+ threadId: string;
215359
+ payload: string;
215360
+ sender: {
215361
+ type: "User";
215362
+ userId: string;
215363
+ } | {
215364
+ type: "Agent";
215365
+ persona: "Amy";
215366
+ } | {
215367
+ type: "Developer";
215368
+ } | {
215369
+ type: "FunctionCallInput";
215370
+ } | {
215371
+ type: "FunctionCallOutput";
215372
+ };
215373
+ opikTraceId?: string | undefined;
215374
+ userScore?: {
215375
+ type: "Positive" | "Negative";
215376
+ tags: string[];
215377
+ comment?: string | undefined;
215378
+ } | undefined;
215379
+ }, {
215380
+ id: string;
215381
+ createdAt: Date;
215382
+ updatedAt: Date;
215383
+ threadId: string;
215384
+ payload: string;
215385
+ sender: {
215386
+ type: "User";
215387
+ userId: string;
215388
+ } | {
215389
+ type: "Agent";
215390
+ persona: "Amy";
215391
+ } | {
215392
+ type: "Developer";
215393
+ } | {
215394
+ type: "FunctionCallInput";
215395
+ } | {
215396
+ type: "FunctionCallOutput";
215397
+ };
215398
+ opikTraceId?: string | undefined;
215399
+ userScore?: {
215400
+ type: "Positive" | "Negative";
215401
+ tags: string[];
215402
+ comment?: string | undefined;
215403
+ } | undefined;
215404
+ }>;
215405
+ type DTOForgeChatMessage = z$1.infer<typeof DTOForgeChatMessage>;
215406
+ declare const DTOForgeChatThread: z$1.ZodObject<{
215407
+ id: z$1.ZodString;
215408
+ title: z$1.ZodString;
215409
+ workspaceId: z$1.ZodString;
215410
+ userId: z$1.ZodString;
214703
215411
  createdAt: z$1.ZodDate;
214704
215412
  updatedAt: z$1.ZodDate;
214705
215413
  }, "strip", z$1.ZodTypeAny, {
@@ -246497,6 +247205,1081 @@ declare const DTOWorkspaceResponse: z$1.ZodObject<{
246497
247205
  }>;
246498
247206
  type DTOWorkspaceResponse = z$1.infer<typeof DTOWorkspaceResponse>;
246499
247207
 
247208
+ declare const DTOTrailEvent: z$1.ZodIntersection<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
247209
+ type: z$1.ZodLiteral<"IterationCreated">;
247210
+ payload: z$1.ZodObject<{
247211
+ iterationName: z$1.ZodString;
247212
+ iterationId: z$1.ZodString;
247213
+ featureId: z$1.ZodString;
247214
+ }, "strip", z$1.ZodTypeAny, {
247215
+ iterationId: string;
247216
+ featureId: string;
247217
+ iterationName: string;
247218
+ }, {
247219
+ iterationId: string;
247220
+ featureId: string;
247221
+ iterationName: string;
247222
+ }>;
247223
+ }, "strip", z$1.ZodTypeAny, {
247224
+ type: "IterationCreated";
247225
+ payload: {
247226
+ iterationId: string;
247227
+ featureId: string;
247228
+ iterationName: string;
247229
+ };
247230
+ }, {
247231
+ type: "IterationCreated";
247232
+ payload: {
247233
+ iterationId: string;
247234
+ featureId: string;
247235
+ iterationName: string;
247236
+ };
247237
+ }>, z$1.ZodObject<{
247238
+ type: z$1.ZodLiteral<"IterationBookmarked">;
247239
+ payload: z$1.ZodObject<{
247240
+ iterationId: z$1.ZodString;
247241
+ featureId: z$1.ZodString;
247242
+ iterationName: z$1.ZodString;
247243
+ }, "strip", z$1.ZodTypeAny, {
247244
+ iterationId: string;
247245
+ featureId: string;
247246
+ iterationName: string;
247247
+ }, {
247248
+ iterationId: string;
247249
+ featureId: string;
247250
+ iterationName: string;
247251
+ }>;
247252
+ }, "strip", z$1.ZodTypeAny, {
247253
+ type: "IterationBookmarked";
247254
+ payload: {
247255
+ iterationId: string;
247256
+ featureId: string;
247257
+ iterationName: string;
247258
+ };
247259
+ }, {
247260
+ type: "IterationBookmarked";
247261
+ payload: {
247262
+ iterationId: string;
247263
+ featureId: string;
247264
+ iterationName: string;
247265
+ };
247266
+ }>, z$1.ZodObject<{
247267
+ type: z$1.ZodLiteral<"FeatureCreated">;
247268
+ payload: z$1.ZodObject<{
247269
+ featureId: z$1.ZodString;
247270
+ name: z$1.ZodString;
247271
+ description: z$1.ZodOptional<z$1.ZodString>;
247272
+ }, "strip", z$1.ZodTypeAny, {
247273
+ name: string;
247274
+ featureId: string;
247275
+ description?: string | undefined;
247276
+ }, {
247277
+ name: string;
247278
+ featureId: string;
247279
+ description?: string | undefined;
247280
+ }>;
247281
+ }, "strip", z$1.ZodTypeAny, {
247282
+ type: "FeatureCreated";
247283
+ payload: {
247284
+ name: string;
247285
+ featureId: string;
247286
+ description?: string | undefined;
247287
+ };
247288
+ }, {
247289
+ type: "FeatureCreated";
247290
+ payload: {
247291
+ name: string;
247292
+ featureId: string;
247293
+ description?: string | undefined;
247294
+ };
247295
+ }>, z$1.ZodObject<{
247296
+ type: z$1.ZodLiteral<"FeatureDeleted">;
247297
+ payload: z$1.ZodObject<{
247298
+ featureId: z$1.ZodString;
247299
+ name: z$1.ZodString;
247300
+ }, "strip", z$1.ZodTypeAny, {
247301
+ name: string;
247302
+ featureId: string;
247303
+ }, {
247304
+ name: string;
247305
+ featureId: string;
247306
+ }>;
247307
+ }, "strip", z$1.ZodTypeAny, {
247308
+ type: "FeatureDeleted";
247309
+ payload: {
247310
+ name: string;
247311
+ featureId: string;
247312
+ };
247313
+ }, {
247314
+ type: "FeatureDeleted";
247315
+ payload: {
247316
+ name: string;
247317
+ featureId: string;
247318
+ };
247319
+ }>, z$1.ZodObject<{
247320
+ type: z$1.ZodLiteral<"DocumentCreated">;
247321
+ payload: z$1.ZodObject<{
247322
+ documentId: z$1.ZodString;
247323
+ title: z$1.ZodString;
247324
+ sectionId: z$1.ZodOptional<z$1.ZodString>;
247325
+ }, "strip", z$1.ZodTypeAny, {
247326
+ title: string;
247327
+ documentId: string;
247328
+ sectionId?: string | undefined;
247329
+ }, {
247330
+ title: string;
247331
+ documentId: string;
247332
+ sectionId?: string | undefined;
247333
+ }>;
247334
+ }, "strip", z$1.ZodTypeAny, {
247335
+ type: "DocumentCreated";
247336
+ payload: {
247337
+ title: string;
247338
+ documentId: string;
247339
+ sectionId?: string | undefined;
247340
+ };
247341
+ }, {
247342
+ type: "DocumentCreated";
247343
+ payload: {
247344
+ title: string;
247345
+ documentId: string;
247346
+ sectionId?: string | undefined;
247347
+ };
247348
+ }>, z$1.ZodObject<{
247349
+ type: z$1.ZodLiteral<"DocumentDeleted">;
247350
+ payload: z$1.ZodObject<{
247351
+ documentId: z$1.ZodString;
247352
+ title: z$1.ZodString;
247353
+ }, "strip", z$1.ZodTypeAny, {
247354
+ title: string;
247355
+ documentId: string;
247356
+ }, {
247357
+ title: string;
247358
+ documentId: string;
247359
+ }>;
247360
+ }, "strip", z$1.ZodTypeAny, {
247361
+ type: "DocumentDeleted";
247362
+ payload: {
247363
+ title: string;
247364
+ documentId: string;
247365
+ };
247366
+ }, {
247367
+ type: "DocumentDeleted";
247368
+ payload: {
247369
+ title: string;
247370
+ documentId: string;
247371
+ };
247372
+ }>, z$1.ZodObject<{
247373
+ type: z$1.ZodLiteral<"ProjectCreated">;
247374
+ payload: z$1.ZodObject<{
247375
+ name: z$1.ZodString;
247376
+ description: z$1.ZodOptional<z$1.ZodString>;
247377
+ }, "strip", z$1.ZodTypeAny, {
247378
+ name: string;
247379
+ description?: string | undefined;
247380
+ }, {
247381
+ name: string;
247382
+ description?: string | undefined;
247383
+ }>;
247384
+ }, "strip", z$1.ZodTypeAny, {
247385
+ type: "ProjectCreated";
247386
+ payload: {
247387
+ name: string;
247388
+ description?: string | undefined;
247389
+ };
247390
+ }, {
247391
+ type: "ProjectCreated";
247392
+ payload: {
247393
+ name: string;
247394
+ description?: string | undefined;
247395
+ };
247396
+ }>, z$1.ZodObject<{
247397
+ type: z$1.ZodLiteral<"ProjectArchived">;
247398
+ payload: z$1.ZodObject<{
247399
+ name: z$1.ZodString;
247400
+ }, "strip", z$1.ZodTypeAny, {
247401
+ name: string;
247402
+ }, {
247403
+ name: string;
247404
+ }>;
247405
+ }, "strip", z$1.ZodTypeAny, {
247406
+ type: "ProjectArchived";
247407
+ payload: {
247408
+ name: string;
247409
+ };
247410
+ }, {
247411
+ type: "ProjectArchived";
247412
+ payload: {
247413
+ name: string;
247414
+ };
247415
+ }>, z$1.ZodObject<{
247416
+ type: z$1.ZodLiteral<"IterationPromoted">;
247417
+ payload: z$1.ZodObject<{
247418
+ iterationId: z$1.ZodString;
247419
+ featureId: z$1.ZodString;
247420
+ iterationName: z$1.ZodString;
247421
+ }, "strip", z$1.ZodTypeAny, {
247422
+ iterationId: string;
247423
+ featureId: string;
247424
+ iterationName: string;
247425
+ }, {
247426
+ iterationId: string;
247427
+ featureId: string;
247428
+ iterationName: string;
247429
+ }>;
247430
+ }, "strip", z$1.ZodTypeAny, {
247431
+ type: "IterationPromoted";
247432
+ payload: {
247433
+ iterationId: string;
247434
+ featureId: string;
247435
+ iterationName: string;
247436
+ };
247437
+ }, {
247438
+ type: "IterationPromoted";
247439
+ payload: {
247440
+ iterationId: string;
247441
+ featureId: string;
247442
+ iterationName: string;
247443
+ };
247444
+ }>, z$1.ZodObject<{
247445
+ type: z$1.ZodLiteral<"ProjectContextCreated">;
247446
+ payload: z$1.ZodObject<{
247447
+ contextId: z$1.ZodNumber;
247448
+ name: z$1.ZodString;
247449
+ description: z$1.ZodOptional<z$1.ZodString>;
247450
+ }, "strip", z$1.ZodTypeAny, {
247451
+ name: string;
247452
+ contextId: number;
247453
+ description?: string | undefined;
247454
+ }, {
247455
+ name: string;
247456
+ contextId: number;
247457
+ description?: string | undefined;
247458
+ }>;
247459
+ }, "strip", z$1.ZodTypeAny, {
247460
+ type: "ProjectContextCreated";
247461
+ payload: {
247462
+ name: string;
247463
+ contextId: number;
247464
+ description?: string | undefined;
247465
+ };
247466
+ }, {
247467
+ type: "ProjectContextCreated";
247468
+ payload: {
247469
+ name: string;
247470
+ contextId: number;
247471
+ description?: string | undefined;
247472
+ };
247473
+ }>, z$1.ZodObject<{
247474
+ type: z$1.ZodLiteral<"ProjectContextArchived">;
247475
+ payload: z$1.ZodObject<{
247476
+ contextId: z$1.ZodNumber;
247477
+ }, "strip", z$1.ZodTypeAny, {
247478
+ contextId: number;
247479
+ }, {
247480
+ contextId: number;
247481
+ }>;
247482
+ }, "strip", z$1.ZodTypeAny, {
247483
+ type: "ProjectContextArchived";
247484
+ payload: {
247485
+ contextId: number;
247486
+ };
247487
+ }, {
247488
+ type: "ProjectContextArchived";
247489
+ payload: {
247490
+ contextId: number;
247491
+ };
247492
+ }>]>, z$1.ZodObject<{
247493
+ id: z$1.ZodString;
247494
+ projectId: z$1.ZodString;
247495
+ userId: z$1.ZodString;
247496
+ createdAt: z$1.ZodDate;
247497
+ updatedAt: z$1.ZodDate;
247498
+ }, "strip", z$1.ZodTypeAny, {
247499
+ id: string;
247500
+ createdAt: Date;
247501
+ updatedAt: Date;
247502
+ userId: string;
247503
+ projectId: string;
247504
+ }, {
247505
+ id: string;
247506
+ createdAt: Date;
247507
+ updatedAt: Date;
247508
+ userId: string;
247509
+ projectId: string;
247510
+ }>>;
247511
+ type DTOTrailEvent = z$1.infer<typeof DTOTrailEvent>;
247512
+ declare const DTOTrailEventListInput: z$1.ZodObject<{
247513
+ projectId: z$1.ZodString;
247514
+ }, "strip", z$1.ZodTypeAny, {
247515
+ projectId: string;
247516
+ }, {
247517
+ projectId: string;
247518
+ }>;
247519
+ type DTOTrailEventListInput = z$1.infer<typeof DTOTrailEventListInput>;
247520
+ declare const DTOTrailEventListResponse: z$1.ZodObject<{
247521
+ events: z$1.ZodArray<z$1.ZodIntersection<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
247522
+ type: z$1.ZodLiteral<"IterationCreated">;
247523
+ payload: z$1.ZodObject<{
247524
+ iterationName: z$1.ZodString;
247525
+ iterationId: z$1.ZodString;
247526
+ featureId: z$1.ZodString;
247527
+ }, "strip", z$1.ZodTypeAny, {
247528
+ iterationId: string;
247529
+ featureId: string;
247530
+ iterationName: string;
247531
+ }, {
247532
+ iterationId: string;
247533
+ featureId: string;
247534
+ iterationName: string;
247535
+ }>;
247536
+ }, "strip", z$1.ZodTypeAny, {
247537
+ type: "IterationCreated";
247538
+ payload: {
247539
+ iterationId: string;
247540
+ featureId: string;
247541
+ iterationName: string;
247542
+ };
247543
+ }, {
247544
+ type: "IterationCreated";
247545
+ payload: {
247546
+ iterationId: string;
247547
+ featureId: string;
247548
+ iterationName: string;
247549
+ };
247550
+ }>, z$1.ZodObject<{
247551
+ type: z$1.ZodLiteral<"IterationBookmarked">;
247552
+ payload: z$1.ZodObject<{
247553
+ iterationId: z$1.ZodString;
247554
+ featureId: z$1.ZodString;
247555
+ iterationName: z$1.ZodString;
247556
+ }, "strip", z$1.ZodTypeAny, {
247557
+ iterationId: string;
247558
+ featureId: string;
247559
+ iterationName: string;
247560
+ }, {
247561
+ iterationId: string;
247562
+ featureId: string;
247563
+ iterationName: string;
247564
+ }>;
247565
+ }, "strip", z$1.ZodTypeAny, {
247566
+ type: "IterationBookmarked";
247567
+ payload: {
247568
+ iterationId: string;
247569
+ featureId: string;
247570
+ iterationName: string;
247571
+ };
247572
+ }, {
247573
+ type: "IterationBookmarked";
247574
+ payload: {
247575
+ iterationId: string;
247576
+ featureId: string;
247577
+ iterationName: string;
247578
+ };
247579
+ }>, z$1.ZodObject<{
247580
+ type: z$1.ZodLiteral<"FeatureCreated">;
247581
+ payload: z$1.ZodObject<{
247582
+ featureId: z$1.ZodString;
247583
+ name: z$1.ZodString;
247584
+ description: z$1.ZodOptional<z$1.ZodString>;
247585
+ }, "strip", z$1.ZodTypeAny, {
247586
+ name: string;
247587
+ featureId: string;
247588
+ description?: string | undefined;
247589
+ }, {
247590
+ name: string;
247591
+ featureId: string;
247592
+ description?: string | undefined;
247593
+ }>;
247594
+ }, "strip", z$1.ZodTypeAny, {
247595
+ type: "FeatureCreated";
247596
+ payload: {
247597
+ name: string;
247598
+ featureId: string;
247599
+ description?: string | undefined;
247600
+ };
247601
+ }, {
247602
+ type: "FeatureCreated";
247603
+ payload: {
247604
+ name: string;
247605
+ featureId: string;
247606
+ description?: string | undefined;
247607
+ };
247608
+ }>, z$1.ZodObject<{
247609
+ type: z$1.ZodLiteral<"FeatureDeleted">;
247610
+ payload: z$1.ZodObject<{
247611
+ featureId: z$1.ZodString;
247612
+ name: z$1.ZodString;
247613
+ }, "strip", z$1.ZodTypeAny, {
247614
+ name: string;
247615
+ featureId: string;
247616
+ }, {
247617
+ name: string;
247618
+ featureId: string;
247619
+ }>;
247620
+ }, "strip", z$1.ZodTypeAny, {
247621
+ type: "FeatureDeleted";
247622
+ payload: {
247623
+ name: string;
247624
+ featureId: string;
247625
+ };
247626
+ }, {
247627
+ type: "FeatureDeleted";
247628
+ payload: {
247629
+ name: string;
247630
+ featureId: string;
247631
+ };
247632
+ }>, z$1.ZodObject<{
247633
+ type: z$1.ZodLiteral<"DocumentCreated">;
247634
+ payload: z$1.ZodObject<{
247635
+ documentId: z$1.ZodString;
247636
+ title: z$1.ZodString;
247637
+ sectionId: z$1.ZodOptional<z$1.ZodString>;
247638
+ }, "strip", z$1.ZodTypeAny, {
247639
+ title: string;
247640
+ documentId: string;
247641
+ sectionId?: string | undefined;
247642
+ }, {
247643
+ title: string;
247644
+ documentId: string;
247645
+ sectionId?: string | undefined;
247646
+ }>;
247647
+ }, "strip", z$1.ZodTypeAny, {
247648
+ type: "DocumentCreated";
247649
+ payload: {
247650
+ title: string;
247651
+ documentId: string;
247652
+ sectionId?: string | undefined;
247653
+ };
247654
+ }, {
247655
+ type: "DocumentCreated";
247656
+ payload: {
247657
+ title: string;
247658
+ documentId: string;
247659
+ sectionId?: string | undefined;
247660
+ };
247661
+ }>, z$1.ZodObject<{
247662
+ type: z$1.ZodLiteral<"DocumentDeleted">;
247663
+ payload: z$1.ZodObject<{
247664
+ documentId: z$1.ZodString;
247665
+ title: z$1.ZodString;
247666
+ }, "strip", z$1.ZodTypeAny, {
247667
+ title: string;
247668
+ documentId: string;
247669
+ }, {
247670
+ title: string;
247671
+ documentId: string;
247672
+ }>;
247673
+ }, "strip", z$1.ZodTypeAny, {
247674
+ type: "DocumentDeleted";
247675
+ payload: {
247676
+ title: string;
247677
+ documentId: string;
247678
+ };
247679
+ }, {
247680
+ type: "DocumentDeleted";
247681
+ payload: {
247682
+ title: string;
247683
+ documentId: string;
247684
+ };
247685
+ }>, z$1.ZodObject<{
247686
+ type: z$1.ZodLiteral<"ProjectCreated">;
247687
+ payload: z$1.ZodObject<{
247688
+ name: z$1.ZodString;
247689
+ description: z$1.ZodOptional<z$1.ZodString>;
247690
+ }, "strip", z$1.ZodTypeAny, {
247691
+ name: string;
247692
+ description?: string | undefined;
247693
+ }, {
247694
+ name: string;
247695
+ description?: string | undefined;
247696
+ }>;
247697
+ }, "strip", z$1.ZodTypeAny, {
247698
+ type: "ProjectCreated";
247699
+ payload: {
247700
+ name: string;
247701
+ description?: string | undefined;
247702
+ };
247703
+ }, {
247704
+ type: "ProjectCreated";
247705
+ payload: {
247706
+ name: string;
247707
+ description?: string | undefined;
247708
+ };
247709
+ }>, z$1.ZodObject<{
247710
+ type: z$1.ZodLiteral<"ProjectArchived">;
247711
+ payload: z$1.ZodObject<{
247712
+ name: z$1.ZodString;
247713
+ }, "strip", z$1.ZodTypeAny, {
247714
+ name: string;
247715
+ }, {
247716
+ name: string;
247717
+ }>;
247718
+ }, "strip", z$1.ZodTypeAny, {
247719
+ type: "ProjectArchived";
247720
+ payload: {
247721
+ name: string;
247722
+ };
247723
+ }, {
247724
+ type: "ProjectArchived";
247725
+ payload: {
247726
+ name: string;
247727
+ };
247728
+ }>, z$1.ZodObject<{
247729
+ type: z$1.ZodLiteral<"IterationPromoted">;
247730
+ payload: z$1.ZodObject<{
247731
+ iterationId: z$1.ZodString;
247732
+ featureId: z$1.ZodString;
247733
+ iterationName: z$1.ZodString;
247734
+ }, "strip", z$1.ZodTypeAny, {
247735
+ iterationId: string;
247736
+ featureId: string;
247737
+ iterationName: string;
247738
+ }, {
247739
+ iterationId: string;
247740
+ featureId: string;
247741
+ iterationName: string;
247742
+ }>;
247743
+ }, "strip", z$1.ZodTypeAny, {
247744
+ type: "IterationPromoted";
247745
+ payload: {
247746
+ iterationId: string;
247747
+ featureId: string;
247748
+ iterationName: string;
247749
+ };
247750
+ }, {
247751
+ type: "IterationPromoted";
247752
+ payload: {
247753
+ iterationId: string;
247754
+ featureId: string;
247755
+ iterationName: string;
247756
+ };
247757
+ }>, z$1.ZodObject<{
247758
+ type: z$1.ZodLiteral<"ProjectContextCreated">;
247759
+ payload: z$1.ZodObject<{
247760
+ contextId: z$1.ZodNumber;
247761
+ name: z$1.ZodString;
247762
+ description: z$1.ZodOptional<z$1.ZodString>;
247763
+ }, "strip", z$1.ZodTypeAny, {
247764
+ name: string;
247765
+ contextId: number;
247766
+ description?: string | undefined;
247767
+ }, {
247768
+ name: string;
247769
+ contextId: number;
247770
+ description?: string | undefined;
247771
+ }>;
247772
+ }, "strip", z$1.ZodTypeAny, {
247773
+ type: "ProjectContextCreated";
247774
+ payload: {
247775
+ name: string;
247776
+ contextId: number;
247777
+ description?: string | undefined;
247778
+ };
247779
+ }, {
247780
+ type: "ProjectContextCreated";
247781
+ payload: {
247782
+ name: string;
247783
+ contextId: number;
247784
+ description?: string | undefined;
247785
+ };
247786
+ }>, z$1.ZodObject<{
247787
+ type: z$1.ZodLiteral<"ProjectContextArchived">;
247788
+ payload: z$1.ZodObject<{
247789
+ contextId: z$1.ZodNumber;
247790
+ }, "strip", z$1.ZodTypeAny, {
247791
+ contextId: number;
247792
+ }, {
247793
+ contextId: number;
247794
+ }>;
247795
+ }, "strip", z$1.ZodTypeAny, {
247796
+ type: "ProjectContextArchived";
247797
+ payload: {
247798
+ contextId: number;
247799
+ };
247800
+ }, {
247801
+ type: "ProjectContextArchived";
247802
+ payload: {
247803
+ contextId: number;
247804
+ };
247805
+ }>]>, z$1.ZodObject<{
247806
+ id: z$1.ZodString;
247807
+ projectId: z$1.ZodString;
247808
+ userId: z$1.ZodString;
247809
+ createdAt: z$1.ZodDate;
247810
+ updatedAt: z$1.ZodDate;
247811
+ }, "strip", z$1.ZodTypeAny, {
247812
+ id: string;
247813
+ createdAt: Date;
247814
+ updatedAt: Date;
247815
+ userId: string;
247816
+ projectId: string;
247817
+ }, {
247818
+ id: string;
247819
+ createdAt: Date;
247820
+ updatedAt: Date;
247821
+ userId: string;
247822
+ projectId: string;
247823
+ }>>, "many">;
247824
+ }, "strip", z$1.ZodTypeAny, {
247825
+ events: (({
247826
+ type: "IterationCreated";
247827
+ payload: {
247828
+ iterationId: string;
247829
+ featureId: string;
247830
+ iterationName: string;
247831
+ };
247832
+ } | {
247833
+ type: "IterationBookmarked";
247834
+ payload: {
247835
+ iterationId: string;
247836
+ featureId: string;
247837
+ iterationName: string;
247838
+ };
247839
+ } | {
247840
+ type: "FeatureCreated";
247841
+ payload: {
247842
+ name: string;
247843
+ featureId: string;
247844
+ description?: string | undefined;
247845
+ };
247846
+ } | {
247847
+ type: "FeatureDeleted";
247848
+ payload: {
247849
+ name: string;
247850
+ featureId: string;
247851
+ };
247852
+ } | {
247853
+ type: "DocumentCreated";
247854
+ payload: {
247855
+ title: string;
247856
+ documentId: string;
247857
+ sectionId?: string | undefined;
247858
+ };
247859
+ } | {
247860
+ type: "DocumentDeleted";
247861
+ payload: {
247862
+ title: string;
247863
+ documentId: string;
247864
+ };
247865
+ } | {
247866
+ type: "ProjectCreated";
247867
+ payload: {
247868
+ name: string;
247869
+ description?: string | undefined;
247870
+ };
247871
+ } | {
247872
+ type: "ProjectArchived";
247873
+ payload: {
247874
+ name: string;
247875
+ };
247876
+ } | {
247877
+ type: "IterationPromoted";
247878
+ payload: {
247879
+ iterationId: string;
247880
+ featureId: string;
247881
+ iterationName: string;
247882
+ };
247883
+ } | {
247884
+ type: "ProjectContextCreated";
247885
+ payload: {
247886
+ name: string;
247887
+ contextId: number;
247888
+ description?: string | undefined;
247889
+ };
247890
+ } | {
247891
+ type: "ProjectContextArchived";
247892
+ payload: {
247893
+ contextId: number;
247894
+ };
247895
+ }) & {
247896
+ id: string;
247897
+ createdAt: Date;
247898
+ updatedAt: Date;
247899
+ userId: string;
247900
+ projectId: string;
247901
+ })[];
247902
+ }, {
247903
+ events: (({
247904
+ type: "IterationCreated";
247905
+ payload: {
247906
+ iterationId: string;
247907
+ featureId: string;
247908
+ iterationName: string;
247909
+ };
247910
+ } | {
247911
+ type: "IterationBookmarked";
247912
+ payload: {
247913
+ iterationId: string;
247914
+ featureId: string;
247915
+ iterationName: string;
247916
+ };
247917
+ } | {
247918
+ type: "FeatureCreated";
247919
+ payload: {
247920
+ name: string;
247921
+ featureId: string;
247922
+ description?: string | undefined;
247923
+ };
247924
+ } | {
247925
+ type: "FeatureDeleted";
247926
+ payload: {
247927
+ name: string;
247928
+ featureId: string;
247929
+ };
247930
+ } | {
247931
+ type: "DocumentCreated";
247932
+ payload: {
247933
+ title: string;
247934
+ documentId: string;
247935
+ sectionId?: string | undefined;
247936
+ };
247937
+ } | {
247938
+ type: "DocumentDeleted";
247939
+ payload: {
247940
+ title: string;
247941
+ documentId: string;
247942
+ };
247943
+ } | {
247944
+ type: "ProjectCreated";
247945
+ payload: {
247946
+ name: string;
247947
+ description?: string | undefined;
247948
+ };
247949
+ } | {
247950
+ type: "ProjectArchived";
247951
+ payload: {
247952
+ name: string;
247953
+ };
247954
+ } | {
247955
+ type: "IterationPromoted";
247956
+ payload: {
247957
+ iterationId: string;
247958
+ featureId: string;
247959
+ iterationName: string;
247960
+ };
247961
+ } | {
247962
+ type: "ProjectContextCreated";
247963
+ payload: {
247964
+ name: string;
247965
+ contextId: number;
247966
+ description?: string | undefined;
247967
+ };
247968
+ } | {
247969
+ type: "ProjectContextArchived";
247970
+ payload: {
247971
+ contextId: number;
247972
+ };
247973
+ }) & {
247974
+ id: string;
247975
+ createdAt: Date;
247976
+ updatedAt: Date;
247977
+ userId: string;
247978
+ projectId: string;
247979
+ })[];
247980
+ }>;
247981
+ type DTOTrailEventListResponse = z$1.infer<typeof DTOTrailEventListResponse>;
247982
+ declare const DTOTrailEventType: z$1.ZodEnum<["IterationCreated", "IterationBookmarked", "FeatureCreated", "FeatureDeleted", "DocumentCreated", "DocumentDeleted", "ProjectCreated", "ProjectArchived", "IterationPromoted", "ProjectContextCreated", "ProjectContextArchived"]>;
247983
+ type DTOTrailEventType = z$1.infer<typeof DTOTrailEventType>;
247984
+ declare const DTOTrailEventCreate: z$1.ZodIntersection<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
247985
+ type: z$1.ZodLiteral<"IterationCreated">;
247986
+ payload: z$1.ZodObject<{
247987
+ iterationName: z$1.ZodString;
247988
+ iterationId: z$1.ZodString;
247989
+ featureId: z$1.ZodString;
247990
+ }, "strip", z$1.ZodTypeAny, {
247991
+ iterationId: string;
247992
+ featureId: string;
247993
+ iterationName: string;
247994
+ }, {
247995
+ iterationId: string;
247996
+ featureId: string;
247997
+ iterationName: string;
247998
+ }>;
247999
+ }, "strip", z$1.ZodTypeAny, {
248000
+ type: "IterationCreated";
248001
+ payload: {
248002
+ iterationId: string;
248003
+ featureId: string;
248004
+ iterationName: string;
248005
+ };
248006
+ }, {
248007
+ type: "IterationCreated";
248008
+ payload: {
248009
+ iterationId: string;
248010
+ featureId: string;
248011
+ iterationName: string;
248012
+ };
248013
+ }>, z$1.ZodObject<{
248014
+ type: z$1.ZodLiteral<"IterationBookmarked">;
248015
+ payload: z$1.ZodObject<{
248016
+ iterationId: z$1.ZodString;
248017
+ featureId: z$1.ZodString;
248018
+ iterationName: z$1.ZodString;
248019
+ }, "strip", z$1.ZodTypeAny, {
248020
+ iterationId: string;
248021
+ featureId: string;
248022
+ iterationName: string;
248023
+ }, {
248024
+ iterationId: string;
248025
+ featureId: string;
248026
+ iterationName: string;
248027
+ }>;
248028
+ }, "strip", z$1.ZodTypeAny, {
248029
+ type: "IterationBookmarked";
248030
+ payload: {
248031
+ iterationId: string;
248032
+ featureId: string;
248033
+ iterationName: string;
248034
+ };
248035
+ }, {
248036
+ type: "IterationBookmarked";
248037
+ payload: {
248038
+ iterationId: string;
248039
+ featureId: string;
248040
+ iterationName: string;
248041
+ };
248042
+ }>, z$1.ZodObject<{
248043
+ type: z$1.ZodLiteral<"FeatureCreated">;
248044
+ payload: z$1.ZodObject<{
248045
+ featureId: z$1.ZodString;
248046
+ name: z$1.ZodString;
248047
+ description: z$1.ZodOptional<z$1.ZodString>;
248048
+ }, "strip", z$1.ZodTypeAny, {
248049
+ name: string;
248050
+ featureId: string;
248051
+ description?: string | undefined;
248052
+ }, {
248053
+ name: string;
248054
+ featureId: string;
248055
+ description?: string | undefined;
248056
+ }>;
248057
+ }, "strip", z$1.ZodTypeAny, {
248058
+ type: "FeatureCreated";
248059
+ payload: {
248060
+ name: string;
248061
+ featureId: string;
248062
+ description?: string | undefined;
248063
+ };
248064
+ }, {
248065
+ type: "FeatureCreated";
248066
+ payload: {
248067
+ name: string;
248068
+ featureId: string;
248069
+ description?: string | undefined;
248070
+ };
248071
+ }>, z$1.ZodObject<{
248072
+ type: z$1.ZodLiteral<"FeatureDeleted">;
248073
+ payload: z$1.ZodObject<{
248074
+ featureId: z$1.ZodString;
248075
+ name: z$1.ZodString;
248076
+ }, "strip", z$1.ZodTypeAny, {
248077
+ name: string;
248078
+ featureId: string;
248079
+ }, {
248080
+ name: string;
248081
+ featureId: string;
248082
+ }>;
248083
+ }, "strip", z$1.ZodTypeAny, {
248084
+ type: "FeatureDeleted";
248085
+ payload: {
248086
+ name: string;
248087
+ featureId: string;
248088
+ };
248089
+ }, {
248090
+ type: "FeatureDeleted";
248091
+ payload: {
248092
+ name: string;
248093
+ featureId: string;
248094
+ };
248095
+ }>, z$1.ZodObject<{
248096
+ type: z$1.ZodLiteral<"DocumentCreated">;
248097
+ payload: z$1.ZodObject<{
248098
+ documentId: z$1.ZodString;
248099
+ title: z$1.ZodString;
248100
+ sectionId: z$1.ZodOptional<z$1.ZodString>;
248101
+ }, "strip", z$1.ZodTypeAny, {
248102
+ title: string;
248103
+ documentId: string;
248104
+ sectionId?: string | undefined;
248105
+ }, {
248106
+ title: string;
248107
+ documentId: string;
248108
+ sectionId?: string | undefined;
248109
+ }>;
248110
+ }, "strip", z$1.ZodTypeAny, {
248111
+ type: "DocumentCreated";
248112
+ payload: {
248113
+ title: string;
248114
+ documentId: string;
248115
+ sectionId?: string | undefined;
248116
+ };
248117
+ }, {
248118
+ type: "DocumentCreated";
248119
+ payload: {
248120
+ title: string;
248121
+ documentId: string;
248122
+ sectionId?: string | undefined;
248123
+ };
248124
+ }>, z$1.ZodObject<{
248125
+ type: z$1.ZodLiteral<"DocumentDeleted">;
248126
+ payload: z$1.ZodObject<{
248127
+ documentId: z$1.ZodString;
248128
+ title: z$1.ZodString;
248129
+ }, "strip", z$1.ZodTypeAny, {
248130
+ title: string;
248131
+ documentId: string;
248132
+ }, {
248133
+ title: string;
248134
+ documentId: string;
248135
+ }>;
248136
+ }, "strip", z$1.ZodTypeAny, {
248137
+ type: "DocumentDeleted";
248138
+ payload: {
248139
+ title: string;
248140
+ documentId: string;
248141
+ };
248142
+ }, {
248143
+ type: "DocumentDeleted";
248144
+ payload: {
248145
+ title: string;
248146
+ documentId: string;
248147
+ };
248148
+ }>, z$1.ZodObject<{
248149
+ type: z$1.ZodLiteral<"ProjectCreated">;
248150
+ payload: z$1.ZodObject<{
248151
+ name: z$1.ZodString;
248152
+ description: z$1.ZodOptional<z$1.ZodString>;
248153
+ }, "strip", z$1.ZodTypeAny, {
248154
+ name: string;
248155
+ description?: string | undefined;
248156
+ }, {
248157
+ name: string;
248158
+ description?: string | undefined;
248159
+ }>;
248160
+ }, "strip", z$1.ZodTypeAny, {
248161
+ type: "ProjectCreated";
248162
+ payload: {
248163
+ name: string;
248164
+ description?: string | undefined;
248165
+ };
248166
+ }, {
248167
+ type: "ProjectCreated";
248168
+ payload: {
248169
+ name: string;
248170
+ description?: string | undefined;
248171
+ };
248172
+ }>, z$1.ZodObject<{
248173
+ type: z$1.ZodLiteral<"ProjectArchived">;
248174
+ payload: z$1.ZodObject<{
248175
+ name: z$1.ZodString;
248176
+ }, "strip", z$1.ZodTypeAny, {
248177
+ name: string;
248178
+ }, {
248179
+ name: string;
248180
+ }>;
248181
+ }, "strip", z$1.ZodTypeAny, {
248182
+ type: "ProjectArchived";
248183
+ payload: {
248184
+ name: string;
248185
+ };
248186
+ }, {
248187
+ type: "ProjectArchived";
248188
+ payload: {
248189
+ name: string;
248190
+ };
248191
+ }>, z$1.ZodObject<{
248192
+ type: z$1.ZodLiteral<"IterationPromoted">;
248193
+ payload: z$1.ZodObject<{
248194
+ iterationId: z$1.ZodString;
248195
+ featureId: z$1.ZodString;
248196
+ iterationName: z$1.ZodString;
248197
+ }, "strip", z$1.ZodTypeAny, {
248198
+ iterationId: string;
248199
+ featureId: string;
248200
+ iterationName: string;
248201
+ }, {
248202
+ iterationId: string;
248203
+ featureId: string;
248204
+ iterationName: string;
248205
+ }>;
248206
+ }, "strip", z$1.ZodTypeAny, {
248207
+ type: "IterationPromoted";
248208
+ payload: {
248209
+ iterationId: string;
248210
+ featureId: string;
248211
+ iterationName: string;
248212
+ };
248213
+ }, {
248214
+ type: "IterationPromoted";
248215
+ payload: {
248216
+ iterationId: string;
248217
+ featureId: string;
248218
+ iterationName: string;
248219
+ };
248220
+ }>, z$1.ZodObject<{
248221
+ type: z$1.ZodLiteral<"ProjectContextCreated">;
248222
+ payload: z$1.ZodObject<{
248223
+ contextId: z$1.ZodNumber;
248224
+ name: z$1.ZodString;
248225
+ description: z$1.ZodOptional<z$1.ZodString>;
248226
+ }, "strip", z$1.ZodTypeAny, {
248227
+ name: string;
248228
+ contextId: number;
248229
+ description?: string | undefined;
248230
+ }, {
248231
+ name: string;
248232
+ contextId: number;
248233
+ description?: string | undefined;
248234
+ }>;
248235
+ }, "strip", z$1.ZodTypeAny, {
248236
+ type: "ProjectContextCreated";
248237
+ payload: {
248238
+ name: string;
248239
+ contextId: number;
248240
+ description?: string | undefined;
248241
+ };
248242
+ }, {
248243
+ type: "ProjectContextCreated";
248244
+ payload: {
248245
+ name: string;
248246
+ contextId: number;
248247
+ description?: string | undefined;
248248
+ };
248249
+ }>, z$1.ZodObject<{
248250
+ type: z$1.ZodLiteral<"ProjectContextArchived">;
248251
+ payload: z$1.ZodObject<{
248252
+ contextId: z$1.ZodNumber;
248253
+ }, "strip", z$1.ZodTypeAny, {
248254
+ contextId: number;
248255
+ }, {
248256
+ contextId: number;
248257
+ }>;
248258
+ }, "strip", z$1.ZodTypeAny, {
248259
+ type: "ProjectContextArchived";
248260
+ payload: {
248261
+ contextId: number;
248262
+ };
248263
+ }, {
248264
+ type: "ProjectContextArchived";
248265
+ payload: {
248266
+ contextId: number;
248267
+ };
248268
+ }>]>, z$1.ZodObject<Omit<{
248269
+ id: z$1.ZodString;
248270
+ projectId: z$1.ZodString;
248271
+ userId: z$1.ZodString;
248272
+ createdAt: z$1.ZodDate;
248273
+ updatedAt: z$1.ZodDate;
248274
+ }, "id" | "createdAt" | "updatedAt">, "strip", z$1.ZodTypeAny, {
248275
+ userId: string;
248276
+ projectId: string;
248277
+ }, {
248278
+ userId: string;
248279
+ projectId: string;
248280
+ }>>;
248281
+ type DTOTrailEventCreate = z$1.infer<typeof DTOTrailEventCreate>;
248282
+
246500
248283
  type PageAnalyticsInput = {
246501
248284
  pagePersistentId: string;
246502
248285
  priorDataPoints: PublishedDocPageVisitsEntry[];
@@ -266359,4 +268142,4 @@ declare function isValidRedirectPath(path: string): {
266359
268142
  reason: ValidationErrorReason | undefined;
266360
268143
  };
266361
268144
 
266362
- 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, DTOFeatureEventAgentResponseFinished, 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, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkInput, 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, 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, DTOForgeProjectCreateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRemoveResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdateResponse, 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, 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, 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, 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 };
268145
+ 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, DTOFeatureEventAgentResponseFinished, 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, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkInput, 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, 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, DTOForgeProjectCreateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRemoveResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdateResponse, 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, 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, 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 };