windmill-client 1.329.0 → 1.330.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/core/OpenAPI.js +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +0 -1
- package/dist/types.gen.d.ts +6 -6
- package/package.json +1 -1
- package/dist/schemas.gen.d.ts +0 -2773
- package/dist/schemas.gen.js +0 -2834
package/dist/core/OpenAPI.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
export { ApiError } from './core/ApiError';
|
|
2
2
|
export { CancelablePromise, CancelError } from './core/CancelablePromise';
|
|
3
3
|
export { OpenAPI, type OpenAPIConfig } from './core/OpenAPI';
|
|
4
|
-
export * from './schemas.gen';
|
|
5
4
|
export * from './services.gen';
|
|
6
5
|
export * from './types.gen';
|
|
7
6
|
export type { S3Object, DenoS3LightClientSettings } from "./s3Types";
|
package/dist/index.js
CHANGED
|
@@ -23,7 +23,6 @@ Object.defineProperty(exports, "CancelablePromise", { enumerable: true, get: fun
|
|
|
23
23
|
Object.defineProperty(exports, "CancelError", { enumerable: true, get: function () { return CancelablePromise_1.CancelError; } });
|
|
24
24
|
var OpenAPI_1 = require("./core/OpenAPI");
|
|
25
25
|
Object.defineProperty(exports, "OpenAPI", { enumerable: true, get: function () { return OpenAPI_1.OpenAPI; } });
|
|
26
|
-
__exportStar(require("./schemas.gen"), exports);
|
|
27
26
|
__exportStar(require("./services.gen"), exports);
|
|
28
27
|
__exportStar(require("./types.gen"), exports);
|
|
29
28
|
var client_1 = require("./client");
|
package/dist/types.gen.d.ts
CHANGED
|
@@ -23,7 +23,7 @@ export type Script = {
|
|
|
23
23
|
};
|
|
24
24
|
lock?: string;
|
|
25
25
|
lock_error_logs?: string;
|
|
26
|
-
language: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun';
|
|
26
|
+
language: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun' | 'php';
|
|
27
27
|
kind: 'script' | 'failure' | 'trigger' | 'command' | 'approval';
|
|
28
28
|
starred: boolean;
|
|
29
29
|
tag?: string;
|
|
@@ -54,7 +54,7 @@ export type NewScript = {
|
|
|
54
54
|
};
|
|
55
55
|
is_template?: boolean;
|
|
56
56
|
lock?: string;
|
|
57
|
-
language: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun';
|
|
57
|
+
language: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun' | 'php';
|
|
58
58
|
kind?: 'script' | 'failure' | 'trigger' | 'command' | 'approval';
|
|
59
59
|
tag?: string;
|
|
60
60
|
draft_only?: boolean;
|
|
@@ -137,7 +137,7 @@ export type QueuedJob = {
|
|
|
137
137
|
flow_status?: FlowStatus;
|
|
138
138
|
raw_flow?: FlowValue;
|
|
139
139
|
is_flow_step: boolean;
|
|
140
|
-
language?: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun';
|
|
140
|
+
language?: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun' | 'php';
|
|
141
141
|
email: string;
|
|
142
142
|
visible_to_owner: boolean;
|
|
143
143
|
mem_peak?: number;
|
|
@@ -174,7 +174,7 @@ export type CompletedJob = {
|
|
|
174
174
|
flow_status?: FlowStatus;
|
|
175
175
|
raw_flow?: FlowValue;
|
|
176
176
|
is_flow_step: boolean;
|
|
177
|
-
language?: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun';
|
|
177
|
+
language?: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun' | 'php';
|
|
178
178
|
is_skipped: boolean;
|
|
179
179
|
email: string;
|
|
180
180
|
visible_to_owner: boolean;
|
|
@@ -309,7 +309,7 @@ export type Preview = {
|
|
|
309
309
|
content?: string;
|
|
310
310
|
path?: string;
|
|
311
311
|
args: ScriptArgs;
|
|
312
|
-
language?: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun';
|
|
312
|
+
language?: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun' | 'php';
|
|
313
313
|
tag?: string;
|
|
314
314
|
kind?: 'code' | 'identity' | 'http';
|
|
315
315
|
dedicated_worker?: boolean;
|
|
@@ -709,7 +709,7 @@ export type MetricDataPoint = {
|
|
|
709
709
|
export type RawScriptForDependencies = {
|
|
710
710
|
raw_code: string;
|
|
711
711
|
path: string;
|
|
712
|
-
language: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun';
|
|
712
|
+
language: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun' | 'php';
|
|
713
713
|
};
|
|
714
714
|
export type ConcurrencyGroup = {
|
|
715
715
|
concurrency_id: string;
|