windmill-cli 1.575.0 → 1.575.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/gen/core/OpenAPI.js +1 -1
- package/esm/gen/services.gen.js +4 -0
- package/esm/src/main.js +1 -1
- package/package.json +1 -1
- package/types/gen/services.gen.d.ts +2 -0
- package/types/gen/services.gen.d.ts.map +1 -1
- package/types/gen/types.gen.d.ts +12 -0
- package/types/gen/types.gen.d.ts.map +1 -1
- package/types/src/main.d.ts +1 -1
- package/types/windmill-utils-internal/src/gen/types.gen.d.ts +12 -0
- package/types/windmill-utils-internal/src/gen/types.gen.d.ts.map +1 -1
package/types/src/main.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ import { pull as hubPull } from "./commands/hub/hub.js";
|
|
|
22
22
|
import { pull, push } from "./commands/sync/sync.js";
|
|
23
23
|
import { add as workspaceAdd } from "./commands/workspace/workspace.js";
|
|
24
24
|
export { flow, app, script, workspace, resource, resourceType, user, variable, hub, folder, schedule, trigger, sync, gitsyncSettings, instance, dev, hubPull, pull, push, workspaceAdd, };
|
|
25
|
-
export declare const VERSION = "1.575.
|
|
25
|
+
export declare const VERSION = "1.575.1";
|
|
26
26
|
export declare const WM_FORK_PREFIX = "wm-fork";
|
|
27
27
|
declare const command: Command<{
|
|
28
28
|
workspace?: (import("../deps/jsr.io/@windmill-labs/cliffy-command/1.0.0-rc.5/mod.js").StringType & string) | undefined;
|
|
@@ -2348,6 +2348,10 @@ export type ParameterPage = number;
|
|
|
2348
2348
|
* number of items to return for a given page (default 30, max 100)
|
|
2349
2349
|
*/
|
|
2350
2350
|
export type ParameterPerPage = number;
|
|
2351
|
+
/**
|
|
2352
|
+
* trigger kind (schedule, http, websocket...)
|
|
2353
|
+
*/
|
|
2354
|
+
export type ParameterJobTriggerKind = 'webhook' | 'default_email' | 'email' | 'schedule' | 'http' | 'websocket' | 'postgres' | 'kafka' | 'nats' | 'mqtt' | 'sqs' | 'gcp' | 'poll' | 'cli';
|
|
2351
2355
|
/**
|
|
2352
2356
|
* order by desc order (default true)
|
|
2353
2357
|
*/
|
|
@@ -6315,6 +6319,10 @@ export type ListJobsData = {
|
|
|
6315
6319
|
* filter on jobs with a given tag/worker group
|
|
6316
6320
|
*/
|
|
6317
6321
|
tag?: string;
|
|
6322
|
+
/**
|
|
6323
|
+
* trigger kind (schedule, http, websocket...)
|
|
6324
|
+
*/
|
|
6325
|
+
triggerKind?: 'webhook' | 'default_email' | 'email' | 'schedule' | 'http' | 'websocket' | 'postgres' | 'kafka' | 'nats' | 'mqtt' | 'sqs' | 'gcp' | 'poll' | 'cli';
|
|
6318
6326
|
/**
|
|
6319
6327
|
* worker this job was ran on
|
|
6320
6328
|
*/
|
|
@@ -8493,6 +8501,10 @@ export type ListExtendedJobsData = {
|
|
|
8493
8501
|
* filter on jobs with a given tag/worker group
|
|
8494
8502
|
*/
|
|
8495
8503
|
tag?: string;
|
|
8504
|
+
/**
|
|
8505
|
+
* trigger kind (schedule, http, websocket...)
|
|
8506
|
+
*/
|
|
8507
|
+
triggerKind?: 'webhook' | 'default_email' | 'email' | 'schedule' | 'http' | 'websocket' | 'postgres' | 'kafka' | 'nats' | 'mqtt' | 'sqs' | 'gcp' | 'poll' | 'cli';
|
|
8496
8508
|
workspace: string;
|
|
8497
8509
|
};
|
|
8498
8510
|
export type ListExtendedJobsResponse = (ExtendedJobs);
|