@vertesia/client 0.24.0-dev.202601221707
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/LICENSE +13 -0
- package/README.md +110 -0
- package/lib/cjs/AccountApi.js +85 -0
- package/lib/cjs/AccountApi.js.map +1 -0
- package/lib/cjs/AccountsApi.js +16 -0
- package/lib/cjs/AccountsApi.js.map +1 -0
- package/lib/cjs/AnalyticsApi.js +41 -0
- package/lib/cjs/AnalyticsApi.js.map +1 -0
- package/lib/cjs/ApiKeysApi.js +63 -0
- package/lib/cjs/ApiKeysApi.js.map +1 -0
- package/lib/cjs/AppsApi.js +119 -0
- package/lib/cjs/AppsApi.js.map +1 -0
- package/lib/cjs/CommandsApi.js +19 -0
- package/lib/cjs/CommandsApi.js.map +1 -0
- package/lib/cjs/EnvironmentsApi.js +72 -0
- package/lib/cjs/EnvironmentsApi.js.map +1 -0
- package/lib/cjs/GroupsApi.js +78 -0
- package/lib/cjs/GroupsApi.js.map +1 -0
- package/lib/cjs/IamApi.js +53 -0
- package/lib/cjs/IamApi.js.map +1 -0
- package/lib/cjs/InteractionBase.js +44 -0
- package/lib/cjs/InteractionBase.js.map +1 -0
- package/lib/cjs/InteractionCatalogApi.js +64 -0
- package/lib/cjs/InteractionCatalogApi.js.map +1 -0
- package/lib/cjs/InteractionOutput.js +300 -0
- package/lib/cjs/InteractionOutput.js.map +1 -0
- package/lib/cjs/InteractionResult.example.js +57 -0
- package/lib/cjs/InteractionResult.example.js.map +1 -0
- package/lib/cjs/InteractionsApi.js +262 -0
- package/lib/cjs/InteractionsApi.js.map +1 -0
- package/lib/cjs/MCPOAuthApi.js +62 -0
- package/lib/cjs/MCPOAuthApi.js.map +1 -0
- package/lib/cjs/ProjectsApi.js +72 -0
- package/lib/cjs/ProjectsApi.js.map +1 -0
- package/lib/cjs/PromptsApi.js +133 -0
- package/lib/cjs/PromptsApi.js.map +1 -0
- package/lib/cjs/RefsApi.js +14 -0
- package/lib/cjs/RefsApi.js.map +1 -0
- package/lib/cjs/RunsApi.js +113 -0
- package/lib/cjs/RunsApi.js.map +1 -0
- package/lib/cjs/SkillsApi.js +39 -0
- package/lib/cjs/SkillsApi.js.map +1 -0
- package/lib/cjs/StreamSource.js +17 -0
- package/lib/cjs/StreamSource.js.map +1 -0
- package/lib/cjs/TrainingApi.js +54 -0
- package/lib/cjs/TrainingApi.js.map +1 -0
- package/lib/cjs/UsersApi.js +13 -0
- package/lib/cjs/UsersApi.js.map +1 -0
- package/lib/cjs/client.js +360 -0
- package/lib/cjs/client.js.map +1 -0
- package/lib/cjs/execute.js +158 -0
- package/lib/cjs/execute.js.map +1 -0
- package/lib/cjs/index.js +22 -0
- package/lib/cjs/index.js.map +1 -0
- package/lib/cjs/nodejs/NodeStreamSource.js +45 -0
- package/lib/cjs/nodejs/NodeStreamSource.js.map +1 -0
- package/lib/cjs/nodejs/index.js +18 -0
- package/lib/cjs/nodejs/index.js.map +1 -0
- package/lib/cjs/package.json +3 -0
- package/lib/cjs/store/AnalyzeDocApi.js +56 -0
- package/lib/cjs/store/AnalyzeDocApi.js.map +1 -0
- package/lib/cjs/store/CollectionsApi.js +131 -0
- package/lib/cjs/store/CollectionsApi.js.map +1 -0
- package/lib/cjs/store/CommandsApi.js +17 -0
- package/lib/cjs/store/CommandsApi.js.map +1 -0
- package/lib/cjs/store/DashboardApi.js +182 -0
- package/lib/cjs/store/DashboardApi.js.map +1 -0
- package/lib/cjs/store/DataApi.js +433 -0
- package/lib/cjs/store/DataApi.js.map +1 -0
- package/lib/cjs/store/EmailApi.js +103 -0
- package/lib/cjs/store/EmailApi.js.map +1 -0
- package/lib/cjs/store/EmbeddingsApi.js +29 -0
- package/lib/cjs/store/EmbeddingsApi.js.map +1 -0
- package/lib/cjs/store/FilesApi.js +237 -0
- package/lib/cjs/store/FilesApi.js.map +1 -0
- package/lib/cjs/store/ObjectsApi.js +314 -0
- package/lib/cjs/store/ObjectsApi.js.map +1 -0
- package/lib/cjs/store/PendingAsksApi.js +43 -0
- package/lib/cjs/store/PendingAsksApi.js.map +1 -0
- package/lib/cjs/store/SchedulesApi.js +103 -0
- package/lib/cjs/store/SchedulesApi.js.map +1 -0
- package/lib/cjs/store/ToolsApi.js +21 -0
- package/lib/cjs/store/ToolsApi.js.map +1 -0
- package/lib/cjs/store/TypesApi.js +57 -0
- package/lib/cjs/store/TypesApi.js.map +1 -0
- package/lib/cjs/store/WorkersApi.js +16 -0
- package/lib/cjs/store/WorkersApi.js.map +1 -0
- package/lib/cjs/store/WorkflowsApi.js +596 -0
- package/lib/cjs/store/WorkflowsApi.js.map +1 -0
- package/lib/cjs/store/client.js +81 -0
- package/lib/cjs/store/client.js.map +1 -0
- package/lib/cjs/store/errors.js +11 -0
- package/lib/cjs/store/errors.js.map +1 -0
- package/lib/cjs/store/index.js +27 -0
- package/lib/cjs/store/index.js.map +1 -0
- package/lib/cjs/store/version.js +6 -0
- package/lib/cjs/store/version.js.map +1 -0
- package/lib/esm/AccountApi.js +82 -0
- package/lib/esm/AccountApi.js.map +1 -0
- package/lib/esm/AccountsApi.js +13 -0
- package/lib/esm/AccountsApi.js.map +1 -0
- package/lib/esm/AnalyticsApi.js +38 -0
- package/lib/esm/AnalyticsApi.js.map +1 -0
- package/lib/esm/ApiKeysApi.js +59 -0
- package/lib/esm/ApiKeysApi.js.map +1 -0
- package/lib/esm/AppsApi.js +116 -0
- package/lib/esm/AppsApi.js.map +1 -0
- package/lib/esm/CommandsApi.js +16 -0
- package/lib/esm/CommandsApi.js.map +1 -0
- package/lib/esm/EnvironmentsApi.js +69 -0
- package/lib/esm/EnvironmentsApi.js.map +1 -0
- package/lib/esm/GroupsApi.js +74 -0
- package/lib/esm/GroupsApi.js.map +1 -0
- package/lib/esm/IamApi.js +47 -0
- package/lib/esm/IamApi.js.map +1 -0
- package/lib/esm/InteractionBase.js +40 -0
- package/lib/esm/InteractionBase.js.map +1 -0
- package/lib/esm/InteractionCatalogApi.js +60 -0
- package/lib/esm/InteractionCatalogApi.js.map +1 -0
- package/lib/esm/InteractionOutput.js +293 -0
- package/lib/esm/InteractionOutput.js.map +1 -0
- package/lib/esm/InteractionResult.example.js +55 -0
- package/lib/esm/InteractionResult.example.js.map +1 -0
- package/lib/esm/InteractionsApi.js +259 -0
- package/lib/esm/InteractionsApi.js.map +1 -0
- package/lib/esm/MCPOAuthApi.js +59 -0
- package/lib/esm/MCPOAuthApi.js.map +1 -0
- package/lib/esm/ProjectsApi.js +69 -0
- package/lib/esm/ProjectsApi.js.map +1 -0
- package/lib/esm/PromptsApi.js +130 -0
- package/lib/esm/PromptsApi.js.map +1 -0
- package/lib/esm/RefsApi.js +10 -0
- package/lib/esm/RefsApi.js.map +1 -0
- package/lib/esm/RunsApi.js +109 -0
- package/lib/esm/RunsApi.js.map +1 -0
- package/lib/esm/SkillsApi.js +36 -0
- package/lib/esm/SkillsApi.js.map +1 -0
- package/lib/esm/StreamSource.js +13 -0
- package/lib/esm/StreamSource.js.map +1 -0
- package/lib/esm/TrainingApi.js +51 -0
- package/lib/esm/TrainingApi.js.map +1 -0
- package/lib/esm/UsersApi.js +10 -0
- package/lib/esm/UsersApi.js.map +1 -0
- package/lib/esm/client.js +351 -0
- package/lib/esm/client.js.map +1 -0
- package/lib/esm/execute.js +118 -0
- package/lib/esm/execute.js.map +1 -0
- package/lib/esm/index.js +6 -0
- package/lib/esm/index.js.map +1 -0
- package/lib/esm/nodejs/NodeStreamSource.js +41 -0
- package/lib/esm/nodejs/NodeStreamSource.js.map +1 -0
- package/lib/esm/nodejs/index.js +2 -0
- package/lib/esm/nodejs/index.js.map +1 -0
- package/lib/esm/store/AnalyzeDocApi.js +52 -0
- package/lib/esm/store/AnalyzeDocApi.js.map +1 -0
- package/lib/esm/store/CollectionsApi.js +127 -0
- package/lib/esm/store/CollectionsApi.js.map +1 -0
- package/lib/esm/store/CommandsApi.js +13 -0
- package/lib/esm/store/CommandsApi.js.map +1 -0
- package/lib/esm/store/DashboardApi.js +178 -0
- package/lib/esm/store/DashboardApi.js.map +1 -0
- package/lib/esm/store/DataApi.js +429 -0
- package/lib/esm/store/DataApi.js.map +1 -0
- package/lib/esm/store/EmailApi.js +99 -0
- package/lib/esm/store/EmailApi.js.map +1 -0
- package/lib/esm/store/EmbeddingsApi.js +25 -0
- package/lib/esm/store/EmbeddingsApi.js.map +1 -0
- package/lib/esm/store/FilesApi.js +231 -0
- package/lib/esm/store/FilesApi.js.map +1 -0
- package/lib/esm/store/ObjectsApi.js +309 -0
- package/lib/esm/store/ObjectsApi.js.map +1 -0
- package/lib/esm/store/PendingAsksApi.js +39 -0
- package/lib/esm/store/PendingAsksApi.js.map +1 -0
- package/lib/esm/store/SchedulesApi.js +99 -0
- package/lib/esm/store/SchedulesApi.js.map +1 -0
- package/lib/esm/store/ToolsApi.js +17 -0
- package/lib/esm/store/ToolsApi.js.map +1 -0
- package/lib/esm/store/TypesApi.js +53 -0
- package/lib/esm/store/TypesApi.js.map +1 -0
- package/lib/esm/store/WorkersApi.js +12 -0
- package/lib/esm/store/WorkersApi.js.map +1 -0
- package/lib/esm/store/WorkflowsApi.js +590 -0
- package/lib/esm/store/WorkflowsApi.js.map +1 -0
- package/lib/esm/store/client.js +77 -0
- package/lib/esm/store/client.js.map +1 -0
- package/lib/esm/store/errors.js +7 -0
- package/lib/esm/store/errors.js.map +1 -0
- package/lib/esm/store/index.js +11 -0
- package/lib/esm/store/index.js.map +1 -0
- package/lib/esm/store/version.js +3 -0
- package/lib/esm/store/version.js.map +1 -0
- package/lib/tsconfig.tsbuildinfo +1 -0
- package/lib/types/AccountApi.d.ts +59 -0
- package/lib/types/AccountApi.d.ts.map +1 -0
- package/lib/types/AccountsApi.d.ts +7 -0
- package/lib/types/AccountsApi.d.ts.map +1 -0
- package/lib/types/AnalyticsApi.d.ts +11 -0
- package/lib/types/AnalyticsApi.d.ts.map +1 -0
- package/lib/types/ApiKeysApi.d.ts +42 -0
- package/lib/types/ApiKeysApi.d.ts.map +1 -0
- package/lib/types/AppsApi.d.ts +65 -0
- package/lib/types/AppsApi.d.ts.map +1 -0
- package/lib/types/CommandsApi.d.ts +10 -0
- package/lib/types/CommandsApi.d.ts.map +1 -0
- package/lib/types/EnvironmentsApi.d.ts +40 -0
- package/lib/types/EnvironmentsApi.d.ts.map +1 -0
- package/lib/types/GroupsApi.d.ts +65 -0
- package/lib/types/GroupsApi.d.ts.map +1 -0
- package/lib/types/IamApi.d.ts +41 -0
- package/lib/types/IamApi.d.ts.map +1 -0
- package/lib/types/InteractionBase.d.ts +22 -0
- package/lib/types/InteractionBase.d.ts.map +1 -0
- package/lib/types/InteractionCatalogApi.d.ts +36 -0
- package/lib/types/InteractionCatalogApi.d.ts.map +1 -0
- package/lib/types/InteractionOutput.d.ts +174 -0
- package/lib/types/InteractionOutput.d.ts.map +1 -0
- package/lib/types/InteractionResult.example.d.ts +6 -0
- package/lib/types/InteractionResult.example.d.ts.map +1 -0
- package/lib/types/InteractionsApi.d.ts +183 -0
- package/lib/types/InteractionsApi.d.ts.map +1 -0
- package/lib/types/MCPOAuthApi.d.ts +45 -0
- package/lib/types/MCPOAuthApi.d.ts.map +1 -0
- package/lib/types/ProjectsApi.d.ts +28 -0
- package/lib/types/ProjectsApi.d.ts.map +1 -0
- package/lib/types/PromptsApi.d.ts +106 -0
- package/lib/types/PromptsApi.d.ts.map +1 -0
- package/lib/types/RefsApi.d.ts +6 -0
- package/lib/types/RefsApi.d.ts.map +1 -0
- package/lib/types/RunsApi.d.ts +79 -0
- package/lib/types/RunsApi.d.ts.map +1 -0
- package/lib/types/SkillsApi.d.ts +26 -0
- package/lib/types/SkillsApi.d.ts.map +1 -0
- package/lib/types/StreamSource.d.ts +7 -0
- package/lib/types/StreamSource.d.ts.map +1 -0
- package/lib/types/TrainingApi.d.ts +27 -0
- package/lib/types/TrainingApi.d.ts.map +1 -0
- package/lib/types/UsersApi.d.ts +6 -0
- package/lib/types/UsersApi.d.ts.map +1 -0
- package/lib/types/client.d.ts +136 -0
- package/lib/types/client.d.ts.map +1 -0
- package/lib/types/execute.d.ts +37 -0
- package/lib/types/execute.d.ts.map +1 -0
- package/lib/types/index.d.ts +10 -0
- package/lib/types/index.d.ts.map +1 -0
- package/lib/types/nodejs/NodeStreamSource.d.ts +9 -0
- package/lib/types/nodejs/NodeStreamSource.d.ts.map +1 -0
- package/lib/types/nodejs/index.d.ts +1 -0
- package/lib/types/nodejs/index.d.ts.map +1 -0
- package/lib/types/store/AnalyzeDocApi.d.ts +17 -0
- package/lib/types/store/AnalyzeDocApi.d.ts.map +1 -0
- package/lib/types/store/CollectionsApi.d.ts +82 -0
- package/lib/types/store/CollectionsApi.d.ts.map +1 -0
- package/lib/types/store/CommandsApi.d.ts +10 -0
- package/lib/types/store/CommandsApi.d.ts.map +1 -0
- package/lib/types/store/DashboardApi.d.ts +149 -0
- package/lib/types/store/DashboardApi.d.ts.map +1 -0
- package/lib/types/store/DataApi.d.ts +392 -0
- package/lib/types/store/DataApi.d.ts.map +1 -0
- package/lib/types/store/EmailApi.d.ts +185 -0
- package/lib/types/store/EmailApi.d.ts.map +1 -0
- package/lib/types/store/EmbeddingsApi.d.ts +12 -0
- package/lib/types/store/EmbeddingsApi.d.ts.map +1 -0
- package/lib/types/store/FilesApi.d.ts +110 -0
- package/lib/types/store/FilesApi.d.ts.map +1 -0
- package/lib/types/store/ObjectsApi.d.ts +139 -0
- package/lib/types/store/ObjectsApi.d.ts.map +1 -0
- package/lib/types/store/PendingAsksApi.d.ts +79 -0
- package/lib/types/store/PendingAsksApi.d.ts.map +1 -0
- package/lib/types/store/SchedulesApi.d.ts +89 -0
- package/lib/types/store/SchedulesApi.d.ts.map +1 -0
- package/lib/types/store/ToolsApi.d.ts +13 -0
- package/lib/types/store/ToolsApi.d.ts.map +1 -0
- package/lib/types/store/TypesApi.d.ts +23 -0
- package/lib/types/store/TypesApi.d.ts.map +1 -0
- package/lib/types/store/WorkersApi.d.ts +6 -0
- package/lib/types/store/WorkersApi.d.ts.map +1 -0
- package/lib/types/store/WorkflowsApi.d.ts +167 -0
- package/lib/types/store/WorkflowsApi.d.ts.map +1 -0
- package/lib/types/store/client.d.ts +45 -0
- package/lib/types/store/client.d.ts.map +1 -0
- package/lib/types/store/errors.d.ts +4 -0
- package/lib/types/store/errors.d.ts.map +1 -0
- package/lib/types/store/index.d.ts +10 -0
- package/lib/types/store/index.d.ts.map +1 -0
- package/lib/types/store/version.d.ts +2 -0
- package/lib/types/store/version.d.ts.map +1 -0
- package/lib/vertesia-client.js +2 -0
- package/lib/vertesia-client.js.map +1 -0
- package/package.json +71 -0
- package/src/AccountApi.ts +96 -0
- package/src/AccountsApi.ts +22 -0
- package/src/AnalyticsApi.ts +36 -0
- package/src/ApiKeysApi.ts +67 -0
- package/src/AppsApi.ts +134 -0
- package/src/CommandsApi.ts +23 -0
- package/src/EnvironmentsApi.ts +94 -0
- package/src/GroupsApi.ts +92 -0
- package/src/IamApi.ts +70 -0
- package/src/InteractionBase.ts +44 -0
- package/src/InteractionCatalogApi.ts +72 -0
- package/src/InteractionOutput.test.ts +305 -0
- package/src/InteractionOutput.ts +328 -0
- package/src/InteractionResult.example.ts +72 -0
- package/src/InteractionsApi.ts +308 -0
- package/src/MCPOAuthApi.ts +67 -0
- package/src/ProjectsApi.ts +85 -0
- package/src/PromptsApi.ts +160 -0
- package/src/RefsApi.ts +18 -0
- package/src/RunsApi.ts +151 -0
- package/src/SkillsApi.ts +46 -0
- package/src/StreamSource.ts +3 -0
- package/src/TrainingApi.ts +71 -0
- package/src/UsersApi.ts +18 -0
- package/src/client.test.ts +99 -0
- package/src/client.ts +419 -0
- package/src/execute.ts +126 -0
- package/src/index.ts +10 -0
- package/src/nodejs/NodeStreamSource.ts +43 -0
- package/src/nodejs/index.ts +1 -0
- package/src/store/AnalyzeDocApi.ts +61 -0
- package/src/store/CollectionsApi.ts +166 -0
- package/src/store/CommandsApi.ts +15 -0
- package/src/store/DashboardApi.ts +216 -0
- package/src/store/DataApi.ts +516 -0
- package/src/store/EmailApi.ts +211 -0
- package/src/store/EmbeddingsApi.ts +39 -0
- package/src/store/FilesApi.ts +288 -0
- package/src/store/ObjectsApi.ts +432 -0
- package/src/store/PendingAsksApi.ts +98 -0
- package/src/store/SchedulesApi.ts +114 -0
- package/src/store/ToolsApi.ts +19 -0
- package/src/store/TypesApi.ts +65 -0
- package/src/store/WorkersApi.ts +17 -0
- package/src/store/WorkflowsApi.ts +752 -0
- package/src/store/client.ts +95 -0
- package/src/store/errors.ts +7 -0
- package/src/store/index.ts +11 -0
- package/src/store/version.ts +2 -0
- package/tsconfig.dist.json +20 -0
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { AbstractFetchClient } from "@vertesia/api-fetch-client";
|
|
2
|
+
import { CollectionsApi } from "./CollectionsApi.js";
|
|
3
|
+
import { CommandsApi } from "./CommandsApi.js";
|
|
4
|
+
import { DataApi } from "./DataApi.js";
|
|
5
|
+
import { EmailApi } from "./EmailApi.js";
|
|
6
|
+
import { EmbeddingsApi } from "./EmbeddingsApi.js";
|
|
7
|
+
import { ZenoClientNotFoundError } from "./errors.js";
|
|
8
|
+
import { FilesApi } from "./FilesApi.js";
|
|
9
|
+
import { ObjectsApi } from "./ObjectsApi.js";
|
|
10
|
+
import { PendingAsksApi } from "./PendingAsksApi.js";
|
|
11
|
+
import { SchedulesApi } from "./SchedulesApi.js";
|
|
12
|
+
import { ToolsApi } from "./ToolsApi.js";
|
|
13
|
+
import { TypesApi } from "./TypesApi.js";
|
|
14
|
+
import { VERSION, VERSION_HEADER } from "./version.js";
|
|
15
|
+
import { WorkersApi } from "./WorkersApi.js";
|
|
16
|
+
import { WorkflowsApi } from "./WorkflowsApi.js";
|
|
17
|
+
function ensureDefined(serverUrl) {
|
|
18
|
+
if (!serverUrl) {
|
|
19
|
+
throw new Error("zeno client serverUrl is required");
|
|
20
|
+
}
|
|
21
|
+
return serverUrl;
|
|
22
|
+
}
|
|
23
|
+
export class ZenoClient extends AbstractFetchClient {
|
|
24
|
+
constructor(opts = {}) {
|
|
25
|
+
super(ensureDefined(opts.serverUrl));
|
|
26
|
+
if (opts.apikey) {
|
|
27
|
+
this.withApiKey(opts.apikey);
|
|
28
|
+
}
|
|
29
|
+
this.onRequest = opts.onRequest;
|
|
30
|
+
this.onResponse = opts.onResponse;
|
|
31
|
+
this.errorFactory = (err) => {
|
|
32
|
+
if (err.status === 404) {
|
|
33
|
+
return new ZenoClientNotFoundError(err.request, err);
|
|
34
|
+
}
|
|
35
|
+
else {
|
|
36
|
+
return err;
|
|
37
|
+
}
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
withApiVersion(version) {
|
|
41
|
+
if (!version) {
|
|
42
|
+
delete this.headers[VERSION_HEADER];
|
|
43
|
+
}
|
|
44
|
+
else {
|
|
45
|
+
this.headers[VERSION_HEADER] = String(version);
|
|
46
|
+
}
|
|
47
|
+
return this;
|
|
48
|
+
}
|
|
49
|
+
withApiKey(apiKey) {
|
|
50
|
+
return this.withAuthCallback(apiKey ? () => Promise.resolve(`Bearer ${apiKey}`) : undefined);
|
|
51
|
+
}
|
|
52
|
+
runOperation(payload) {
|
|
53
|
+
return this.post("/api/v1/operations", {
|
|
54
|
+
payload
|
|
55
|
+
});
|
|
56
|
+
}
|
|
57
|
+
get initialHeaders() {
|
|
58
|
+
return {
|
|
59
|
+
...super.initialHeaders,
|
|
60
|
+
[VERSION_HEADER]: VERSION
|
|
61
|
+
};
|
|
62
|
+
}
|
|
63
|
+
objects = new ObjectsApi(this);
|
|
64
|
+
types = new TypesApi(this);
|
|
65
|
+
workflows = new WorkflowsApi(this);
|
|
66
|
+
schedules = new SchedulesApi(this);
|
|
67
|
+
files = new FilesApi(this);
|
|
68
|
+
commands = new CommandsApi(this);
|
|
69
|
+
workers = new WorkersApi(this);
|
|
70
|
+
collections = new CollectionsApi(this);
|
|
71
|
+
embeddings = new EmbeddingsApi(this);
|
|
72
|
+
email = new EmailApi(this);
|
|
73
|
+
pendingAsks = new PendingAsksApi(this);
|
|
74
|
+
data = new DataApi(this);
|
|
75
|
+
tools = new ToolsApi(this);
|
|
76
|
+
}
|
|
77
|
+
//# sourceMappingURL=client.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"client.js","sourceRoot":"","sources":["../../../src/store/client.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAgB,MAAM,4BAA4B,CAAC;AAE/E,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAC/C,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AACvC,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACzC,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACnD,OAAO,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAC;AACtD,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACzC,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAC7C,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACjD,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACzC,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACzC,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AACvD,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAC7C,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAUjD,SAAS,aAAa,CAAC,SAA6B;IAChD,IAAI,CAAC,SAAS,EAAE,CAAC;QACb,MAAM,IAAI,KAAK,CAAC,mCAAmC,CAAC,CAAC;IACzD,CAAC;IACD,OAAO,SAAS,CAAC;AACrB,CAAC;AAED,MAAM,OAAO,UAAW,SAAQ,mBAA+B;IAE3D,YACI,OAAwB,EAAE;QAE1B,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC;QACrC,IAAI,IAAI,CAAC,MAAM,EAAE,CAAC;YACd,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QACjC,CAAC;QACD,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,SAAS,CAAC;QAChC,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC;QAClC,IAAI,CAAC,YAAY,GAAG,CAAC,GAAiB,EAAE,EAAE;YACtC,IAAI,GAAG,CAAC,MAAM,KAAK,GAAG,EAAE,CAAC;gBACrB,OAAO,IAAI,uBAAuB,CAAC,GAAG,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC;YACzD,CAAC;iBAAM,CAAC;gBACJ,OAAO,GAAG,CAAC;YACf,CAAC;QACL,CAAC,CAAA;IACL,CAAC;IAED,cAAc,CAAC,OAA+B;QAC1C,IAAI,CAAC,OAAO,EAAE,CAAC;YACX,OAAO,IAAI,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC;QACxC,CAAC;aAAM,CAAC;YACJ,IAAI,CAAC,OAAO,CAAC,cAAc,CAAC,GAAG,MAAM,CAAC,OAAO,CAAC,CAAC;QACnD,CAAC;QACD,OAAO,IAAI,CAAC;IAChB,CAAC;IAED,UAAU,CAAC,MAAqB;QAC5B,OAAO,IAAI,CAAC,gBAAgB,CACxB,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC,OAAO,CAAC,UAAU,MAAM,EAAE,CAAC,CAAC,CAAC,CAAC,SAAS,CACjE,CAAC;IACN,CAAC;IAED,YAAY,CAAC,OAA6B;QACtC,OAAO,IAAI,CAAC,IAAI,CAAC,oBAAoB,EAAE;YACnC,OAAO;SACV,CAAC,CAAC;IACP,CAAC;IAED,IAAI,cAAc;QACd,OAAO;YACH,GAAG,KAAK,CAAC,cAAc;YACvB,CAAC,cAAc,CAAC,EAAE,OAAO;SAC5B,CAAA;IACL,CAAC;IAED,OAAO,GAAG,IAAI,UAAU,CAAC,IAAI,CAAC,CAAC;IAC/B,KAAK,GAAG,IAAI,QAAQ,CAAC,IAAI,CAAC,CAAC;IAC3B,SAAS,GAAG,IAAI,YAAY,CAAC,IAAI,CAAC,CAAC;IACnC,SAAS,GAAG,IAAI,YAAY,CAAC,IAAI,CAAC,CAAC;IACnC,KAAK,GAAG,IAAI,QAAQ,CAAC,IAAI,CAAC,CAAC;IAC3B,QAAQ,GAAG,IAAI,WAAW,CAAC,IAAI,CAAC,CAAC;IACjC,OAAO,GAAG,IAAI,UAAU,CAAC,IAAI,CAAC,CAAC;IAC/B,WAAW,GAAG,IAAI,cAAc,CAAC,IAAI,CAAC,CAAC;IACvC,UAAU,GAAG,IAAI,aAAa,CAAC,IAAI,CAAC,CAAC;IACrC,KAAK,GAAG,IAAI,QAAQ,CAAC,IAAI,CAAC,CAAC;IAC3B,WAAW,GAAG,IAAI,cAAc,CAAC,IAAI,CAAC,CAAC;IACvC,IAAI,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzB,KAAK,GAAG,IAAI,QAAQ,CAAC,IAAI,CAAC,CAAC;CAC9B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"errors.js","sourceRoot":"","sources":["../../../src/store/errors.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAE1D,MAAM,OAAO,uBAAwB,SAAQ,YAAY;IACrD,YAAY,GAAY,EAAE,KAAmB;QACzC,KAAK,CAAC,sBAAsB,GAAG,KAAK,CAAC,OAAO,EAAE,GAAG,EAAE,GAAG,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC;IAC3E,CAAC;CACJ"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export * from "./client.js";
|
|
2
|
+
export * from "./CommandsApi.js";
|
|
3
|
+
export * from "./DataApi.js";
|
|
4
|
+
export * from "./EmailApi.js";
|
|
5
|
+
export * from "./FilesApi.js";
|
|
6
|
+
export * from "./ObjectsApi.js";
|
|
7
|
+
export * from "./PendingAsksApi.js";
|
|
8
|
+
export * from "./SchedulesApi.js";
|
|
9
|
+
export * from "./TypesApi.js";
|
|
10
|
+
export * from "./WorkflowsApi.js";
|
|
11
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/store/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,qBAAqB,CAAC;AACpC,cAAc,mBAAmB,CAAC;AAClC,cAAc,eAAe,CAAC;AAC9B,cAAc,mBAAmB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"version.js","sourceRoot":"","sources":["../../../src/store/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,OAAO,GAAG,UAAU,CAAA,CAAC,yFAAyF;AAC3H,MAAM,CAAC,MAAM,cAAc,GAAG,eAAe,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"fileNames":["../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../api-fetch-client/lib/types/errors.d.ts","../../api-fetch-client/lib/types/base.d.ts","../../api-fetch-client/lib/types/client.d.ts","../../api-fetch-client/lib/types/sse/textdecoderstream.d.ts","../../../node_modules/.pnpm/eventsource-parser@1.1.2/node_modules/eventsource-parser/dist/index.d.ts","../../api-fetch-client/lib/types/sse/index.d.ts","../../api-fetch-client/lib/types/index.d.ts","../../common/lib/types/integrations.d.ts","../../common/lib/types/group.d.ts","../../common/lib/types/apikey.d.ts","../../common/lib/types/user.d.ts","../../common/lib/types/project.d.ts","../../common/lib/types/access-control.d.ts","../../common/lib/types/analytics.d.ts","../../../llumiverse/common/lib/types/options/bedrock.d.ts","../../../llumiverse/common/lib/types/options/fallback.d.ts","../../../llumiverse/common/lib/types/options/groq.d.ts","../../../llumiverse/common/lib/types/options/openai.d.ts","../../../llumiverse/common/lib/types/options/vertexai.d.ts","../../../llumiverse/common/lib/types/types.d.ts","../../../llumiverse/common/lib/types/capability.d.ts","../../../llumiverse/common/lib/types/options.d.ts","../../../llumiverse/common/lib/types/index.d.ts","../../common/lib/types/apps.d.ts","../../common/lib/types/ask-user.d.ts","../../../node_modules/.pnpm/@types+json-schema@7.0.15/node_modules/@types/json-schema/index.d.ts","../../common/lib/types/environment.d.ts","../../common/lib/types/prompt.d.ts","../../common/lib/types/facets.d.ts","../../common/lib/types/runs.d.ts","../../common/lib/types/store/workflow.d.ts","../../common/lib/types/store/conversation-state.d.ts","../../common/lib/types/workflow-analytics.d.ts","../../common/lib/types/email.d.ts","../../common/lib/types/interaction.d.ts","../../common/lib/types/channels.d.ts","../../common/lib/types/common.d.ts","../../common/lib/types/store/common.d.ts","../../common/lib/types/data-platform.d.ts","../../common/lib/types/pending-asks.d.ts","../../common/lib/types/json-schema.d.ts","../../common/lib/types/json.d.ts","../../common/lib/types/meters.d.ts","../../common/lib/types/model_utility.d.ts","../../common/lib/types/store/store.d.ts","../../common/lib/types/store/collections.d.ts","../../common/lib/types/query.d.ts","../../common/lib/types/payload.d.ts","../../common/lib/types/progress.d.ts","../../common/lib/types/rate-limiter.d.ts","../../common/lib/types/refs.d.ts","../../common/lib/types/skill.d.ts","../../common/lib/types/store/activity-catalog.d.ts","../../common/lib/types/store/doc-analyzer.d.ts","../../common/lib/types/store/temporalio.d.ts","../../common/lib/types/store/dsl-workflow.d.ts","../../../node_modules/.pnpm/fast-uri@3.1.0/node_modules/fast-uri/types/index.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/compile/codegen/code.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/compile/codegen/scope.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/compile/codegen/index.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/compile/rules.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/compile/util.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/compile/validate/subschema.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/compile/errors.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/compile/validate/index.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/compile/validate/datatype.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/applicator/additionalitems.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/applicator/propertynames.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/applicator/additionalproperties.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/applicator/not.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/applicator/anyof.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/applicator/oneof.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/applicator/if.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/applicator/index.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/validation/limitnumber.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/validation/multipleof.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/validation/required.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/validation/uniqueitems.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/validation/const.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/validation/enum.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/validation/index.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/format/format.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedproperties.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/unevaluated/unevaluateditems.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/validation/dependentrequired.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/vocabularies/errors.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/types/json-schema.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/types/jtd-schema.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/runtime/validation_error.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/compile/ref_error.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/core.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/compile/resolve.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/compile/index.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/types/index.d.ts","../../../node_modules/.pnpm/ajv@8.17.1/node_modules/ajv/dist/ajv.d.ts","../../common/lib/types/store/object-types.d.ts","../../common/lib/types/store/schedule.d.ts","../../common/lib/types/store/signals.d.ts","../../common/lib/types/store/worker.d.ts","../../common/lib/types/store/index.d.ts","../../common/lib/types/sts-token-types.d.ts","../../common/lib/types/tenant.d.ts","../../common/lib/types/tool-execution.d.ts","../../common/lib/types/training.d.ts","../../common/lib/types/transient-tokens.d.ts","../../common/lib/types/utils/auth.d.ts","../../common/lib/types/utils/schemas.d.ts","../../common/lib/types/utils/type-helpers.d.ts","../../common/lib/types/versions.d.ts","../../common/lib/types/index.d.ts","../src/accountapi.ts","../src/accountsapi.ts","../src/analyticsapi.ts","../src/apikeysapi.ts","../src/appsapi.ts","../src/commandsapi.ts","../src/environmentsapi.ts","../src/groupsapi.ts","../src/iamapi.ts","../../../node_modules/.pnpm/eventsource@3.0.7/node_modules/eventsource/dist/index.d.ts","../src/execute.ts","../src/interactioncatalogapi.ts","../src/interactionoutput.ts","../src/interactionsapi.ts","../src/mcpoauthapi.ts","../src/projectsapi.ts","../src/skillsapi.ts","../src/promptsapi.ts","../src/refsapi.ts","../src/runsapi.ts","../src/streamsource.ts","../src/store/analyzedocapi.ts","../src/store/objectsapi.ts","../src/store/collectionsapi.ts","../src/store/embeddingsapi.ts","../src/store/commandsapi.ts","../src/store/dashboardapi.ts","../src/store/dataapi.ts","../src/store/emailapi.ts","../src/store/errors.ts","../src/store/filesapi.ts","../src/store/pendingasksapi.ts","../src/store/schedulesapi.ts","../src/store/toolsapi.ts","../src/store/typesapi.ts","../src/store/version.ts","../src/store/workersapi.ts","../src/store/workflowsapi.ts","../src/store/client.ts","../src/trainingapi.ts","../src/usersapi.ts","../src/client.ts","../src/interactionbase.ts","../src/interactionresult.example.ts","../src/store/index.ts","../src/index.ts","../src/nodejs/nodestreamsource.ts","../src/nodejs/index.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@22.19.3/node_modules/@types/node/index.d.ts"],"fileIdsList":[[78,228,276,293,294],[73,74,75,76,77,78,79,80,228,276,293,294],[73,74,75,76,77,228,276,293,294],[228,276,293,294],[228,273,274,276,293,294],[228,275,276,293,294],[276,293,294],[228,276,281,293,294,311],[228,276,277,282,287,293,294,296,308,319],[228,276,277,278,287,293,294,296],[223,224,225,228,276,293,294],[228,276,279,293,294,320],[228,276,280,281,288,293,294,297],[228,276,281,293,294,308,316],[228,276,282,284,287,293,294,296],[228,275,276,283,293,294],[228,276,284,285,293,294],[228,276,286,287,293,294],[228,275,276,287,293,294],[228,276,287,288,289,293,294,308,319],[228,276,287,288,289,293,294,303,308,311],[228,269,276,284,287,290,293,294,296,308,319],[228,276,287,288,290,291,293,294,296,308,316,319],[228,276,290,292,293,294,308,316,319],[226,227,228,229,230,231,232,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325],[228,276,287,293,294],[228,276,293,294,295,319],[228,276,284,287,293,294,296,308],[228,276,293,294,297],[228,276,293,294,298],[228,275,276,293,294,299],[228,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325],[228,276,293,294,301],[228,276,293,294,302],[228,276,287,293,294,303,304],[228,276,293,294,303,305,320,322],[228,276,288,293,294],[228,276,287,293,294,308,309,311],[228,276,293,294,310,311],[228,276,293,294,308,309],[228,276,293,294,311],[228,276,293,294,312],[228,273,276,293,294,308,313],[228,276,287,293,294,314,315],[228,276,293,294,314,315],[228,276,281,293,294,296,308,316],[228,276,293,294,317],[228,276,293,294,296,318],[228,276,290,293,294,302,319],[228,276,281,293,294,320],[228,276,293,294,308,321],[228,276,293,294,295,322],[228,276,293,294,323],[228,269,276,293,294],[228,269,276,287,289,293,294,299,308,311,319,321,322,324],[228,276,293,294,308,325],[118,119,123,150,151,153,154,155,157,158,228,276,293,294],[116,117,228,276,293,294],[116,228,276,293,294],[118,158,228,276,293,294],[118,119,155,156,158,228,276,293,294],[158,228,276,293,294],[115,158,159,228,276,293,294],[118,119,157,158,228,276,293,294],[118,119,121,122,157,158,228,276,293,294],[118,119,120,157,158,228,276,293,294],[118,119,123,150,151,152,153,154,157,158,228,276,293,294],[115,118,119,123,155,157,228,276,293,294],[123,158,228,276,293,294],[125,126,127,128,129,130,131,132,133,134,158,228,276,293,294],[148,158,228,276,293,294],[124,135,143,144,145,146,147,149,228,276,293,294],[128,158,228,276,293,294],[136,137,138,139,140,141,142,158,228,276,293,294],[228,241,245,276,293,294,319],[228,241,276,293,294,308,319],[228,236,276,293,294],[228,238,241,276,293,294,316,319],[228,276,293,294,296,316],[228,276,293,294,326],[228,236,276,293,294,326],[228,238,241,276,293,294,296,319],[228,233,234,237,240,276,287,293,294,308,319],[228,241,248,276,293,294],[228,233,239,276,293,294],[228,241,262,263,276,293,294],[228,237,241,276,293,294,311,319,326],[228,262,276,293,294,326],[228,235,236,276,293,294,326],[228,241,276,293,294],[228,235,236,237,238,239,240,241,242,243,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,263,264,265,266,267,268,276,293,294],[228,241,256,276,293,294],[228,241,248,249,276,293,294],[228,239,241,249,250,276,293,294],[228,240,276,293,294],[228,233,236,241,276,293,294],[228,241,245,249,250,276,293,294],[228,245,276,293,294],[228,239,241,244,276,293,294,319],[228,233,238,241,248,276,293,294],[228,276,293,294,308],[228,236,241,262,276,293,294,324,326],[59,228,276,293,294],[59,60,228,276,293,294],[59,60,61,64,228,276,293,294],[62,63,228,276,293,294],[65,174,228,276,293,294],[65,174,175,176,177,178,179,180,181,183,188,189,190,191,192,193,194,210,213,214,215,228,276,293,294],[65,81,174,228,276,293,294],[174,184,216,228,276,293,294],[65,174,182,228,276,293,294],[179,182,187,188,192,194,195,216,217,219,228,276,293,294],[174,185,216,228,276,293,294],[81,174,228,276,293,294],[81,187,228,276,293,294],[65,174,185,186,187,216,228,276,293,294],[221,228,276,293,294],[195,228,276,293,294,308,311],[65,81,174,187,216,228,276,293,294],[65,174,197,198,199,200,202,203,204,205,206,207,208,209,210,211,212,228,276,293,294],[65,174,197,228,276,293,294],[65,199,228,276,293,294],[65,174,201,228,276,293,294],[65,228,276,293,294],[65,174,195,228,276,293,294],[197,200,202,203,205,206,207,209,212,213,228,276,293,294],[65,174,195,196,213,228,276,293,294],[65,174,185,216,228,276,293,294],[70,228,276,293,294],[67,69,70,228,276,293,294],[81,228,276,293,294],[93,228,276,293,294],[96,228,276,293,294],[69,228,276,293,294],[66,67,68,69,70,71,72,82,83,85,86,87,88,91,93,94,95,97,98,99,100,101,102,105,106,107,108,109,110,164,165,166,167,168,169,170,171,172,173,228,276,293,294],[69,70,81,84,85,86,88,90,91,92,228,276,293,294],[87,105,228,276,293,294],[92,228,276,293,294],[66,69,228,276,293,294],[70,81,84,228,276,293,294],[70,93,104,228,276,293,294],[87,93,228,276,293,294],[96,103,228,276,293,294],[81,88,89,93,228,276,293,294],[89,228,276,293,294],[96,113,164,228,276,293,294],[89,90,96,103,104,111,112,113,114,160,161,162,163,228,276,293,294],[159,228,276,293,294],[70,96,105,106,228,276,293,294],[84,93,228,276,293,294],[81,85,228,276,293,294],[69,70,228,276,293,294],[68,70,228,276,293,294],[81,84,86,93,228,276,293,294]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},"06cbf01c04ea45a0b349dbb546c0250e4b5b2ccf166e1fd4a8849d62e0a34bfb","dc80bd9c482dad4810fd16261dd3d4c9503f98cf6ba4308924af8628bb7075b4","6689c08d8dbe1b3b17e4b0b15194c6e65ffdd3b68037f3d0ba540744de814aca","62206b41a3c149fd3e91ecbcbb96e5407e4009cfacf007bbb461e355d90348e8",{"version":"5900e3a151f31f3e1b2acef8acfb7f95600cbd3532b10dab5e633d0a40a3ae66","impliedFormat":99},"b6ae88a77ff7385482dada6c71f408b170a2c5ba80a330d9addc4ac35ce88195","fc8fc261cad7e7bdee28772430058e777f6adbde45efa1b8f61a661526d63b32","603a795ba72e1049bd32e94ec4462c09f1b9b12d178896846cd52ca853496790","a329c116bede4edfd98a9bb2b23985aba01e755d15a9ff25423ba568f07495df","37465afa265a7a9cb543dbed1e87e5f3c1ac8fe627f0f29b2cb5251e7ac0e67f","d168daaddce1e34af9697697e35ab64d7c75d6197275e92c500a01dea0a3e2cf","7c6d5809f78637e733fd1b4139d2b614feec7709232ae9974c597ca9582fdf81","9a2eb0e9fb2e57bbee3438fc9ef5064c07b8ba51f80013a0080038cab801c308","22904a7b487fa83cc87283c1507c6e7f91db0966cf40a47386a55d4139baebbc","6e63bc965c00547bfe96bc5f0b8574c652e73b13f5fd98e3cfa234d1e7e3b111","2a3bd3a7dba4df3018ad67266a079c922c0ecb49817a85e4a296c1ac5de61a6f","bd954ca8d1a24f94bec18b531c58e88a386df17e48e32b31f324f1b226cc191d","89fe9b45bfbbf2ef5c82a86d3bc32116baa7802d1dd475372fa4fbdb18e5b0e6","f8417bf3b76fa1fad964d2c6d66692193a260d6c26ee198668319a6331fbeb65","ef56a076de032bb5acf3ad80478608efe21c1f5f4f63cf8fbc618ecb3647588f","79dbf633af4863dda2c3f3ccda7bf8872dfb671cf957a23ca68275a741ecd54a","a3bb17879757c9805aa078b887a314ca421b5f84e98c325f2c700495d320dcab","7b9e528e76fd8522c696da7eaafc84ea8e9fae0e97a004df05d80b0d53748171","eb954e1188e342d30d210565d21cce8a4e3e308f574e08f85e2e42877e1fa243","1b1f5e4942ba440fd8dfbc8bd0c21788d82ee8b44315217f6b82a765f68e0719",{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},"5355c9e12a136f688ea79973c984d25bc8b7b37fa315ccc4482929ba472bb7c8","9f43984279fdfa7ec5e026d19c79b07ba9ad04e357100932407b447514a8bcd4","a8e024280a8c67960686d288049c11425b7ff38601408d818e37225f2d5282e1","3088884da7de3f3e50f5575845ec74a939823f6fd97778307246b70fe0f7892e","180d9dd165aa341076013a334140eeaba1697deb331a7a39403f3561eb037cb1","9e990f851d4222218cd787e8d314ba80e6a28cde1ad3d6b308c9c6985ca652b7","ffadd35ad0b0ec06533d26eec5d6a87542499063ab666a299203e35482521478","d6952073758af0746b758286c80f29b1b1e629f0ba5e1be591fe110132732ec8","be42f0500abec5d3dcc1171f56f01274b420d336ad854e85eb54957d81497cf5","a502654bc0ff032ee86bad06980c778a46325c7ef9cb97add1a29d01317a090b","c075cfa4c24ca03e641abc8101edb2b21daa4f8b53920b947a5adffde11b5a72","3f30210ee4e376e7be1057fef0ef5969f13e52f51d3b705ff3dddc9243c7d8be","5bc004c71305ccc8183a9571380d9b41a904cf109d6dd9faf9c4d57be28e111a","edc9a0b10631cac36a10b742a0faa40e220d32f4c02029d4c3d2d3aa1156861f","66058143825c33f108619db6e4f30f8930b8a708bf7af37721db67738e2622e2","e6184271f0ce47913970d3e9d5fbbcd7487a9625a9fa8b3dff601bd5443f1968","356e10bc7f631b8164ca83a1d7aa7e862db987ee408095e7b3954dce1946e94c","1255ac24040e9ecae55ce458ff94942ac3ecca33163e514c8d28f0231e447c73","b89429768b7abecd6310dd47439b046fec2e63c72f2548cbda7038063e49578e","e08726b0813221d3889772979c2c89333b3186e30b6ce69786024591916ec2c6","8250cd8a70ba8d1af2998e323373219be9435df3e3f8355bf958453144f31605","6ff52f9d6770cf313580ac40bb121b1a5291618222d1e43c6c38fed275de3446","e291a65971202f95d2b9d3bddecd4a20c2e387e99ad72e6a6224f73b6554fd81","972e0544a75e590d469a79ff263b5ade905f33ad135d1a8c04ba6f8a6572361d","6b9191ba8a01ec4bb4de78bdc1048afbc7c6ed9c9e666b992a5d101bf50b7df3","d1310659b9c3ce223158b625f4a2c7a7d22970ecbe66f778ba4543abdadc82a5","2d4e1c92c579d44bb7cb1ae28d3661226da7b6ee6c3ba0c03b49c03d54e029cf","70c6dff0aeb5048622a351e05a851fe6d49bb160b0627d788d569a47bfbf26d4","6918e8c3abaa5a9630cd69ca10fabd61176d119040e17f90b2c6632d1f1d8654","78c22db4aa5e3223893b92a2985b30bb3c3f0e69e3e4ea359a2f48f6cd106d5a",{"version":"84bcc7c6b06f4d643a55dc63b56be0c81d990f8d549b66ea615c553268774dc3","impliedFormat":1},{"version":"2d225e7bda2871c066a7079c88174340950fb604f624f2586d3ea27bb9e5f4ff","impliedFormat":1},{"version":"6a785f84e63234035e511817dd48ada756d984dd8f9344e56eb8b2bdcd8fd001","impliedFormat":1},{"version":"c1422d016f7df2ccd3594c06f2923199acd09898f2c42f50ea8159f1f856f618","impliedFormat":1},{"version":"2973b1b7857ca144251375b97f98474e9847a890331e27132d5a8b3aea9350a8","impliedFormat":1},{"version":"0eb6152d37c84d6119295493dfcc20c331c6fda1304a513d159cdaa599dcb78b","impliedFormat":1},{"version":"237df26f8c326ca00cd9d2deb40214a079749062156386b6d75bdcecc6988a6b","impliedFormat":1},{"version":"cd44995ee13d5d23df17a10213fed7b483fabfd5ea08f267ab52c07ce0b6b4da","impliedFormat":1},{"version":"58ce1486f851942bd2d3056b399079bc9cb978ec933fe9833ea417e33eab676e","impliedFormat":1},{"version":"7557d4d7f19f94341f4413575a3453ba7f6039c9591015bcf4282a8e75414043","impliedFormat":1},{"version":"a3b2cc16f3ce2d882eca44e1066f57a24751545f2a5e4a153d4de31b4cac9bb5","impliedFormat":1},{"version":"ac2b3b377d3068bfb6e1cb8889c99098f2c875955e2325315991882a74d92cc8","impliedFormat":1},{"version":"8deb39d89095469957f73bd194d11f01d9894b8c1f1e27fbf3f6e8122576b336","impliedFormat":1},{"version":"a38a9c41f433b608a0d37e645a31eecf7233ef3d3fffeb626988d3219f80e32f","impliedFormat":1},{"version":"8e1428dcba6a984489863935049893631170a37f9584c0479f06e1a5b1f04332","impliedFormat":1},{"version":"1fce9ecb87a2d3898941c60df617e52e50fb0c03c9b7b2ba8381972448327285","impliedFormat":1},{"version":"5ef0597b8238443908b2c4bf69149ed3894ac0ddd0515ac583d38c7595b151f1","impliedFormat":1},{"version":"ac52b775a80badff5f4ac329c5725a26bd5aaadd57afa7ad9e98b4844767312a","impliedFormat":1},{"version":"6ae5b4a63010c82bf2522b4ecfc29ffe6a8b0c5eea6b2b35120077e9ac54d7a1","impliedFormat":1},{"version":"dd7109c49f416f218915921d44f0f28975df78e04e437c62e1e1eb3be5e18a35","impliedFormat":1},{"version":"eee181112e420b345fc78422a6cc32385ede3d27e2eaf8b8c4ad8b2c29e3e52e","impliedFormat":1},{"version":"25fbe57c8ee3079e2201fe580578fab4f3a78881c98865b7c96233af00bf9624","impliedFormat":1},{"version":"62cc8477858487b4c4de7d7ae5e745a8ce0015c1592f398b63ee05d6e64ca295","impliedFormat":1},{"version":"cc2a9ec3cb10e4c0b8738b02c31798fad312d21ef20b6a2f5be1d077e9f5409d","impliedFormat":1},{"version":"4b4fadcda7d34034737598c07e2dca5d7e1e633cb3ba8dd4d2e6a7782b30b296","impliedFormat":1},{"version":"360fdc8829a51c5428636f1f83e7db36fef6c5a15ed4411b582d00a1c2bd6e97","impliedFormat":1},{"version":"1cf0d15e6ab1ecabbf329b906ae8543e6b8955133b7f6655f04d433e3a0597ab","impliedFormat":1},{"version":"7c9f98fe812643141502b30fb2b5ec56d16aaf94f98580276ae37b7924dd44a4","impliedFormat":1},{"version":"b3547893f24f59d0a644c52f55901b15a3fa1a115bc5ea9a582911469b9348b7","impliedFormat":1},{"version":"596e5b88b6ca8399076afcc22af6e6e0c4700c7cd1f420a78d637c3fb44a885e","impliedFormat":1},{"version":"adddf736e08132c7059ee572b128fdacb1c2650ace80d0f582e93d097ed4fbaf","impliedFormat":1},{"version":"d4cad9dc13e9c5348637170ddd5d95f7ed5fdfc856ddca40234fa55518bc99a6","impliedFormat":1},{"version":"d70675ba7ba7d02e52b7070a369957a70827e4b2bca2c1680c38a832e87b61fd","impliedFormat":1},{"version":"3be71f4ce8988a01e2f5368bdd58e1d60236baf511e4510ee9291c7b3729a27e","impliedFormat":1},{"version":"423d2ccc38e369a7527988d682fafc40267bcd6688a7473e59c5eea20a29b64f","impliedFormat":1},{"version":"2f9fde0868ed030277c678b435f63fcf03d27c04301299580a4017963cc04ce6","impliedFormat":1},{"version":"feeb73d48cc41c6dd23d17473521b0af877751504c30c18dc84267c8eeea429a","impliedFormat":1},{"version":"25f1159094dc0bf3a71313a74e0885426af21c5d6564a254004f2cadf9c5b052","impliedFormat":1},{"version":"cde493e09daad4bb29922fe633f760be9f0e8e2f39cdca999cce3b8690b5e13a","impliedFormat":1},{"version":"3d7f9eb12aface876f7b535cc89dcd416daf77f0b3573333f16ec0a70bcf902a","impliedFormat":1},{"version":"b83139ae818dd20f365118f9999335ca4cd84ae518348619adc5728e7e0372d5","impliedFormat":1},{"version":"e0205f04611bea8b5b82168065b8ef1476a8e96236201494eb8c785331c43118","impliedFormat":1},{"version":"62d26d8ba4fa15ab425c1b57a050ed76c5b0ecbffaa53f182110aa3a02405a07","impliedFormat":1},{"version":"9941cbf7ca695e95d588f5f1692ab040b078d44a95d231fa9a8f828186b7b77d","impliedFormat":1},{"version":"41b8775befd7ded7245a627e9f4de6110236688ce4c124d2d40c37bc1a3bfe05","impliedFormat":1},"0c115dda0f96dc46056107d6e8154025d93789950d55619bf771a4d8a47bc21b","36428e803eadc6aad592669fcd461461087862587b02778ecffa8f4b6e1491a4","acd2836bd4003a9584f09940f59646c0610e19e1849ae4c4013c641b09da5d7a","d3a96089389e16a1da6b2f240adb8fdda2ee2127f141bb3130f3ee8c533efcee","14b2fe4b8d0a20316dc7389a7abd8f58f2e828c3a3fedad0124de3637f5e736f","309e91c7586b93667dfea2defdd1e96f38ae9fea7389d1d8c20cb14d6e891060","57d9f258d8186c14280fa3c0f5777705b8f7969901b96d20dded568668a66b41","00db4eaba7a228b05734de6965d09bb8b9699b972676132ad74ceef342c98d36","851aae8e9a7c849b7537521cc2bb37fb687c048ac184ffbefe08f05b9d1502a1","063e44275f0537e970183fb125327b4ae53ca73585a96779ae46df2312a24b16","fcb64842c13a76cd853c94e8dfa20984d53c97266a628ee8fc000596dc901d22","07d8e1d908538e16568d32a375cd8f19a85a448c29378eb8aceabf7ec1902c14","a98e4b3d197100aa8fae00e30492e04e3e6b2c3fd1d5b7b0525a95f02d8cdee2","31b859f4b8a430af895dfa62149868eeded4bf1ee7fcfa1b526dcbd9c31f3b48","cdfd385a6a41a57da252eccd142a9aa9a8fce7dddb2a20f4591d6cbed9ffbdad",{"version":"c1d504810dca134aabc3879bb9c6c888ca42754c03c0652665eb76ade598399c","signature":"e33f8d60017d6501ec868946bc3d9668675080ad6d35c0b1fd7841ca7224ada1"},{"version":"e765505e55caa44df0792ce066ebda2ea0ab770c210b2a320f2878a9e11c3360","signature":"bbb56f5a0bdfefee2e4c02e58fe46c2f3cc01dbc54971d8fe5e6c9a002500330"},{"version":"c680833978db3924fe7bbebd066c78ae002db674aada43ead138bbef2f646fe7","signature":"2cf6fc7ea8d7422c8108ba09984362c6bce3130469d2e75fac5a2b419ec99243"},{"version":"5a0afad407b27d224a539ddedeb6c08a24fe602bfb558a8cd49ea4c5c14dbef4","signature":"7226f7f973c437967840508ee3d9feebfebaafa2c05de2640844a44365b70fab"},{"version":"436bf4f96916ea6e9101793416c9648e5a2fb9010b22fef49ba1e5c51658ee42","signature":"0d647014e96ce8ab9f1c11e42dd75bf4ea884b289faba846694ede83cb7f239c"},{"version":"418184e436b0bd18fdd0faad852174b0bd1815db06f27701fec90cb8ae1b6584","signature":"b27373f00d00d7ceb9ca8478c104a06139a3388ee62ca7faba3d527ebfc0ad53"},{"version":"3ec88b0f59237307c76d08e1ff21cbb5ca9dd341f7a9821427b21153c28a4668","signature":"ab2afd65e6922ae68d1756c2bbb99567a776a46ac65ea7d859a5269bb3186e1a"},{"version":"fce9f6d5818b8018b5fcd8dd0ed3213ca4f57b172c1e100197a88304431cf891","signature":"af1bd4ee49a91d21d1ddbd2f713278e10ff5489ebb25afb59f1bcbb9bb11c6d1"},{"version":"061a6ecdc9131ac04cf831c3fc6d5284e1c75637f7f34c17ed136e7c1b683a6c","signature":"76ed5ee58ec4e3c2fad991a5961232c2bd5152d61ad2d174509d44ec47796e6d"},{"version":"7ae48a41eb14b67618693cd9a9565c932c5685be8ce991372190894ea2ebcd48","impliedFormat":99},{"version":"b60ac2628c99d1080d66d21599e914a68124990e8f43a1f0c2dba53f6eb7ae0d","signature":"d23c26c45644a22c834bae4587c2e881c3078567fe26565b22b641251da8bfc8"},{"version":"58bd8ea37acdb90739c4d7768899334eaa24d3a69c059c5fcf515c442878f806","signature":"0d8857c1b506afd5c955fefc21b06c6708e8bc388db4ffc33bd6b4f8d27d895e"},{"version":"efc5dc0881f0054df75d8d22d4b025ddbb5dab667c7fcd7049e0d978129aeab8","signature":"ab10c4304af2352a128b4fbd0905afb177bdb0164312c204243da837d31b8760"},{"version":"a429d8b98a0cca1dde1e2d5f2906bcbb0e2e9bae7ad5e7bf590a3cb7553446e8","signature":"d00818c35873aff5e8615bbb6e4c651841e2c3c59d5c39180f331810ffda0881"},{"version":"4050d321555f187ef08b6487f430e6d971268e1b3886eb538de491e31fd4fad0","signature":"4da6bd8d9598d8ace7138bcbd0f0b4a91ebcd422e49750c89ad505d99240f36a"},{"version":"89a3174cb24c6faf02aca1b4af2533f1703112f2f4b6358cfd32e8f778222cb2","signature":"9804ce76faea846c1c55c73f203ab1e4cc99f0cba4f01e16733fb55c83d243db"},{"version":"079021684d8785fd5a67d92a9f4cbd22b7d85da4cbeceaf9f85720d330265f76","signature":"ba73b1e66a3573ff173e17e3c9b4ec89678a5de0af3934d38a0a3794cf4bf8cb"},{"version":"9374c3d8e6dde3720cbe5b1c513495e868502d3ef16530adef40f76bf6eefbbe","signature":"ce78cc7d95eaee1ac2bade17f08d01c28834926d4298018b8d7bef1b8e086c3d"},{"version":"8e175c5bd9f2c23ec2070fad61c183d8f6115f2f78d8860cffd17ce84fb4a5b4","signature":"cb931eb2e4ac186a1f4817eb878cb16b240bbf5d1613ecedade3c4446712c14b"},{"version":"315c21c974fc7124a56bfda765839ddf2f29035ccf4535cc5b2e6b833454a3a4","signature":"ec7cabead058c7b3626c0876e6a4bb2fe2a078c63bb61cc4e11a3fa8124ccc70"},{"version":"4eeba12e151a4edbfdc5d66216bfea593df1eb5ebf10e1c8a2b953b2100816ae","signature":"1041e4f82d99310b16b7dbb3e6d3dbe56749947fb0cbdf2036b79f38b94cc2ff"},{"version":"25b74b4379c5d0c00ca21eb4701b73f1899053ad5d50a6a64d2772f19db0940f","signature":"3e6b60fc4a06ba615a5567a4d6a6ddaf942a1ec77f2e29e9bd39a70b44674091"},{"version":"0e485d09835c209f6acac284b396e4f3ce78714cec8f1277bc8b2cd390e5ea3e","signature":"07e668dfb1542375122baafe11881f17a6728dae706a0c0cc1d363fbbad2e66f"},{"version":"4dcce0955e1b9cca7ee38de5c919a976142f24176b6eeda4511a2f8a171c5d56","signature":"bfb051bc344b3730a5f684c031bb0a4fa1d10dac38dab9c706122c93e5be5b1e"},{"version":"dafa87ef80bd17bf04bc5c3cd68006f3e5a52f99aadde3b556f56b3f80a98e28","signature":"d176582343175cf2ee7315620f17af542613d248d3017d2fe18840be5829a3d1"},{"version":"9ead333ccf36a3c17ac12f9eca0e14ab85458eb8a2b4f2381c180afe576acb91","signature":"fbdb0236b89e6064431d5d5402c9f375adf7bfa16763afb91a436ee90fe8bfb8"},{"version":"5a3d2ac4893911b9685d858729b8596444298a277e657fde6d7975a6360c2343","signature":"191b0b6f39df5c3261a5292f8e6951a5a568d04496bc01561c51cc24e1b51e14"},{"version":"19036bb7aed8258016847f0d346d1ad5f1713f477b84491d132d0ec6404c8b32","signature":"ca71bab95e1d2f5d073669ade689dffdbd9777d76d4df2ecd9f27322a216490d"},{"version":"a3baf105372b9776d7af4b9805787dc3e8eaefa2ca59d98f5f0e4cc85815be9f","signature":"0b381b555dbb67b34709d8142847f33f7a7beb7300f4edab182c4e1e09858b9f"},{"version":"b54830122de395f9a36aa972ba0c514ab052ebd20e0a34d9880f21e7ac6af1cf","signature":"7c366915fe4e812a9e734cefed4a379ad94ae5468ac1e3663a6ae3395fbd59dd"},{"version":"30de57136ca0a8f1813e4099af53ac12a00f867f8cfd99941c6360b47c3786b6","signature":"0efd361b5b1dce0a8568ca309099428874cf08fe1e6e9be37eaff6b048e2216a"},{"version":"caa5294e30e242584e485ffcc79ac6944194289851ebe4e9186f06e5a643dd15","signature":"f0c31bd7ae48f62f0ae881da10179c274100c21598c7fb19657ff8ee3f514f4f"},{"version":"f2d7dd13a8ed12a7e8281be3c7313b5bdd81166e96ac21431722a687c4b1f580","signature":"a13edce79377ba9678585e506bb9e0e7bc9bb960d46ed815b7b4e716364ea0c9"},{"version":"25fac5fdc00490e3e1f5e004c6874f85abd0d6755ed41b4dc450439dd921fd4c","signature":"3c7a829bb9ed735f7ba82b05cf6230fe125960b54f21588d1e8a4dcbcd521ca0"},{"version":"6e67e7dd809cdfc6e0da668208c9999bb50dd719a7618ffacf670c75273156e5","signature":"17c02119c98ad6c61d76850a954baf1c5dac87fc62df451511cab9a3acbe609c"},{"version":"722b27af3b38379fa6d1c4649673b47a91bc5cb60c063c96fd0ffd8f9eefa448","signature":"bed13c845f83938233148366cb1fc8bc35f00a1b6878423ff4ddb49a743d7387"},{"version":"286e9a2e8f1297649ff23cc7e1857badc1488f94746b00a0ee294d2df729138e","signature":"3652bbda6f73714f376b274e0948cd14ffb33f0f78f70056f9d8a749b9dd1418"},{"version":"3e5392bbcaf5bb6c5ed97dabe764f58a7c7fd47dfe71b80e99ea454ebee3411e","signature":"bfe70256ad2d81063ca34d9147b8d06810f3a5f4410e07f82a4c94a9f8f99f94"},{"version":"d3e8107bbf50ed2e2729ebdfc0f1e8690d1903bd061bc1d5867b0cc37b3515cc","signature":"9cd37f79cab04b59535bdc2c2eedcb607605aad7a070371b6e6b21c8488b2663"},{"version":"fbeee487771a6fc04a9a7baf65646903d4a742bc67a3e217caeb119ebb9195c6","signature":"638ff47e5d927a631fe6d3f2ee386dc7854d2a571f57f98e1ca5df104c73d3f6"},{"version":"44a5b5070d59d03c2960bdcf4607a5f412607e6b0fd466fea1848f0a41912178","signature":"5c0770f5832d630af7ea40f4d1928e1b6da98984f435680e1d0aeeb470902e0c"},{"version":"304fe182019d820c06dd4f681b6df022c8236266a5979bea025439b00994de71","signature":"f0da0807cf182bb90ee60bcd76899cc40982b5a2989eb32a2afc9fdae6195783"},{"version":"29162114daddc2854fee22caa729878528a24527b1c711b81cdb2bf30879d8a4","signature":"f9752e6742b244a0a0dbad0ea77b9681d18b78e1c27918837cee6b8e979666ee"},{"version":"98d1c065177203eb62433890f82e03c38babd4f94b0fcf69e0072da7c37d2eb6","signature":"bedbb4f2e2e918be971fd1c63b9507a86671e65683cc023c03f8d48e030519a8"},{"version":"552dfef390d3ee35e9aed138ae10cd5afcd76963bb6d1b48b1c74c45cf98ad6f","signature":"e7a2ac4fb5e7a5ce1073b6909c65c0e00f50acd013e260294732826f920306e1"},"0b5dbfc20efe1a91c03bc53f41f8ab3384531de5e217012a180a66ffe1ed8496",{"version":"772578fb736cfa8c931fa58c699cb8d07fde9e819ca82da6462ea8d9c1ea000e","signature":"13e56ea1b492c8dac063e31727707c7a126c424b9956ca83b6b2569ed5505282"},"5430c3e1e2de5623d0c5fa3d2463f9cfe9396e80ee1e98fef18e0e056f3c63cc",{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"808069bba06b6768b62fd22429b53362e7af342da4a236ed2d2e1c89fcca3b4a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"2cbe0621042e2a68c7cbce5dfed3906a1862a16a7d496010636cdbdb91341c0f","affectsGlobalScope":true,"impliedFormat":1},{"version":"f9501cc13ce624c72b61f12b3963e84fad210fbdf0ffbc4590e08460a3f04eba","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0fa06ada475b910e2106c98c68b10483dc8811d0c14a8a8dd36efb2672485b29","impliedFormat":1},{"version":"33e5e9aba62c3193d10d1d33ae1fa75c46a1171cf76fef750777377d53b0303f","impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","impliedFormat":1},{"version":"6a0cd27e5dc2cfbe039e731cf879d12b0e2dded06d1b1dedad07f7712de0d7f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f5c844119c43e51ce777c509267f14d6aaf31eafb2c2b002ca35584cd13b29","impliedFormat":1},{"version":"e60477649d6ad21542bd2dc7e3d9ff6853d0797ba9f689ba2f6653818999c264","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4c829ab315f57c5442c6667b53769975acbf92003a66aef19bce151987675bd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"b2ade7657e2db96d18315694789eff2ddd3d8aea7215b181f8a0b303277cc579","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"4d631b81fa2f07a0e63a9a143d6a82c25c5f051298651a9b69176ba28930756d","impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"41670ee38943d9cbb4924e436f56fc19ee94232bc96108562de1a734af20dc2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c906fb15bd2aabc9ed1e3f44eb6a8661199d6c320b3aa196b826121552cb3695","impliedFormat":1},{"version":"22295e8103f1d6d8ea4b5d6211e43421fe4564e34d0dd8e09e520e452d89e659","impliedFormat":1},{"version":"bb45cd435da536500f1d9692a9b49d0c570b763ccbf00473248b777f5c1f353b","impliedFormat":1},{"version":"6b4e081d55ac24fc8a4631d5dd77fe249fa25900abd7d046abb87d90e3b45645","impliedFormat":1},{"version":"a10f0e1854f3316d7ee437b79649e5a6ae3ae14ffe6322b02d4987071a95362e","impliedFormat":1},{"version":"e208f73ef6a980104304b0d2ca5f6bf1b85de6009d2c7e404028b875020fa8f2","impliedFormat":1},{"version":"d163b6bc2372b4f07260747cbc6c0a6405ab3fbcea3852305e98ac43ca59f5bc","impliedFormat":1},{"version":"e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"83e63d6ccf8ec004a3bb6d58b9bb0104f60e002754b1e968024b320730cc5311","impliedFormat":1},{"version":"24826ed94a78d5c64bd857570fdbd96229ad41b5cb654c08d75a9845e3ab7dde","impliedFormat":1},{"version":"8b479a130ccb62e98f11f136d3ac80f2984fdc07616516d29881f3061f2dd472","impliedFormat":1},{"version":"928af3d90454bf656a52a48679f199f64c1435247d6189d1caf4c68f2eaf921f","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac39df6dfb9e284bb0c205b15f4d9a2b260f5bab5c85bf2fb97d0cdd509c06ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"a3fc63c0d7b031693f665f5494412ba4b551fe644ededccc0ab5922401079c95","impliedFormat":1},{"version":"f27524f4bef4b6519c604bdb23bf4465bddcccbf3f003abb901acbd0d7404d99","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"dba28a419aec76ed864ef43e5f577a5c99a010c32e5949fe4e17a4d57c58dd11","affectsGlobalScope":true,"impliedFormat":1},{"version":"18fd40412d102c5564136f29735e5d1c3b455b8a37f920da79561f1fde068208","impliedFormat":1},{"version":"c959a391a75be9789b43c8468f71e3fa06488b4d691d5729dde1416dcd38225b","impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"5ebe6f4cc3b803cbfc962bae0d954f9c80e5078ca41eb3f1de41d92e7193ef37","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"5b7aa3c4c1a5d81b411e8cb302b45507fea9358d3569196b27eb1a27ae3a90ef","affectsGlobalScope":true,"impliedFormat":1},{"version":"5987a903da92c7462e0b35704ce7da94d7fdc4b89a984871c0e2b87a8aae9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea08a0345023ade2b47fbff5a76d0d0ed8bff10bc9d22b83f40858a8e941501c","impliedFormat":1},{"version":"47613031a5a31510831304405af561b0ffaedb734437c595256bb61a90f9311b","impliedFormat":1},{"version":"ae062ce7d9510060c5d7e7952ae379224fb3f8f2dd74e88959878af2057c143b","impliedFormat":1},{"version":"8a1a0d0a4a06a8d278947fcb66bf684f117bf147f89b06e50662d79a53be3e9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"9f663c2f91127ef7024e8ca4b3b4383ff2770e5f826696005de382282794b127","impliedFormat":1},{"version":"9f55299850d4f0921e79b6bf344b47c420ce0f507b9dcf593e532b09ea7eeea1","impliedFormat":1}],"root":[[175,183],[185,222]],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declarationDir":"./types","esModuleInterop":true,"experimentalDecorators":true,"module":99,"noFallthroughCasesInSwitch":true,"noPropertyAccessFromIndexSignature":false,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./esm","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9,"useDefineForClassFields":true,"useUnknownInCatchVariables":true},"referencedMap":[[79,1],[81,2],[80,1],[73,1],[74,1],[75,1],[76,1],[77,1],[78,3],[84,4],[273,5],[274,5],[275,6],[228,7],[276,8],[277,9],[278,10],[223,4],[226,11],[224,4],[225,4],[279,12],[280,13],[281,14],[282,15],[283,16],[284,17],[285,17],[286,18],[287,19],[288,20],[289,21],[229,4],[227,4],[290,22],[291,23],[292,24],[326,25],[293,26],[294,4],[295,27],[296,28],[297,29],[298,30],[299,31],[300,32],[301,33],[302,34],[303,35],[304,35],[305,36],[306,4],[307,37],[308,38],[310,39],[309,40],[311,41],[312,42],[313,43],[314,44],[315,45],[316,46],[317,47],[318,48],[319,49],[320,50],[321,51],[322,52],[323,53],[230,4],[231,4],[232,4],[270,54],[271,4],[272,4],[324,55],[325,56],[159,57],[116,4],[118,58],[117,59],[122,60],[157,61],[154,62],[156,63],[119,62],[120,64],[124,64],[123,65],[121,66],[155,67],[153,62],[158,68],[151,4],[152,4],[125,69],[130,62],[132,62],[127,62],[128,69],[134,62],[135,70],[126,62],[131,62],[133,62],[129,62],[149,71],[148,62],[150,72],[144,62],[146,62],[145,62],[141,62],[147,73],[142,62],[143,74],[136,62],[137,62],[138,62],[139,62],[140,62],[63,4],[184,4],[115,4],[57,4],[58,4],[10,4],[12,4],[11,4],[2,4],[13,4],[14,4],[15,4],[16,4],[17,4],[18,4],[19,4],[20,4],[3,4],[21,4],[22,4],[4,4],[23,4],[27,4],[24,4],[25,4],[26,4],[28,4],[29,4],[30,4],[5,4],[31,4],[32,4],[33,4],[34,4],[6,4],[38,4],[35,4],[36,4],[37,4],[39,4],[7,4],[40,4],[45,4],[46,4],[41,4],[42,4],[43,4],[44,4],[8,4],[50,4],[47,4],[48,4],[49,4],[51,4],[9,4],[52,4],[53,4],[54,4],[56,4],[55,4],[1,4],[248,75],[258,76],[247,75],[268,77],[239,78],[238,79],[267,80],[261,81],[266,82],[241,83],[255,84],[240,85],[264,86],[236,87],[235,80],[265,88],[237,89],[242,90],[243,4],[246,90],[233,4],[269,91],[259,92],[250,93],[251,94],[253,95],[249,96],[252,97],[262,80],[244,98],[245,99],[254,100],[234,101],[257,92],[256,90],[260,4],[263,102],[60,103],[61,104],[59,4],[65,105],[64,106],[62,4],[175,107],[176,107],[177,107],[178,107],[179,107],[216,108],[180,107],[181,109],[185,110],[182,107],[183,111],[220,112],[217,113],[186,107],[187,114],[218,115],[188,116],[189,107],[222,117],[221,118],[190,107],[192,107],[193,107],[194,119],[191,107],[196,107],[213,120],[198,121],[200,122],[201,107],[202,123],[203,107],[199,107],[204,124],[205,125],[219,126],[197,127],[206,107],[207,107],[208,107],[209,107],[210,4],[211,107],[212,128],[195,4],[214,109],[215,107],[71,129],[72,4],[68,130],[82,131],[83,4],[94,132],[95,4],[97,133],[92,4],[85,131],[87,4],[67,134],[174,135],[66,4],[93,136],[99,131],[100,131],[101,134],[102,131],[106,137],[98,138],[107,4],[70,139],[86,140],[105,141],[108,4],[109,4],[88,142],[110,4],[111,4],[104,143],[96,4],[90,144],[112,145],[114,146],[164,147],[160,148],[161,4],[162,4],[103,149],[113,4],[163,4],[89,150],[165,4],[166,4],[167,4],[168,151],[169,152],[69,153],[170,129],[171,154],[172,4],[173,4],[91,4]],"latestChangedDtsFile":"./types/nodejs/index.d.ts","version":"5.9.3"}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { ApiTopic, ClientBase } from "@vertesia/api-fetch-client";
|
|
2
|
+
import { Account, InviteUserRequestPayload, InviteUserResponsePayload, OnboardingProgress, ProjectRef, StripeBillingStatusResponse, TransientToken, UpdateAccountPayload, User, UserInviteTokenData } from "@vertesia/common";
|
|
3
|
+
export default class AccountApi extends ApiTopic {
|
|
4
|
+
constructor(parent: ClientBase);
|
|
5
|
+
/**
|
|
6
|
+
* Retrieve all account information for current account
|
|
7
|
+
* @returns Account[]
|
|
8
|
+
*/
|
|
9
|
+
info(): Promise<Account>;
|
|
10
|
+
/**
|
|
11
|
+
* Update account information
|
|
12
|
+
* @returns Account
|
|
13
|
+
*/
|
|
14
|
+
update(payload: UpdateAccountPayload): Promise<Account>;
|
|
15
|
+
/**
|
|
16
|
+
* Get all projects for account
|
|
17
|
+
*/
|
|
18
|
+
projects(): Promise<ProjectRef[]>;
|
|
19
|
+
members(): Promise<User[]>;
|
|
20
|
+
/**
|
|
21
|
+
* Invite User to account
|
|
22
|
+
*/
|
|
23
|
+
inviteUser(payload: InviteUserRequestPayload): Promise<InviteUserResponsePayload>;
|
|
24
|
+
/**
|
|
25
|
+
* Fetch Invites for Principal
|
|
26
|
+
* @returns UserInviteTokenData[]
|
|
27
|
+
* */
|
|
28
|
+
listInvites(): Promise<TransientToken<UserInviteTokenData>[]>;
|
|
29
|
+
/**
|
|
30
|
+
* Fetch Invites for specific account or project
|
|
31
|
+
* @param type Filter for the type of invitation, either "project" or "account"
|
|
32
|
+
* @returns UserInviteTokenData[]
|
|
33
|
+
* */
|
|
34
|
+
listInvitation(type?: "project" | "account"): Promise<TransientToken<UserInviteTokenData>[]>;
|
|
35
|
+
/**
|
|
36
|
+
* Accept Invite for account
|
|
37
|
+
* @returns UserInviteTokenData
|
|
38
|
+
* */
|
|
39
|
+
acceptInvite(id: string): Promise<UserInviteTokenData>;
|
|
40
|
+
/**
|
|
41
|
+
* Delete Invite for account
|
|
42
|
+
* @returns UserInviteTokenData
|
|
43
|
+
* */
|
|
44
|
+
rejectInvite(id: string): Promise<UserInviteTokenData>;
|
|
45
|
+
/**
|
|
46
|
+
* Get Onboarding Progress for account
|
|
47
|
+
*/
|
|
48
|
+
onboardingProgress(): Promise<OnboardingProgress>;
|
|
49
|
+
/**
|
|
50
|
+
* Get a google auth token for the current project.
|
|
51
|
+
* This token can be used to access exposed google cloud services
|
|
52
|
+
* @returns
|
|
53
|
+
*/
|
|
54
|
+
getGoogleToken(): Promise<{
|
|
55
|
+
principal: string;
|
|
56
|
+
token: string;
|
|
57
|
+
}>;
|
|
58
|
+
getStripeBillingStatus(): Promise<StripeBillingStatusResponse>;
|
|
59
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AccountApi.d.ts","sourceRoot":"","sources":["../../src/AccountApi.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AAClE,OAAO,EAAE,OAAO,EAAE,wBAAwB,EAAE,yBAAyB,EAAE,kBAAkB,EAAE,UAAU,EAAE,2BAA2B,EAAE,cAAc,EAAE,oBAAoB,EAAE,IAAI,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAE9N,MAAM,CAAC,OAAO,OAAO,UAAW,SAAQ,QAAQ;gBAEhC,MAAM,EAAE,UAAU;IAI9B;;;OAGG;IACH,IAAI,IAAI,OAAO,CAAC,OAAO,CAAC;IAIxB;;;OAGG;IACH,MAAM,CAAC,OAAO,EAAE,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC;IAIvD;;MAEE;IACF,QAAQ,IAAI,OAAO,CAAC,UAAU,EAAE,CAAC;IAIjC,OAAO,IAAI,OAAO,CAAC,IAAI,EAAE,CAAC;IAI1B;;OAEG;IACH,UAAU,CAAC,OAAO,EAAE,wBAAwB,GAAG,OAAO,CAAC,yBAAyB,CAAC;IAIjF;;;SAGK;IACL,WAAW,IAAI,OAAO,CAAC,cAAc,CAAC,mBAAmB,CAAC,EAAE,CAAC;IAG7D;;;;SAIK;IACL,cAAc,CAAC,IAAI,GAAE,SAAS,GAAG,SAAqB,GAAG,OAAO,CAAC,cAAc,CAAC,mBAAmB,CAAC,EAAE,CAAC;IAIvG;;;SAGK;IACL,YAAY,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,mBAAmB,CAAC;IAItD;;;SAGK;IACL,YAAY,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,mBAAmB,CAAC;IAItD;;OAEG;IACH,kBAAkB,IAAI,OAAO,CAAC,kBAAkB,CAAC;IAIjD;;;;OAIG;IACH,cAAc,IAAI,OAAO,CAAC;QAAE,SAAS,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC;IAI/D,sBAAsB,IAAI,OAAO,CAAC,2BAA2B,CAAC;CAIjE"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Account } from "@vertesia/common";
|
|
2
|
+
import { ApiTopic, ClientBase } from "@vertesia/api-fetch-client";
|
|
3
|
+
export default class AccountsApi extends ApiTopic {
|
|
4
|
+
constructor(parent: ClientBase);
|
|
5
|
+
create(name: string): Promise<Account>;
|
|
6
|
+
list(): Promise<Account[]>;
|
|
7
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AccountsApi.d.ts","sourceRoot":"","sources":["../../src/AccountsApi.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAC3C,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AAElE,MAAM,CAAC,OAAO,OAAO,WAAY,SAAQ,QAAQ;gBAEjC,MAAM,EAAE,UAAU;IAI9B,MAAM,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;IAItC,IAAI,IAAI,OAAO,CAAC,OAAO,EAAE,CAAC;CAQ7B"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ApiTopic, ClientBase } from "@vertesia/api-fetch-client";
|
|
2
|
+
import { DateRangeQuery, RunsAnalyticsSummary, TokenUsageSummary } from "@vertesia/common";
|
|
3
|
+
export default class AnalyticsApi extends ApiTopic {
|
|
4
|
+
constructor(parent: ClientBase);
|
|
5
|
+
runsSummary(query?: DateRangeQuery, environmentId?: string): Promise<RunsAnalyticsSummary>;
|
|
6
|
+
runsTimeSeries(query?: DateRangeQuery, environmentId?: string): Promise<Array<{
|
|
7
|
+
timestamp: Date;
|
|
8
|
+
count: number;
|
|
9
|
+
}>>;
|
|
10
|
+
runsTokenUsage(query?: DateRangeQuery): Promise<TokenUsageSummary>;
|
|
11
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AnalyticsApi.d.ts","sourceRoot":"","sources":["../../src/AnalyticsApi.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AAClE,OAAO,EAAE,cAAc,EAAE,oBAAoB,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AAE3F,MAAM,CAAC,OAAO,OAAO,YAAa,SAAQ,QAAQ;gBAElC,MAAM,EAAE,UAAU;IAI9B,WAAW,CAAC,KAAK,CAAC,EAAE,cAAc,EAAE,aAAa,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAS1F,cAAc,CAAC,KAAK,CAAC,EAAE,cAAc,EAAE,aAAa,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,KAAK,CAAC;QAAE,SAAS,EAAE,IAAI,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IASlH,cAAc,CAAC,KAAK,CAAC,EAAE,cAAc,GAAG,OAAO,CAAC,iBAAiB,CAAC;CAQrE"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { ApiKey, ApiKeyWithValue, CreateOrUpdateApiKeyPayload, CreatePublicKeyPayload } from "@vertesia/common";
|
|
2
|
+
import { ApiTopic, ClientBase } from "@vertesia/api-fetch-client";
|
|
3
|
+
export declare class ApiKeysApi extends ApiTopic {
|
|
4
|
+
constructor(parent: ClientBase);
|
|
5
|
+
/**
|
|
6
|
+
* List all keys for account without values
|
|
7
|
+
* @returns ApiKey[]
|
|
8
|
+
*/
|
|
9
|
+
list(level?: 'account' | 'project'): Promise<ApiKey[]>;
|
|
10
|
+
/**
|
|
11
|
+
* Create an new ApiKey for account
|
|
12
|
+
* BE VERY CAREFUL USING THIS API
|
|
13
|
+
* ALL REQUESTS ARE LOGGED IN SECURITY AUDIT LOG
|
|
14
|
+
* @returns ApiKeyWithValue
|
|
15
|
+
*/
|
|
16
|
+
create(payload: CreateOrUpdateApiKeyPayload): Promise<ApiKeyWithValue>;
|
|
17
|
+
/**
|
|
18
|
+
* Update an existing ApiKey for account
|
|
19
|
+
* @returns ApiKey
|
|
20
|
+
*/
|
|
21
|
+
update(id: string, payload: CreateOrUpdateApiKeyPayload): Promise<ApiKey>;
|
|
22
|
+
/**
|
|
23
|
+
* Retrieve an ApiKey and its value
|
|
24
|
+
* BE VERY CAREFUL USING THIS API AS IT EXPOSE THE API KEY VALUE
|
|
25
|
+
* ALL REQUESTS ARE LOGGED IN SECURITY AUDIT LOG
|
|
26
|
+
* @returns ApiKeyWithValue
|
|
27
|
+
* */
|
|
28
|
+
retrieve(id: string, withValue?: boolean): Promise<ApiKey | ApiKeyWithValue>;
|
|
29
|
+
/**
|
|
30
|
+
* get or create a temporary public key which can be used from browser to browse and execute interactions.
|
|
31
|
+
* If a public key already exists for the given project (or for the current organization) then it is returned, otherwise a new one is created.
|
|
32
|
+
* The payload object can contain the following properties:
|
|
33
|
+
* - name: the name of the public key. If not specified a random name is generated.
|
|
34
|
+
* - projectId: the id of the project to which the public key will be associated.
|
|
35
|
+
* If not specified the key is associated with the current organization. (i.e. account).
|
|
36
|
+
* - ttl: the time to live of the public key in seconds.
|
|
37
|
+
* The ttl defaults to 1h.
|
|
38
|
+
* @param opts
|
|
39
|
+
* @returns
|
|
40
|
+
*/
|
|
41
|
+
requestPublicKey(payload?: CreatePublicKeyPayload): Promise<string>;
|
|
42
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ApiKeysApi.d.ts","sourceRoot":"","sources":["../../src/ApiKeysApi.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,eAAe,EAAE,2BAA2B,EAAE,sBAAsB,EAAE,MAAM,kBAAkB,CAAC;AAChH,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AAElE,qBAAa,UAAW,SAAQ,QAAQ;gBAGxB,MAAM,EAAE,UAAU;IAK9B;;;OAGG;IACH,IAAI,CAAC,KAAK,GAAE,SAAS,GAAG,SAAqB,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC;IAIjE;;;;;OAKG;IACH,MAAM,CAAC,OAAO,EAAE,2BAA2B,GAAG,OAAO,CAAC,eAAe,CAAC;IAItE;;;OAGG;IACH,MAAM,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,2BAA2B,GAAG,OAAO,CAAC,MAAM,CAAC;IAIzE;;;;;SAKK;IACL,QAAQ,CAAC,EAAE,EAAE,MAAM,EAAE,SAAS,GAAE,OAAe,GAAG,OAAO,CAAC,MAAM,GAAG,eAAe,CAAC;IAQnF;;;;;;;;;;;OAWG;IACH,gBAAgB,CAAC,OAAO,GAAE,sBAA2B,GAAG,OAAO,CAAC,MAAM,CAAC;CAG1E"}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { ApiTopic, ClientBase } from "@vertesia/api-fetch-client";
|
|
2
|
+
import type { AppInstallation, AppInstallationKind, AppInstallationPayload, AppInstallationWithManifest, AppManifest, AppManifestData, AppToolCollection, ProjectRef, RequireAtLeastOne } from "@vertesia/common";
|
|
3
|
+
export interface OrphanedAppInstallation extends Omit<AppInstallation, 'manifest'> {
|
|
4
|
+
manifest: null;
|
|
5
|
+
}
|
|
6
|
+
export default class AppsApi extends ApiTopic {
|
|
7
|
+
constructor(parent: ClientBase);
|
|
8
|
+
create(manifest: AppManifestData): Promise<AppManifest>;
|
|
9
|
+
update(id: string, manifest: AppManifestData): Promise<AppManifest>;
|
|
10
|
+
/**
|
|
11
|
+
* Get the list if tools provided by the given app.
|
|
12
|
+
* @param appId
|
|
13
|
+
* @returns
|
|
14
|
+
*/
|
|
15
|
+
listAppInstallationTools(appInstallId: string): Promise<AppToolCollection[]>;
|
|
16
|
+
/**
|
|
17
|
+
* @param ids - ids to filter by
|
|
18
|
+
* @returns the app manifests but without the agent.tool property which can be big.
|
|
19
|
+
*/
|
|
20
|
+
list(): Promise<AppManifest[]>;
|
|
21
|
+
/**
|
|
22
|
+
* Install the app with the given id in the current project.
|
|
23
|
+
* @param appId - the id of the app to install
|
|
24
|
+
*/
|
|
25
|
+
install(appId: string, settings?: Record<string, any>): Promise<AppInstallation>;
|
|
26
|
+
/**
|
|
27
|
+
* Remove the given app from the current project.
|
|
28
|
+
* @param installationId - the id of the app installation
|
|
29
|
+
* @returns
|
|
30
|
+
*/
|
|
31
|
+
uninstall(installationId: string): Promise<any>;
|
|
32
|
+
/**
|
|
33
|
+
* get an app unstallation given its name or null if the app is not installed
|
|
34
|
+
* @returns
|
|
35
|
+
*/
|
|
36
|
+
getAppInstallationByName(appName: string): Promise<AppInstallationWithManifest | null>;
|
|
37
|
+
/**
|
|
38
|
+
* Get the project refs where the application is visible by the current user.
|
|
39
|
+
* The application is specified either by id or by name.
|
|
40
|
+
* @param param0
|
|
41
|
+
* @returns
|
|
42
|
+
*/
|
|
43
|
+
getAppInstallationProjects(app: RequireAtLeastOne<{
|
|
44
|
+
id?: string;
|
|
45
|
+
name?: string;
|
|
46
|
+
}, 'id' | 'name'>): Promise<ProjectRef[]>;
|
|
47
|
+
/**
|
|
48
|
+
* Get the apps installed for the current authenticated project
|
|
49
|
+
* @param kind - the kind of app installations to filter by (e.g., 'agent', 'tool', etc.)
|
|
50
|
+
*/
|
|
51
|
+
getInstalledApps(kind?: AppInstallationKind): Promise<AppInstallationWithManifest[]>;
|
|
52
|
+
/**
|
|
53
|
+
* This operation will return an array of all the found AppInstallations in the current project
|
|
54
|
+
* including orphaned installations
|
|
55
|
+
* This requires project admin since access is not checked on the insytallations.
|
|
56
|
+
* For a user level list of available installations (with user permission check) use getInstalledApps
|
|
57
|
+
* @returns
|
|
58
|
+
*/
|
|
59
|
+
getAllAppInstallations(): Promise<(AppInstallationWithManifest | OrphanedAppInstallation)[]>;
|
|
60
|
+
/**
|
|
61
|
+
* List the app installations of the current project.
|
|
62
|
+
*/
|
|
63
|
+
listInstallations(): Promise<AppInstallation[]>;
|
|
64
|
+
updateInstallationSettings(settingsPayload: AppInstallationPayload): Promise<AppInstallationWithManifest>;
|
|
65
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AppsApi.d.ts","sourceRoot":"","sources":["../../src/AppsApi.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAe,MAAM,4BAA4B,CAAC;AAC/E,OAAO,KAAK,EAAE,eAAe,EAAE,mBAAmB,EAAE,sBAAsB,EAAE,2BAA2B,EAAE,WAAW,EAAE,eAAe,EAAE,iBAAiB,EAAE,UAAU,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AAElN,MAAM,WAAW,uBAAwB,SAAQ,IAAI,CAAC,eAAe,EAAE,UAAU,CAAC;IAC9E,QAAQ,EAAE,IAAI,CAAC;CAClB;AAED,MAAM,CAAC,OAAO,OAAO,OAAQ,SAAQ,QAAQ;gBAE7B,MAAM,EAAE,UAAU;IAI9B,MAAM,CAAC,QAAQ,EAAE,eAAe,GAAG,OAAO,CAAC,WAAW,CAAC;IAIvD,MAAM,CAAC,EAAE,EAAE,MAAM,EAAE,QAAQ,EAAE,eAAe,GAAG,OAAO,CAAC,WAAW,CAAC;IAInE;;;;OAIG;IACH,wBAAwB,CAAC,YAAY,EAAE,MAAM,GAAG,OAAO,CAAC,iBAAiB,EAAE,CAAC;IAI5E;;;OAGG;IACH,IAAI,IAAI,OAAO,CAAC,WAAW,EAAE,CAAC;IAI9B;;;OAGG;IACH,OAAO,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,OAAO,CAAC,eAAe,CAAC;IAShF;;;;OAIG;IACH,SAAS,CAAC,cAAc,EAAE,MAAM;IAIhC;;;OAGG;IACH,wBAAwB,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,2BAA2B,GAAG,IAAI,CAAC;IAUtF;;;;;OAKG;IACH,0BAA0B,CAAC,GAAG,EAAE,iBAAiB,CAAC;QAAE,EAAE,CAAC,EAAE,MAAM,CAAC;QAAC,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,EAAE,IAAI,GAAG,MAAM,CAAC,GAAG,OAAO,CAAC,UAAU,EAAE,CAAC;IAcxH;;;OAGG;IACH,gBAAgB,CAAC,IAAI,CAAC,EAAE,mBAAmB,GAAG,OAAO,CAAC,2BAA2B,EAAE,CAAC;IAQpF;;;;;;OAMG;IACH,sBAAsB,IAAI,OAAO,CAAC,CAAC,2BAA2B,GAAG,uBAAuB,CAAC,EAAE,CAAC;IAI5F;;OAEG;IACH,iBAAiB,IAAI,OAAO,CAAC,eAAe,EAAE,CAAC;IAI/C,0BAA0B,CAAC,eAAe,EAAE,sBAAsB,GAAG,OAAO,CAAC,2BAA2B,CAAC;CAS5G"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ApiTopic, ClientBase } from "@vertesia/api-fetch-client";
|
|
2
|
+
import { GenericCommandResponse } from "@vertesia/common";
|
|
3
|
+
/**
|
|
4
|
+
* Various utility commands
|
|
5
|
+
*/
|
|
6
|
+
export default class CommandsApi extends ApiTopic {
|
|
7
|
+
constructor(parent: ClientBase);
|
|
8
|
+
isNamespaceAvailable(name: string): Promise<boolean>;
|
|
9
|
+
initSamples(): Promise<GenericCommandResponse>;
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CommandsApi.d.ts","sourceRoot":"","sources":["../../src/CommandsApi.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AAClE,OAAO,EAAE,sBAAsB,EAAE,MAAM,kBAAkB,CAAC;AAG1D;;GAEG;AAEH,MAAM,CAAC,OAAO,OAAO,WAAY,SAAQ,QAAQ;gBAEjC,MAAM,EAAE,UAAU;IAIxB,oBAAoB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;IAIpD,WAAW,IAAI,OAAO,CAAC,sBAAsB,CAAC;CAIvD"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import type { AIModel, EmbeddingsOptions, EmbeddingsResult, ModelSearchPayload } from "@llumiverse/common";
|
|
2
|
+
import { ApiTopic, ClientBase } from "@vertesia/api-fetch-client";
|
|
3
|
+
import { ExecutionEnvironment, ExecutionEnvironmentCreatePayload, ExecutionEnvironmentRef, ExecutionEnvironmentUpdatePayload, LoadBalancingEnvConfig, MediatorEnvConfig, MigrateInteractionsPayload, MigrateInteractionsResult } from "@vertesia/common";
|
|
4
|
+
export default class EnvironmentsApi extends ApiTopic {
|
|
5
|
+
constructor(parent: ClientBase);
|
|
6
|
+
/**
|
|
7
|
+
* List all environments for the current project
|
|
8
|
+
* @param all if true, list all environments, otherwise only the ones for the current project
|
|
9
|
+
*/
|
|
10
|
+
list(all?: boolean): Promise<ExecutionEnvironmentRef[]>;
|
|
11
|
+
create(payload: ExecutionEnvironmentCreatePayload): Promise<ExecutionEnvironment>;
|
|
12
|
+
retrieve(id: string): Promise<ExecutionEnvironment>;
|
|
13
|
+
update(id: string, payload: ExecutionEnvironmentUpdatePayload): Promise<ExecutionEnvironment>;
|
|
14
|
+
/**
|
|
15
|
+
* Update enabled models and / or config. If enabled_models is not provided, the existing enabled models will not change.
|
|
16
|
+
* Same, if config is not provided the exiting config is not changed.
|
|
17
|
+
* If the config is provided then it will be updated without removing fields that are not provided.
|
|
18
|
+
*
|
|
19
|
+
* @param id
|
|
20
|
+
* @param payload
|
|
21
|
+
* @returns
|
|
22
|
+
*/
|
|
23
|
+
updateConfig(id: string, payload: {
|
|
24
|
+
enabled_models?: AIModel[];
|
|
25
|
+
config?: MediatorEnvConfig | LoadBalancingEnvConfig;
|
|
26
|
+
}): Promise<ExecutionEnvironment>;
|
|
27
|
+
listModels(id: string, payload?: ModelSearchPayload): Promise<AIModel[]>;
|
|
28
|
+
listTrainableModels(id: string): Promise<AIModel[]>;
|
|
29
|
+
embeddings(id: string, payload?: EmbeddingsOptions): Promise<EmbeddingsResult>;
|
|
30
|
+
/**
|
|
31
|
+
* Batch update the LLM Environment for multiple Interactions, including the model used and the
|
|
32
|
+
* Environment that they belong to.
|
|
33
|
+
*
|
|
34
|
+
* It only updates Interactions that are in draft status.
|
|
35
|
+
*
|
|
36
|
+
* @param payload - The migration payload containing modelId and interactionIds
|
|
37
|
+
* @returns The count of matched and modified interactions
|
|
38
|
+
*/
|
|
39
|
+
migrateInteractions(payload: MigrateInteractionsPayload): Promise<MigrateInteractionsResult>;
|
|
40
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EnvironmentsApi.d.ts","sourceRoot":"","sources":["../../src/EnvironmentsApi.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,iBAAiB,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AAC3G,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AAClE,OAAO,EACH,oBAAoB,EACpB,iCAAiC,EACjC,uBAAuB,EACvB,iCAAiC,EACjC,sBAAsB,EACtB,iBAAiB,EACjB,0BAA0B,EAC1B,yBAAyB,EAC5B,MAAM,kBAAkB,CAAC;AAE1B,MAAM,CAAC,OAAO,OAAO,eAAgB,SAAQ,QAAQ;gBACrC,MAAM,EAAE,UAAU;IAI9B;;;OAGG;IACH,IAAI,CAAC,GAAG,GAAE,OAAe,GAAG,OAAO,CAAC,uBAAuB,EAAE,CAAC;IAM9D,MAAM,CAAC,OAAO,EAAE,iCAAiC,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAMjF,QAAQ,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAInD,MAAM,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,iCAAiC,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAM7F;;;;;;;;OAQG;IACH,YAAY,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE;QAC9B,cAAc,CAAC,EAAE,OAAO,EAAE,CAAC;QAC3B,MAAM,CAAC,EAAE,iBAAiB,GAAG,sBAAsB,CAAA;KACtD,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAMjC,UAAU,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,kBAAkB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;IAMxE,mBAAmB,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;IAInD,UAAU,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,iBAAiB,GAAG,OAAO,CAAC,gBAAgB,CAAC;IAM9E;;;;;;;;OAQG;IACH,mBAAmB,CAAC,OAAO,EAAE,0BAA0B,GAAG,OAAO,CAAC,yBAAyB,CAAC;CAM/F"}
|