windmill-cli 1.583.1 → 1.583.3
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 +10 -2
- package/esm/src/commands/app/apps.js +3 -1
- package/esm/src/main.js +1 -1
- package/package.json +1 -1
- package/types/gen/services.gen.d.ts +6 -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/commands/app/apps.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
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"apps.d.ts","sourceRoot":"","sources":["../../../../src/src/commands/app/apps.ts"],"names":[],"mappings":"AAGA,OAAO,EAEL,OAAO,EAMR,MAAM,kBAAkB,CAAC;AAE1B,OAAO,EAAe,MAAM,EAAE,MAAM,2BAA2B,CAAC;AAKhE,MAAM,WAAW,OAAO;IACtB,KAAK,EAAE,GAAG,CAAC;IACX,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;CAChB;AAID,wBAAsB,OAAO,CAC3B,SAAS,EAAE,MAAM,EACjB,UAAU,EAAE,MAAM,EAClB,SAAS,EAAE,MAAM,EACjB,OAAO,CAAC,EAAE,MAAM,GACf,OAAO,CAAC,IAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"apps.d.ts","sourceRoot":"","sources":["../../../../src/src/commands/app/apps.ts"],"names":[],"mappings":"AAGA,OAAO,EAEL,OAAO,EAMR,MAAM,kBAAkB,CAAC;AAE1B,OAAO,EAAe,MAAM,EAAE,MAAM,2BAA2B,CAAC;AAKhE,MAAM,WAAW,OAAO;IACtB,KAAK,EAAE,GAAG,CAAC;IACX,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;CAChB;AAID,wBAAsB,OAAO,CAC3B,SAAS,EAAE,MAAM,EACjB,UAAU,EAAE,MAAM,EAClB,SAAS,EAAE,MAAM,EACjB,OAAO,CAAC,EAAE,MAAM,GACf,OAAO,CAAC,IAAI,CAAC,CA8Ef;AAqDD,QAAA,MAAM,OAAO;;;;;;oBAKS,CAAC;AAEvB,eAAe,OAAO,CAAC"}
|
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.583.
|
|
25
|
+
export declare const VERSION = "1.583.3";
|
|
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;
|
|
@@ -4360,6 +4360,12 @@ export type ListScriptsData = {
|
|
|
4360
4360
|
*
|
|
4361
4361
|
*/
|
|
4362
4362
|
withDeploymentMsg?: boolean;
|
|
4363
|
+
/**
|
|
4364
|
+
* (default false)
|
|
4365
|
+
* If true, the description field will be omitted from the response.
|
|
4366
|
+
*
|
|
4367
|
+
*/
|
|
4368
|
+
withoutDescription?: boolean;
|
|
4363
4369
|
workspace: string;
|
|
4364
4370
|
};
|
|
4365
4371
|
export type ListScriptsResponse = (Array<Script>);
|
|
@@ -5176,6 +5182,12 @@ export type ListFlowsData = {
|
|
|
5176
5182
|
*
|
|
5177
5183
|
*/
|
|
5178
5184
|
withDeploymentMsg?: boolean;
|
|
5185
|
+
/**
|
|
5186
|
+
* (default false)
|
|
5187
|
+
* If true, the description field will be omitted from the response.
|
|
5188
|
+
*
|
|
5189
|
+
*/
|
|
5190
|
+
withoutDescription?: boolean;
|
|
5179
5191
|
workspace: string;
|
|
5180
5192
|
};
|
|
5181
5193
|
export type ListFlowsResponse = (Array<(Flow & {
|