windmill-cli 1.615.1 → 1.615.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 +2 -2
- package/esm/src/main.js +1 -1
- package/package.json +1 -1
- package/types/gen/services.gen.d.ts +2 -2
- package/types/gen/types.gen.d.ts +10 -1
- package/types/gen/types.gen.d.ts.map +1 -1
- package/types/src/main.d.ts +1 -1
- package/types/windmill-utils-internal/src/gen/types.gen.d.ts +10 -1
- package/types/windmill-utils-internal/src/gen/types.gen.d.ts.map +1 -1
package/esm/gen/core/OpenAPI.js
CHANGED
package/esm/gen/services.gen.js
CHANGED
|
@@ -908,8 +908,8 @@ export const listGlobalSettings = () => {
|
|
|
908
908
|
});
|
|
909
909
|
};
|
|
910
910
|
/**
|
|
911
|
-
* get minimum worker
|
|
912
|
-
* @returns
|
|
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.
|
|
43
|
+
export const VERSION = "1.615.3";
|
|
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
|
@@ -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
|
|
465
|
-
* @returns
|
|
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>;
|
package/types/gen/types.gen.d.ts
CHANGED
|
@@ -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 = (
|
|
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
|
/**
|