windmill-client 1.476.0 → 1.477.0

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.476.0',
42
+ VERSION: '1.477.0',
43
43
  WITH_CREDENTIALS: true,
44
44
  interceptors: {
45
45
  request: new Interceptors(),
@@ -4180,6 +4180,7 @@ export declare class InputService {
4180
4180
  * @param data.runnableType
4181
4181
  * @param data.page which page to return (start at 1, default 1)
4182
4182
  * @param data.perPage number of items to return for a given page (default 30, max 100)
4183
+ * @param data.args filter on jobs containing those args as a json subset (@> in postgres)
4183
4184
  * @param data.includePreview
4184
4185
  * @returns Input Input history for completed jobs
4185
4186
  * @throws ApiError
@@ -8448,6 +8448,7 @@ class InputService {
8448
8448
  * @param data.runnableType
8449
8449
  * @param data.page which page to return (start at 1, default 1)
8450
8450
  * @param data.perPage number of items to return for a given page (default 30, max 100)
8451
+ * @param data.args filter on jobs containing those args as a json subset (@> in postgres)
8451
8452
  * @param data.includePreview
8452
8453
  * @returns Input Input history for completed jobs
8453
8454
  * @throws ApiError
@@ -8464,6 +8465,7 @@ class InputService {
8464
8465
  runnable_type: data.runnableType,
8465
8466
  page: data.page,
8466
8467
  per_page: data.perPage,
8468
+ args: data.args,
8467
8469
  include_preview: data.includePreview
8468
8470
  }
8469
8471
  });
@@ -5973,6 +5973,10 @@ export type UnstarData = {
5973
5973
  };
5974
5974
  export type UnstarResponse = unknown;
5975
5975
  export type GetInputHistoryData = {
5976
+ /**
5977
+ * filter on jobs containing those args as a json subset (@> in postgres)
5978
+ */
5979
+ args?: string;
5976
5980
  includePreview?: boolean;
5977
5981
  /**
5978
5982
  * which page to return (start at 1, default 1)
@@ -14415,6 +14419,10 @@ export type $OpenApiTs = {
14415
14419
  '/w/{workspace}/inputs/history': {
14416
14420
  get: {
14417
14421
  req: {
14422
+ /**
14423
+ * filter on jobs containing those args as a json subset (@> in postgres)
14424
+ */
14425
+ args?: string;
14418
14426
  includePreview?: boolean;
14419
14427
  /**
14420
14428
  * which page to return (start at 1, default 1)
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.476.0",
4
+ "version": "1.477.0",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "devDependencies": {