@kestra-io/kestra-sdk 2.0.0-dev.4bc905a7.69ce31fb → 2.0.0-dev.4bc905a7.877e3843
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/README.md +147 -0
- package/dist/{Banners.gen-Bdx-_ldj.d.ts → Banners.gen-Dg7e16Y8.d.ts} +2 -2
- package/dist/{Cluster.gen-DZqgQJ0v.d.ts → Cluster.gen-DPXPySFs.d.ts} +1 -1
- package/dist/{KillSwitches.gen--2Yg61GI.d.ts → KillSwitches.gen-BwVlQCqt.d.ts} +2 -2
- package/dist/{Login.gen-CW7JZ6gR.d.ts → Login.gen-D5FxJ-7m.d.ts} +2 -2
- package/dist/{ScimGroups.gen-fy0HlNpR.d.ts → ScimGroups.gen-IeOy9cjn.d.ts} +2 -2
- package/dist/{ScimUsers.gen-BGNAGr8-.d.ts → ScimUsers.gen-D9Nx7hQf.d.ts} +2 -2
- package/dist/ai.d.ts +1 -1
- package/dist/apps.d.ts +1 -1
- package/dist/assets.d.ts +1 -1
- package/dist/audit-logs.d.ts +1 -1
- package/dist/auths.d.ts +1 -1
- package/dist/banners.d.ts +1 -1
- package/dist/bindings.d.ts +1 -1
- package/dist/blueprint-tags.d.ts +1 -1
- package/dist/blueprints.d.ts +1 -1
- package/dist/client.d.ts +1 -1
- package/dist/cluster.d.ts +1 -1
- package/dist/dashboards.d.ts +1 -1
- package/dist/executions.d.ts +1 -1
- package/dist/files.d.ts +1 -1
- package/dist/flows.d.ts +1 -1
- package/dist/groups.d.ts +1 -1
- package/dist/{index-8yOTKkCB.d.ts → index-C69DAvHe.d.ts} +42 -42
- package/dist/index.d.ts +9 -9
- package/dist/invitations.d.ts +1 -1
- package/dist/kill-switches.d.ts +1 -1
- package/dist/kv.d.ts +1 -1
- package/dist/login.d.ts +1 -1
- package/dist/logs.d.ts +1 -1
- package/dist/metrics.d.ts +1 -1
- package/dist/misc.d.ts +1 -1
- package/dist/namespaces.d.ts +1 -1
- package/dist/outputs.d.ts +1 -1
- package/dist/plugins.d.ts +1 -1
- package/dist/roles.d.ts +1 -1
- package/dist/scim-configuration.d.ts +1 -1
- package/dist/scim-groups.d.ts +1 -1
- package/dist/scim-users.d.ts +1 -1
- package/dist/{sdk.gen-DQMNJd1j.d.ts → sdk.gen-CzAYvhOl.d.ts} +1 -1
- package/dist/secrets.d.ts +1 -1
- package/dist/security-integrations.d.ts +1 -1
- package/dist/service-account.d.ts +1 -1
- package/dist/services.d.ts +1 -1
- package/dist/tenant-access.d.ts +1 -1
- package/dist/tenants.d.ts +1 -1
- package/dist/test-suites.d.ts +1 -1
- package/dist/triggers.d.ts +1 -1
- package/dist/{types.gen-Drotl2hG.d.ts → types.gen-sYIoYTZ-.d.ts} +3 -3
- package/dist/users.d.ts +1 -1
- package/dist/worker-auth.d.ts +1 -1
- package/dist/worker-groups.d.ts +1 -1
- package/package.json +3 -2
package/README.md
ADDED
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
# JavaScript SDK
|
|
2
|
+
|
|
3
|
+
## Steps to generate the SDK
|
|
4
|
+
|
|
5
|
+
1. Update the `kestra-ee.yml` if necessary with latest openspec api changes.
|
|
6
|
+
2. Generate the SDK using the script `generate-sdks.sh` that uses the openapi-generator-cli docker image.
|
|
7
|
+
|
|
8
|
+
## Installation
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
npm install @kestra-io/kestra-sdk
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Usage
|
|
15
|
+
|
|
16
|
+
The SDK is organized into domain-specific modules (e.g. `flows`, `executions`, `apps`, `plugins`). Import only the modules you need to keep your bundle lean and benefit from tree-shaking.
|
|
17
|
+
|
|
18
|
+
### Configure the client
|
|
19
|
+
|
|
20
|
+
Import and configure the shared HTTP client once, at the entry point of your application:
|
|
21
|
+
|
|
22
|
+
```ts
|
|
23
|
+
import { client } from "@kestra-io/kestra-sdk/client";
|
|
24
|
+
|
|
25
|
+
client.setConfig({
|
|
26
|
+
baseURL: "https://<your-kestra-host>",
|
|
27
|
+
auth: () => "<username>:<password>",
|
|
28
|
+
});
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
For token-based authentication, pass the token directly:
|
|
32
|
+
|
|
33
|
+
```ts
|
|
34
|
+
client.setConfig({
|
|
35
|
+
baseURL: "https://<your-kestra-host>",
|
|
36
|
+
auth: () => "<your-api-token>",
|
|
37
|
+
});
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
### Import domain modules
|
|
41
|
+
|
|
42
|
+
Each domain is a separate entry point. Import them with a namespace alias to keep call sites readable:
|
|
43
|
+
|
|
44
|
+
```ts
|
|
45
|
+
import * as FlowsAPI from "@kestra-io/kestra-sdk/flows";
|
|
46
|
+
import * as ExecutionsAPI from "@kestra-io/kestra-sdk/executions";
|
|
47
|
+
import * as AppsAPI from "@kestra-io/kestra-sdk/apps";
|
|
48
|
+
import * as PluginsAPI from "@kestra-io/kestra-sdk/plugins";
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
Other available domains:
|
|
52
|
+
|
|
53
|
+
```ts
|
|
54
|
+
import * as AiAPI from "@kestra-io/kestra-sdk/ai";
|
|
55
|
+
import * as AssetsAPI from "@kestra-io/kestra-sdk/assets";
|
|
56
|
+
import * as AuditLogsAPI from "@kestra-io/kestra-sdk/audit-logs";
|
|
57
|
+
import * as AuthsAPI from "@kestra-io/kestra-sdk/auths";
|
|
58
|
+
import * as BannersAPI from "@kestra-io/kestra-sdk/banners";
|
|
59
|
+
import * as BindingsAPI from "@kestra-io/kestra-sdk/bindings";
|
|
60
|
+
import * as BlueprintTagsAPI from "@kestra-io/kestra-sdk/blueprint-tags";
|
|
61
|
+
import * as BlueprintsAPI from "@kestra-io/kestra-sdk/blueprints";
|
|
62
|
+
import * as ClusterAPI from "@kestra-io/kestra-sdk/cluster";
|
|
63
|
+
import * as DashboardsAPI from "@kestra-io/kestra-sdk/dashboards";
|
|
64
|
+
import * as FilesAPI from "@kestra-io/kestra-sdk/files";
|
|
65
|
+
import * as GroupsAPI from "@kestra-io/kestra-sdk/groups";
|
|
66
|
+
import * as InvitationsAPI from "@kestra-io/kestra-sdk/invitations";
|
|
67
|
+
import * as KillSwitchesAPI from "@kestra-io/kestra-sdk/kill-switches";
|
|
68
|
+
import * as KvAPI from "@kestra-io/kestra-sdk/kv";
|
|
69
|
+
import * as LoginAPI from "@kestra-io/kestra-sdk/login";
|
|
70
|
+
import * as LogsAPI from "@kestra-io/kestra-sdk/logs";
|
|
71
|
+
import * as MetricsAPI from "@kestra-io/kestra-sdk/metrics";
|
|
72
|
+
import * as MiscAPI from "@kestra-io/kestra-sdk/misc";
|
|
73
|
+
import * as NamespacesAPI from "@kestra-io/kestra-sdk/namespaces";
|
|
74
|
+
import * as OutputsAPI from "@kestra-io/kestra-sdk/outputs";
|
|
75
|
+
import * as RolesAPI from "@kestra-io/kestra-sdk/roles";
|
|
76
|
+
import * as ScimConfigurationAPI from "@kestra-io/kestra-sdk/scim-configuration";
|
|
77
|
+
import * as ScimGroupsAPI from "@kestra-io/kestra-sdk/scim-groups";
|
|
78
|
+
import * as ScimUsersAPI from "@kestra-io/kestra-sdk/scim-users";
|
|
79
|
+
import * as SecretsAPI from "@kestra-io/kestra-sdk/secrets";
|
|
80
|
+
import * as SecurityIntegrationsAPI from "@kestra-io/kestra-sdk/security-integrations";
|
|
81
|
+
import * as ServiceAccountAPI from "@kestra-io/kestra-sdk/service-account";
|
|
82
|
+
import * as ServicesAPI from "@kestra-io/kestra-sdk/services";
|
|
83
|
+
import * as SharedAPI from "@kestra-io/kestra-sdk/shared";
|
|
84
|
+
import * as TenantAccessAPI from "@kestra-io/kestra-sdk/tenant-access";
|
|
85
|
+
import * as TenantsAPI from "@kestra-io/kestra-sdk/tenants";
|
|
86
|
+
import * as TestSuitesAPI from "@kestra-io/kestra-sdk/test-suites";
|
|
87
|
+
import * as TriggersAPI from "@kestra-io/kestra-sdk/triggers";
|
|
88
|
+
import * as UsersAPI from "@kestra-io/kestra-sdk/users";
|
|
89
|
+
import * as WorkerAuthAPI from "@kestra-io/kestra-sdk/worker-auth";
|
|
90
|
+
import * as WorkerGroupsAPI from "@kestra-io/kestra-sdk/worker-groups";
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
### Example: search and create a flow
|
|
94
|
+
|
|
95
|
+
```ts
|
|
96
|
+
import { client } from "@kestra-io/kestra-sdk/client";
|
|
97
|
+
import * as FlowsAPI from "@kestra-io/kestra-sdk/flows";
|
|
98
|
+
|
|
99
|
+
client.setConfig({
|
|
100
|
+
baseURL: "https://<your-kestra-host>",
|
|
101
|
+
auth: () => "root@root.com:Root!1234",
|
|
102
|
+
});
|
|
103
|
+
|
|
104
|
+
const tenantId = "main";
|
|
105
|
+
|
|
106
|
+
// Search flows
|
|
107
|
+
const searchRes = await FlowsAPI.searchFlows({
|
|
108
|
+
page: 1,
|
|
109
|
+
size: 10,
|
|
110
|
+
tenant: tenantId,
|
|
111
|
+
});
|
|
112
|
+
console.log(searchRes.data);
|
|
113
|
+
|
|
114
|
+
// Create a flow
|
|
115
|
+
const createRes = await FlowsAPI.createFlow({
|
|
116
|
+
tenant: tenantId,
|
|
117
|
+
body: `
|
|
118
|
+
id: hello-world
|
|
119
|
+
namespace: my.namespace
|
|
120
|
+
|
|
121
|
+
tasks:
|
|
122
|
+
- id: hello
|
|
123
|
+
type: io.kestra.plugin.core.log.Log
|
|
124
|
+
message: Hello World! 🚀
|
|
125
|
+
`,
|
|
126
|
+
});
|
|
127
|
+
console.log(createRes.data);
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
### Example: trigger an execution
|
|
131
|
+
|
|
132
|
+
```ts
|
|
133
|
+
import { client } from "@kestra-io/kestra-sdk/client";
|
|
134
|
+
import * as ExecutionsAPI from "@kestra-io/kestra-sdk/executions";
|
|
135
|
+
|
|
136
|
+
client.setConfig({
|
|
137
|
+
baseURL: "https://<your-kestra-host>",
|
|
138
|
+
auth: () => "root@root.com:Root!1234",
|
|
139
|
+
});
|
|
140
|
+
|
|
141
|
+
const execution = await ExecutionsAPI.createExecution({
|
|
142
|
+
tenant: "main",
|
|
143
|
+
namespace: "my.namespace",
|
|
144
|
+
id: "hello-world",
|
|
145
|
+
});
|
|
146
|
+
console.log(execution.data);
|
|
147
|
+
```
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { mn as Banner } from "./types.gen-
|
|
2
|
-
import { On as _0561Ad6Ab, ca as _3A626Bff, fa as _3D7A5F48, fn as _04B5D3B49 } from "./sdk.gen-
|
|
1
|
+
import { mn as Banner } from "./types.gen-sYIoYTZ-.js";
|
|
2
|
+
import { On as _0561Ad6Ab, ca as _3A626Bff, fa as _3D7A5F48, fn as _04B5D3B49 } from "./sdk.gen-CzAYvhOl.js";
|
|
3
3
|
|
|
4
4
|
//#region src/openapi/sdk/Banners.gen.d.ts
|
|
5
5
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Xr as _0F86A2E5, fi as _1A1Ca315 } from "./sdk.gen-
|
|
1
|
+
import { Xr as _0F86A2E5, fi as _1A1Ca315 } from "./sdk.gen-CzAYvhOl.js";
|
|
2
2
|
|
|
3
3
|
//#region src/openapi/sdk/Cluster.gen.d.ts
|
|
4
4
|
declare const enterMaintenance: (options?: Omit<Parameters<typeof _0F86A2E5>[0], "throwOnError">) => Promise<{
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Eg as KillSwitch } from "./types.gen-
|
|
2
|
-
import { $r as _1013D24e, Aa as _489De83d, Et as _0380059D8, oo as _56C0Cddb } from "./sdk.gen-
|
|
1
|
+
import { Eg as KillSwitch } from "./types.gen-sYIoYTZ-.js";
|
|
2
|
+
import { $r as _1013D24e, Aa as _489De83d, Et as _0380059D8, oo as _56C0Cddb } from "./sdk.gen-CzAYvhOl.js";
|
|
3
3
|
|
|
4
4
|
//#region src/openapi/sdk/KillSwitches.gen.d.ts
|
|
5
5
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { mM as UsernamePasswordCredentials } from "./types.gen-
|
|
2
|
-
import { Fo as _625Ef69 } from "./sdk.gen-
|
|
1
|
+
import { mM as UsernamePasswordCredentials } from "./types.gen-sYIoYTZ-.js";
|
|
2
|
+
import { Fo as _625Ef69 } from "./sdk.gen-CzAYvhOl.js";
|
|
3
3
|
|
|
4
4
|
//#region src/openapi/sdk/Login.gen.d.ts
|
|
5
5
|
declare const login: (parameters: UsernamePasswordCredentials, options?: Omit<Parameters<typeof _625Ef69>[1], "throwOnError">) => Promise<{
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Fb as PatchRequest, Yw as ScimResource, Zw as ScimUser, bE as SearchRequest } from "./types.gen-
|
|
2
|
-
import { Gt as _041E4E0A1, Kr as _0E583313, Ls as c23903c, Vn as _05Fc1D744, an as _04763C298, hn as _04Ca27C03, rt as _029Da9A7c } from "./sdk.gen-
|
|
1
|
+
import { Fb as PatchRequest, Yw as ScimResource, Zw as ScimUser, bE as SearchRequest } from "./types.gen-sYIoYTZ-.js";
|
|
2
|
+
import { Gt as _041E4E0A1, Kr as _0E583313, Ls as c23903c, Vn as _05Fc1D744, an as _04763C298, hn as _04Ca27C03, rt as _029Da9A7c } from "./sdk.gen-CzAYvhOl.js";
|
|
3
3
|
|
|
4
4
|
//#region src/openapi/sdk/ScimGroups.gen.d.ts
|
|
5
5
|
declare const queryGroups: (parameters: Omit<Parameters<typeof _05Fc1D744>[0], "tenant"> & {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Fb as PatchRequest, Yw as ScimResource, Zw as ScimUser, bE as SearchRequest } from "./types.gen-
|
|
2
|
-
import { Dn as _0541C980c, H as _022Bb8541, La as _4B7C6Aa0, Yt as _0436B14E3, as as _6Ac6Cc58, li as _191553Cf, zr as _0A933De0 } from "./sdk.gen-
|
|
1
|
+
import { Fb as PatchRequest, Yw as ScimResource, Zw as ScimUser, bE as SearchRequest } from "./types.gen-sYIoYTZ-.js";
|
|
2
|
+
import { Dn as _0541C980c, H as _022Bb8541, La as _4B7C6Aa0, Yt as _0436B14E3, as as _6Ac6Cc58, li as _191553Cf, zr as _0A933De0 } from "./sdk.gen-CzAYvhOl.js";
|
|
3
3
|
|
|
4
4
|
//#region src/openapi/sdk/ScimUsers.gen.d.ts
|
|
5
5
|
declare const queryUsers: (parameters: Omit<Parameters<typeof _0A933De0>[0], "tenant"> & {
|
package/dist/ai.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { fs as generateApp, gs as providers, hs as generateTestSuite, ms as generateFlow, ps as generateDashboard } from "./index-
|
|
1
|
+
import { fs as generateApp, gs as providers, hs as generateTestSuite, ms as generateFlow, ps as generateDashboard } from "./index-C69DAvHe.js";
|
|
2
2
|
export { generateApp, generateDashboard, generateFlow, generateTestSuite, providers };
|
package/dist/apps.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { $o as bulkImportApps, Jo as app, Qo as bulkExportApps, Xo as bulkDisableApps, Yo as bulkDeleteApps, Zo as bulkEnableApps, as as filePreviewFromAppExecution, cs as searchApps, ds as updateApp, es as createApp, is as fileMetaFromAppExecution, ls as searchAppsFromCatalog, ns as disableApp, os as listTags, rs as enableApp, ss as logsFromAppExecution, ts as deleteApp, us as streamEventsFromApp } from "./index-
|
|
1
|
+
import { $o as bulkImportApps, Jo as app, Qo as bulkExportApps, Xo as bulkDisableApps, Yo as bulkDeleteApps, Zo as bulkEnableApps, as as filePreviewFromAppExecution, cs as searchApps, ds as updateApp, es as createApp, is as fileMetaFromAppExecution, ls as searchAppsFromCatalog, ns as disableApp, os as listTags, rs as enableApp, ss as logsFromAppExecution, ts as deleteApp, us as streamEventsFromApp } from "./index-C69DAvHe.js";
|
|
2
2
|
export { app, bulkDeleteApps, bulkDisableApps, bulkEnableApps, bulkExportApps, bulkImportApps, createApp, deleteApp, disableApp, enableApp, fileMetaFromAppExecution, filePreviewFromAppExecution, listTags, logsFromAppExecution, searchApps, searchAppsFromCatalog, streamEventsFromApp, updateApp };
|
package/dist/assets.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Bo as deleteAsset, Go as searchAssetLineageEvents, Ho as deleteAssetUsagesByQuery, Ko as searchAssetUsages, Lo as asset, Ro as assetDependencies, Uo as deleteAssetsByIds, Vo as deleteAssetLineageEventsByQuery, Wo as deleteAssetsByQuery, qo as searchAssets, zo as createAsset } from "./index-
|
|
1
|
+
import { Bo as deleteAsset, Go as searchAssetLineageEvents, Ho as deleteAssetUsagesByQuery, Ko as searchAssetUsages, Lo as asset, Ro as assetDependencies, Uo as deleteAssetsByIds, Vo as deleteAssetLineageEventsByQuery, Wo as deleteAssetsByQuery, qo as searchAssets, zo as createAsset } from "./index-C69DAvHe.js";
|
|
2
2
|
export { asset, assetDependencies, createAsset, deleteAsset, deleteAssetLineageEventsByQuery, deleteAssetUsagesByQuery, deleteAssetsByIds, deleteAssetsByQuery, searchAssetLineageEvents, searchAssetUsages, searchAssets };
|
package/dist/audit-logs.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Ao as exportAuditLogsForAllTenants, Fo as searchAuditLogs, Io as searchAuditLogsForAllTenants, Mo as globalResourceDiffFromAuditLog, No as listAuditLogFromResourceId, Po as resourceDiffFromAuditLog, jo as findAuditLog, ko as exportAuditLogs } from "./index-
|
|
1
|
+
import { Ao as exportAuditLogsForAllTenants, Fo as searchAuditLogs, Io as searchAuditLogsForAllTenants, Mo as globalResourceDiffFromAuditLog, No as listAuditLogFromResourceId, Po as resourceDiffFromAuditLog, jo as findAuditLog, ko as exportAuditLogs } from "./index-C69DAvHe.js";
|
|
2
2
|
export { exportAuditLogs, exportAuditLogsForAllTenants, findAuditLog, globalResourceDiffFromAuditLog, listAuditLogFromResourceId, resourceDiffFromAuditLog, searchAuditLogs, searchAuditLogsForAllTenants };
|
package/dist/auths.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Co as index, Do as resetPassword, Eo as requestCode, Oo as validatePassword, So as forgottenPassword, To as patchCurrentUser, _o as acceptInvitation, bo as currentUser, vo as createApiTokenForCurrentUser, wo as listApiTokensForCurrentUser, xo as deleteApiTokenForCurrentUser, yo as createFromInvitation } from "./index-
|
|
1
|
+
import { Co as index, Do as resetPassword, Eo as requestCode, Oo as validatePassword, So as forgottenPassword, To as patchCurrentUser, _o as acceptInvitation, bo as currentUser, vo as createApiTokenForCurrentUser, wo as listApiTokensForCurrentUser, xo as deleteApiTokenForCurrentUser, yo as createFromInvitation } from "./index-C69DAvHe.js";
|
|
2
2
|
export { acceptInvitation, createApiTokenForCurrentUser, createFromInvitation, currentUser, deleteApiTokenForCurrentUser, forgottenPassword, index, listApiTokensForCurrentUser, patchCurrentUser, requestCode, resetPassword, validatePassword };
|
package/dist/banners.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { i as updateBanner, n as deleteBanner, r as searchBanners, t as createBanner } from "./Banners.gen-
|
|
1
|
+
import { i as updateBanner, n as deleteBanner, r as searchBanners, t as createBanner } from "./Banners.gen-Dg7e16Y8.js";
|
|
2
2
|
export { createBanner, deleteBanner, searchBanners, updateBanner };
|
package/dist/bindings.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { fo as binding, go as searchBindings, ho as deleteBinding, mo as createBinding, po as bulkCreateBinding } from "./index-
|
|
1
|
+
import { fo as binding, go as searchBindings, ho as deleteBinding, mo as createBinding, po as bulkCreateBinding } from "./index-C69DAvHe.js";
|
|
2
2
|
export { binding, bulkCreateBinding, createBinding, deleteBinding, searchBindings };
|
package/dist/blueprint-tags.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Ja as internalBlueprintTags, Ya as listBlueprintTags } from "./index-
|
|
1
|
+
import { Ja as internalBlueprintTags, Ya as listBlueprintTags } from "./index-C69DAvHe.js";
|
|
2
2
|
export { internalBlueprintTags, listBlueprintTags };
|
package/dist/blueprints.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { $a as createFlowBlueprint, Qa as blueprintSource, Xa as blueprint, Za as blueprintGraph, ao as internalBlueprint, co as searchInternalBlueprints, do as useBlueprintTemplate, eo as createInternalBlueprints, io as flowBlueprintById, lo as updateFlowBlueprint, no as deleteInternalBlueprints, oo as internalBlueprintFlow, ro as flowBlueprint, so as searchBlueprints, to as deleteFlowBlueprints, uo as updateInternalBlueprints } from "./index-
|
|
1
|
+
import { $a as createFlowBlueprint, Qa as blueprintSource, Xa as blueprint, Za as blueprintGraph, ao as internalBlueprint, co as searchInternalBlueprints, do as useBlueprintTemplate, eo as createInternalBlueprints, io as flowBlueprintById, lo as updateFlowBlueprint, no as deleteInternalBlueprints, oo as internalBlueprintFlow, ro as flowBlueprint, so as searchBlueprints, to as deleteFlowBlueprints, uo as updateInternalBlueprints } from "./index-C69DAvHe.js";
|
|
2
2
|
export { blueprint, blueprintGraph, blueprintSource, createFlowBlueprint, createInternalBlueprints, deleteFlowBlueprints, deleteInternalBlueprints, flowBlueprint, flowBlueprintById, internalBlueprint, internalBlueprintFlow, searchBlueprints, searchInternalBlueprints, updateFlowBlueprint, updateInternalBlueprints, useBlueprintTemplate };
|
package/dist/client.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { iN as Config, nN as Client, rN as ClientOptions, wr as ClientOptions$1 } from "./types.gen-
|
|
1
|
+
import { iN as Config, nN as Client, rN as ClientOptions, wr as ClientOptions$1 } from "./types.gen-sYIoYTZ-.js";
|
|
2
2
|
|
|
3
3
|
//#region src/openapi/client.gen.d.ts
|
|
4
4
|
/**
|
package/dist/cluster.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { n as exitMaintenance, t as enterMaintenance } from "./Cluster.gen-
|
|
1
|
+
import { n as exitMaintenance, t as enterMaintenance } from "./Cluster.gen-DPXPySFs.js";
|
|
2
2
|
export { enterMaintenance, exitMaintenance };
|
package/dist/dashboards.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Ba as deleteDashboard, Ga as updateDashboard, Ha as exportDashboardChartDataToCSV, Ia as createDashboard, Ka as validateChart, La as dashboard, Ra as dashboardChartData, Ua as previewChart, Va as exportChartToCsv, Wa as searchDashboards, qa as validateDashboard, za as defaultDashboards_1 } from "./index-
|
|
1
|
+
import { Ba as deleteDashboard, Ga as updateDashboard, Ha as exportDashboardChartDataToCSV, Ia as createDashboard, Ka as validateChart, La as dashboard, Ra as dashboardChartData, Ua as previewChart, Va as exportChartToCsv, Wa as searchDashboards, qa as validateDashboard, za as defaultDashboards_1 } from "./index-C69DAvHe.js";
|
|
2
2
|
export { createDashboard, dashboard, dashboardChartData, defaultDashboards_1, deleteDashboard, exportChartToCsv, exportDashboardChartDataToCSV, previewChart, searchDashboards, updateDashboard, validateChart, validateDashboard };
|
package/dist/executions.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { $i as followExecution, Aa as unqueueExecutionsByIds, Ca as setLabelsOnTerminatedExecutionsByIds, Da as triggerExecutionByPostWebhookWithPath, Ea as triggerExecutionByGetWebhookWithPath, Fa as updateTaskRunState, Gi as downloadFileFromExecution, Hi as deleteExecution, Ji as executionFlowGraph, Ki as evalExpression, Ma as updateExecutionStatus, Na as updateExecutionsStatusByIds, Oa as triggerExecutionByPutWebhookWithPath, Pa as updateExecutionsStatusByQuery, Qi as followDependenciesExecutions, Sa as setLabelsOnTerminatedExecution, Ta as triggerExecutionByGetWebhook, Ui as deleteExecutionsByIds, Vi as createExecution, Wi as deleteExecutionsByQuery, Xi as flowFromExecution, Yi as fileMetadatasFromExecution, Zi as flowFromExecutionById, _a as resumeExecution, aa as killExecutionsByQuery, ba as searchExecutions, ca as pauseExecutionsByIds, da as replayExecutionWithinputs, ea as forceRunByIds, fa as replayExecutionsByIds, ga as restartExecutionsByQuery, ha as restartExecutionsByIds, ia as killExecutionsByIds, ja as unqueueExecutionsByQuery, ka as unqueueExecution, la as pauseExecutionsByQuery, ma as restartExecution, na as forceRunExecutionsByQuery, oa as latestExecutions, pa as replayExecutionsByQuery, qi as execution, ra as killExecution, sa as pauseExecution, ta as forceRunExecution, ua as replayExecution, va as resumeExecutionsByIds, wa as setLabelsOnTerminatedExecutionsByQuery, xa as searchExecutionsByFlowId, ya as resumeExecutionsByQuery } from "./index-
|
|
1
|
+
import { $i as followExecution, Aa as unqueueExecutionsByIds, Ca as setLabelsOnTerminatedExecutionsByIds, Da as triggerExecutionByPostWebhookWithPath, Ea as triggerExecutionByGetWebhookWithPath, Fa as updateTaskRunState, Gi as downloadFileFromExecution, Hi as deleteExecution, Ji as executionFlowGraph, Ki as evalExpression, Ma as updateExecutionStatus, Na as updateExecutionsStatusByIds, Oa as triggerExecutionByPutWebhookWithPath, Pa as updateExecutionsStatusByQuery, Qi as followDependenciesExecutions, Sa as setLabelsOnTerminatedExecution, Ta as triggerExecutionByGetWebhook, Ui as deleteExecutionsByIds, Vi as createExecution, Wi as deleteExecutionsByQuery, Xi as flowFromExecution, Yi as fileMetadatasFromExecution, Zi as flowFromExecutionById, _a as resumeExecution, aa as killExecutionsByQuery, ba as searchExecutions, ca as pauseExecutionsByIds, da as replayExecutionWithinputs, ea as forceRunByIds, fa as replayExecutionsByIds, ga as restartExecutionsByQuery, ha as restartExecutionsByIds, ia as killExecutionsByIds, ja as unqueueExecutionsByQuery, ka as unqueueExecution, la as pauseExecutionsByQuery, ma as restartExecution, na as forceRunExecutionsByQuery, oa as latestExecutions, pa as replayExecutionsByQuery, qi as execution, ra as killExecution, sa as pauseExecution, ta as forceRunExecution, ua as replayExecution, va as resumeExecutionsByIds, wa as setLabelsOnTerminatedExecutionsByQuery, xa as searchExecutionsByFlowId, ya as resumeExecutionsByQuery } from "./index-C69DAvHe.js";
|
|
2
2
|
export { createExecution, deleteExecution, deleteExecutionsByIds, deleteExecutionsByQuery, downloadFileFromExecution, evalExpression, execution, executionFlowGraph, fileMetadatasFromExecution, flowFromExecution, flowFromExecutionById, followDependenciesExecutions, followExecution, forceRunByIds, forceRunExecution, forceRunExecutionsByQuery, killExecution, killExecutionsByIds, killExecutionsByQuery, latestExecutions, pauseExecution, pauseExecutionsByIds, pauseExecutionsByQuery, replayExecution, replayExecutionWithinputs, replayExecutionsByIds, replayExecutionsByQuery, restartExecution, restartExecutionsByIds, restartExecutionsByQuery, resumeExecution, resumeExecutionsByIds, resumeExecutionsByQuery, searchExecutions, searchExecutionsByFlowId, setLabelsOnTerminatedExecution, setLabelsOnTerminatedExecutionsByIds, setLabelsOnTerminatedExecutionsByQuery, triggerExecutionByGetWebhook, triggerExecutionByGetWebhookWithPath, triggerExecutionByPostWebhookWithPath, triggerExecutionByPutWebhookWithPath, unqueueExecution, unqueueExecutionsByIds, unqueueExecutionsByQuery, updateExecutionStatus, updateExecutionsStatusByIds, updateExecutionsStatusByQuery, updateTaskRunState };
|
package/dist/files.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Bi as searchNamespaceFiles, Fi as fileContent, Ii as fileMetadatas, Li as fileRevisions, Mi as createNamespaceFile, Ni as deleteFileDirectory, Pi as exportNamespaceFiles, Ri as listNamespaceDirectoryFiles, ji as createNamespaceDirectory, zi as moveFileDirectory } from "./index-
|
|
1
|
+
import { Bi as searchNamespaceFiles, Fi as fileContent, Ii as fileMetadatas, Li as fileRevisions, Mi as createNamespaceFile, Ni as deleteFileDirectory, Pi as exportNamespaceFiles, Ri as listNamespaceDirectoryFiles, ji as createNamespaceDirectory, zi as moveFileDirectory } from "./index-C69DAvHe.js";
|
|
2
2
|
export { createNamespaceDirectory, createNamespaceFile, deleteFileDirectory, exportNamespaceFiles, fileContent, fileMetadatas, fileRevisions, listNamespaceDirectoryFiles, moveFileDirectory, searchNamespaceFiles };
|
package/dist/flows.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { $r as createFlow, Ai as validateTrigger, Ci as searchFlowsBySourceCode, Di as updateFlowsInNamespace, Ei as updateFlow, Oi as validateFlows, Qr as bulkUpdateFlows, Si as searchFlows, Ti as updateConcurrencyLimit, _i as listDeprecated, ai as disableFlowsByQuery, bi as listFlowsByNamespace, ci as exportFlowsByIds, di as flow, ei as deleteFlow, fi as flowDependencies, gi as importFlows, hi as generateFlowGraphFromSource, ii as disableFlowsByIds, ki as validateTask, li as exportFlowsByQuery, mi as generateFlowGraph, ni as deleteFlowsByQuery, oi as enableFlowsByIds, pi as flowDependenciesFromNamespace, ri as deleteRevisions, si as enableFlowsByQuery, ti as deleteFlowsByIds, ui as expressions, vi as listDistinctNamespaces, wi as taskFromFlow, xi as searchConcurrencyLimits, yi as listFlowRevisions } from "./index-
|
|
1
|
+
import { $r as createFlow, Ai as validateTrigger, Ci as searchFlowsBySourceCode, Di as updateFlowsInNamespace, Ei as updateFlow, Oi as validateFlows, Qr as bulkUpdateFlows, Si as searchFlows, Ti as updateConcurrencyLimit, _i as listDeprecated, ai as disableFlowsByQuery, bi as listFlowsByNamespace, ci as exportFlowsByIds, di as flow, ei as deleteFlow, fi as flowDependencies, gi as importFlows, hi as generateFlowGraphFromSource, ii as disableFlowsByIds, ki as validateTask, li as exportFlowsByQuery, mi as generateFlowGraph, ni as deleteFlowsByQuery, oi as enableFlowsByIds, pi as flowDependenciesFromNamespace, ri as deleteRevisions, si as enableFlowsByQuery, ti as deleteFlowsByIds, ui as expressions, vi as listDistinctNamespaces, wi as taskFromFlow, xi as searchConcurrencyLimits, yi as listFlowRevisions } from "./index-C69DAvHe.js";
|
|
2
2
|
export { bulkUpdateFlows, createFlow, deleteFlow, deleteFlowsByIds, deleteFlowsByQuery, deleteRevisions, disableFlowsByIds, disableFlowsByQuery, enableFlowsByIds, enableFlowsByQuery, exportFlowsByIds, exportFlowsByQuery, expressions, flow, flowDependencies, flowDependenciesFromNamespace, generateFlowGraph, generateFlowGraphFromSource, importFlows, listDeprecated, listDistinctNamespaces, listFlowRevisions, listFlowsByNamespace, searchConcurrencyLimits, searchFlows, searchFlowsBySourceCode, taskFromFlow, updateConcurrencyLimit, updateFlow, updateFlowsInNamespace, validateFlows, validateTask, validateTrigger };
|
package/dist/groups.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Gr as deleteUserFromGroup, Hr as autocompleteGroups, Jr as searchGroupMembers, Kr as group, Ur as createGroup, Vr as addUserToGroup, Wr as deleteGroup, Xr as setUserMembershipForGroup, Yr as searchGroups, Zr as updateGroup, qr as listGroupIds } from "./index-
|
|
1
|
+
import { Gr as deleteUserFromGroup, Hr as autocompleteGroups, Jr as searchGroupMembers, Kr as group, Ur as createGroup, Vr as addUserToGroup, Wr as deleteGroup, Xr as setUserMembershipForGroup, Yr as searchGroups, Zr as updateGroup, qr as listGroupIds } from "./index-C69DAvHe.js";
|
|
2
2
|
export { addUserToGroup, autocompleteGroups, createGroup, deleteGroup, deleteUserFromGroup, group, listGroupIds, searchGroupMembers, searchGroups, setUserMembershipForGroup, updateGroup };
|