@cargo-ai/api 1.0.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.
Files changed (95) hide show
  1. package/build/src/api/ai/index.d.ts +78 -0
  2. package/build/src/api/ai/index.d.ts.map +1 -0
  3. package/build/src/api/ai/index.js +530 -0
  4. package/build/src/api/billing/index.d.ts +25 -0
  5. package/build/src/api/billing/index.d.ts.map +1 -0
  6. package/build/src/api/billing/index.js +155 -0
  7. package/build/src/api/connection/index.d.ts +28 -0
  8. package/build/src/api/connection/index.d.ts.map +1 -0
  9. package/build/src/api/connection/index.js +172 -0
  10. package/build/src/api/expression/index.d.ts +26 -0
  11. package/build/src/api/expression/index.d.ts.map +1 -0
  12. package/build/src/api/expression/index.js +115 -0
  13. package/build/src/api/index.d.ts +72 -0
  14. package/build/src/api/index.d.ts.map +1 -0
  15. package/build/src/api/index.js +51 -0
  16. package/build/src/api/orchestration/index.d.ts +66 -0
  17. package/build/src/api/orchestration/index.d.ts.map +1 -0
  18. package/build/src/api/orchestration/index.js +625 -0
  19. package/build/src/api/revenueOrganization/index.d.ts +37 -0
  20. package/build/src/api/revenueOrganization/index.d.ts.map +1 -0
  21. package/build/src/api/revenueOrganization/index.js +241 -0
  22. package/build/src/api/segmentation/index.d.ts +28 -0
  23. package/build/src/api/segmentation/index.d.ts.map +1 -0
  24. package/build/src/api/segmentation/index.js +188 -0
  25. package/build/src/api/storage/index.d.ts +45 -0
  26. package/build/src/api/storage/index.d.ts.map +1 -0
  27. package/build/src/api/storage/index.js +402 -0
  28. package/build/src/api/systemOfRecordIntegration/index.d.ts +29 -0
  29. package/build/src/api/systemOfRecordIntegration/index.d.ts.map +1 -0
  30. package/build/src/api/systemOfRecordIntegration/index.js +151 -0
  31. package/build/src/api/userManagement/index.d.ts +14 -0
  32. package/build/src/api/userManagement/index.d.ts.map +1 -0
  33. package/build/src/api/userManagement/index.js +33 -0
  34. package/build/src/api/workspaceManagement/index.d.ts +43 -0
  35. package/build/src/api/workspaceManagement/index.d.ts.map +1 -0
  36. package/build/src/api/workspaceManagement/index.js +283 -0
  37. package/build/src/client.d.ts +5 -0
  38. package/build/src/client.d.ts.map +1 -0
  39. package/build/src/client.js +24 -0
  40. package/build/src/fetcher/client.d.ts +7 -0
  41. package/build/src/fetcher/client.d.ts.map +1 -0
  42. package/build/src/fetcher/client.js +9 -0
  43. package/build/src/fetcher/error.d.ts +101 -0
  44. package/build/src/fetcher/error.d.ts.map +1 -0
  45. package/build/src/fetcher/error.js +184 -0
  46. package/build/src/fetcher/fetcher.d.ts +12 -0
  47. package/build/src/fetcher/fetcher.d.ts.map +1 -0
  48. package/build/src/fetcher/fetcher.js +1 -0
  49. package/build/src/fetcher/index.d.ts +34 -0
  50. package/build/src/fetcher/index.d.ts.map +1 -0
  51. package/build/src/fetcher/index.js +78 -0
  52. package/build/src/index.d.ts +5 -0
  53. package/build/src/index.d.ts.map +1 -0
  54. package/build/src/index.js +3 -0
  55. package/build/src/store/ai.d.ts +481 -0
  56. package/build/src/store/ai.d.ts.map +1 -0
  57. package/build/src/store/ai.js +112 -0
  58. package/build/src/store/billing.d.ts +140 -0
  59. package/build/src/store/billing.d.ts.map +1 -0
  60. package/build/src/store/billing.js +62 -0
  61. package/build/src/store/connection.d.ts +183 -0
  62. package/build/src/store/connection.d.ts.map +1 -0
  63. package/build/src/store/connection.js +88 -0
  64. package/build/src/store/expression.d.ts +112 -0
  65. package/build/src/store/expression.d.ts.map +1 -0
  66. package/build/src/store/expression.js +27 -0
  67. package/build/src/store/index.d.ts +14 -0
  68. package/build/src/store/index.d.ts.map +1 -0
  69. package/build/src/store/index.js +25 -0
  70. package/build/src/store/orchestration.d.ts +942 -0
  71. package/build/src/store/orchestration.d.ts.map +1 -0
  72. package/build/src/store/orchestration.js +217 -0
  73. package/build/src/store/revenueOrganization.d.ts +201 -0
  74. package/build/src/store/revenueOrganization.d.ts.map +1 -0
  75. package/build/src/store/revenueOrganization.js +68 -0
  76. package/build/src/store/segmentation.d.ts +566 -0
  77. package/build/src/store/segmentation.d.ts.map +1 -0
  78. package/build/src/store/segmentation.js +103 -0
  79. package/build/src/store/storage.d.ts +1096 -0
  80. package/build/src/store/storage.d.ts.map +1 -0
  81. package/build/src/store/storage.js +174 -0
  82. package/build/src/store/systemOfRecordIntegration.d.ts +122 -0
  83. package/build/src/store/systemOfRecordIntegration.d.ts.map +1 -0
  84. package/build/src/store/systemOfRecordIntegration.js +53 -0
  85. package/build/src/store/userManagement.d.ts +34 -0
  86. package/build/src/store/userManagement.d.ts.map +1 -0
  87. package/build/src/store/userManagement.js +22 -0
  88. package/build/src/store/workspaceManagement.d.ts +215 -0
  89. package/build/src/store/workspaceManagement.d.ts.map +1 -0
  90. package/build/src/store/workspaceManagement.js +103 -0
  91. package/build/src/types.d.ts +6 -0
  92. package/build/src/types.d.ts.map +1 -0
  93. package/build/src/types.js +1 -0
  94. package/build/tsconfig.tsbuildinfo +1 -0
  95. package/package.json +45 -0
