windmill-client 1.641.0 → 1.643.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.
@@ -2907,6 +2907,9 @@ var VariableService = class {
2907
2907
  * @param data The data for the request.
2908
2908
  * @param data.workspace
2909
2909
  * @param data.pathStart filter variables by path prefix
2910
+ * @param data.path exact path match filter
2911
+ * @param data.description pattern match filter for description field (case-insensitive)
2912
+ * @param data.value pattern match filter for non-secret variable values (case-insensitive)
2910
2913
  * @param data.page which page to return (start at 1, default 1)
2911
2914
  * @param data.perPage number of items to return for a given page (default 30, max 100)
2912
2915
  * @returns ListableVariable variable list
@@ -2919,6 +2922,9 @@ var VariableService = class {
2919
2922
  path: { workspace: data.workspace },
2920
2923
  query: {
2921
2924
  path_start: data.pathStart,
2925
+ path: data.path,
2926
+ description: data.description,
2927
+ value: data.value,
2922
2928
  page: data.page,
2923
2929
  per_page: data.perPage
2924
2930
  }
@@ -3349,6 +3355,9 @@ var ResourceService = class {
3349
3355
  * @param data.resourceType resource_types to list from, separated by ',',
3350
3356
  * @param data.resourceTypeExclude resource_types to not list from, separated by ',',
3351
3357
  * @param data.pathStart filter resources by path prefix
3358
+ * @param data.path exact path match filter
3359
+ * @param data.description pattern match filter for description field (case-insensitive)
3360
+ * @param data.value JSONB subset match filter using base64 encoded JSON
3352
3361
  * @returns ListableResource resource list
3353
3362
  * @throws ApiError
3354
3363
  */
@@ -3362,7 +3371,10 @@ var ResourceService = class {
3362
3371
  per_page: data.perPage,
3363
3372
  resource_type: data.resourceType,
3364
3373
  resource_type_exclude: data.resourceTypeExclude,
3365
- path_start: data.pathStart
3374
+ path_start: data.pathStart,
3375
+ path: data.path,
3376
+ description: data.description,
3377
+ value: data.value
3366
3378
  }
3367
3379
  });
3368
3380
  }
