windmill-client 1.378.0 → 1.379.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.378.0',
42
+ VERSION: '1.379.0',
43
43
  WITH_CREDENTIALS: true,
44
44
  interceptors: {
45
45
  request: new Interceptors(),
@@ -2228,6 +2228,7 @@ export declare class JobService {
2228
2228
  * @param data.createdOrStartedAfter filter on created_at for non non started job and started_at otherwise after (exclusive) timestamp
2229
2229
  * @param data.createdOrStartedAfterCompletedJobs filter on created_at for non non started job and started_at otherwise after (exclusive) timestamp but only for the completed jobs
2230
2230
  * @param data.jobKinds filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
2231
+ * @param data.suspended filter on suspended jobs
2231
2232
  * @param data.args filter on jobs containing those args as a json subset (@> in postgres)
2232
2233
  * @param data.tag filter on jobs with a given tag/worker group
2233
2234
  * @param data.result filter on jobs containing those result as a json subset (@> in postgres)
@@ -4424,6 +4424,7 @@ class JobService {
4424
4424
  * @param data.createdOrStartedAfter filter on created_at for non non started job and started_at otherwise after (exclusive) timestamp
4425
4425
  * @param data.createdOrStartedAfterCompletedJobs filter on created_at for non non started job and started_at otherwise after (exclusive) timestamp but only for the completed jobs
4426
4426
  * @param data.jobKinds filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
4427
+ * @param data.suspended filter on suspended jobs
4427
4428
  * @param data.args filter on jobs containing those args as a json subset (@> in postgres)
4428
4429
  * @param data.tag filter on jobs with a given tag/worker group
4429
4430
  * @param data.result filter on jobs containing those result as a json subset (@> in postgres)
@@ -4461,6 +4462,7 @@ class JobService {
4461
4462
  created_or_started_after: data.createdOrStartedAfter,
4462
4463
  created_or_started_after_completed_jobs: data.createdOrStartedAfterCompletedJobs,
4463
4464
  job_kinds: data.jobKinds,
4465
+ suspended: data.suspended,
4464
4466
  args: data.args,
4465
4467
  tag: data.tag,
4466
4468
  result: data.result,
@@ -3323,6 +3323,7 @@ export type GetQueueCountData = {
3323
3323
  };
3324
3324
  export type GetQueueCountResponse = {
3325
3325
  database_length: number;
3326
+ suspended?: number;
3326
3327
  };
3327
3328
  export type GetCompletedCountData = {
3328
3329
  workspace: string;
@@ -3616,6 +3617,10 @@ export type ListJobsData = {
3616
3617
  * filter on successful jobs
3617
3618
  */
3618
3619
  success?: boolean;
3620
+ /**
3621
+ * filter on suspended jobs
3622
+ */
3623
+ suspended?: boolean;
3619
3624
  /**
3620
3625
  * filter on jobs with a given tag/worker group
3621
3626
  */
@@ -8852,6 +8857,7 @@ export type $OpenApiTs = {
8852
8857
  */
8853
8858
  200: {
8854
8859
  database_length: number;
8860
+ suspended?: number;
8855
8861
  };
8856
8862
  };
8857
8863
  };
@@ -9186,6 +9192,10 @@ export type $OpenApiTs = {
9186
9192
  * filter on successful jobs
9187
9193
  */
9188
9194
  success?: boolean;
9195
+ /**
9196
+ * filter on suspended jobs
9197
+ */
9198
+ suspended?: boolean;
9189
9199
  /**
9190
9200
  * filter on jobs with a given tag/worker group
9191
9201
  */
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.378.0",
4
+ "version": "1.379.0",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "devDependencies": {