windmill-cli 1.606.1 → 1.607.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.
@@ -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.606.1";
25
+ export declare const VERSION = "1.607.0";
26
26
  export { WM_FORK_PREFIX } from "./core/constants.js";
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;
@@ -7792,6 +7792,10 @@ export type CreateJobSignatureData = {
7792
7792
  export type CreateJobSignatureResponse = (string);
7793
7793
  export type GetResumeUrlsData = {
7794
7794
  approver?: string;
7795
+ /**
7796
+ * If true, generate resume URLs for the parent flow instead of the specific step. This allows pre-approvals that can be consumed by any later suspend step in the same flow.
7797
+ */
7798
+ flowLevel?: boolean;
7795
7799
  id: string;
7796
7800
  resumeId: number;
7797
7801
  workspace: string;