@supernova-studio/client 1.9.16 → 1.9.18

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
@@ -57771,11 +57771,11 @@ declare const DTOExporterMembership: z.ZodObject<{
57771
57771
  role: z.ZodEnum<["Owner", "OwnerArchived", "User"]>;
57772
57772
  }, "strip", z.ZodTypeAny, {
57773
57773
  workspaceId: string;
57774
- role: "Owner" | "OwnerArchived" | "User";
57774
+ role: "Owner" | "User" | "OwnerArchived";
57775
57775
  exporterId: string;
57776
57776
  }, {
57777
57777
  workspaceId: string;
57778
- role: "Owner" | "OwnerArchived" | "User";
57778
+ role: "Owner" | "User" | "OwnerArchived";
57779
57779
  exporterId: string;
57780
57780
  }>;
57781
57781
  type DTOExporterMembership = z.infer<typeof DTOExporterMembership>;
@@ -58459,17 +58459,17 @@ declare const DTOExporterResponse: z.ZodObject<{
58459
58459
  role: z.ZodEnum<["Owner", "OwnerArchived", "User"]>;
58460
58460
  }, "strip", z.ZodTypeAny, {
58461
58461
  workspaceId: string;
58462
- role: "Owner" | "OwnerArchived" | "User";
58462
+ role: "Owner" | "User" | "OwnerArchived";
58463
58463
  exporterId: string;
58464
58464
  }, {
58465
58465
  workspaceId: string;
58466
- role: "Owner" | "OwnerArchived" | "User";
58466
+ role: "Owner" | "User" | "OwnerArchived";
58467
58467
  exporterId: string;
58468
58468
  }>;
