windmill-client 1.575.0 → 1.575.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.
@@ -39,7 +39,7 @@ exports.OpenAPI = {
39
39
  PASSWORD: undefined,
40
40
  TOKEN: getEnv("WM_TOKEN"),
41
41
  USERNAME: undefined,
42
- VERSION: '1.575.0',
42
+ VERSION: '1.575.2',
43
43
  WITH_CREDENTIALS: true,
44
44
  interceptors: {
45
45
  request: new Interceptors(),
@@ -3142,6 +3142,7 @@ export declare class JobService {
3142
3142
  * @param data.result filter on jobs containing those result as a json subset (@> in postgres)
3143
3143
  * @param data.allowWildcards allow wildcards (*) in the filter of label, tag, worker
3144
3144
  * @param data.perPage number of items to return for a given page (default 30, max 100)
3145
+ * @param data.triggerKind trigger kind (schedule, http, websocket...)
3145
3146
  * @param data.isSkipped is the job skipped
3146
3147
  * @param data.isFlowStep is the job a flow step
3147
3148
  * @param data.hasNullParent has null parent
@@ -3538,6 +3539,7 @@ export declare class JobService {
3538
3539
  * @param data.allowWildcards allow wildcards (*) in the filter of label, tag, worker
3539
3540
  * @param data.page which page to return (start at 1, default 1)
3540
3541
  * @param data.perPage number of items to return for a given page (default 30, max 100)
3542
+ * @param data.triggerKind trigger kind (schedule, http, websocket...)
3541
3543
  * @param data.isSkipped is the job skipped
3542
3544
  * @param data.isFlowStep is the job a flow step
3543
3545
  * @param data.hasNullParent has null parent
@@ -5528,6 +5530,7 @@ export declare class ConcurrencyGroupsService {
5528
5530
  * @param data.allowWildcards allow wildcards (*) in the filter of label, tag, worker
5529
5531
  * @param data.page which page to return (start at 1, default 1)
5530
5532
  * @param data.perPage number of items to return for a given page (default 30, max 100)
5533
+ * @param data.triggerKind trigger kind (schedule, http, websocket...)
5531
5534
  * @param data.isSkipped is the job skipped
5532
5535
  * @param data.isFlowStep is the job a flow step
5533
5536
  * @param data.hasNullParent has null parent
@@ -6284,6 +6284,7 @@ class JobService {
6284
6284
  * @param data.result filter on jobs containing those result as a json subset (@> in postgres)
6285
6285
  * @param data.allowWildcards allow wildcards (*) in the filter of label, tag, worker
6286
6286
  * @param data.perPage number of items to return for a given page (default 30, max 100)
6287
+ * @param data.triggerKind trigger kind (schedule, http, websocket...)
6287
6288
  * @param data.isSkipped is the job skipped
6288
6289
  * @param data.isFlowStep is the job a flow step
6289
6290
  * @param data.hasNullParent has null parent
@@ -6326,6 +6327,7 @@ class JobService {
6326
6327
  result: data.result,
6327
6328
  allow_wildcards: data.allowWildcards,
6328
6329
  per_page: data.perPage,
6330
+ trigger_kind: data.triggerKind,
6329
6331
  is_skipped: data.isSkipped,
6330
6332
  is_flow_step: data.isFlowStep,
6331
6333
  has_null_parent: data.hasNullParent,
@@ -7114,6 +7116,7 @@ class JobService {
7114
7116
  * @param data.allowWildcards allow wildcards (*) in the filter of label, tag, worker
7115
7117
  * @param data.page which page to return (start at 1, default 1)
7116
7118
  * @param data.perPage number of items to return for a given page (default 30, max 100)
7119
+ * @param data.triggerKind trigger kind (schedule, http, websocket...)
7117
7120
  * @param data.isSkipped is the job skipped
7118
7121
  * @param data.isFlowStep is the job a flow step
7119
7122
  * @param data.hasNullParent has null parent
@@ -7155,6 +7158,7 @@ class JobService {
7155
7158
  allow_wildcards: data.allowWildcards,
7156
7159
  page: data.page,
7157
7160
  per_page: data.perPage,
7161
+ trigger_kind: data.triggerKind,
7158
7162
  is_skipped: data.isSkipped,
7159
7163
  is_flow_step: data.isFlowStep,
7160
7164
  has_null_parent: data.hasNullParent,
@@ -11219,6 +11223,7 @@ class ConcurrencyGroupsService {
11219
11223
  * @param data.allowWildcards allow wildcards (*) in the filter of label, tag, worker
11220
11224
  * @param data.page which page to return (start at 1, default 1)
11221
11225
  * @param data.perPage number of items to return for a given page (default 30, max 100)
11226
+ * @param data.triggerKind trigger kind (schedule, http, websocket...)
11222
11227
  * @param data.isSkipped is the job skipped
11223
11228
  * @param data.isFlowStep is the job a flow step
11224
11229
  * @param data.hasNullParent has null parent
@@ -11260,6 +11265,7 @@ class ConcurrencyGroupsService {
11260
11265
  allow_wildcards: data.allowWildcards,
11261
11266
  page: data.page,
11262
11267
  per_page: data.perPage,
11268
+ trigger_kind: data.triggerKind,
11263
11269
  is_skipped: data.isSkipped,
11264
11270
  is_flow_step: data.isFlowStep,
11265
11271
  has_null_parent: data.hasNullParent,
@@ -2321,6 +2321,10 @@ export type ParameterPage = number;
2321
2321
  * number of items to return for a given page (default 30, max 100)
2322
2322
  */
2323
2323
  export type ParameterPerPage = number;
2324
+ /**
2325
+ * trigger kind (schedule, http, websocket...)
2326
+ */
2327
+ export type ParameterJobTriggerKind = 'webhook' | 'default_email' | 'email' | 'schedule' | 'http' | 'websocket' | 'postgres' | 'kafka' | 'nats' | 'mqtt' | 'sqs' | 'gcp' | 'poll' | 'cli';
2324
2328
  /**
2325
2329
  * order by desc order (default true)
2326
2330
  */
@@ -6206,6 +6210,10 @@ export type ListJobsData = {
6206
6210
  * filter on jobs with a given tag/worker group
6207
6211
  */
6208
6212
  tag?: string;
6213
+ /**
6214
+ * trigger kind (schedule, http, websocket...)
6215
+ */
6216
+ triggerKind?: 'webhook' | 'default_email' | 'email' | 'schedule' | 'http' | 'websocket' | 'postgres' | 'kafka' | 'nats' | 'mqtt' | 'sqs' | 'gcp' | 'poll' | 'cli';
6209
6217
  /**
6210
6218
  * worker this job was ran on
6211
6219
  */
@@ -6623,6 +6631,10 @@ export type ListExtendedJobsData = {
6623
6631
  * filter on jobs with a given tag/worker group
6624
6632
  */
6625
6633
  tag?: string;
6634
+ /**
6635
+ * trigger kind (schedule, http, websocket...)
6636
+ */
6637
+ triggerKind?: 'webhook' | 'default_email' | 'email' | 'schedule' | 'http' | 'websocket' | 'postgres' | 'kafka' | 'nats' | 'mqtt' | 'sqs' | 'gcp' | 'poll' | 'cli';
6626
6638
  workspace: string;
6627
6639
  };
6628
6640
  export type ListExtendedJobsResponse = ExtendedJobs;
@@ -15052,6 +15064,10 @@ export type $OpenApiTs = {
15052
15064
  * filter on jobs with a given tag/worker group
15053
15065
  */
15054
15066
  tag?: string;
15067
+ /**
15068
+ * trigger kind (schedule, http, websocket...)
15069
+ */
15070
+ triggerKind?: 'webhook' | 'default_email' | 'email' | 'schedule' | 'http' | 'websocket' | 'postgres' | 'kafka' | 'nats' | 'mqtt' | 'sqs' | 'gcp' | 'poll' | 'cli';
15055
15071
  /**
15056
15072
  * worker this job was ran on
15057
15073
  */
@@ -15769,6 +15785,10 @@ export type $OpenApiTs = {
15769
15785
  * filter on jobs with a given tag/worker group
15770
15786
  */
15771
15787
  tag?: string;
15788
+ /**
15789
+ * trigger kind (schedule, http, websocket...)
15790
+ */
15791
+ triggerKind?: 'webhook' | 'default_email' | 'email' | 'schedule' | 'http' | 'websocket' | 'postgres' | 'kafka' | 'nats' | 'mqtt' | 'sqs' | 'gcp' | 'poll' | 'cli';
15772
15792
  workspace: string;
15773
15793
  };
15774
15794
  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.575.0",
4
+ "version": "1.575.2",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "devDependencies": {