windmill-client 1.551.4 → 1.552.1

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.551.4',
42
+ VERSION: '1.552.1',
43
43
  WITH_CREDENTIALS: true,
44
44
  interceptors: {
45
45
  request: new Interceptors(),
@@ -4667,6 +4667,8 @@ export declare class ConfigService {
4667
4667
  * List autoscaling events
4668
4668
  * @param data The data for the request.
4669
4669
  * @param data.workerGroup
4670
+ * @param data.page which page to return (start at 1, default 1)
4671
+ * @param data.perPage number of items to return for a given page (default 30, max 100)
4670
4672
  * @returns AutoscalingEvent List of autoscaling events
4671
4673
  * @throws ApiError
4672
4674
  */
@@ -9466,6 +9466,8 @@ class ConfigService {
9466
9466
  * List autoscaling events
9467
9467
  * @param data The data for the request.
9468
9468
  * @param data.workerGroup
9469
+ * @param data.page which page to return (start at 1, default 1)
9470
+ * @param data.perPage number of items to return for a given page (default 30, max 100)
9469
9471
  * @returns AutoscalingEvent List of autoscaling events
9470
9472
  * @throws ApiError
9471
9473
  */
@@ -9475,6 +9477,10 @@ class ConfigService {
9475
9477
  url: '/configs/list_autoscaling_events/{worker_group}',
9476
9478
  path: {
9477
9479
  worker_group: data.workerGroup
9480
+ },
9481
+ query: {
9482
+ page: data.page,
9483
+ per_page: data.perPage
9478
9484
  }
9479
9485
  });
9480
9486
  }
@@ -7326,6 +7326,14 @@ export type DeleteConfigData = {
7326
7326
  export type DeleteConfigResponse = string;
7327
7327
  export type ListConfigsResponse = Array<Config>;
7328
7328
  export type ListAutoscalingEventsData = {
7329
+ /**
7330
+ * which page to return (start at 1, default 1)
7331
+ */
7332
+ page?: number;
7333
+ /**
7334
+ * number of items to return for a given page (default 30, max 100)
7335
+ */
7336
+ perPage?: number;
7329
7337
  workerGroup: string;
7330
7338
  };
7331
7339
  export type ListAutoscalingEventsResponse = Array<AutoscalingEvent>;
@@ -17111,6 +17119,14 @@ export type $OpenApiTs = {
17111
17119
  '/configs/list_autoscaling_events/{worker_group}': {
17112
17120
  get: {
17113
17121
  req: {
17122
+ /**
17123
+ * which page to return (start at 1, default 1)
17124
+ */
17125
+ page?: number;
17126
+ /**
17127
+ * number of items to return for a given page (default 30, max 100)
17128
+ */
17129
+ perPage?: number;
17114
17130
  workerGroup: string;
17115
17131
  };
17116
17132
  res: {
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.551.4",
4
+ "version": "1.552.1",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "devDependencies": {