@@ -3437,7 +3449,7 @@ var ResourceService = class {
3437
3449
  * get map from resource type to format extension
3438
3450
  * @param data The data for the request.
3439
3451
  * @param data.workspace
3440
- * @returns unknown map from resource type to file ext
3452
+ * @returns unknown map from resource type to file resource info
3441
3453
  * @throws ApiError
3442
3454
  */
3443
3455
  static fileResourceTypeToFileExtMap(data) {
@@ -3730,7 +3742,7 @@ var FlowService = class {
3730
3742
  * @param data.page which page to return (start at 1, default 1)
3731
3743
  * @param data.perPage number of items to return for a given page (default 30, max 100)
3732
3744
  * @param data.orderDesc order by desc order (default true)
3733
- * @param data.createdBy mask to filter exact matching user creator
3745
+ * @param data.createdBy filter by exact matching user creator. Supports comma-separated list (e.g. 'alice,bob') and negation by prefixing all values with '!' (e.g. '!alice,!bob')
3734
3746
  * @param data.pathStart mask to filter matching starting path
3735
3747
  * @param data.pathExact mask to filter exact matching path
3736
3748
  * @param data.showArchived (default false)
@@ -4179,7 +4191,7 @@ var AppService = class {
4179
4191
  * @param data.page which page to return (start at 1, default 1)
4180
4192
  * @param data.perPage number of items to return for a given page (default 30, max 100)
4181
4193
  * @param data.orderDesc order by desc order (default true)
4182
- * @param data.createdBy mask to filter exact matching user creator
4194
+ * @param data.createdBy filter by exact matching user creator. Supports comma-separated list (e.g. 'alice,bob') and negation by prefixing all values with '!' (e.g. '!alice,!bob')
4183
4195
  * @param data.pathStart mask to filter matching starting path
4184
4196
  * @param data.pathExact mask to filter exact matching path
4185
4197
  * @param data.starredOnly (default false)
@@ -4765,7 +4777,7 @@ var ScriptService = class {
4765
4777
  * @param data.page which page to return (start at 1, default 1)
4766
4778
  * @param data.perPage number of items to return for a given page (default 30, max 100)
4767
4779
  * @param data.orderDesc order by desc order (default true)
4768
- * @param data.createdBy mask to filter exact matching user creator
4780
+ * @param data.createdBy filter by exact matching user creator. Supports comma-separated list (e.g. 'alice,bob') and negation by prefixing all values with '!' (e.g. '!alice,!bob')
4769
4781
  * @param data.pathStart mask to filter matching starting path
4770
4782
  * @param data.pathExact mask to filter exact matching path
4771
4783
  * @param data.firstParentHash mask to filter scripts whom first direct parent has exact hash
@@ -6459,26 +6471,26 @@ var JobService = class {
6459
6471
  * @param data The data for the request.
6460
6472
  * @param data.workspace
6461
6473
  * @param data.orderDesc order by desc order (default true)
6462
- * @param data.createdBy mask to filter exact matching user creator
6474
+ * @param data.createdBy filter by exact matching user creator. Supports comma-separated list (e.g. 'alice,bob') and negation by prefixing all values with '!' (e.g. '!alice,!bob')
6463
6475
  * @param data.parentJob The parent job that is at the origin and responsible for the execution of this script if any
6464
- * @param data.worker worker this job was ran on
6465
- * @param data.scriptPathExact mask to filter exact matching path
6466
- * @param data.scriptPathStart mask to filter matching starting path
6476
+ * @param data.worker filter by worker this job ran on. Supports comma-separated list (e.g. 'worker-1,worker-2') and negation by prefixing all values with '!' (e.g. '!worker-1,!worker-2')
6477
+ * @param data.scriptPathExact filter by exact matching script path. Supports comma-separated list (e.g. 'f/script1,f/script2') and negation by prefixing all values with '!' (e.g. '!f/script1,!f/script2')
6478
+ * @param data.scriptPathStart filter by script path prefix. Supports comma-separated list (e.g. 'f/folder1,f/folder2') and negation by prefixing all values with '!' (e.g. '!f/folder1,!f/folder2')
6467
6479
  * @param data.schedulePath mask to filter by schedule path
6468
- * @param data.triggerPath mask to filter by trigger path
6469
- * @param data.triggerKind trigger kind (schedule, http, websocket...)
6480
+ * @param data.triggerPath filter by trigger path. Supports comma-separated list (e.g. 'f/trigger1,f/trigger2') and negation by prefixing all values with '!' (e.g. '!f/trigger1,!f/trigger2')
6481
+ * @param data.triggerKind filter by trigger kind. Supports comma-separated list (e.g. 'schedule,webhook') and negation by prefixing all values with '!' (e.g. '!schedule,!webhook')
6470
6482
  * @param data.scriptHash mask to filter exact matching path
6471
6483
  * @param data.startedBefore filter on started before (inclusive) timestamp
6472
6484
  * @param data.startedAfter filter on started after (exclusive) timestamp
6473
6485
  * @param data.success filter on successful jobs
6474
6486
  * @param data.scheduledForBeforeNow filter on jobs scheduled_for before now (hence waitinf for a worker)
6475
- * @param data.jobKinds filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
6487
+ * @param data.jobKinds filter by job kind. Supports comma-separated list of values ('preview', 'script', 'dependencies', 'flow') and negation by prefixing all values with '!' (e.g. '!preview,!dependencies')
6476
6488
  * @param data.suspended filter on suspended jobs
6477
6489
  * @param data.running filter on running jobs
6478
6490
  * @param data.args filter on jobs containing those args as a json subset (@> in postgres)
6479
6491
  * @param data.result filter on jobs containing those result as a json subset (@> in postgres)
6480
6492
  * @param data.allowWildcards allow wildcards (*) in the filter of label, tag, worker
6481
- * @param data.tag filter on jobs with a given tag/worker group
6493
+ * @param data.tag filter by tag/worker group. Supports comma-separated list (e.g. 'gpu,highmem') and negation by prefixing all values with '!' (e.g. '!gpu,!highmem')
6482
6494
  * @param data.page which page to return (start at 1, default 1)
6483
6495
  * @param data.perPage number of items to return for a given page (default 30, max 100)
6484
6496
  * @param data.allWorkspaces get jobs from all workspaces (only valid if request come from the `admins` workspace)
@@ -6578,12 +6590,12 @@ var JobService = class {
6578
6590
  * get the ids of all jobs matching the given filters
6579
6591
  * @param data The data for the request.
6580
6592
  * @param data.workspace
6581
- * @param data.createdBy mask to filter exact matching user creator
6582
- * @param data.label mask to filter exact matching job's label (job labels are completed jobs with as a result an object containing a string in the array at key 'wm_labels')
6583
- * @param data.worker worker this job was ran on
6593
+ * @param data.createdBy filter by exact matching user creator. Supports comma-separated list (e.g. 'alice,bob') and negation by prefixing all values with '!' (e.g. '!alice,!bob')
6594
+ * @param data.label filter by exact matching job label. Supports comma-separated list (e.g. 'deploy,release') and negation by prefixing all values with '!' (e.g. '!deploy,!release')
6595
+ * @param data.worker filter by worker this job ran on. Supports comma-separated list (e.g. 'worker-1,worker-2') and negation by prefixing all values with '!' (e.g. '!worker-1,!worker-2')
6584
6596
  * @param data.parentJob The parent job that is at the origin and responsible for the execution of this script if any
6585
- * @param data.scriptPathExact mask to filter exact matching path
6586
- * @param data.scriptPathStart mask to filter matching starting path
6597
+ * @param data.scriptPathExact filter by exact matching script path. Supports comma-separated list (e.g. 'f/script1,f/script2') and negation by prefixing all values with '!' (e.g. '!f/script1,!f/script2')
6598
+ * @param data.scriptPathStart filter by script path prefix. Supports comma-separated list (e.g. 'f/folder1,f/folder2') and negation by prefixing all values with '!' (e.g. '!f/folder1,!f/folder2')
6587
6599
  * @param data.schedulePath mask to filter by schedule path
6588
6600
  * @param data.scriptHash mask to filter exact matching path
6589
6601
  * @param data.startedBefore filter on started before (inclusive) timestamp
@@ -6596,10 +6608,10 @@ var JobService = class {
6596
6608
  * @param data.createdAfterQueue filter on jobs created after X for jobs in the queue only
6597
6609
  * @param data.running filter on running jobs
6598
6610
  * @param data.scheduledForBeforeNow filter on jobs scheduled_for before now (hence waitinf for a worker)
6599
- * @param data.jobKinds filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
6611
+ * @param data.jobKinds filter by job kind. Supports comma-separated list of values ('preview', 'script', 'dependencies', 'flow') and negation by prefixing all values with '!' (e.g. '!preview,!dependencies')
6600
6612
  * @param data.suspended filter on suspended jobs
6601
6613
  * @param data.args filter on jobs containing those args as a json subset (@> in postgres)
6602
- * @param data.tag filter on jobs with a given tag/worker group
6614
+ * @param data.tag filter by tag/worker group. Supports comma-separated list (e.g. 'gpu,highmem') and negation by prefixing all values with '!' (e.g. '!gpu,!highmem')
6603
6615
  * @param data.result filter on jobs containing those result as a json subset (@> in postgres)
6604
6616
  * @param data.page which page to return (start at 1, default 1)
6605
6617
  * @param data.perPage number of items to return for a given page (default 30, max 100)
@@ -6657,23 +6669,23 @@ var JobService = class {
6657
6669
  * @param data The data for the request.
6658
6670
  * @param data.workspace
6659
6671
  * @param data.orderDesc order by desc order (default true)
6660
- * @param data.createdBy mask to filter exact matching user creator
6672
+ * @param data.createdBy filter by exact matching user creator. Supports comma-separated list (e.g. 'alice,bob') and negation by prefixing all values with '!' (e.g. '!alice,!bob')
6661
6673
  * @param data.parentJob The parent job that is at the origin and responsible for the execution of this script if any
6662
- * @param data.scriptPathExact mask to filter exact matching path
6663
- * @param data.scriptPathStart mask to filter matching starting path
6674
+ * @param data.scriptPathExact filter by exact matching script path. Supports comma-separated list (e.g. 'f/script1,f/script2') and negation by prefixing all values with '!' (e.g. '!f/script1,!f/script2')
6675
+ * @param data.scriptPathStart filter by script path prefix. Supports comma-separated list (e.g. 'f/folder1,f/folder2') and negation by prefixing all values with '!' (e.g. '!f/folder1,!f/folder2')
6664
6676
  * @param data.schedulePath mask to filter by schedule path
6665
6677
  * @param data.scriptHash mask to filter exact matching path
6666
6678
  * @param data.startedBefore filter on started before (inclusive) timestamp
6667
6679
  * @param data.startedAfter filter on started after (exclusive) timestamp
6668
6680
  * @param data.success filter on successful jobs
6669
6681
  * @param data.scheduledForBeforeNow filter on jobs scheduled_for before now (hence waitinf for a worker)
6670
- * @param data.jobKinds filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
6682
+ * @param data.jobKinds filter by job kind. Supports comma-separated list of values ('preview', 'script', 'dependencies', 'flow') and negation by prefixing all values with '!' (e.g. '!preview,!dependencies')
6671
6683
  * @param data.suspended filter on suspended jobs
6672
6684
  * @param data.running filter on running jobs
6673
6685
  * @param data.args filter on jobs containing those args as a json subset (@> in postgres)
6674
6686
  * @param data.result filter on jobs containing those result as a json subset (@> in postgres)
6675
6687
  * @param data.allowWildcards allow wildcards (*) in the filter of label, tag, worker
6676
- * @param data.tag filter on jobs with a given tag/worker group
6688
+ * @param data.tag filter by tag/worker group. Supports comma-separated list (e.g. 'gpu,highmem') and negation by prefixing all values with '!' (e.g. '!gpu,!highmem')
6677
6689
  * @param data.page which page to return (start at 1, default 1)
6678
6690
  * @param data.perPage number of items to return for a given page (default 30, max 100)
6679
6691
  * @param data.concurrencyKey
@@ -6756,22 +6768,22 @@ var JobService = class {
6756
6768
  * @param data The data for the request.
6757
6769
  * @param data.workspace
6758
6770
  * @param data.orderDesc order by desc order (default true)
6759
- * @param data.createdBy mask to filter exact matching user creator
6760
- * @param data.label mask to filter exact matching job's label (job labels are completed jobs with as a result an object containing a string in the array at key 'wm_labels')
6761
- * @param data.worker worker this job was ran on
6771
+ * @param data.createdBy filter by exact matching user creator. Supports comma-separated list (e.g. 'alice,bob') and negation by prefixing all values with '!' (e.g. '!alice,!bob')
6772
+ * @param data.label filter by exact matching job label. Supports comma-separated list (e.g. 'deploy,release') and negation by prefixing all values with '!' (e.g. '!deploy,!release')
6773
+ * @param data.worker filter by worker this job ran on. Supports comma-separated list (e.g. 'worker-1,worker-2') and negation by prefixing all values with '!' (e.g. '!worker-1,!worker-2')
6762
6774
  * @param data.parentJob The parent job that is at the origin and responsible for the execution of this script if any
6763
- * @param data.scriptPathExact mask to filter exact matching path
6764
- * @param data.scriptPathStart mask to filter matching starting path
6775
+ * @param data.scriptPathExact filter by exact matching script path. Supports comma-separated list (e.g. 'f/script1,f/script2') and negation by prefixing all values with '!' (e.g. '!f/script1,!f/script2')
6776
+ * @param data.scriptPathStart filter by script path prefix. Supports comma-separated list (e.g. 'f/folder1,f/folder2') and negation by prefixing all values with '!' (e.g. '!f/folder1,!f/folder2')
6765
6777
  * @param data.schedulePath mask to filter by schedule path
6766
6778
  * @param data.scriptHash mask to filter exact matching path
6767
6779
  * @param data.startedBefore filter on started before (inclusive) timestamp
6768
6780
  * @param data.startedAfter filter on started after (exclusive) timestamp
6769
6781
  * @param data.success filter on successful jobs
6770
- * @param data.jobKinds filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
6782
+ * @param data.jobKinds filter by job kind. Supports comma-separated list of values ('preview', 'script', 'dependencies', 'flow') and negation by prefixing all values with '!' (e.g. '!preview,!dependencies')
6771
6783
  * @param data.args filter on jobs containing those args as a json subset (@> in postgres)
6772
6784
  * @param data.result filter on jobs containing those result as a json subset (@> in postgres)
6773
6785
  * @param data.allowWildcards allow wildcards (*) in the filter of label, tag, worker
6774
- * @param data.tag filter on jobs with a given tag/worker group
6786
+ * @param data.tag filter by tag/worker group. Supports comma-separated list (e.g. 'gpu,highmem') and negation by prefixing all values with '!' (e.g. '!gpu,!highmem')
6775
6787
  * @param data.page which page to return (start at 1, default 1)
6776
6788
  * @param data.perPage number of items to return for a given page (default 30, max 100)
6777
6789
  * @param data.isSkipped is the job skipped
@@ -6908,12 +6920,12 @@ var JobService = class {
6908
6920
  * list all jobs
6909
6921
  * @param data The data for the request.
6910
6922
  * @param data.workspace
6911
- * @param data.createdBy mask to filter exact matching user creator
6912
- * @param data.label mask to filter exact matching job's label (job labels are completed jobs with as a result an object containing a string in the array at key 'wm_labels')
6913
- * @param data.worker worker this job was ran on
6923
+ * @param data.createdBy filter by exact matching user creator. Supports comma-separated list (e.g. 'alice,bob') and negation by prefixing all values with '!' (e.g. '!alice,!bob')
6924
+ * @param data.label filter by exact matching job label. Supports comma-separated list (e.g. 'deploy,release') and negation by prefixing all values with '!' (e.g. '!deploy,!release')
6925
+ * @param data.worker filter by worker this job ran on. Supports comma-separated list (e.g. 'worker-1,worker-2') and negation by prefixing all values with '!' (e.g. '!worker-1,!worker-2')
6914
6926
  * @param data.parentJob The parent job that is at the origin and responsible for the execution of this script if any
6915
- * @param data.scriptPathExact mask to filter exact matching path
6916
- * @param data.scriptPathStart mask to filter matching starting path
6927
+ * @param data.scriptPathExact filter by exact matching script path. Supports comma-separated list (e.g. 'f/script1,f/script2') and negation by prefixing all values with '!' (e.g. '!f/script1,!f/script2')
6928
+ * @param data.scriptPathStart filter by script path prefix. Supports comma-separated list (e.g. 'f/folder1,f/folder2') and negation by prefixing all values with '!' (e.g. '!f/folder1,!f/folder2')
6917
6929
  * @param data.schedulePath mask to filter by schedule path
6918
6930
  * @param data.scriptHash mask to filter exact matching path
6919
6931
  * @param data.startedBefore filter on started before (inclusive) timestamp
@@ -6926,14 +6938,14 @@ var JobService = class {
6926
6938
  * @param data.createdAfterQueue filter on jobs created after X for jobs in the queue only
6927
6939
  * @param data.running filter on running jobs
6928
6940
  * @param data.scheduledForBeforeNow filter on jobs scheduled_for before now (hence waitinf for a worker)
6929
- * @param data.jobKinds filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
6941
+ * @param data.jobKinds filter by job kind. Supports comma-separated list of values ('preview', 'script', 'dependencies', 'flow') and negation by prefixing all values with '!' (e.g. '!preview,!dependencies')
6930
6942
  * @param data.suspended filter on suspended jobs
6931
6943
  * @param data.args filter on jobs containing those args as a json subset (@> in postgres)
6932
- * @param data.tag filter on jobs with a given tag/worker group
6944
+ * @param data.tag filter by tag/worker group. Supports comma-separated list (e.g. 'gpu,highmem') and negation by prefixing all values with '!' (e.g. '!gpu,!highmem')
6933
6945
  * @param data.result filter on jobs containing those result as a json subset (@> in postgres)
6934
6946
  * @param data.allowWildcards allow wildcards (*) in the filter of label, tag, worker
6935
6947
  * @param data.perPage number of items to return for a given page (default 30, max 100)
6936
- * @param data.triggerKind trigger kind (schedule, http, websocket...)
6948
+ * @param data.triggerKind filter by trigger kind. Supports comma-separated list (e.g. 'schedule,webhook') and negation by prefixing all values with '!' (e.g. '!schedule,!webhook')
6937
6949
  * @param data.isSkipped is the job skipped
6938
6950
  * @param data.isFlowStep is the job a flow step
6939
6951
  * @param data.hasNullParent has null parent
@@ -7745,11 +7757,11 @@ var JobService = class {
7745
7757
  * @param data.workspace
7746
7758
  * @param data.concurrencyKey
7747
7759
  * @param data.rowLimit
7748
- * @param data.createdBy mask to filter exact matching user creator
7749
- * @param data.label mask to filter exact matching job's label (job labels are completed jobs with as a result an object containing a string in the array at key 'wm_labels')
7760
+ * @param data.createdBy filter by exact matching user creator. Supports comma-separated list (e.g. 'alice,bob') and negation by prefixing all values with '!' (e.g. '!alice,!bob')
7761
+ * @param data.label filter by exact matching job label. Supports comma-separated list (e.g. 'deploy,release') and negation by prefixing all values with '!' (e.g. '!deploy,!release')
7750
7762
  * @param data.parentJob The parent job that is at the origin and responsible for the execution of this script if any
7751
- * @param data.scriptPathExact mask to filter exact matching path
7752
- * @param data.scriptPathStart mask to filter matching starting path
7763
+ * @param data.scriptPathExact filter by exact matching script path. Supports comma-separated list (e.g. 'f/script1,f/script2') and negation by prefixing all values with '!' (e.g. '!f/script1,!f/script2')
7764
+ * @param data.scriptPathStart filter by script path prefix. Supports comma-separated list (e.g. 'f/folder1,f/folder2') and negation by prefixing all values with '!' (e.g. '!f/folder1,!f/folder2')
7753
7765
  * @param data.schedulePath mask to filter by schedule path
7754
7766
  * @param data.scriptHash mask to filter exact matching path
7755
7767
  * @param data.startedBefore filter on started before (inclusive) timestamp
@@ -7760,14 +7772,14 @@ var JobService = class {
7760
7772
  * @param data.completedAfter filter on started after (exclusive) timestamp
7761
7773
  * @param data.createdBeforeQueue filter on jobs created before X for jobs in the queue only
7762
7774
  * @param data.createdAfterQueue filter on jobs created after X for jobs in the queue only
7763
- * @param data.jobKinds filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
7775
+ * @param data.jobKinds filter by job kind. Supports comma-separated list of values ('preview', 'script', 'dependencies', 'flow') and negation by prefixing all values with '!' (e.g. '!preview,!dependencies')
7764
7776
  * @param data.args filter on jobs containing those args as a json subset (@> in postgres)
7765
- * @param data.tag filter on jobs with a given tag/worker group
7777
+ * @param data.tag filter by tag/worker group. Supports comma-separated list (e.g. 'gpu,highmem') and negation by prefixing all values with '!' (e.g. '!gpu,!highmem')
7766
7778
  * @param data.result filter on jobs containing those result as a json subset (@> in postgres)
7767
7779
  * @param data.allowWildcards allow wildcards (*) in the filter of label, tag, worker
7768
7780
  * @param data.page which page to return (start at 1, default 1)
7769
7781
  * @param data.perPage number of items to return for a given page (default 30, max 100)
7770
- * @param data.triggerKind trigger kind (schedule, http, websocket...)
7782
+ * @param data.triggerKind filter by trigger kind. Supports comma-separated list (e.g. 'schedule,webhook') and negation by prefixing all values with '!' (e.g. '!schedule,!webhook')
7771
7783
  * @param data.isSkipped is the job skipped
7772
7784
  * @param data.isFlowStep is the job a flow step
7773
7785
  * @param data.hasNullParent has null parent
@@ -7894,7 +7906,7 @@ var RawAppService = class {
7894
7906
  * @param data.page which page to return (start at 1, default 1)
7895
7907
  * @param data.perPage number of items to return for a given page (default 30, max 100)
7896
7908
  * @param data.orderDesc order by desc order (default true)
7897
- * @param data.createdBy mask to filter exact matching user creator
7909
+ * @param data.createdBy filter by exact matching user creator. Supports comma-separated list (e.g. 'alice,bob') and negation by prefixing all values with '!' (e.g. '!alice,!bob')
7898
7910
  * @param data.pathStart mask to filter matching starting path
7899
7911
  * @param data.pathExact mask to filter exact matching path
7900
7912
  * @param data.starredOnly (default false)
@@ -8104,9 +8116,12 @@ var ScheduleService = class {
8104
8116
  * @param data.page which page to return (start at 1, default 1)
8105
8117
  * @param data.perPage number of items to return for a given page (default 30, max 100)
8106
8118
  * @param data.args filter on jobs containing those args as a json subset (@> in postgres)
8107
- * @param data.path filter by path
8119
+ * @param data.path filter by path (script path)
8108
8120
  * @param data.isFlow filter schedules by whether they target a flow
8109
8121
  * @param data.pathStart filter schedules by path prefix
8122
+ * @param data.schedulePath exact match on the schedule's path
8123
+ * @param data.description pattern match filter for description field (case-insensitive)
8124
+ * @param data.summary pattern match filter for summary field (case-insensitive)
8110
8125
  * @returns Schedule schedule list
8111
8126
  * @throws ApiError
8112
8127
  */
@@ -8121,7 +8136,10 @@ var ScheduleService = class {
8121
8136
  args: data.args,
8122
8137
  path: data.path,
8123
8138
  is_flow: data.isFlow,
8124
- path_start: data.pathStart
8139
+ path_start: data.pathStart,
8140
+ schedule_path: data.schedulePath,
8141
+ description: data.description,
8142
+ summary: data.summary
8125
8143
  }
8126
8144
  });
8127
8145
  }
@@ -12113,11 +12131,11 @@ var ConcurrencyGroupsService = class {
12113
12131
  * @param data.workspace
12114
12132
  * @param data.concurrencyKey
12115
12133
  * @param data.rowLimit
12116
- * @param data.createdBy mask to filter exact matching user creator
12117
- * @param data.label mask to filter exact matching job's label (job labels are completed jobs with as a result an object containing a string in the array at key 'wm_labels')
12134
+ * @param data.createdBy filter by exact matching user creator. Supports comma-separated list (e.g. 'alice,bob') and negation by prefixing all values with '!' (e.g. '!alice,!bob')
12135
+ * @param data.label filter by exact matching job label. Supports comma-separated list (e.g. 'deploy,release') and negation by prefixing all values with '!' (e.g. '!deploy,!release')
12118
12136
  * @param data.parentJob The parent job that is at the origin and responsible for the execution of this script if any
12119
- * @param data.scriptPathExact mask to filter exact matching path
12120
- * @param data.scriptPathStart mask to filter matching starting path
12137
+ * @param data.scriptPathExact filter by exact matching script path. Supports comma-separated list (e.g. 'f/script1,f/script2') and negation by prefixing all values with '!' (e.g. '!f/script1,!f/script2')
12138
+ * @param data.scriptPathStart filter by script path prefix. Supports comma-separated list (e.g. 'f/folder1,f/folder2') and negation by prefixing all values with '!' (e.g. '!f/folder1,!f/folder2')
12121
12139
  * @param data.schedulePath mask to filter by schedule path
12122
12140
  * @param data.scriptHash mask to filter exact matching path
12123
12141
  * @param data.startedBefore filter on started before (inclusive) timestamp
@@ -12128,14 +12146,14 @@ var ConcurrencyGroupsService = class {
12128
12146
  * @param data.completedAfter filter on started after (exclusive) timestamp
12129
12147
  * @param data.createdBeforeQueue filter on jobs created before X for jobs in the queue only
12130
12148
  * @param data.createdAfterQueue filter on jobs created after X for jobs in the queue only
12131
- * @param data.jobKinds filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
12149
+ * @param data.jobKinds filter by job kind. Supports comma-separated list of values ('preview', 'script', 'dependencies', 'flow') and negation by prefixing all values with '!' (e.g. '!preview,!dependencies')
12132
12150
  * @param data.args filter on jobs containing those args as a json subset (@> in postgres)
12133
- * @param data.tag filter on jobs with a given tag/worker group
12151
+ * @param data.tag filter by tag/worker group. Supports comma-separated list (e.g. 'gpu,highmem') and negation by prefixing all values with '!' (e.g. '!gpu,!highmem')
12134
12152
  * @param data.result filter on jobs containing those result as a json subset (@> in postgres)
12135
12153
  * @param data.allowWildcards allow wildcards (*) in the filter of label, tag, worker
12136
12154
  * @param data.page which page to return (start at 1, default 1)
12137
12155
  * @param data.perPage number of items to return for a given page (default 30, max 100)
12138
- * @param data.triggerKind trigger kind (schedule, http, websocket...)
12156
+ * @param data.triggerKind filter by trigger kind. Supports comma-separated list (e.g. 'schedule,webhook') and negation by prefixing all values with '!' (e.g. '!schedule,!webhook')
12139
12157
  * @param data.isSkipped is the job skipped
12140
12158
  * @param data.isFlowStep is the job a flow step
12141
12159
  * @param data.hasNullParent has null parent
@@ -12279,6 +12297,8 @@ var AssetService = class {
12279
12297
  * @param data.assetPath Filter by asset path (case-insensitive partial match)
12280
12298
  * @param data.usagePath Filter by usage path (case-insensitive partial match)
12281
12299
  * @param data.assetKinds Filter by asset kinds (multiple values allowed)
12300
+ * @param data.path exact path match filter
12301
+ * @param data.columns JSONB subset match filter for columns using base64 encoded JSON
12282
12302
  * @returns unknown paginated assets in the workspace
12283
12303
  * @throws ApiError
12284
12304
  */
@@ -12293,7 +12313,9 @@ var AssetService = class {
12293
12313
  cursor_id: data.cursorId,
12294
12314
  asset_path: data.assetPath,
12295
12315
  usage_path: data.usagePath,
12296
- asset_kinds: data.assetKinds
12316
+ asset_kinds: data.assetKinds,
12317
+ path: data.path,
12318
+ columns: data.columns
12297
12319
  }
12298
12320
  });
12299
12321
  }