windmill-cli 1.520.0 → 1.522.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/esm/gen/core/OpenAPI.js +1 -1
- package/esm/gen/services.gen.js +6 -6
- package/esm/src/main.js +1 -1
- package/package.json +1 -1
- package/types/gen/services.gen.d.ts +5 -5
- package/types/gen/services.gen.d.ts.map +1 -1
- package/types/gen/types.gen.d.ts +9 -3
- 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 +9 -3
- 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.
|
|
25
|
+
export declare const VERSION = "1.522.0";
|
|
26
26
|
declare const command: Command<{
|
|
27
27
|
workspace?: (import("../deps/jsr.io/@windmill-labs/cliffy-command/1.0.0-rc.5/mod.js").StringType & string) | undefined;
|
|
28
28
|
} & {
|
|
@@ -1223,6 +1223,7 @@ export type GcpTriggerData = {
|
|
|
1223
1223
|
script_path: string;
|
|
1224
1224
|
is_flow: boolean;
|
|
1225
1225
|
enabled?: boolean;
|
|
1226
|
+
auto_acknowledge_msg?: boolean;
|
|
1226
1227
|
error_handler_path?: string;
|
|
1227
1228
|
error_handler_args?: ScriptArgs;
|
|
1228
1229
|
retry?: Retry;
|
|
@@ -6825,10 +6826,15 @@ export type ListWorkersData = {
|
|
|
6825
6826
|
pingSince?: number;
|
|
6826
6827
|
};
|
|
6827
6828
|
export type ListWorkersResponse = (Array<WorkerPing>);
|
|
6828
|
-
export type
|
|
6829
|
-
|
|
6829
|
+
export type ExistsWorkersWithTagsData = {
|
|
6830
|
+
/**
|
|
6831
|
+
* comma separated list of tags
|
|
6832
|
+
*/
|
|
6833
|
+
tags: string;
|
|
6830
6834
|
};
|
|
6831
|
-
export type
|
|
6835
|
+
export type ExistsWorkersWithTagsResponse = ({
|
|
6836
|
+
[key: string]: (boolean);
|
|
6837
|
+
});
|
|
6832
6838
|
export type GetQueueMetricsResponse = (Array<{
|
|
6833
6839
|
id: string;
|
|
6834
6840
|
values: Array<{
|