windmill-cli 1.539.1 → 1.540.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.
@@ -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.539.1";
25
+ export declare const VERSION = "1.540.1";
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
  } & {
@@ -49,7 +49,7 @@ export type FlowModule = {
49
49
  };
50
50
  sleep?: InputTransform;
51
51
  cache_ttl?: number;
52
- timeout?: number;
52
+ timeout?: InputTransform;
53
53
  delete_after_use?: boolean;
54
54
  summary?: string;
55
55
  mock?: {
@@ -3256,6 +3256,16 @@ export type DeleteVariableData = {
3256
3256
  workspace: string;
3257
3257
  };
3258
3258
  export type DeleteVariableResponse = (string);
3259
+ export type DeleteVariablesBulkData = {
3260
+ /**
3261
+ * paths to delete
3262
+ */
3263
+ requestBody: {
3264
+ paths: Array<(string)>;
3265
+ };
3266
+ workspace: string;
3267
+ };
3268
+ export type DeleteVariablesBulkResponse = (Array<(string)>);
3259
3269
  export type UpdateVariableData = {
3260
3270
  /**
3261
3271
  * whether the variable is already encrypted (default false)
@@ -3545,6 +3555,16 @@ export type DeleteResourceData = {
3545
3555
  workspace: string;
3546
3556
  };
3547
3557
  export type DeleteResourceResponse = (string);
3558
+ export type DeleteResourcesBulkData = {
3559
+ /**
3560
+ * paths to delete
3561
+ */
3562
+ requestBody: {
3563
+ paths: Array<(string)>;
3564
+ };
3565
+ workspace: string;
3566
+ };
3567
+ export type DeleteResourcesBulkResponse = (Array<(string)>);
3548
3568
  export type UpdateResourceData = {
3549
3569
  path: string;
3550
3570
  /**
@@ -3986,6 +4006,16 @@ export type DeleteScriptByPathData = {
3986
4006
  workspace: string;
3987
4007
  };
3988
4008
  export type DeleteScriptByPathResponse = (string);
4009
+ export type DeleteScriptsBulkData = {
4010
+ /**
4011
+ * paths to delete
4012
+ */
4013
+ requestBody: {
4014
+ paths: Array<(string)>;
4015
+ };
4016
+ workspace: string;
4017
+ };
4018
+ export type DeleteScriptsBulkResponse = (Array<(string)>);
3989
4019
  export type GetScriptByPathData = {
3990
4020
  path: string;
3991
4021
  withStarredInfo?: boolean;
@@ -4367,6 +4397,7 @@ export type GetFlowLatestVersionData = {
4367
4397
  };
4368
4398
  export type GetFlowLatestVersionResponse = (FlowVersion);
4369
4399
  export type ListFlowPathsFromWorkspaceRunnableData = {
4400
+ matchPathStart?: boolean;
4370
4401
  path: string;
4371
4402
  runnableKind: 'script' | 'flow';
4372
4403
  workspace: string;