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.
- package/dist/core/OpenAPI.js +1 -1
- package/dist/services.gen.d.ts +1 -0
- package/dist/services.gen.js +2 -0
- package/dist/types.gen.d.ts +8 -0
- package/package.json +1 -1
package/dist/core/OpenAPI.js
CHANGED
package/dist/services.gen.d.ts
CHANGED
|
@@ -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
|
package/dist/services.gen.js
CHANGED
|
@@ -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
|
});
|
package/dist/types.gen.d.ts
CHANGED
|
@@ -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)
|