windmill-cli 1.455.0 → 1.455.2
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 +1 -1
- package/esm/main.js +1 -1
- package/package.json +1 -1
- package/types/gen/services.gen.d.ts +1 -1
- package/types/main.d.ts +1 -1
package/esm/gen/core/OpenAPI.js
CHANGED
package/esm/gen/services.gen.js
CHANGED
|
@@ -3069,7 +3069,7 @@ export const deleteScriptByHash = (data) => {
|
|
|
3069
3069
|
});
|
|
3070
3070
|
};
|
|
3071
3071
|
/**
|
|
3072
|
-
* delete
|
|
3072
|
+
* delete script at a given path (require admin)
|
|
3073
3073
|
* @param data The data for the request.
|
|
3074
3074
|
* @param data.workspace
|
|
3075
3075
|
* @param data.path
|
package/esm/main.js
CHANGED
|
@@ -33,7 +33,7 @@ export { flow, app, script, workspace, resource, user, variable, hub, folder, sc
|
|
|
33
33
|
// console.error(JSON.stringify(event.error, null, 4));
|
|
34
34
|
// }
|
|
35
35
|
// });
|
|
36
|
-
export const VERSION = "1.455.
|
|
36
|
+
export const VERSION = "1.455.2";
|
|
37
37
|
const command = new Command()
|
|
38
38
|
.name("wmill")
|
|
39
39
|
.action(() => log.info(`Welcome to Windmill CLI ${VERSION}. Use -h for help.`))
|
package/package.json
CHANGED
|
@@ -1540,7 +1540,7 @@ export declare const archiveScriptByHash: (data: ArchiveScriptByHashData) => Can
|
|
|
1540
1540
|
*/
|
|
1541
1541
|
export declare const deleteScriptByHash: (data: DeleteScriptByHashData) => CancelablePromise<DeleteScriptByHashResponse>;
|
|
1542
1542
|
/**
|
|
1543
|
-
* delete
|
|
1543
|
+
* delete script at a given path (require admin)
|
|
1544
1544
|
* @param data The data for the request.
|
|
1545
1545
|
* @param data.workspace
|
|
1546
1546
|
* @param data.path
|
package/types/main.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ import { pull as hubPull } from "./hub.js";
|
|
|
19
19
|
import { pull, push } from "./sync.js";
|
|
20
20
|
import { add as workspaceAdd } from "./workspace.js";
|
|
21
21
|
export { flow, app, script, workspace, resource, user, variable, hub, folder, schedule, sync, instance, dev, hubPull, pull, push, workspaceAdd, };
|
|
22
|
-
export declare const VERSION = "1.455.
|
|
22
|
+
export declare const VERSION = "1.455.2";
|
|
23
23
|
declare const command: Command<{
|
|
24
24
|
workspace?: (import("./deps/jsr.io/@windmill-labs/cliffy-command/1.0.0-rc.5/mod.js").StringType & string) | undefined;
|
|
25
25
|
} & {
|