58469
58469
  }, "strip", z.ZodTypeAny, {
58470
58470
  membership: {
58471
58471
  workspaceId: string;
58472
- role: "Owner" | "OwnerArchived" | "User";
58472
+ role: "Owner" | "User" | "OwnerArchived";
58473
58473
  exporterId: string;
58474
58474
  };
58475
58475
  exporter: {
@@ -58609,7 +58609,7 @@ declare const DTOExporterResponse: z.ZodObject<{
58609
58609
  }, {
58610
58610
  membership: {
58611
58611
  workspaceId: string;
58612
- role: "Owner" | "OwnerArchived" | "User";
58612
+ role: "Owner" | "User" | "OwnerArchived";
58613
58613
  exporterId: string;
58614
58614
  };
58615
58615
  exporter: {
@@ -59428,18 +59428,19 @@ declare const DTOExporterListResponse: z.ZodObject<{
59428
59428
  role: z.ZodEnum<["Owner", "OwnerArchived", "User"]>;
59429
59429
  }, "strip", z.ZodTypeAny, {
59430
59430
  workspaceId: string;
59431
- role: "Owner" | "OwnerArchived" | "User";
59431
+ role: "Owner" | "User" | "OwnerArchived";
59432
59432
  exporterId: string;
59433
59433
  }, {
59434
59434
  workspaceId: string;
59435
- role: "Owner" | "OwnerArchived" | "User";
59435
+ role: "Owner" | "User" | "OwnerArchived";
59436
59436
  exporterId: string;
59437
59437
  }>, "many">;
59438
59438
  total: z.ZodNumber;
59439
59439
  }, "strip", z.ZodTypeAny, {
59440
+ total: number;
59440
59441
  membership: {
59441
59442
  workspaceId: string;
59442
- role: "Owner" | "OwnerArchived" | "User";
59443
+ role: "Owner" | "User" | "OwnerArchived";
59443
59444
  exporterId: string;
59444
59445
  }[];
59445
59446
  exporters: {
@@ -59576,11 +59577,11 @@ declare const DTOExporterListResponse: z.ZodObject<{
59576
59577
  deprecationNote?: string | undefined;
59577
59578
  replacementExporterId?: string | undefined;
59578
59579
  }[];
59579
- total: number;
59580
59580
  }, {
59581
+ total: number;
59581
59582
  membership: {
59582
59583
  workspaceId: string;
59583
- role: "Owner" | "OwnerArchived" | "User";
59584
+ role: "Owner" | "User" | "OwnerArchived";
59584
59585
  exporterId: string;
59585
59586
  }[];
59586
59587
  exporters: {
@@ -59717,7 +59718,6 @@ declare const DTOExporterListResponse: z.ZodObject<{
59717
59718
  deprecationNote?: string | undefined;
59718
59719
  replacementExporterId?: string | undefined;
59719
59720
  }[];
59720
- total: number;
59721
59721
  }>;
59722
59722
  type DTOExporterListResponse = z.infer<typeof DTOExporterListResponse>;
59723
59723
  declare const DTOExporterGitProviderEnum: z.ZodEnum<["github", "gitlab", "bitbucket", "azure"]>;
@@ -88658,6 +88658,526 @@ declare const DTOUserProfileUpdate: z.ZodObject<Omit<{
88658
88658
  }>;
88659
88659
  type DTOUserProfileUpdate = z.infer<typeof DTOUserProfileUpdate>;
88660
88660
 
88661
+ declare const DTOForgeChatMessage: z.ZodObject<{
88662
+ id: z.ZodNumber;
88663
+ threadId: z.ZodNumber;
88664
+ payload: z.ZodString;
88665
+ createdAt: z.ZodDate;
88666
+ updatedAt: z.ZodDate;
88667
+ sender: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
88668
+ type: z.ZodLiteral<"User">;
88669
+ }, "strip", z.ZodTypeAny, {
88670
+ type: "User";
88671
+ }, {
88672
+ type: "User";
88673
+ }>, z.ZodObject<{
88674
+ type: z.ZodLiteral<"Agent">;
88675
+ persona: z.ZodLiteral<"Amy">;
88676
+ }, "strip", z.ZodTypeAny, {
88677
+ type: "Agent";
88678
+ persona: "Amy";
88679
+ }, {
88680
+ type: "Agent";
88681
+ persona: "Amy";
88682
+ }>]>;
88683
+ }, "strip", z.ZodTypeAny, {
88684
+ id: number;
88685
+ createdAt: Date;
88686
+ updatedAt: Date;
88687
+ threadId: number;
88688
+ payload: string;
88689
+ sender: {
88690
+ type: "User";
88691
+ } | {
88692
+ type: "Agent";
88693
+ persona: "Amy";
88694
+ };
88695
+ }, {
88696
+ id: number;
88697
+ createdAt: Date;
88698
+ updatedAt: Date;
88699
+ threadId: number;
88700
+ payload: string;
88701
+ sender: {
88702
+ type: "User";
88703
+ } | {
88704
+ type: "Agent";
88705
+ persona: "Amy";
88706
+ };
88707
+ }>;
88708
+ type DTOForgeChatMessage = z.infer<typeof DTOForgeChatMessage>;
88709
+ declare const DTOForgeChatThread: z.ZodObject<{
88710
+ id: z.ZodString;
88711
+ title: z.ZodString;
88712
+ workspaceId: z.ZodString;
88713
+ userId: z.ZodString;
88714
+ createdAt: z.ZodDate;
88715
+ updatedAt: z.ZodDate;
88716
+ }, "strip", z.ZodTypeAny, {
88717
+ id: string;
88718
+ createdAt: Date;
88719
+ updatedAt: Date;
88720
+ title: string;
88721
+ workspaceId: string;
88722
+ userId: string;
88723
+ }, {
88724
+ id: string;
88725
+ createdAt: Date;
88726
+ updatedAt: Date;
88727
+ title: string;
88728
+ workspaceId: string;
88729
+ userId: string;
88730
+ }>;
88731
+ type DTOForgeChatThread = z.infer<typeof DTOForgeChatThread>;
88732
+ declare const DTOForgeChatMessageSenderType: z.ZodEnum<["User", "Agent"]>;
88733
+ type DTOForgeChatMessageSenderType = z.infer<typeof DTOForgeChatMessageSenderType>;
88734
+ declare const DTOForgeChatMessageSender: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
88735
+ type: z.ZodLiteral<"User">;
88736
+ }, "strip", z.ZodTypeAny, {
88737
+ type: "User";
88738
+ }, {
88739
+ type: "User";
88740
+ }>, z.ZodObject<{
88741
+ type: z.ZodLiteral<"Agent">;
88742
+ persona: z.ZodLiteral<"Amy">;
88743
+ }, "strip", z.ZodTypeAny, {
88744
+ type: "Agent";
88745
+ persona: "Amy";
88746
+ }, {
88747
+ type: "Agent";
88748
+ persona: "Amy";
88749
+ }>]>;
88750
+ type DTOForgeChatMessageSender = z.infer<typeof DTOForgeChatMessageSender>;
88751
+ /**
88752
+ * POST /api/v1/workspaces/{wsId}/forge/chat-threads
88753
+ */
88754
+ declare const DTOForgeChatThreadCreateInput: z.ZodObject<{
88755
+ title: z.ZodOptional<z.ZodString>;
88756
+ }, "strip", z.ZodTypeAny, {
88757
+ title?: string | undefined;
88758
+ }, {
88759
+ title?: string | undefined;
88760
+ }>;
88761
+ type DTOForgeChatThreadCreateInput = z.infer<typeof DTOForgeChatThreadCreateInput>;
88762
+ /**
88763
+ * POST /api/v1/workspaces/{wsId}/forge/threads
88764
+ */
88765
+ declare const DTOForgeChatThreadCreateResponse: z.ZodObject<{
88766
+ thread: z.ZodObject<{
88767
+ id: z.ZodString;
88768
+ title: z.ZodString;
88769
+ workspaceId: z.ZodString;
88770
+ userId: z.ZodString;
88771
+ createdAt: z.ZodDate;
88772
+ updatedAt: z.ZodDate;
88773
+ }, "strip", z.ZodTypeAny, {
88774
+ id: string;
88775
+ createdAt: Date;
88776
+ updatedAt: Date;
88777
+ title: string;
88778
+ workspaceId: string;
88779
+ userId: string;
88780
+ }, {
88781
+ id: string;
88782
+ createdAt: Date;
88783
+ updatedAt: Date;
88784
+ title: string;
88785
+ workspaceId: string;
88786
+ userId: string;
88787
+ }>;
88788
+ }, "strip", z.ZodTypeAny, {
88789
+ thread: {
88790
+ id: string;
88791
+ createdAt: Date;
88792
+ updatedAt: Date;
88793
+ title: string;
88794
+ workspaceId: string;
88795
+ userId: string;
88796
+ };
88797
+ }, {
88798
+ thread: {
88799
+ id: string;
88800
+ createdAt: Date;
88801
+ updatedAt: Date;
88802
+ title: string;
88803
+ workspaceId: string;
88804
+ userId: string;
88805
+ };
88806
+ }>;
88807
+ type DTOForgeChatThreadCreateResponse = z.infer<typeof DTOForgeChatThreadCreateResponse>;
88808
+ /**
88809
+ * PUT /api/v1/workspaces/{wsId}/forge/threads/{threadId}
88810
+ */
88811
+ declare const DTOForgeChatThreadUpdateInput: z.ZodObject<{
88812
+ title: z.ZodString;
88813
+ }, "strip", z.ZodTypeAny, {
88814
+ title: string;
88815
+ }, {
88816
+ title: string;
88817
+ }>;
88818
+ type DTOForgeChatThreadUpdateInput = z.infer<typeof DTOForgeChatThreadUpdateInput>;
88819
+ /**
88820
+ * PUT /api/v1/workspaces/{wsId}/forge/threads/{threadId}
88821
+ */
88822
+ declare const DTOForgeChatThreadUpdateResponse: z.ZodObject<{
88823
+ thread: z.ZodObject<{
88824
+ id: z.ZodString;
88825
+ title: z.ZodString;
88826
+ workspaceId: z.ZodString;
88827
+ userId: z.ZodString;
88828
+ createdAt: z.ZodDate;
88829
+ updatedAt: z.ZodDate;
88830
+ }, "strip", z.ZodTypeAny, {
88831
+ id: string;
88832
+ createdAt: Date;
88833
+ updatedAt: Date;
88834
+ title: string;
88835
+ workspaceId: string;
88836
+ userId: string;
88837
+ }, {
88838
+ id: string;
88839
+ createdAt: Date;
88840
+ updatedAt: Date;
88841
+ title: string;
88842
+ workspaceId: string;
88843
+ userId: string;
88844
+ }>;
88845
+ }, "strip", z.ZodTypeAny, {
88846
+ thread: {
88847
+ id: string;
88848
+ createdAt: Date;
88849
+ updatedAt: Date;
88850
+ title: string;
88851
+ workspaceId: string;
88852
+ userId: string;
88853
+ };
88854
+ }, {
88855
+ thread: {
88856
+ id: string;
88857
+ createdAt: Date;
88858
+ updatedAt: Date;
88859
+ title: string;
88860
+ workspaceId: string;
88861
+ userId: string;
88862
+ };
88863
+ }>;
88864
+ type DTOForgeChatThreadUpdateResponse = z.infer<typeof DTOForgeChatThreadUpdateResponse>;
88865
+ /**
88866
+ * DELETE /api/v1/workspaces/{wsId}/forge/threads/{threadId}
88867
+ */
88868
+ declare const DTOForgeChatThreadDeleteResponse: z.ZodObject<{
88869
+ success: z.ZodBoolean;
88870
+ }, "strip", z.ZodTypeAny, {
88871
+ success: boolean;
88872
+ }, {
88873
+ success: boolean;
88874
+ }>;
88875
+ type DTOForgeChatThreadDeleteResponse = z.infer<typeof DTOForgeChatThreadDeleteResponse>;
88876
+ /**
88877
+ * GET /api/v1/workspaces/{wsId}/forge/threads
88878
+ */
88879
+ declare const DTOForgeChatThreadListQuery: z.ZodObject<{
88880
+ limit: z.ZodOptional<z.ZodNumber>;
88881
+ offset: z.ZodOptional<z.ZodNumber>;
88882
+ }, "strip", z.ZodTypeAny, {
88883
+ limit?: number | undefined;
88884
+ offset?: number | undefined;
88885
+ }, {
88886
+ limit?: number | undefined;
88887
+ offset?: number | undefined;
88888
+ }>;
88889
+ type DTOForgeChatThreadListQuery = z.infer<typeof DTOForgeChatThreadListQuery>;
88890
+ /**
88891
+ * GET /api/v1/workspaces/{wsId}/forge/threads
88892
+ */
88893
+ declare const DTOForgeChatThreadListResponse: z.ZodObject<{
88894
+ threads: z.ZodArray<z.ZodObject<{
88895
+ id: z.ZodString;
88896
+ title: z.ZodString;
88897
+ workspaceId: z.ZodString;
88898
+ userId: z.ZodString;
88899
+ createdAt: z.ZodDate;
88900
+ updatedAt: z.ZodDate;
88901
+ }, "strip", z.ZodTypeAny, {
88902
+ id: string;
88903
+ createdAt: Date;
88904
+ updatedAt: Date;
88905
+ title: string;
88906
+ workspaceId: string;
88907
+ userId: string;
88908
+ }, {
88909
+ id: string;
88910
+ createdAt: Date;
88911
+ updatedAt: Date;
88912
+ title: string;
88913
+ workspaceId: string;
88914
+ userId: string;
88915
+ }>, "many">;
88916
+ pagination: z.ZodObject<{
88917
+ offset: z.ZodNumber;
88918
+ limit: z.ZodNumber;
88919
+ total: z.ZodNumber;
88920
+ }, "strip", z.ZodTypeAny, {
88921
+ limit: number;
88922
+ offset: number;
88923
+ total: number;
88924
+ }, {
88925
+ limit: number;
88926
+ offset: number;
88927
+ total: number;
88928
+ }>;
88929
+ }, "strip", z.ZodTypeAny, {
88930
+ threads: {
88931
+ id: string;
88932
+ createdAt: Date;
88933
+ updatedAt: Date;
88934
+ title: string;
88935
+ workspaceId: string;
88936
+ userId: string;
88937
+ }[];
88938
+ pagination: {
88939
+ limit: number;
88940
+ offset: number;
88941
+ total: number;
88942
+ };
88943
+ }, {
88944
+ threads: {
88945
+ id: string;
88946
+ createdAt: Date;
88947
+ updatedAt: Date;
88948
+ title: string;
88949
+ workspaceId: string;
88950
+ userId: string;
88951
+ }[];
88952
+ pagination: {
88953
+ limit: number;
88954
+ offset: number;
88955
+ total: number;
88956
+ };
88957
+ }>;
88958
+ type DTOForgeChatThreadListResponse = z.infer<typeof DTOForgeChatThreadListResponse>;
88959
+ /**
88960
+ * POST /api/v1/workspaces/{wsId}/forge/threads/{threadId}/messages
88961
+ */
88962
+ declare const DTOForgeChatMessageCreateInput: z.ZodObject<{
88963
+ payload: z.ZodString;
88964
+ sender: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
88965
+ type: z.ZodLiteral<"User">;
88966
+ }, "strip", z.ZodTypeAny, {
88967
+ type: "User";
88968
+ }, {
88969
+ type: "User";
88970
+ }>, z.ZodObject<{
88971
+ type: z.ZodLiteral<"Agent">;
88972
+ persona: z.ZodLiteral<"Amy">;
88973
+ }, "strip", z.ZodTypeAny, {
88974
+ type: "Agent";
88975
+ persona: "Amy";
88976
+ }, {
88977
+ type: "Agent";
88978
+ persona: "Amy";
88979
+ }>]>;
88980
+ }, "strip", z.ZodTypeAny, {
88981
+ payload: string;
88982
+ sender: {
88983
+ type: "User";
88984
+ } | {
88985
+ type: "Agent";
88986
+ persona: "Amy";
88987
+ };
88988
+ }, {
88989
+ payload: string;
88990
+ sender: {
88991
+ type: "User";
88992
+ } | {
88993
+ type: "Agent";
88994
+ persona: "Amy";
88995
+ };
88996
+ }>;
88997
+ type DTOForgeChatMessageCreateInput = z.infer<typeof DTOForgeChatMessageCreateInput>;
88998
+ /**
88999
+ * POST /api/v1/workspaces/{wsId}/forge/threads/{threadId}/messages
89000
+ */
89001
+ declare const DTOForgeChatMessageCreateResponse: z.ZodObject<{
89002
+ message: z.ZodObject<{
89003
+ id: z.ZodNumber;
89004
+ threadId: z.ZodNumber;
89005
+ payload: z.ZodString;
89006
+ createdAt: z.ZodDate;
89007
+ updatedAt: z.ZodDate;
89008
+ sender: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
89009
+ type: z.ZodLiteral<"User">;
89010
+ }, "strip", z.ZodTypeAny, {
89011
+ type: "User";
89012
+ }, {
89013
+ type: "User";
89014
+ }>, z.ZodObject<{
89015
+ type: z.ZodLiteral<"Agent">;
89016
+ persona: z.ZodLiteral<"Amy">;
89017
+ }, "strip", z.ZodTypeAny, {
89018
+ type: "Agent";
89019
+ persona: "Amy";
89020
+ }, {
89021
+ type: "Agent";
89022
+ persona: "Amy";
89023
+ }>]>;
89024
+ }, "strip", z.ZodTypeAny, {
89025
+ id: number;
89026
+ createdAt: Date;
89027
+ updatedAt: Date;
89028
+ threadId: number;
89029
+ payload: string;
89030
+ sender: {
89031
+ type: "User";
89032
+ } | {
89033
+ type: "Agent";
89034
+ persona: "Amy";
89035
+ };
89036
+ }, {
89037
+ id: number;
89038
+ createdAt: Date;
89039
+ updatedAt: Date;
89040
+ threadId: number;
89041
+ payload: string;
89042
+ sender: {
89043
+ type: "User";
89044
+ } | {
89045
+ type: "Agent";
89046
+ persona: "Amy";
89047
+ };
89048
+ }>;
89049
+ }, "strip", z.ZodTypeAny, {
89050
+ message: {
89051
+ id: number;
89052
+ createdAt: Date;
89053
+ updatedAt: Date;
89054
+ threadId: number;
89055
+ payload: string;
89056
+ sender: {
89057
+ type: "User";
89058
+ } | {
89059
+ type: "Agent";
89060
+ persona: "Amy";
89061
+ };
89062
+ };
89063
+ }, {
89064
+ message: {
89065
+ id: number;
89066
+ createdAt: Date;
89067
+ updatedAt: Date;
89068
+ threadId: number;
89069
+ payload: string;
89070
+ sender: {
89071
+ type: "User";
89072
+ } | {
89073
+ type: "Agent";
89074
+ persona: "Amy";
89075
+ };
89076
+ };
89077
+ }>;
89078
+ type DTOForgeChatMessageCreateResponse = z.infer<typeof DTOForgeChatMessageCreateResponse>;
89079
+ /**
89080
+ * GET /api/v1/workspaces/{wsId}/forge/threads/{threadId}/messages
89081
+ */
89082
+ declare const DTOForgeChatMessageListQuery: z.ZodObject<{
89083
+ limit: z.ZodEffects<z.ZodOptional<z.ZodString>, number | undefined, string | undefined>;
89084
+ offset: z.ZodEffects<z.ZodOptional<z.ZodString>, number | undefined, string | undefined>;
89085
+ }, "strip", z.ZodTypeAny, {
89086
+ limit?: number | undefined;
89087
+ offset?: number | undefined;
89088
+ }, {
89089
+ limit?: string | undefined;
89090
+ offset?: string | undefined;
89091
+ }>;
89092
+ type DTOForgeChatMessageListQuery = z.infer<typeof DTOForgeChatMessageListQuery>;
89093
+ /**
89094
+ * GET /api/v1/workspaces/{wsId}/forge/threads/{threadId}/messages
89095
+ */
89096
+ declare const DTOForgeChatMessageListResponse: z.ZodObject<{
89097
+ messages: z.ZodArray<z.ZodObject<{
89098
+ id: z.ZodNumber;
89099
+ threadId: z.ZodNumber;
89100
+ payload: z.ZodString;
89101
+ createdAt: z.ZodDate;
89102
+ updatedAt: z.ZodDate;
89103
+ sender: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
89104
+ type: z.ZodLiteral<"User">;
89105
+ }, "strip", z.ZodTypeAny, {
89106
+ type: "User";
89107
+ }, {
89108
+ type: "User";
89109
+ }>, z.ZodObject<{
89110
+ type: z.ZodLiteral<"Agent">;
89111
+ persona: z.ZodLiteral<"Amy">;
89112
+ }, "strip", z.ZodTypeAny, {
89113
+ type: "Agent";
89114
+ persona: "Amy";
89115
+ }, {
89116
+ type: "Agent";
89117
+ persona: "Amy";
89118
+ }>]>;
89119
+ }, "strip", z.ZodTypeAny, {
89120
+ id: number;
89121
+ createdAt: Date;
89122
+ updatedAt: Date;
89123
+ threadId: number;
89124
+ payload: string;
89125
+ sender: {
89126
+ type: "User";
89127
+ } | {
89128
+ type: "Agent";
89129
+ persona: "Amy";
89130
+ };
89131
+ }, {
89132
+ id: number;
89133
+ createdAt: Date;
89134
+ updatedAt: Date;
89135
+ threadId: number;
89136
+ payload: string;
89137
+ sender: {
89138
+ type: "User";
89139
+ } | {
89140
+ type: "Agent";
89141
+ persona: "Amy";
89142
+ };
89143
+ }>, "many">;
89144
+ totalCount: z.ZodNumber;
89145
+ hasMore: z.ZodBoolean;
89146
+ }, "strip", z.ZodTypeAny, {
89147
+ messages: {
89148
+ id: number;
89149
+ createdAt: Date;
89150
+ updatedAt: Date;
89151
+ threadId: number;
89152
+ payload: string;
89153
+ sender: {
89154
+ type: "User";
89155
+ } | {
89156
+ type: "Agent";
89157
+ persona: "Amy";
89158
+ };
89159
+ }[];
89160
+ totalCount: number;
89161
+ hasMore: boolean;
89162
+ }, {
89163
+ messages: {
89164
+ id: number;
89165
+ createdAt: Date;
89166
+ updatedAt: Date;
89167
+ threadId: number;
89168
+ payload: string;
89169
+ sender: {
89170
+ type: "User";
89171
+ } | {
89172
+ type: "Agent";
89173
+ persona: "Amy";
89174
+ };
89175
+ }[];
89176
+ totalCount: number;
89177
+ hasMore: boolean;
89178
+ }>;
89179
+ type DTOForgeChatMessageListResponse = z.infer<typeof DTOForgeChatMessageListResponse>;
89180
+
88661
89181
  declare const DTOGitOrganization: z.ZodObject<{
88662
89182
  id: z.ZodString;
88663
89183
  name: z.ZodString;
@@ -99374,7 +99894,7 @@ declare class ExportersEndpoint {
99374
99894
  add(workspaceId: string, body: DTOExporterCreateInput): Promise<{
99375
99895
  membership: {
99376
99896
  workspaceId: string;
99377
- role: "Owner" | "OwnerArchived" | "User";
99897
+ role: "Owner" | "User" | "OwnerArchived";
99378
99898
  exporterId: string;
99379
99899
  };
99380
99900
  exporter: {
@@ -99513,9 +100033,10 @@ declare class ExportersEndpoint {
99513
100033
  };
99514
100034
  }>;
99515
100035
  list(workspaceId: string, query?: DTOExporterListQuery): Promise<{
100036
+ total: number;
99516
100037
  membership: {
99517
100038
  workspaceId: string;
99518
- role: "Owner" | "OwnerArchived" | "User";
100039
+ role: "Owner" | "User" | "OwnerArchived";
99519
100040
  exporterId: string;
99520
100041
  }[];
99521
100042
  exporters: {
@@ -99652,12 +100173,11 @@ declare class ExportersEndpoint {
99652
100173
  deprecationNote?: string | undefined;
99653
100174
  replacementExporterId?: string | undefined;
99654
100175
  }[];
99655
- total: number;
99656
100176
  }>;
99657
100177
  get(workspaceId: string, exporterId: string): Promise<{
99658
100178
  membership: {
99659
100179
  workspaceId: string;
99660
- role: "Owner" | "OwnerArchived" | "User";
100180
+ role: "Owner" | "User" | "OwnerArchived";
99661
100181
  exporterId: string;
99662
100182
  };
99663
100183
  exporter: {
@@ -99932,7 +100452,7 @@ declare class ExportersEndpoint {
99932
100452
  pullChanges(workspaceId: string, exporterId: string): Promise<{
99933
100453
  membership: {
99934
100454
  workspaceId: string;
99935
- role: "Owner" | "OwnerArchived" | "User";
100455
+ role: "Owner" | "User" | "OwnerArchived";
99936
100456
  exporterId: string;
99937
100457
  };
99938
100458
  exporter: {
@@ -109178,6 +109698,86 @@ declare class DesignSystemsEndpoint {
109178
109698
  }>;
109179
109699
  }
109180
109700
 
109701
+ declare class WorkspaceChatThreadsEndpoint {
109702
+ private readonly requestExecutor;
109703
+ readonly messages: ChatThreadMessagesEndpoint;
109704
+ constructor(requestExecutor: RequestExecutor);
109705
+ create(workspaceId: string, body: DTOForgeChatThreadCreateInput): Promise<{
109706
+ thread: {
109707
+ id: string;
109708
+ createdAt: Date;
109709
+ updatedAt: Date;
109710
+ title: string;
109711
+ workspaceId: string;
109712
+ userId: string;
109713
+ };
109714
+ }>;
109715
+ list(workspaceId: string, query?: DTOForgeChatThreadListQuery): Promise<{
109716
+ threads: {
109717
+ id: string;
109718
+ createdAt: Date;
109719
+ updatedAt: Date;
109720
+ title: string;
109721
+ workspaceId: string;
109722
+ userId: string;
109723
+ }[];
109724
+ pagination: {
109725
+ limit: number;
109726
+ offset: number;
109727
+ total: number;
109728
+ };
109729
+ }>;
109730
+ update(workspaceId: string, threadId: string, body: DTOForgeChatThreadUpdateInput): Promise<{
109731
+ thread: {
109732
+ id: string;
109733
+ createdAt: Date;
109734
+ updatedAt: Date;
109735
+ title: string;
109736
+ workspaceId: string;
109737
+ userId: string;
109738
+ };
109739
+ }>;
109740
+ delete(workspaceId: string, threadId: string): Promise<{
109741
+ success: boolean;
109742
+ }>;
109743
+ }
109744
+ declare class ChatThreadMessagesEndpoint {
109745
+ private readonly requestExecutor;
109746
+ constructor(requestExecutor: RequestExecutor);
109747
+ list(workspaceId: string, threadId: string, query?: DTOForgeChatMessageListQuery): Promise<{
109748
+ messages: {
109749
+ id: number;
109750
+ createdAt: Date;
109751
+ updatedAt: Date;
109752
+ threadId: number;
109753
+ payload: string;
109754
+ sender: {
109755
+ type: "User";
109756
+ } | {
109757
+ type: "Agent";
109758
+ persona: "Amy";
109759
+ };
109760
+ }[];
109761
+ totalCount: number;
109762
+ hasMore: boolean;
109763
+ }>;
109764
+ create(workspaceId: string, threadId: string, body: DTOForgeChatMessageCreateInput): Promise<{
109765
+ message: {
109766
+ id: number;
109767
+ createdAt: Date;
109768
+ updatedAt: Date;
109769
+ threadId: number;
109770
+ payload: string;
109771
+ sender: {
109772
+ type: "User";
109773
+ } | {
109774
+ type: "Agent";
109775
+ persona: "Amy";
109776
+ };
109777
+ };
109778
+ }>;
109779
+ }
109780
+
109181
109781
  declare class WorkspaceIntegrationsEndpoint {
109182
109782
  private readonly requestExecutor;
109183
109783
  constructor(requestExecutor: RequestExecutor);
@@ -109939,6 +110539,7 @@ declare class WorkspacesEndpoint {
109939
110539
  members: WorkspaceMembersEndpoint;
109940
110540
  invitations: WorkspaceInvitationsEndpoint;
109941
110541
  npmRegistry: WorkspaceNpmRegistryEndpoint;
110542
+ chatThreads: WorkspaceChatThreadsEndpoint;
109942
110543
  integrations: WorkspaceIntegrationsEndpoint;
109943
110544
  constructor(requestExecutor: RequestExecutor);
109944
110545
  create(body: DTOWorkspaceCreateInput): Promise<{
@@ -113225,4 +113826,4 @@ declare function isValidRedirectPath(path: string): {
113225
113826
  reason: ValidationErrorReason | undefined;
113226
113827
  };
113227
113828
 
113228
- export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFileResponseItem, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, 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, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy };
113829
+ export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFileResponseItem, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, 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, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy };