windmill-cli 1.615.1 → 1.615.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.
@@ -32,7 +32,7 @@ export const OpenAPI = {
32
32
  PASSWORD: undefined,
33
33
  TOKEN: getEnv("WM_TOKEN"),
34
34
  USERNAME: undefined,
35
- VERSION: '1.615.1',
35
+ VERSION: '1.615.2',
36
36
  WITH_CREDENTIALS: true,
37
37
  interceptors: {
38
38
  request: new Interceptors(),
@@ -908,8 +908,8 @@ export const listGlobalSettings = () => {
908
908
  });
909
909
  };
910
910
  /**
911
- * get minimum worker version required to stay alive
912
- * @returns string minimum keep-alive version
911
+ * get minimum worker versions required to stay alive
912
+ * @returns unknown minimum keep-alive versions for workers and agents
913
913
  * @throws ApiError
914
914
  */
915
915
  export const getMinKeepAliveVersion = () => {
package/esm/src/main.js CHANGED
@@ -40,7 +40,7 @@ export { flow, app, script, workspace, resource, resourceType, user, variable, h
40
40
  // console.error(JSON.stringify(event.error, null, 4));
41
41
  // }
42
42
  // });
43
- export const VERSION = "1.615.1";
43
+ export const VERSION = "1.615.2";
44
44
  // Re-exported from constants.ts to maintain backwards compatibility
45
45
  export { WM_FORK_PREFIX } from "./core/constants.js";
46
46
  const command = new Command()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "windmill-cli",
3
- "version": "1.615.1",
3
+ "version": "1.615.2",
4
4
  "description": "CLI for Windmill",
5
5
  "repository": {
6
6
  "type": "git",
@@ -461,8 +461,8 @@ export declare const testMetadata: (data: TestMetadataData) => CancelablePromise
461
461
  */
462
462
  export declare const listGlobalSettings: () => CancelablePromise<ListGlobalSettingsResponse>;
463
463
  /**
464
- * get minimum worker version required to stay alive
465
- * @returns string minimum keep-alive version
464
+ * get minimum worker versions required to stay alive
465
+ * @returns unknown minimum keep-alive versions for workers and agents
466
466
  * @throws ApiError
467
467
  */
468
468
  export declare const getMinKeepAliveVersion: () => CancelablePromise<GetMinKeepAliveVersionResponse>;
@@ -3885,7 +3885,16 @@ export type TestMetadataData = {
3885
3885
  };
3886
3886
  export type TestMetadataResponse = (string);
3887
3887
  export type ListGlobalSettingsResponse = (Array<GlobalSetting>);
3888
- export type GetMinKeepAliveVersionResponse = (string);
3888
+ export type GetMinKeepAliveVersionResponse = ({
3889
+ /**
3890
+ * minimum version for normal workers
3891
+ */
3892
+ worker: string;
3893
+ /**
3894
+ * minimum version for agent workers
3895
+ */
3896
+ agent: string;
3897
+ });
3889
3898
  export type GetJwksResponse = (JwksResponse);
3890
3899
  export type TestSecretBackendData = {
3891
3900
  /**