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.
@@ -29,7 +29,7 @@ const OpenAPI = {
29
29
  PASSWORD: void 0,
30
30
  TOKEN: getEnv("WM_TOKEN"),
31
31
  USERNAME: void 0,
32
- VERSION: "1.641.0",
32
+ VERSION: "1.643.0",
33
33
  WITH_CREDENTIALS: true,
34
34
  interceptors: {
35
35
  request: new Interceptors(),
package/dist/index.js CHANGED
@@ -126,7 +126,7 @@ const OpenAPI = {
126
126
  PASSWORD: void 0,
127
127
  TOKEN: getEnv$1("WM_TOKEN"),
128
128
  USERNAME: void 0,
129
- VERSION: "1.641.0",
129
+ VERSION: "1.643.0",
130
130
  WITH_CREDENTIALS: true,
131
131
  interceptors: {
132
132
  request: new Interceptors(),
@@ -3275,6 +3275,9 @@ var VariableService = class {
3275
3275
  * @param data The data for the request.
3276
3276
  * @param data.workspace
3277
3277
  * @param data.pathStart filter variables by path prefix
3278
+ * @param data.path exact path match filter
3279
+ * @param data.description pattern match filter for description field (case-insensitive)
3280
+ * @param data.value pattern match filter for non-secret variable values (case-insensitive)
3278
3281
  * @param data.page which page to return (start at 1, default 1)
3279
3282
  * @param data.perPage number of items to return for a given page (default 30, max 100)
3280
3283
  * @returns ListableVariable variable list
@@ -3287,6 +3290,9 @@ var VariableService = class {
3287
3290
  path: { workspace: data.workspace },
3288
3291
  query: {
3289
3292
  path_start: data.pathStart,
3293
+ path: data.path,
3294
+ description: data.description,
3295
+ value: data.value,
3290
3296
  page: data.page,
3291
3297
  per_page: data.perPage
3292
3298
  }
@@ -3717,6 +3723,9 @@ var ResourceService = class {
3717
3723
  * @param data.resourceType resource_types to list from, separated by ',',
3718
3724
  * @param data.resourceTypeExclude resource_types to not list from, separated by ',',
3719
3725
  * @param data.pathStart filter resources by path prefix
3726
+ * @param data.path exact path match filter
3727
+ * @param data.description pattern match filter for description field (case-insensitive)
3728
+ * @param data.value JSONB subset match filter using base64 encoded JSON
3720
3729
  * @returns ListableResource resource list
3721
3730
  * @throws ApiError
3722
3731
  */
@@ -3730,7 +3739,10 @@ var ResourceService = class {
3730
3739
  per_page: data.perPage,
3731
3740
  resource_type: data.resourceType,
3732
3741
  resource_type_exclude: data.resourceTypeExclude,
3733
- path_start: data.pathStart
3742
+ path_start: data.pathStart,
3743
+ path: data.path,
3744
+ description: data.description,
3745
+ value: data.value
3734
3746
  }
3735
3747
  });
3736
3748
  }
@@ -3805,7 +3817,7 @@ var ResourceService = class {
3805
3817
  * get map from resource type to format extension
3806
3818
  * @param data The data for the request.
3807
3819
  * @param data.workspace
3808
- * @returns unknown map from resource type to file ext
3820
+ * @returns unknown map from resource type to file resource info
3809
3821
  * @throws ApiError
3810
3822
  */
3811
3823
  static fileResourceTypeToFileExtMap(data) {
@@ -4098,7 +4110,7 @@ var FlowService = class {
4098
4110
  * @param data.page which page to return (start at 1, default 1)
4099
4111
  * @param data.perPage number of items to return for a given page (default 30, max 100)
4100
4112
  * @param data.orderDesc order by desc order (default true)
4101
- * @param data.createdBy mask to filter exact matching user creator
4113
+ * @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')
4102
4114
  * @param data.pathStart mask to filter matching starting path
4103
4115
  * @param data.pathExact mask to filter exact matching path
4104
4116
  * @param data.showArchived (default false)
@@ -4547,7 +4559,7 @@ var AppService = class {
4547
4559
  * @param data.page which page to return (start at 1, default 1)
4548
4560
  * @param data.perPage number of items to return for a given page (default 30, max 100)
4549
4561
  * @param data.orderDesc order by desc order (default true)
4550
- * @param data.createdBy mask to filter exact matching user creator
4562
+ * @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')
4551
4563
  * @param data.pathStart mask to filter matching starting path
4552
4564
  * @param data.pathExact mask to filter exact matching path
4553
4565
  * @param data.starredOnly (default false)
@@ -5133,7 +5145,7 @@ var ScriptService = class {
5133
5145
  * @param data.page which page to return (start at 1, default 1)
5134
5146
  * @param data.perPage number of items to return for a given page (default 30, max 100)
5135
5147
  * @param data.orderDesc order by desc order (default true)
5136
- * @param data.createdBy mask to filter exact matching user creator
5148
+ * @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')
5137
5149
  * @param data.pathStart mask to filter matching starting path
5138
5150
  * @param data.pathExact mask to filter exact matching path
5139
5151
  * @param data.firstParentHash mask to filter scripts whom first direct parent has exact hash
@@ -6827,26 +6839,26 @@ var JobService = class {
6827
6839
  * @param data The data for the request.
6828
6840
  * @param data.workspace
6829
6841
  * @param data.orderDesc order by desc order (default true)
6830
- * @param data.createdBy mask to filter exact matching user creator
6842
+ * @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')
6831
6843
  * @param data.parentJob The parent job that is at the origin and responsible for the execution of this script if any
6832
- * @param data.worker worker this job was ran on
6833
- * @param data.scriptPathExact mask to filter exact matching path
6834
- * @param data.scriptPathStart mask to filter matching starting path
6844
+ * @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')
6845
+ * @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')
6846
+ * @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')
6835
6847
  * @param data.schedulePath mask to filter by schedule path
6836
- * @param data.triggerPath mask to filter by trigger path
6837
- * @param data.triggerKind trigger kind (schedule, http, websocket...)
6848
+ * @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')
6849
+ * @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')
6838
6850
  * @param data.scriptHash mask to filter exact matching path
6839
6851
  * @param data.startedBefore filter on started before (inclusive) timestamp
6840
6852
  * @param data.startedAfter filter on started after (exclusive) timestamp
6841
6853
  * @param data.success filter on successful jobs
6842
6854
  * @param data.scheduledForBeforeNow filter on jobs scheduled_for before now (hence waitinf for a worker)
6843
- * @param data.jobKinds filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
6855
+ * @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')
6844
6856
  * @param data.suspended filter on suspended jobs
6845
6857
  * @param data.running filter on running jobs
6846
6858
  * @param data.args filter on jobs containing those args as a json subset (@> in postgres)
6847
6859
  * @param data.result filter on jobs containing those result as a json subset (@> in postgres)
6848
6860
  * @param data.allowWildcards allow wildcards (*) in the filter of label, tag, worker
6849
- * @param data.tag filter on jobs with a given tag/worker group
6861
+ * @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')
6850
6862
  * @param data.page which page to return (start at 1, default 1)
6851
6863
  * @param data.perPage number of items to return for a given page (default 30, max 100)
6852
6864
  * @param data.allWorkspaces get jobs from all workspaces (only valid if request come from the `admins` workspace)
@@ -6946,12 +6958,12 @@ var JobService = class {
6946
6958
  * get the ids of all jobs matching the given filters
6947
6959
  * @param data The data for the request.
6948
6960
  * @param data.workspace
6949
- * @param data.createdBy mask to filter exact matching user creator
6950
- * @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')
6951
- * @param data.worker worker this job was ran on
6961
+ * @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')
6962
+ * @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')
6963
+ * @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')
6952
6964
  * @param data.parentJob The parent job that is at the origin and responsible for the execution of this script if any
6953
- * @param data.scriptPathExact mask to filter exact matching path
6954
- * @param data.scriptPathStart mask to filter matching starting path
6965
+ * @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')
6966
+ * @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')
6955
6967
  * @param data.schedulePath mask to filter by schedule path
6956
6968
  * @param data.scriptHash mask to filter exact matching path
6957
6969
  * @param data.startedBefore filter on started before (inclusive) timestamp
@@ -6964,10 +6976,10 @@ var JobService = class {
6964
6976
  * @param data.createdAfterQueue filter on jobs created after X for jobs in the queue only
6965
6977
  * @param data.running filter on running jobs
6966
6978
  * @param data.scheduledForBeforeNow filter on jobs scheduled_for before now (hence waitinf for a worker)
6967
- * @param data.jobKinds filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
6979
+ * @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')
6968
6980
  * @param data.suspended filter on suspended jobs
6969
6981
  * @param data.args filter on jobs containing those args as a json subset (@> in postgres)
6970
- * @param data.tag filter on jobs with a given tag/worker group
6982
+ * @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')
6971
6983
  * @param data.result filter on jobs containing those result as a json subset (@> in postgres)
6972
6984
  * @param data.page which page to return (start at 1, default 1)
6973
6985
  * @param data.perPage number of items to return for a given page (default 30, max 100)
@@ -7025,23 +7037,23 @@ var JobService = class {
7025
7037
  * @param data The data for the request.
7026
7038
  * @param data.workspace
7027
7039
  * @param data.orderDesc order by desc order (default true)
7028
- * @param data.createdBy mask to filter exact matching user creator
7040
+ * @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')
7029
7041
  * @param data.parentJob The parent job that is at the origin and responsible for the execution of this script if any
7030
- * @param data.scriptPathExact mask to filter exact matching path
7031
- * @param data.scriptPathStart mask to filter matching starting path
7042
+ * @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')
7043
+ * @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')
7032
7044
  * @param data.schedulePath mask to filter by schedule path
7033
7045
  * @param data.scriptHash mask to filter exact matching path
7034
7046
  * @param data.startedBefore filter on started before (inclusive) timestamp
7035
7047
  * @param data.startedAfter filter on started after (exclusive) timestamp
7036
7048
  * @param data.success filter on successful jobs
7037
7049
  * @param data.scheduledForBeforeNow filter on jobs scheduled_for before now (hence waitinf for a worker)
7038
- * @param data.jobKinds filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
7050
+ * @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')
7039
7051
  * @param data.suspended filter on suspended jobs
7040
7052
  * @param data.running filter on running jobs
7041
7053
  * @param data.args filter on jobs containing those args as a json subset (@> in postgres)
7042
7054
  * @param data.result filter on jobs containing those result as a json subset (@> in postgres)
7043
7055
  * @param data.allowWildcards allow wildcards (*) in the filter of label, tag, worker
7044
- * @param data.tag filter on jobs with a given tag/worker group
7056
+ * @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')
7045
7057
  * @param data.page which page to return (start at 1, default 1)
7046
7058
  * @param data.perPage number of items to return for a given page (default 30, max 100)
7047
7059
  * @param data.concurrencyKey
@@ -7124,22 +7136,22 @@ var JobService = class {
7124
7136
  * @param data The data for the request.
7125
7137
  * @param data.workspace
7126
7138
  * @param data.orderDesc order by desc order (default true)
7127
- * @param data.createdBy mask to filter exact matching user creator
7128
- * @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')
7129
- * @param data.worker worker this job was ran on
7139
+ * @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')
7140
+ * @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')
7141
+ * @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')
7130
7142
  * @param data.parentJob The parent job that is at the origin and responsible for the execution of this script if any
7131
- * @param data.scriptPathExact mask to filter exact matching path
7132
- * @param data.scriptPathStart mask to filter matching starting path
7143
+ * @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')
7144
+ * @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')
7133
7145
  * @param data.schedulePath mask to filter by schedule path
7134
7146
  * @param data.scriptHash mask to filter exact matching path
7135
7147
  * @param data.startedBefore filter on started before (inclusive) timestamp
7136
7148
  * @param data.startedAfter filter on started after (exclusive) timestamp
7137
7149
  * @param data.success filter on successful jobs
7138
- * @param data.jobKinds filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
7150
+ * @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')
7139
7151
  * @param data.args filter on jobs containing those args as a json subset (@> in postgres)
7140
7152
  * @param data.result filter on jobs containing those result as a json subset (@> in postgres)
7141
7153
  * @param data.allowWildcards allow wildcards (*) in the filter of label, tag, worker
7142
- * @param data.tag filter on jobs with a given tag/worker group
7154
+ * @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')
7143
7155
  * @param data.page which page to return (start at 1, default 1)
7144
7156
  * @param data.perPage number of items to return for a given page (default 30, max 100)
7145
7157
  * @param data.isSkipped is the job skipped
@@ -7276,12 +7288,12 @@ var JobService = class {
7276
7288
  * list all jobs
7277
7289
  * @param data The data for the request.
7278
7290
  * @param data.workspace
7279
- * @param data.createdBy mask to filter exact matching user creator
7280
- * @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')
7281
- * @param data.worker worker this job was ran on
7291
+ * @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')
7292
+ * @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')
7293
+ * @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')
7282
7294
  * @param data.parentJob The parent job that is at the origin and responsible for the execution of this script if any
7283
- * @param data.scriptPathExact mask to filter exact matching path
7284
- * @param data.scriptPathStart mask to filter matching starting path
7295
+ * @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')
7296
+ * @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')
7285
7297
  * @param data.schedulePath mask to filter by schedule path
7286
7298
  * @param data.scriptHash mask to filter exact matching path
7287
7299
  * @param data.startedBefore filter on started before (inclusive) timestamp
@@ -7294,14 +7306,14 @@ var JobService = class {
7294
7306
  * @param data.createdAfterQueue filter on jobs created after X for jobs in the queue only
7295
7307
  * @param data.running filter on running jobs
7296
7308
  * @param data.scheduledForBeforeNow filter on jobs scheduled_for before now (hence waitinf for a worker)
7297
- * @param data.jobKinds filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
7309
+ * @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')
7298
7310
  * @param data.suspended filter on suspended jobs
7299
7311
  * @param data.args filter on jobs containing those args as a json subset (@> in postgres)
7300
- * @param data.tag filter on jobs with a given tag/worker group
7312
+ * @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')
7301
7313
  * @param data.result filter on jobs containing those result as a json subset (@> in postgres)
7302
7314
  * @param data.allowWildcards allow wildcards (*) in the filter of label, tag, worker
7303
7315
  * @param data.perPage number of items to return for a given page (default 30, max 100)
7304
- * @param data.triggerKind trigger kind (schedule, http, websocket...)
7316
+ * @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')
7305
7317
  * @param data.isSkipped is the job skipped
7306
7318
  * @param data.isFlowStep is the job a flow step
7307
7319
  * @param data.hasNullParent has null parent
@@ -8113,11 +8125,11 @@ var JobService = class {
8113
8125
  * @param data.workspace
8114
8126
  * @param data.concurrencyKey
8115
8127
  * @param data.rowLimit
8116
- * @param data.createdBy mask to filter exact matching user creator
8117
- * @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')
8128
+ * @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')
8129
+ * @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')
8118
8130
  * @param data.parentJob The parent job that is at the origin and responsible for the execution of this script if any
8119
- * @param data.scriptPathExact mask to filter exact matching path
8120
- * @param data.scriptPathStart mask to filter matching starting path
8131
+ * @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')
8132
+ * @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')
8121
8133
  * @param data.schedulePath mask to filter by schedule path
8122
8134
  * @param data.scriptHash mask to filter exact matching path
8123
8135
  * @param data.startedBefore filter on started before (inclusive) timestamp
@@ -8128,14 +8140,14 @@ var JobService = class {
8128
8140
  * @param data.completedAfter filter on started after (exclusive) timestamp
8129
8141
  * @param data.createdBeforeQueue filter on jobs created before X for jobs in the queue only
8130
8142
  * @param data.createdAfterQueue filter on jobs created after X for jobs in the queue only
8131
- * @param data.jobKinds filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
8143
+ * @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')
8132
8144
  * @param data.args filter on jobs containing those args as a json subset (@> in postgres)
8133
- * @param data.tag filter on jobs with a given tag/worker group
8145
+ * @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')
8134
8146
  * @param data.result filter on jobs containing those result as a json subset (@> in postgres)
8135
8147
  * @param data.allowWildcards allow wildcards (*) in the filter of label, tag, worker
8136
8148
  * @param data.page which page to return (start at 1, default 1)
8137
8149
  * @param data.perPage number of items to return for a given page (default 30, max 100)
8138
- * @param data.triggerKind trigger kind (schedule, http, websocket...)
8150
+ * @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')
8139
8151
  * @param data.isSkipped is the job skipped
8140
8152
  * @param data.isFlowStep is the job a flow step
8141
8153
  * @param data.hasNullParent has null parent
@@ -8262,7 +8274,7 @@ var RawAppService = class {
8262
8274
  * @param data.page which page to return (start at 1, default 1)
8263
8275
  * @param data.perPage number of items to return for a given page (default 30, max 100)
8264
8276
  * @param data.orderDesc order by desc order (default true)
8265
- * @param data.createdBy mask to filter exact matching user creator
8277
+ * @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')
8266
8278
  * @param data.pathStart mask to filter matching starting path
8267
8279
  * @param data.pathExact mask to filter exact matching path
8268
8280
  * @param data.starredOnly (default false)
@@ -8472,9 +8484,12 @@ var ScheduleService = class {
8472
8484
  * @param data.page which page to return (start at 1, default 1)
8473
8485
  * @param data.perPage number of items to return for a given page (default 30, max 100)
8474
8486
  * @param data.args filter on jobs containing those args as a json subset (@> in postgres)
8475
- * @param data.path filter by path
8487
+ * @param data.path filter by path (script path)
8476
8488
  * @param data.isFlow filter schedules by whether they target a flow
8477
8489
  * @param data.pathStart filter schedules by path prefix
8490
+ * @param data.schedulePath exact match on the schedule's path
8491
+ * @param data.description pattern match filter for description field (case-insensitive)
8492
+ * @param data.summary pattern match filter for summary field (case-insensitive)
8478
8493
  * @returns Schedule schedule list
8479
8494
  * @throws ApiError
8480
8495
  */
@@ -8489,7 +8504,10 @@ var ScheduleService = class {
8489
8504
  args: data.args,
8490
8505
  path: data.path,
8491
8506
  is_flow: data.isFlow,
8492
- path_start: data.pathStart
8507
+ path_start: data.pathStart,
8508
+ schedule_path: data.schedulePath,
8509
+ description: data.description,
8510
+ summary: data.summary
8493
8511
  }
8494
8512
  });
8495
8513
  }
@@ -12481,11 +12499,11 @@ var ConcurrencyGroupsService = class {
12481
12499
  * @param data.workspace
12482
12500
  * @param data.concurrencyKey
12483
12501
  * @param data.rowLimit
12484
- * @param data.createdBy mask to filter exact matching user creator
12485
- * @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')
12502
+ * @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')
12503
+ * @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')
12486
12504
  * @param data.parentJob The parent job that is at the origin and responsible for the execution of this script if any
12487
- * @param data.scriptPathExact mask to filter exact matching path
12488
- * @param data.scriptPathStart mask to filter matching starting path
12505
+ * @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')
12506
+ * @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')
12489
12507
  * @param data.schedulePath mask to filter by schedule path
12490
12508
  * @param data.scriptHash mask to filter exact matching path
12491
12509
  * @param data.startedBefore filter on started before (inclusive) timestamp
@@ -12496,14 +12514,14 @@ var ConcurrencyGroupsService = class {
12496
12514
  * @param data.completedAfter filter on started after (exclusive) timestamp
12497
12515
  * @param data.createdBeforeQueue filter on jobs created before X for jobs in the queue only
12498
12516
  * @param data.createdAfterQueue filter on jobs created after X for jobs in the queue only
12499
- * @param data.jobKinds filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
12517
+ * @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')
12500
12518
  * @param data.args filter on jobs containing those args as a json subset (@> in postgres)
12501
- * @param data.tag filter on jobs with a given tag/worker group
12519
+ * @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')
12502
12520
  * @param data.result filter on jobs containing those result as a json subset (@> in postgres)
12503
12521
  * @param data.allowWildcards allow wildcards (*) in the filter of label, tag, worker
12504
12522
  * @param data.page which page to return (start at 1, default 1)
12505
12523
  * @param data.perPage number of items to return for a given page (default 30, max 100)
12506
- * @param data.triggerKind trigger kind (schedule, http, websocket...)
12524
+ * @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')
12507
12525
  * @param data.isSkipped is the job skipped
12508
12526
  * @param data.isFlowStep is the job a flow step
12509
12527
  * @param data.hasNullParent has null parent
@@ -12647,6 +12665,8 @@ var AssetService = class {
12647
12665
  * @param data.assetPath Filter by asset path (case-insensitive partial match)
12648
12666
  * @param data.usagePath Filter by usage path (case-insensitive partial match)
12649
12667
  * @param data.assetKinds Filter by asset kinds (multiple values allowed)
12668
+ * @param data.path exact path match filter
12669
+ * @param data.columns JSONB subset match filter for columns using base64 encoded JSON
12650
12670
  * @returns unknown paginated assets in the workspace
12651
12671
  * @throws ApiError
12652
12672
  */
@@ -12661,7 +12681,9 @@ var AssetService = class {
12661
12681
  cursor_id: data.cursorId,
12662
12682
  asset_path: data.assetPath,
12663
12683
  usage_path: data.usagePath,
12664
- asset_kinds: data.assetKinds
12684
+ asset_kinds: data.assetKinds,
12685
+ path: data.path,
12686
+ columns: data.columns
12665
12687
  }
12666
12688
  });
12667
12689
  }