windmill-client 1.355.2 → 1.355.4

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.355.2',
42
+ VERSION: '1.355.4',
43
43
  WITH_CREDENTIALS: true,
44
44
  interceptors: {
45
45
  request: new Interceptors(),
@@ -2150,6 +2150,7 @@ export declare class JobService {
2150
2150
  * @param data.running filter on running jobs
2151
2151
  * @param data.scheduledForBeforeNow filter on jobs scheduled_for before now (hence waitinf for a worker)
2152
2152
  * @param data.createdOrStartedAfter filter on created_at for non non started job and started_at otherwise after (exclusive) timestamp
2153
+ * @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
2153
2154
  * @param data.jobKinds filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
2154
2155
  * @param data.args filter on jobs containing those args as a json subset (@> in postgres)
2155
2156
  * @param data.tag filter on jobs with a given tag/worker group
@@ -2437,6 +2438,7 @@ export declare class JobService {
2437
2438
  * @param data.running filter on running jobs
2438
2439
  * @param data.scheduledForBeforeNow filter on jobs scheduled_for before now (hence waitinf for a worker)
2439
2440
  * @param data.createdOrStartedAfter filter on created_at for non non started job and started_at otherwise after (exclusive) timestamp
2441
+ * @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
2440
2442
  * @param data.jobKinds filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
2441
2443
  * @param data.args filter on jobs containing those args as a json subset (@> in postgres)
2442
2444
  * @param data.tag filter on jobs with a given tag/worker group
@@ -3260,6 +3262,7 @@ export declare class ConcurrencyGroupsService {
3260
3262
  * @param data.running filter on running jobs
3261
3263
  * @param data.scheduledForBeforeNow filter on jobs scheduled_for before now (hence waitinf for a worker)
3262
3264
  * @param data.createdOrStartedAfter filter on created_at for non non started job and started_at otherwise after (exclusive) timestamp
3265
+ * @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
3263
3266
  * @param data.jobKinds filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
3264
3267
  * @param data.args filter on jobs containing those args as a json subset (@> in postgres)
3265
3268
  * @param data.tag filter on jobs with a given tag/worker group
@@ -4275,6 +4275,7 @@ class JobService {
4275
4275
  * @param data.running filter on running jobs
4276
4276
  * @param data.scheduledForBeforeNow filter on jobs scheduled_for before now (hence waitinf for a worker)
4277
4277
  * @param data.createdOrStartedAfter filter on created_at for non non started job and started_at otherwise after (exclusive) timestamp
4278
+ * @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
4278
4279
  * @param data.jobKinds filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
4279
4280
  * @param data.args filter on jobs containing those args as a json subset (@> in postgres)
4280
4281
  * @param data.tag filter on jobs with a given tag/worker group
@@ -4311,6 +4312,7 @@ class JobService {
4311
4312
  running: data.running,
4312
4313
  scheduled_for_before_now: data.scheduledForBeforeNow,
4313
4314
  created_or_started_after: data.createdOrStartedAfter,
4315
+ created_or_started_after_completed_jobs: data.createdOrStartedAfterCompletedJobs,
4314
4316
  job_kinds: data.jobKinds,
4315
4317
  args: data.args,
4316
4318
  tag: data.tag,
@@ -4875,6 +4877,7 @@ class JobService {
4875
4877
  * @param data.running filter on running jobs
4876
4878
  * @param data.scheduledForBeforeNow filter on jobs scheduled_for before now (hence waitinf for a worker)
4877
4879
  * @param data.createdOrStartedAfter filter on created_at for non non started job and started_at otherwise after (exclusive) timestamp
4880
+ * @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
4878
4881
  * @param data.jobKinds filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
4879
4882
  * @param data.args filter on jobs containing those args as a json subset (@> in postgres)
4880
4883
  * @param data.tag filter on jobs with a given tag/worker group
@@ -4913,6 +4916,7 @@ class JobService {
4913
4916
  running: data.running,
4914
4917
  scheduled_for_before_now: data.scheduledForBeforeNow,
4915
4918
  created_or_started_after: data.createdOrStartedAfter,
4919
+ created_or_started_after_completed_jobs: data.createdOrStartedAfterCompletedJobs,
4916
4920
  job_kinds: data.jobKinds,
4917
4921
  args: data.args,
4918
4922
  tag: data.tag,
@@ -6580,6 +6584,7 @@ class ConcurrencyGroupsService {
6580
6584
  * @param data.running filter on running jobs
6581
6585
  * @param data.scheduledForBeforeNow filter on jobs scheduled_for before now (hence waitinf for a worker)
6582
6586
  * @param data.createdOrStartedAfter filter on created_at for non non started job and started_at otherwise after (exclusive) timestamp
6587
+ * @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
6583
6588
  * @param data.jobKinds filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
6584
6589
  * @param data.args filter on jobs containing those args as a json subset (@> in postgres)
6585
6590
  * @param data.tag filter on jobs with a given tag/worker group
@@ -6618,6 +6623,7 @@ class ConcurrencyGroupsService {
6618
6623
  running: data.running,
6619
6624
  scheduled_for_before_now: data.scheduledForBeforeNow,
6620
6625
  created_or_started_after: data.createdOrStartedAfter,
6626
+ created_or_started_after_completed_jobs: data.createdOrStartedAfterCompletedJobs,
6621
6627
  job_kinds: data.jobKinds,
6622
6628
  args: data.args,
6623
6629
  tag: data.tag,
@@ -1030,6 +1030,10 @@ export type ParameterStartedAfter = string;
1030
1030
  * filter on created_at for non non started job and started_at otherwise after (exclusive) timestamp
1031
1031
  */
1032
1032
  export type ParameterCreatedOrStartedAfter = string;
1033
+ /**
1034
+ * filter on created_at for non non started job and started_at otherwise after (exclusive) timestamp but only for the completed jobs
1035
+ */
1036
+ export type ParameterCreatedOrStartedAfterCompletedJob = string;
1033
1037
  /**
1034
1038
  * filter on created_at for non non started job and started_at otherwise before (inclusive) timestamp
1035
1039
  */
@@ -3402,6 +3406,10 @@ export type ListJobsData = {
3402
3406
  * filter on created_at for non non started job and started_at otherwise after (exclusive) timestamp
3403
3407
  */
3404
3408
  createdOrStartedAfter?: string;
3409
+ /**
3410
+ * filter on created_at for non non started job and started_at otherwise after (exclusive) timestamp but only for the completed jobs
3411
+ */
3412
+ createdOrStartedAfterCompletedJobs?: string;
3405
3413
  /**
3406
3414
  * filter on created_at for non non started job and started_at otherwise before (inclusive) timestamp
3407
3415
  */
@@ -3711,6 +3719,10 @@ export type ListExtendedJobsData = {
3711
3719
  * filter on created_at for non non started job and started_at otherwise after (exclusive) timestamp
3712
3720
  */
3713
3721
  createdOrStartedAfter?: string;
3722
+ /**
3723
+ * filter on created_at for non non started job and started_at otherwise after (exclusive) timestamp but only for the completed jobs
3724
+ */
3725
+ createdOrStartedAfterCompletedJobs?: string;
3714
3726
  /**
3715
3727
  * filter on created_at for non non started job and started_at otherwise before (inclusive) timestamp
3716
3728
  */
@@ -8785,6 +8797,10 @@ export type $OpenApiTs = {
8785
8797
  * filter on created_at for non non started job and started_at otherwise after (exclusive) timestamp
8786
8798
  */
8787
8799
  createdOrStartedAfter?: string;
8800
+ /**
8801
+ * filter on created_at for non non started job and started_at otherwise after (exclusive) timestamp but only for the completed jobs
8802
+ */
8803
+ createdOrStartedAfterCompletedJobs?: string;
8788
8804
  /**
8789
8805
  * filter on created_at for non non started job and started_at otherwise before (inclusive) timestamp
8790
8806
  */
@@ -9313,6 +9329,10 @@ export type $OpenApiTs = {
9313
9329
  * filter on created_at for non non started job and started_at otherwise after (exclusive) timestamp
9314
9330
  */
9315
9331
  createdOrStartedAfter?: string;
9332
+ /**
9333
+ * filter on created_at for non non started job and started_at otherwise after (exclusive) timestamp but only for the completed jobs
9334
+ */
9335
+ createdOrStartedAfterCompletedJobs?: string;
9316
9336
  /**
9317
9337
  * filter on created_at for non non started job and started_at otherwise before (inclusive) timestamp
9318
9338
  */
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.355.2",
4
+ "version": "1.355.4",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "devDependencies": {