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.
- package/dist/core/OpenAPI.js +1 -1
- package/dist/services.gen.d.ts +2 -2
- package/dist/services.gen.js +2 -2
- package/dist/types.gen.d.ts +21 -3
- package/package.json +1 -1
package/dist/core/OpenAPI.js
CHANGED
package/dist/services.gen.d.ts
CHANGED
|
@@ -1287,8 +1287,8 @@ export declare class SettingService {
|
|
|
1287
1287
|
*/
|
|
1288
1288
|
static listGlobalSettings(): CancelablePromise<ListGlobalSettingsResponse>;
|
|
1289
1289
|
/**
|
|
1290
|
-
* get minimum worker
|
|
1291
|
-
* @returns
|
|
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>;
|
package/dist/services.gen.js
CHANGED
|
@@ -2583,8 +2583,8 @@ class SettingService {
|
|
|
2583
2583
|
});
|
|
2584
2584
|
}
|
|
2585
2585
|
/**
|
|
2586
|
-
* get minimum worker
|
|
2587
|
-
* @returns
|
|
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() {
|
package/dist/types.gen.d.ts
CHANGED
|
@@ -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 =
|
|
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
|
|
12707
|
+
* minimum keep-alive versions for workers and agents
|
|
12699
12708
|
*/
|
|
12700
|
-
200:
|
|
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
|
};
|