windmill-client 1.475.1 → 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 +13 -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
|
@@ -518,11 +518,13 @@ export type HttpTrigger = TriggerExtraProperty & {
|
|
|
518
518
|
is_async: boolean;
|
|
519
519
|
requires_auth: boolean;
|
|
520
520
|
is_static_website: boolean;
|
|
521
|
+
workspaced_route?: boolean;
|
|
521
522
|
};
|
|
522
523
|
export type NewHttpTrigger = {
|
|
523
524
|
path: string;
|
|
524
525
|
script_path: string;
|
|
525
526
|
route_path: string;
|
|
527
|
+
workspaced_route?: boolean;
|
|
526
528
|
static_asset_config?: {
|
|
527
529
|
s3: string;
|
|
528
530
|
storage?: string;
|
|
@@ -538,6 +540,7 @@ export type EditHttpTrigger = {
|
|
|
538
540
|
path: string;
|
|
539
541
|
script_path: string;
|
|
540
542
|
route_path?: string;
|
|
543
|
+
workspaced_route?: boolean;
|
|
541
544
|
static_asset_config?: {
|
|
542
545
|
s3: string;
|
|
543
546
|
storage?: string;
|
|
@@ -5096,6 +5099,7 @@ export type ExistsRouteData = {
|
|
|
5096
5099
|
route_path: string;
|
|
5097
5100
|
http_method: 'get' | 'post' | 'put' | 'delete' | 'patch';
|
|
5098
5101
|
trigger_path?: string;
|
|
5102
|
+
workspaced_route?: boolean;
|
|
5099
5103
|
};
|
|
5100
5104
|
workspace: string;
|
|
5101
5105
|
};
|
|
@@ -5969,6 +5973,10 @@ export type UnstarData = {
|
|
|
5969
5973
|
};
|
|
5970
5974
|
export type UnstarResponse = unknown;
|
|
5971
5975
|
export type GetInputHistoryData = {
|
|
5976
|
+
/**
|
|
5977
|
+
* filter on jobs containing those args as a json subset (@> in postgres)
|
|
5978
|
+
*/
|
|
5979
|
+
args?: string;
|
|
5972
5980
|
includePreview?: boolean;
|
|
5973
5981
|
/**
|
|
5974
5982
|
* which page to return (start at 1, default 1)
|
|
@@ -12605,6 +12613,7 @@ export type $OpenApiTs = {
|
|
|
12605
12613
|
route_path: string;
|
|
12606
12614
|
http_method: 'get' | 'post' | 'put' | 'delete' | 'patch';
|
|
12607
12615
|
trigger_path?: string;
|
|
12616
|
+
workspaced_route?: boolean;
|
|
12608
12617
|
};
|
|
12609
12618
|
workspace: string;
|
|
12610
12619
|
};
|
|
@@ -14410,6 +14419,10 @@ export type $OpenApiTs = {
|
|
|
14410
14419
|
'/w/{workspace}/inputs/history': {
|
|
14411
14420
|
get: {
|
|
14412
14421
|
req: {
|
|
14422
|
+
/**
|
|
14423
|
+
* filter on jobs containing those args as a json subset (@> in postgres)
|
|
14424
|
+
*/
|
|
14425
|
+
args?: string;
|
|
14413
14426
|
includePreview?: boolean;
|
|
14414
14427
|
/**
|
|
14415
14428
|
* which page to return (start at 1, default 1)
|