@@ -0,0 +1,34 @@
1
+ import { z } from "zod/v4";
2
+ import type { BackendToFrontend } from "../types.js";
3
+ import type { FetcherRequest } from "./fetcher.js";
4
+ export { determineIfIsFetcherError, type FetcherError, FetcherRequestErrorClass, getErrorWithReasonErrorMessage, } from "./error.js";
5
+ export type FetcherDependencies = {
6
+ baseUrl: string;
7
+ workspaceUuid?: string;
8
+ getAccessToken?: (refresh?: boolean) => Promise<string>;
9
+ };
10
+ export type FetcherUploadFilePayload = {
11
+ formData: FormData;
12
+ onProgress: (progressPercentage: number) => void;
13
+ onComplete: (payload: {
14
+ s3Filename: string;
15
+ contentType: string;
16
+ name: string;
17
+ }) => void;
18
+ onError: () => void;
19
+ };
20
+ export declare const zodFetcherUploadFileErrorReason: z.ZodEnum<{
21
+ noFile: "noFile";
22
+ }>;
23
+ export type Fetcher = {
24
+ baseUrl: string;
25
+ uploadFile: (url: string, { formData, onProgress, onComplete, onError }: FetcherUploadFilePayload) => Promise<void>;
26
+ fetch<TResult>(request: FetcherRequest & {
27
+ replaceNullByUndefined: false;
28
+ }): Promise<TResult>;
29
+ fetch<TResult>(request: FetcherRequest & {
30
+ replaceNullByUndefined?: true | undefined;
31
+ }): Promise<BackendToFrontend<TResult>>;
32
+ };
33
+ export declare const buildFetcher: (dependencies: FetcherDependencies) => Fetcher;
34
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/fetcher/index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAE3B,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAGrD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAEnD,OAAO,EACL,yBAAyB,EACzB,KAAK,YAAY,EACjB,wBAAwB,EACxB,8BAA8B,GAC/B,MAAM,YAAY,CAAC;AAEpB,MAAM,MAAM,mBAAmB,GAAG;IAChC,OAAO,EAAE,MAAM,CAAC;IAChB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,cAAc,CAAC,EAAE,CAAC,OAAO,CAAC,EAAE,OAAO,KAAK,OAAO,CAAC,MAAM,CAAC,CAAC;CACzD,CAAC;AAEF,MAAM,MAAM,wBAAwB,GAAG;IACrC,QAAQ,EAAE,QAAQ,CAAC;IACnB,UAAU,EAAE,CAAC,kBAAkB,EAAE,MAAM,KAAK,IAAI,CAAC;IACjD,UAAU,EAAE,CAAC,OAAO,EAAE;QACpB,UAAU,EAAE,MAAM,CAAC;QACnB,WAAW,EAAE,MAAM,CAAC;QACpB,IAAI,EAAE,MAAM,CAAC;KACd,KAAK,IAAI,CAAC;IACX,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB,CAAC;AAEF,eAAO,MAAM,+BAA+B;;EAAqB,CAAC;AAElE,MAAM,MAAM,OAAO,GAAG;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,CACV,GAAG,EAAE,MAAM,EACX,EAAE,QAAQ,EAAE,UAAU,EAAE,UAAU,EAAE,OAAO,EAAE,EAAE,wBAAwB,KACpE,OAAO,CAAC,IAAI,CAAC,CAAC;IACnB,KAAK,CAAC,OAAO,EACX,OAAO,EAAE,cAAc,GAAG;QAAE,sBAAsB,EAAE,KAAK,CAAA;KAAE,GAC1D,OAAO,CAAC,OAAO,CAAC,CAAC;IACpB,KAAK,CAAC,OAAO,EACX,OAAO,EAAE,cAAc,GAAG;QAAE,sBAAsB,CAAC,EAAE,IAAI,GAAG,SAAS,CAAA;KAAE,GACtE,OAAO,CAAC,iBAAiB,CAAC,OAAO,CAAC,CAAC,CAAC;CACxC,CAAC;AAEF,eAAO,MAAM,YAAY,iBAAkB,mBAAmB,KAAG,OAgGhE,CAAC"}
@@ -0,0 +1,78 @@
1
+ import axios from "axios";
2
+ import { nullToUndefined } from "cargo-utils";
3
+ import { z } from "zod/v4";
4
+ import { buildClient } from "./client.js";
5
+ import { fromFetcherError } from "./error.js";
6
+ export { determineIfIsFetcherError, FetcherRequestErrorClass, getErrorWithReasonErrorMessage, } from "./error.js";
7
+ export const zodFetcherUploadFileErrorReason = z.enum(["noFile"]);
8
+ export const buildFetcher = (dependencies) => {
9
+ const { baseUrl, workspaceUuid, getAccessToken } = dependencies;
10
+ const client = buildClient({ baseUrl });
11
+ const generateAxiosFetcher = async (request) => {
12
+ const { endpoint, method, params, payload, forceTokenRefresh = false, replaceNullByUndefined = true, withoutWorkspace = false, } = request;
13
+ const source = axios.CancelToken.source();
14
+ let accessToken;
15
+ if (getAccessToken !== undefined) {
16
+ accessToken = await getAccessToken(forceTokenRefresh);
17
+ }
18
+ const workspaceHeaders = workspaceUuid !== undefined && withoutWorkspace === false
19
+ ? { "selected-workspace-uuid": workspaceUuid }
20
+ : {};
21
+ const options = {
22
+ url: endpoint,
23
+ method: method,
24
+ params,
25
+ data: payload,
26
+ cancelToken: source.token,
27
+ headers: {
28
+ authorization: accessToken !== undefined ? `Bearer ${accessToken}` : undefined,
29
+ ...workspaceHeaders,
30
+ },
31
+ };
32
+ const promise = client.request(options);
33
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
34
+ promise.cancel = source.cancel;
35
+ return promise
36
+ .then((response) => {
37
+ if (replaceNullByUndefined === true) {
38
+ return nullToUndefined(response.data);
39
+ }
40
+ return response.data;
41
+ })
42
+ .catch(async (axiosError) => {
43
+ throw await fromFetcherError(axiosError);
44
+ });
45
+ };
46
+ const uploadFile = async (url, payload) => {
47
+ const { formData, onProgress, onComplete, onError } = payload;
48
+ const workspaceHeaders = workspaceUuid
49
+ ? { "selected-workspace-uuid": workspaceUuid }
50
+ : {};
51
+ client
52
+ .post(url, formData, {
53
+ headers: {
54
+ "Content-Type": "multipart/form-data",
55
+ authorization: getAccessToken
56
+ ? `Bearer ${await getAccessToken()}`
57
+ : undefined,
58
+ ...workspaceHeaders,
59
+ },
60
+ onUploadProgress: (data) => {
61
+ onProgress(Math.round((100 * data.loaded) / data.total));
62
+ },
63
+ })
64
+ .then(({ data }) => onComplete({
65
+ s3Filename: data.s3Filename,
66
+ contentType: data.contentType,
67
+ name: data.name,
68
+ }))
69
+ .catch(() => {
70
+ onError();
71
+ });
72
+ };
73
+ return {
74
+ baseUrl,
75
+ uploadFile,
76
+ fetch: generateAxiosFetcher,
77
+ };
78
+ };
@@ -0,0 +1,5 @@
1
+ export * from "./api/index.js";
2
+ export type { FetcherError } from "./fetcher/index.js";
3
+ export { determineIfIsFetcherError } from "./fetcher/index.js";
4
+ export * from "./store/index.js";
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,YAAY,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AACvD,OAAO,EAAE,yBAAyB,EAAE,MAAM,oBAAoB,CAAC;AAC/D,cAAc,kBAAkB,CAAC"}
@@ -0,0 +1,3 @@
1
+ export * from "./api/index.js";
2
+ export { determineIfIsFetcherError } from "./fetcher/index.js";
3
+ export * from "./store/index.js";
@@ -0,0 +1,481 @@
1
+ import { type AiTypes } from "cargo-domain-types";
2
+ import type { JsonSchema } from "cargo-utils";
3
+ import { z } from "zod/v4";
4
+ import type { StateCreator } from "zustand";
5
+ import type { BackendToFrontend, DateToString } from "../types.js";
6
+ export declare namespace Ai {
7
+ type Agent = BackendToFrontend<AiTypes.Agent>;
8
+ type AgentIcon = BackendToFrontend<AiTypes.AgentIcon>;
9
+ type AgentDeployment = BackendToFrontend<AiTypes.AgentDeployment>;
10
+ type Template = BackendToFrontend<AiTypes.Template>;
11
+ type TemplateCategory = BackendToFrontend<AiTypes.TemplateCategory>;
12
+ type AgentTemplate = BackendToFrontend<AiTypes.AgentTemplate>;
13
+ type SuggestedAction = BackendToFrontend<AiTypes.SuggestedAction>;
14
+ type Release = BackendToFrontend<AiTypes.Release>;
15
+ type McpServer = BackendToFrontend<AiTypes.McpServer>;
16
+ type McpClient = BackendToFrontend<AiTypes.McpClient>;
17
+ type McpClientAuthentication = BackendToFrontend<AiTypes.McpClientAuthentication>;
18
+ type Tool = BackendToFrontend<AiTypes.Tool>;
19
+ type ToolTemplate = BackendToFrontend<AiTypes.ToolTemplate>;
20
+ type Resource = BackendToFrontend<AiTypes.Resource>;
21
+ type ModelResource = BackendToFrontend<AiTypes.ModelResource>;
22
+ type FileResource = BackendToFrontend<AiTypes.FileResource>;
23
+ type FileOrFolder = BackendToFrontend<AiTypes.FileOrFolder>;
24
+ type ModelResourceTemplate = BackendToFrontend<AiTypes.ModelResourceTemplate>;
25
+ type FileResourceTemplate = BackendToFrontend<AiTypes.FileResourceTemplate>;
26
+ type ResourceTemplate = BackendToFrontend<AiTypes.ResourceTemplate>;
27
+ type Capability = BackendToFrontend<AiTypes.Capability>;
28
+ type Chat = BackendToFrontend<AiTypes.Chat>;
29
+ type ChatTrigger = BackendToFrontend<AiTypes.ChatTrigger>;
30
+ type Message = BackendToFrontend<AiTypes.Message>;
31
+ type EvaluatedTool = BackendToFrontend<AiTypes.EvaluatedTool>;
32
+ type EvaluatedToolInvocationOutput<T> = BackendToFrontend<AiTypes.EvaluatedToolInvocationOutput<T>>;
33
+ type MessageMetadata = BackendToFrontend<AiTypes.MessageMetadata>;
34
+ type Vote = BackendToFrontend<AiTypes.Vote>;
35
+ type Document = BackendToFrontend<AiTypes.Document>;
36
+ type DocumentKind = BackendToFrontend<AiTypes.DocumentKind>;
37
+ type DocumentSuggestion = BackendToFrontend<AiTypes.DocumentSuggestion>;
38
+ type Memory = BackendToFrontend<AiTypes.Memory>;
39
+ type File = BackendToFrontend<AiTypes.File>;
40
+ const agentConfig: {
41
+ jsonSchema: JsonSchema;
42
+ uiSchema: Record<string, unknown>;
43
+ };
44
+ namespace Api {
45
+ type ListTemplatesResult = {
46
+ templates: Template[];
47
+ };
48
+ type GetAgentResult = {
49
+ agent: Agent;
50
+ };
51
+ type CreateAgentPayload = DateToString<{
52
+ name: string;
53
+ description?: string;
54
+ icon: AiTypes.AgentIcon;
55
+ deployments: AiTypes.AgentDeployment[];
56
+ folderUuid?: string;
57
+ }>;
58
+ type CreateAgentResult = {
59
+ agent: Agent;
60
+ };
61
+ const zodCreateAgentErrorReason: z.ZodEnum<{
62
+ folderNotFound: "folderNotFound";
63
+ }>;
64
+ type AllAgentsResult = {
65
+ agents: Agent[];
66
+ };
67
+ type UpdateAgentPayload = DateToString<{
68
+ uuid: string;
69
+ name?: string;
70
+ icon?: AiTypes.AgentIcon;
71
+ description?: string | null;
72
+ deployments?: AiTypes.AgentDeployment[];
73
+ folderUuid?: string | null;
74
+ }>;
75
+ const zodUpdateAgentErrorReason: z.ZodEnum<{
76
+ folderNotFound: "folderNotFound";
77
+ agentNotFound: "agentNotFound";
78
+ }>;
79
+ type UpdateAgentResult = {
80
+ agent: Agent;
81
+ };
82
+ const zodRemoveAgentErrorReason: z.ZodEnum<{
83
+ agentNotFound: "agentNotFound";
84
+ }>;
85
+ type GetReleaseResult = {
86
+ release: Release;
87
+ };
88
+ type ListReleasesPayload = DateToString<{
89
+ agentUuid?: string;
90
+ userUuid?: string;
91
+ statuses?: AiTypes.ReleaseStatus[];
92
+ limit?: number;
93
+ offset?: number;
94
+ }>;
95
+ type ListReleasesResult = {
96
+ releases: Release[];
97
+ };
98
+ type GetDraftReleasePayload = DateToString<{
99
+ agentUuid: string;
100
+ }>;
101
+ type GetDraftReleaseResult = {
102
+ release: Release;
103
+ };
104
+ type UpdateDraftReleasePayload = DateToString<{
105
+ agentUuid: string;
106
+ parentUuid?: string;
107
+ tools?: AiTypes.Tool[];
108
+ mcpClients?: AiTypes.McpClient[];
109
+ resources?: AiTypes.Resource[];
110
+ capabilities?: AiTypes.Capability[];
111
+ suggestedActions?: AiTypes.SuggestedAction[];
112
+ systemPrompt?: string;
113
+ withReasoning?: boolean;
114
+ temperature?: number;
115
+ maxSteps?: number;
116
+ integrationSlug?: string;
117
+ connectorUuid?: string;
118
+ languageModelSlug?: string;
119
+ options?: {
120
+ connectorUuidsByIntegrationSlug?: Record<string, string>;
121
+ modelUuidsByIntegrationSlug?: Record<string, string>;
122
+ };
123
+ }>;
124
+ const zodUpdateDraftReleaseErrorReason: z.ZodEnum<{
125
+ agentNotFound: "agentNotFound";
126
+ draftReleaseNotFound: "draftReleaseNotFound";
127
+ invalidParent: "invalidParent";
128
+ invalidConnector: "invalidConnector";
129
+ failedToReconciliateAgentAiTools: "failedToReconciliateAgentAiTools";
130
+ }>;
131
+ type UpdateDraftReleaseResult = {
132
+ release: Release;
133
+ };
134
+ type DeployDraftReleasePayload = DateToString<{
135
+ agentUuid: string;
136
+ tools: AiTypes.Tool[];
137
+ mcpClients: AiTypes.McpClient[];
138
+ resources: AiTypes.Resource[];
139
+ capabilities: AiTypes.Capability[];
140
+ suggestedActions: AiTypes.SuggestedAction[];
141
+ systemPrompt?: string;
142
+ withReasoning?: boolean;
143
+ temperature?: number;
144
+ maxSteps?: number;
145
+ integrationSlug: string;
146
+ connectorUuid?: string;
147
+ languageModelSlug: string;
148
+ version: string;
149
+ description?: string;
150
+ options?: {
151
+ connectorUuidsByIntegrationSlug?: Record<string, string>;
152
+ modelUuidsByIntegrationSlug?: Record<string, string>;
153
+ };
154
+ }>;
155
+ const zodDeployDraftReleaseErrorReason: z.ZodEnum<{
156
+ agentNotFound: "agentNotFound";
157
+ draftReleaseNotFound: "draftReleaseNotFound";
158
+ failedToReconciliateAgentAiTools: "failedToReconciliateAgentAiTools";
159
+ duplicatedReleaseVersion: "duplicatedReleaseVersion";
160
+ }>;
161
+ type DeployDraftReleaseResult = {
162
+ release: Release;
163
+ };
164
+ type CreateChatPayload = DateToString<{
165
+ name?: string;
166
+ agentUuid?: string;
167
+ releaseUuid?: string;
168
+ trigger: AiTypes.ChatTrigger;
169
+ }>;
170
+ type CreateChatResult = {
171
+ chat: Ai.Chat;
172
+ };
173
+ type GetChatResult = {
174
+ chat: Chat;
175
+ };
176
+ const zodGetChatErrorReason: z.ZodEnum<{
177
+ chatNotFound: "chatNotFound";
178
+ }>;
179
+ type UpdateChatPayload = DateToString<{
180
+ uuid: string;
181
+ name?: string | null;
182
+ }>;
183
+ type UpdateChatResult = {
184
+ chat: Chat;
185
+ };
186
+ const zodUpdateChatErrorReason: z.ZodEnum<{
187
+ chatNotFound: "chatNotFound";
188
+ }>;
189
+ type RemoveChatPayload = DateToString<{
190
+ uuid: string;
191
+ }>;
192
+ type RemoveChatResult = {
193
+ outcome: "removed";
194
+ };
195
+ const zodRemoveChatErrorReason: z.ZodEnum<{
196
+ chatNotFound: "chatNotFound";
197
+ }>;
198
+ type ListChatsPayload = DateToString<{
199
+ agentUuid?: string;
200
+ releaseUuid?: string;
201
+ userUuid?: string;
202
+ triggerType?: AiTypes.ChatTrigger["type"];
203
+ limit?: number;
204
+ offset?: number;
205
+ }>;
206
+ type ListChatsResult = {
207
+ chats: Chat[];
208
+ };
209
+ type ListMessagesPayload = DateToString<{
210
+ chatUuid: string;
211
+ limit?: number;
212
+ offset?: number;
213
+ }>;
214
+ type ListMessagesResult = {
215
+ messages: Message[];
216
+ };
217
+ type GetMessageResult = {
218
+ message: Message;
219
+ };
220
+ const zodGetMessageErrorReason: z.ZodEnum<{
221
+ messageNotFound: "messageNotFound";
222
+ }>;
223
+ const zodRemoveMessageErrorReason: z.ZodEnum<{
224
+ messageNotFound: "messageNotFound";
225
+ messageNotUser: "messageNotUser";
226
+ }>;
227
+ type UpsertVotePayload = DateToString<{
228
+ chatUuid: string;
229
+ messageUuid: string;
230
+ isUpvoted: boolean;
231
+ }>;
232
+ type UpsertVoteResult = {
233
+ vote: Vote;
234
+ };
235
+ type ListVotesPayload = DateToString<{
236
+ chatUuid: string;
237
+ }>;
238
+ type ListVotesResult = {
239
+ votes: Vote[];
240
+ };
241
+ type GetDocumentResult = {
242
+ document: Document;
243
+ };
244
+ type ListDocumentsPayload = DateToString<{
245
+ uuid: string;
246
+ limit?: number;
247
+ offset?: number;
248
+ }>;
249
+ type ListDocumentsResult = {
250
+ documents: Document[];
251
+ };
252
+ type CreateDocumentPayload = DateToString<{
253
+ uuid: string;
254
+ kind: AiTypes.DocumentKind;
255
+ title: string;
256
+ content: string;
257
+ }>;
258
+ type CreateDocumentResult = {
259
+ document: Document;
260
+ };
261
+ type ResetDocumentPayload = DateToString<{
262
+ uuid: string;
263
+ createdAt: Date;
264
+ }>;
265
+ type ResetDocumentResult = {
266
+ document: Document;
267
+ };
268
+ type GetMcpServerResult = {
269
+ mcpServer: McpServer;
270
+ };
271
+ type CreateMcpServerPayload = DateToString<{
272
+ name: string;
273
+ tools?: AiTypes.Tool[];
274
+ }>;
275
+ type CreateMcpServerResult = {
276
+ mcpServer: McpServer;
277
+ };
278
+ type AllMcpServersResult = {
279
+ mcpServers: McpServer[];
280
+ };
281
+ type UpdateMcpServerPayload = DateToString<{
282
+ uuid: string;
283
+ name?: string;
284
+ tools?: AiTypes.Tool[];
285
+ }>;
286
+ const zodUpdateMcpServerErrorReason: z.ZodEnum<{
287
+ mcpServerNotFound: "mcpServerNotFound";
288
+ }>;
289
+ type UpdateMcpServerResult = {
290
+ mcpServer: McpServer;
291
+ };
292
+ type ConnectMcpClientPayload = DateToString<{
293
+ mcpClient: AiTypes.McpClient;
294
+ }>;
295
+ type ConnectMcpClientResult = {
296
+ tools: {
297
+ slug: string;
298
+ description?: string;
299
+ config: {
300
+ jsonSchema: JsonSchema;
301
+ };
302
+ }[];
303
+ };
304
+ const zodRemoveMcpServerErrorReason: z.ZodEnum<{
305
+ mcpServerNotFound: "mcpServerNotFound";
306
+ }>;
307
+ type OptimizePromptPayload = DateToString<{
308
+ prompt: string;
309
+ }>;
310
+ type OptimizePromptResult = {
311
+ prompt: string;
312
+ };
313
+ type EvaluatePromptPayload = DateToString<{
314
+ prompt: string;
315
+ tools: AiTypes.Tool[];
316
+ resources: AiTypes.Resource[];
317
+ capabilities: AiTypes.Capability[];
318
+ }>;
319
+ type EvaluatePromptResult = {
320
+ prompt?: string;
321
+ errorMessage?: string;
322
+ };
323
+ type ListMemoriesPayload = {
324
+ scope: "workspace";
325
+ } | {
326
+ scope: "user";
327
+ } | {
328
+ scope: "agent";
329
+ agentUuid: string;
330
+ };
331
+ type ListMemoriesResult = {
332
+ memories: Memory[];
333
+ };
334
+ type RemoveMemoryPayload = DateToString<{
335
+ mem0Id: string;
336
+ } & ({
337
+ scope: "workspace";
338
+ } | {
339
+ scope: "user";
340
+ } | {
341
+ scope: "agent";
342
+ agentUuid: string;
343
+ })>;
344
+ const zodRemoveMemoryErrorReason: z.ZodEnum<{
345
+ memoryNotFound: "memoryNotFound";
346
+ }>;
347
+ type UpdateMemoryPayload = DateToString<{
348
+ mem0Id: string;
349
+ content: string;
350
+ } & ({
351
+ scope: "workspace";
352
+ } | {
353
+ scope: "user";
354
+ } | {
355
+ scope: "agent";
356
+ agentUuid: string;
357
+ })>;
358
+ const zodUpdateMemoryErrorReason: z.ZodEnum<{
359
+ memoryNotFound: "memoryNotFound";
360
+ }>;
361
+ type GetFileResult = {
362
+ file: File;
363
+ };
364
+ type AllFilesResult = {
365
+ files: File[];
366
+ };
367
+ type UpdateFilePayload = DateToString<{
368
+ uuid: string;
369
+ name?: string;
370
+ folderUuid?: string | null;
371
+ }>;
372
+ type UpdateFileResult = {
373
+ file: File;
374
+ };
375
+ type UploadFilePayload = {
376
+ file: any;
377
+ folderUuid?: string;
378
+ onProgress: (progressPercentage: number) => void;
379
+ onComplete: (payload: {
380
+ s3Filename: string;
381
+ contentType: string;
382
+ name: string;
383
+ }) => void;
384
+ onError: () => void;
385
+ };
386
+ const zodUpdateFileErrorReason: z.ZodEnum<{
387
+ folderNotFound: "folderNotFound";
388
+ fileNotFound: "fileNotFound";
389
+ }>;
390
+ const zodRemoveFileErrorReason: z.ZodEnum<{
391
+ fileNotFound: "fileNotFound";
392
+ }>;
393
+ type GenerateSuggestedActionsPayload = DateToString<{
394
+ messageUuid?: string;
395
+ systemPrompt?: string;
396
+ contextPrompt?: string;
397
+ agentUuid?: string;
398
+ tools?: AiTypes.Tool[];
399
+ resources?: AiTypes.Resource[];
400
+ capabilities?: AiTypes.Capability[];
401
+ cacheKey?: string;
402
+ }>;
403
+ type GenerateSuggestedActionsResult = {
404
+ suggestedActions: AiTypes.SuggestedAction[];
405
+ };
406
+ }
407
+ const templateKeys: {
408
+ all: () => readonly ["templates"];
409
+ };
410
+ const mcpServerKeys: {
411
+ all: (workspaceUuid: string) => readonly ["batches", string];
412
+ };
413
+ const agentKeys: {
414
+ all: (workspaceUuid: string) => readonly ["agents", string];
415
+ };
416
+ const chatKeys: {
417
+ all: (workspaceUuid: string) => readonly ["chats", string];
418
+ get: (workspaceUuid: string, uuid: string) => readonly ["chats", string, string];
419
+ list: (workspaceUuid: string, payload: Api.ListChatsPayload) => readonly ["chats", string, {
420
+ agentUuid?: string | undefined;
421
+ releaseUuid?: string | undefined;
422
+ userUuid?: string | undefined;
423
+ triggerType?: "draft" | "chat" | "connector" | "web_extension" | "app" | "workflow" | undefined;
424
+ limit?: number | undefined;
425
+ offset?: number | undefined;
426
+ }];
427
+ };
428
+ const messageKeys: {
429
+ all: (workspaceUuid: string) => readonly ["messages", string];
430
+ get: (workspaceUuid: string, uuid: string) => readonly ["messages", string, string];
431
+ list: (workspaceUuid: string, payload: Api.ListMessagesPayload) => readonly ["messages", string, {
432
+ chatUuid: string;
433
+ limit?: number | undefined;
434
+ offset?: number | undefined;
435
+ }];
436
+ };
437
+ const memoryKeys: {
438
+ all: (workspaceUuid: string) => readonly ["memories", string];
439
+ list: (workspaceUuid: string, payload: Api.ListMemoriesPayload) => readonly ["memories", string, Api.ListMemoriesPayload];
440
+ };
441
+ const voteKeys: {
442
+ all: (workspaceUuid: string) => readonly ["votes", string];
443
+ list: (workspaceUuid: string, payload: Api.ListVotesPayload) => readonly ["votes", string, {
444
+ chatUuid: string;
445
+ }];
446
+ };
447
+ const releaseKeys: {
448
+ all: (workspaceUuid: string) => readonly ["releases", string];
449
+ get: (workspaceUuid: string, uuid: string) => readonly ["releases", string, string];
450
+ getDraft: (workspaceUuid: string, workflowUuid: string) => readonly ["releases", string, string];
451
+ list: (workspaceUuid: string, payload: Api.ListReleasesPayload) => readonly ["releases", string, {
452
+ agentUuid?: string | undefined;
453
+ userUuid?: string | undefined;
454
+ statuses?: AiTypes.ReleaseStatus[] | undefined;
455
+ limit?: number | undefined;
456
+ offset?: number | undefined;
457
+ }];
458
+ };
459
+ const documentKeys: {
460
+ all: (workspaceUuid: string) => readonly ["documents", string];
461
+ get: (workspaceUuid: string, uuid: string) => readonly ["documents", string, string];
462
+ list: (workspaceUuid: string, payload: Api.ListDocumentsPayload) => readonly ["documents", string, {
463
+ uuid: string;
464
+ limit?: number | undefined;
465
+ offset?: number | undefined;
466
+ }];
467
+ };
468
+ const fileKeys: {
469
+ all: (workspaceUuid: string) => readonly ["files", string];
470
+ };
471
+ }
472
+ export interface AiSlice {
473
+ mcpServers: Ai.McpServer[];
474
+ setMcpServers: (workflows: Ai.McpServer[]) => void;
475
+ agents: Ai.Agent[];
476
+ setAgents: (agents: Ai.Agent[]) => void;
477
+ files: Ai.File[];
478
+ setFiles: (files: Ai.File[]) => void;
479
+ }
480
+ export declare const createAiSlice: StateCreator<AiSlice, [], [], AiSlice>;
481
+ //# sourceMappingURL=ai.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ai.d.ts","sourceRoot":"","sources":["../../../src/store/ai.ts"],"names":[],"mappings":"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"}