windmill-client 1.615.0 → 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.
@@ -39,7 +39,7 @@ exports.OpenAPI = {
39
39
  PASSWORD: undefined,
40
40
  TOKEN: getEnv("WM_TOKEN"),
41
41
  USERNAME: undefined,
42
- VERSION: '1.615.0',
42
+ VERSION: '1.615.2',
43
43
  WITH_CREDENTIALS: true,
44
44
  interceptors: {
45
45
  request: new Interceptors(),
@@ -1287,8 +1287,8 @@ export declare class SettingService {
1287
1287
  */
1288
1288
  static listGlobalSettings(): CancelablePromise<ListGlobalSettingsResponse>;
1289
1289
  /**
1290
- * get minimum worker version required to stay alive
1291
- * @returns string minimum keep-alive version
1290
+ * get minimum worker versions required to stay alive
1291
+ * @returns unknown minimum keep-alive versions for workers and agents
1292
1292
  * @throws ApiError
1293
1293
  */
1294
1294
  static getMinKeepAliveVersion(): CancelablePromise<GetMinKeepAliveVersionResponse>;
@@ -2583,8 +2583,8 @@ class SettingService {
2583
2583
  });
2584
2584
  }
2585
2585
  /**
2586
- * get minimum worker version required to stay alive
2587
- * @returns string minimum keep-alive version
2586
+ * get minimum worker versions required to stay alive
2587
+ * @returns unknown minimum keep-alive versions for workers and agents
2588
2588
  * @throws ApiError
2589
2589
  */
2590
2590
  static getMinKeepAliveVersion() {
@@ -4593,7 +4593,16 @@ export type TestMetadataData = {
4593
4593
  };
4594
4594
  export type TestMetadataResponse = string;
4595
4595
  export type ListGlobalSettingsResponse = Array<GlobalSetting>;
4596
- export type GetMinKeepAliveVersionResponse = string;
4596
+ export type GetMinKeepAliveVersionResponse = {
4597
+ /**
4598
+ * minimum version for normal workers
4599
+ */
4600
+ worker: string;
4601
+ /**
4602
+ * minimum version for agent workers
4603
+ */
4604
+ agent: string;
4605
+ };
4597
4606
  export type GetJwksResponse = JwksResponse;
4598
4607
  export type TestSecretBackendData = {
4599
4608
  /**
@@ -12695,9 +12704,18 @@ export type $OpenApiTs = {
12695
12704
  get: {
12696
12705
  res: {
12697
12706
  /**
12698
- * minimum keep-alive version
12707
+ * minimum keep-alive versions for workers and agents
12699
12708
  */
12700
- 200: string;
12709
+ 200: {
12710
+ /**
12711
+ * minimum version for normal workers
12712
+ */
12713
+ worker: string;
12714
+ /**
12715
+ * minimum version for agent workers
12716
+ */
12717
+ agent: string;
12718
+ };
12701
12719
  };
12702
12720
  };
12703
12721
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "windmill-client",
3
3
  "description": "Windmill SDK client for browsers and Node.js",
4
- "version": "1.615.0",
4
+ "version": "1.615.2",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "devDependencies": {