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.
@@ -1833,6 +1833,7 @@ export type Preview = {
1833
1833
  kind?: 'code' | 'identity' | 'http';
1834
1834
  dedicated_worker?: boolean;
1835
1835
  lock?: string;
1836
+ flow_path?: string;
1836
1837
  };
1837
1838
  export type PreviewInline = {
1838
1839
  /**
@@ -1923,10 +1924,12 @@ export type ResourceType = {
1923
1924
  created_by?: string;
1924
1925
  edited_at?: string;
1925
1926
  format_extension?: string;
1927
+ is_fileset?: boolean;
1926
1928
  };
1927
1929
  export type EditResourceType = {
1928
1930
  schema?: unknown;
1929
1931
  description?: string;
1932
+ is_fileset?: boolean;
1930
1933
  };
1931
1934
  export type Schedule = {
1932
1935
  /**
@@ -4628,23 +4631,23 @@ export type ParameterPage = number;
4628
4631
  */
4629
4632
  export type ParameterPerPage = number;
4630
4633
  /**
4631
- * trigger kind (schedule, http, websocket...)
4634
+ * filter by trigger kind. Supports comma-separated list (e.g. 'schedule,webhook') and negation by prefixing all values with '!' (e.g. '!schedule,!webhook')
4632
4635
  */
4633
- export type ParameterJobTriggerKind = JobTriggerKind;
4636
+ export type ParameterJobTriggerKind = string;
4634
4637
  /**
4635
4638
  * order by desc order (default true)
4636
4639
  */
4637
4640
  export type ParameterOrderDesc = boolean;
4638
4641
  /**
4639
- * mask to filter exact matching user creator
4642
+ * 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')
4640
4643
  */
4641
4644
  export type ParameterCreatedBy = string;
4642
4645
  /**
4643
- * 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')
4646
+ * 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')
4644
4647
  */
4645
4648
  export type ParameterLabel = string;
4646
4649
  /**
4647
- * worker this job was ran on
4650
+ * 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')
4648
4651
  */
4649
4652
  export type ParameterWorker = string;
4650
4653
  /**
@@ -4685,7 +4688,7 @@ export type ParameterSkipPreprocessor = boolean;
4685
4688
  */
4686
4689
  export type ParameterPayload = string;
4687
4690
  /**
4688
- * mask to filter matching starting path
4691
+ * 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')
4689
4692
  */
4690
4693
  export type ParameterScriptStartPath = string;
4691
4694
  /**
@@ -4693,11 +4696,11 @@ export type ParameterScriptStartPath = string;
4693
4696
  */
4694
4697
  export type ParameterSchedulePath = string;
4695
4698
  /**
4696
- * mask to filter by trigger path
4699
+ * 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')
4697
4700
  */
4698
4701
  export type ParameterTriggerPath = string;
4699
4702
  /**
4700
- * mask to filter exact matching path
4703
+ * 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')
4701
4704
  */
4702
4705
  export type ParameterScriptExactPath = string;
4703
4706
  /**
@@ -4765,7 +4768,7 @@ export type ParameterAllowWildcards = boolean;
4765
4768
  */
4766
4769
  export type ParameterArgsFilter = string;
4767
4770
  /**
4768
- * filter on jobs with a given tag/worker group
4771
+ * filter by tag/worker group. Supports comma-separated list (e.g. 'gpu,highmem') and negation by prefixing all values with '!' (e.g. '!gpu,!highmem')
4769
4772
  */
4770
4773
  export type ParameterTag = string;
4771
4774
  /**
@@ -4793,7 +4796,7 @@ export type ParameterResourceName = string;
4793
4796
  */
4794
4797
  export type ParameterActionKind = 'Create' | 'Update' | 'Delete' | 'Execute';
4795
4798
  /**
4796
- * filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
4799
+ * 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')
4797
4800
  */
4798
4801
  export type ParameterJobKinds = string;
4799
4802
  export type ParameterRunnableId = string;
@@ -6211,10 +6214,18 @@ export type ExistsVariableData = {
6211
6214
  };
6212
6215
  export type ExistsVariableResponse = boolean;
6213
6216
  export type ListVariableData = {
6217
+ /**
6218
+ * pattern match filter for description field (case-insensitive)
6219
+ */
6220
+ description?: string;
6214
6221
  /**
6215
6222
  * which page to return (start at 1, default 1)
6216
6223
  */
6217
6224
  page?: number;
6225
+ /**
6226
+ * exact path match filter
6227
+ */
6228
+ path?: string;
6218
6229
  /**
6219
6230
  * filter variables by path prefix
6220
6231
  */
@@ -6223,6 +6234,10 @@ export type ListVariableData = {
6223
6234
  * number of items to return for a given page (default 30, max 100)
6224
6235
  */
6225
6236
  perPage?: number;
6237
+ /**
6238
+ * pattern match filter for non-secret variable values (case-insensitive)
6239
+ */
6240
+ value?: string;
6226
6241
  workspace: string;
6227
6242
  };
6228
6243
  export type ListVariableResponse = Array<ListableVariable>;
@@ -6474,10 +6489,18 @@ export type ExistsResourceData = {
6474
6489
  };
6475
6490
  export type ExistsResourceResponse = boolean;
6476
6491
  export type ListResourceData = {
6492
+ /**
6493
+ * pattern match filter for description field (case-insensitive)
6494
+ */
6495
+ description?: string;
6477
6496
  /**
6478
6497
  * which page to return (start at 1, default 1)
6479
6498
  */
6480
6499
  page?: number;
6500
+ /**
6501
+ * exact path match filter
6502
+ */
6503
+ path?: string;
6481
6504
  /**
6482
6505
  * filter resources by path prefix
6483
6506
  */
@@ -6494,6 +6517,10 @@ export type ListResourceData = {
6494
6517
  * resource_types to not list from, separated by ',',
6495
6518
  */
6496
6519
  resourceTypeExclude?: string;
6520
+ /**
6521
+ * JSONB subset match filter using base64 encoded JSON
6522
+ */
6523
+ value?: string;
6497
6524
  workspace: string;
6498
6525
  };
6499
6526
  export type ListResourceResponse = Array<ListableResource>;
@@ -6534,7 +6561,12 @@ export type CreateResourceTypeResponse = string;
6534
6561
  export type FileResourceTypeToFileExtMapData = {
6535
6562
  workspace: string;
6536
6563
  };
6537
- export type FileResourceTypeToFileExtMapResponse = unknown;
6564
+ export type FileResourceTypeToFileExtMapResponse = {
6565
+ [key: string]: {
6566
+ format_extension?: string | null;
6567
+ is_fileset?: boolean;
6568
+ };
6569
+ };
6538
6570
  export type DeleteResourceTypeData = {
6539
6571
  path: string;
6540
6572
  workspace: string;
@@ -6681,7 +6713,7 @@ export type ListSearchFlowResponse = Array<{
6681
6713
  }>;
6682
6714
  export type ListFlowsData = {
6683
6715
  /**
6684
- * mask to filter exact matching user creator
6716
+ * 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')
6685
6717
  */
6686
6718
  createdBy?: string;
6687
6719
  /**
@@ -6919,7 +6951,7 @@ export type ListSearchAppResponse = Array<{
6919
6951
  }>;
6920
6952
  export type ListAppsData = {
6921
6953
  /**
6922
- * mask to filter exact matching user creator
6954
+ * 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')
6923
6955
  */
6924
6956
  createdBy?: string;
6925
6957
  /**
@@ -7270,7 +7302,7 @@ export type ListSearchScriptResponse = Array<{
7270
7302
  }>;
7271
7303
  export type ListScriptsData = {
7272
7304
  /**
7273
- * mask to filter exact matching user creator
7305
+ * 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')
7274
7306
  */
7275
7307
  createdBy?: string;
7276
7308
  /**
@@ -8553,7 +8585,7 @@ export type ListQueueData = {
8553
8585
  */
8554
8586
  args?: string;
8555
8587
  /**
8556
- * mask to filter exact matching user creator
8588
+ * 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')
8557
8589
  */
8558
8590
  createdBy?: string;
8559
8591
  /**
@@ -8561,7 +8593,7 @@ export type ListQueueData = {
8561
8593
  */
8562
8594
  isNotSchedule?: boolean;
8563
8595
  /**
8564
- * filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
8596
+ * 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')
8565
8597
  */
8566
8598
  jobKinds?: string;
8567
8599
  /**
@@ -8601,11 +8633,11 @@ export type ListQueueData = {
8601
8633
  */
8602
8634
  scriptHash?: string;
8603
8635
  /**
8604
- * mask to filter exact matching path
8636
+ * 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')
8605
8637
  */
8606
8638
  scriptPathExact?: string;
8607
8639
  /**
8608
- * mask to filter matching starting path
8640
+ * 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')
8609
8641
  */
8610
8642
  scriptPathStart?: string;
8611
8643
  /**
@@ -8625,19 +8657,19 @@ export type ListQueueData = {
8625
8657
  */
8626
8658
  suspended?: boolean;
8627
8659
  /**
8628
- * filter on jobs with a given tag/worker group
8660
+ * filter by tag/worker group. Supports comma-separated list (e.g. 'gpu,highmem') and negation by prefixing all values with '!' (e.g. '!gpu,!highmem')
8629
8661
  */
8630
8662
  tag?: string;
8631
8663
  /**
8632
- * trigger kind (schedule, http, websocket...)
8664
+ * filter by trigger kind. Supports comma-separated list (e.g. 'schedule,webhook') and negation by prefixing all values with '!' (e.g. '!schedule,!webhook')
8633
8665
  */
8634
- triggerKind?: JobTriggerKind;
8666
+ triggerKind?: string;
8635
8667
  /**
8636
- * mask to filter by trigger path
8668
+ * 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')
8637
8669
  */
8638
8670
  triggerPath?: string;
8639
8671
  /**
8640
- * worker this job was ran on
8672
+ * 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')
8641
8673
  */
8642
8674
  worker?: string;
8643
8675
  workspace: string;
@@ -8702,7 +8734,7 @@ export type ListFilteredJobsUuidsData = {
8702
8734
  */
8703
8735
  createdBeforeQueue?: string;
8704
8736
  /**
8705
- * mask to filter exact matching user creator
8737
+ * 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')
8706
8738
  */
8707
8739
  createdBy?: string;
8708
8740
  /**
@@ -8722,11 +8754,11 @@ export type ListFilteredJobsUuidsData = {
8722
8754
  */
8723
8755
  isSkipped?: boolean;
8724
8756
  /**
8725
- * filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
8757
+ * 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')
8726
8758
  */
8727
8759
  jobKinds?: string;
8728
8760
  /**
8729
- * 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')
8761
+ * 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')
8730
8762
  */
8731
8763
  label?: string;
8732
8764
  /**
@@ -8762,11 +8794,11 @@ export type ListFilteredJobsUuidsData = {
8762
8794
  */
8763
8795
  scriptHash?: string;
8764
8796
  /**
8765
- * mask to filter exact matching path
8797
+ * 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')
8766
8798
  */
8767
8799
  scriptPathExact?: string;
8768
8800
  /**
8769
- * mask to filter matching starting path
8801
+ * 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')
8770
8802
  */
8771
8803
  scriptPathStart?: string;
8772
8804
  /**
@@ -8786,11 +8818,11 @@ export type ListFilteredJobsUuidsData = {
8786
8818
  */
8787
8819
  suspended?: boolean;
8788
8820
  /**
8789
- * filter on jobs with a given tag/worker group
8821
+ * filter by tag/worker group. Supports comma-separated list (e.g. 'gpu,highmem') and negation by prefixing all values with '!' (e.g. '!gpu,!highmem')
8790
8822
  */
8791
8823
  tag?: string;
8792
8824
  /**
8793
- * worker this job was ran on
8825
+ * 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')
8794
8826
  */
8795
8827
  worker?: string;
8796
8828
  workspace: string;
@@ -8811,7 +8843,7 @@ export type ListFilteredQueueUuidsData = {
8811
8843
  args?: string;
8812
8844
  concurrencyKey?: string;
8813
8845
  /**
8814
- * mask to filter exact matching user creator
8846
+ * 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')
8815
8847
  */
8816
8848
  createdBy?: string;
8817
8849
  /**
@@ -8819,7 +8851,7 @@ export type ListFilteredQueueUuidsData = {
8819
8851
  */
8820
8852
  isNotSchedule?: boolean;
8821
8853
  /**
8822
- * filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
8854
+ * 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')
8823
8855
  */
8824
8856
  jobKinds?: string;
8825
8857
  /**
@@ -8859,11 +8891,11 @@ export type ListFilteredQueueUuidsData = {
8859
8891
  */
8860
8892
  scriptHash?: string;
8861
8893
  /**
8862
- * mask to filter exact matching path
8894
+ * 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')
8863
8895
  */
8864
8896
  scriptPathExact?: string;
8865
8897
  /**
8866
- * mask to filter matching starting path
8898
+ * 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')
8867
8899
  */
8868
8900
  scriptPathStart?: string;
8869
8901
  /**
@@ -8883,7 +8915,7 @@ export type ListFilteredQueueUuidsData = {
8883
8915
  */
8884
8916
  suspended?: boolean;
8885
8917
  /**
8886
- * filter on jobs with a given tag/worker group
8918
+ * filter by tag/worker group. Supports comma-separated list (e.g. 'gpu,highmem') and negation by prefixing all values with '!' (e.g. '!gpu,!highmem')
8887
8919
  */
8888
8920
  tag?: string;
8889
8921
  workspace: string;
@@ -8915,7 +8947,7 @@ export type ListCompletedJobsData = {
8915
8947
  */
8916
8948
  args?: string;
8917
8949
  /**
8918
- * mask to filter exact matching user creator
8950
+ * 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')
8919
8951
  */
8920
8952
  createdBy?: string;
8921
8953
  /**
@@ -8935,11 +8967,11 @@ export type ListCompletedJobsData = {
8935
8967
  */
8936
8968
  isSkipped?: boolean;
8937
8969
  /**
8938
- * filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
8970
+ * 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')
8939
8971
  */
8940
8972
  jobKinds?: string;
8941
8973
  /**
8942
- * 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')
8974
+ * 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')
8943
8975
  */
8944
8976
  label?: string;
8945
8977
  /**
@@ -8971,11 +9003,11 @@ export type ListCompletedJobsData = {
8971
9003
  */
8972
9004
  scriptHash?: string;
8973
9005
  /**
8974
- * mask to filter exact matching path
9006
+ * 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')
8975
9007
  */
8976
9008
  scriptPathExact?: string;
8977
9009
  /**
8978
- * mask to filter matching starting path
9010
+ * 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')
8979
9011
  */
8980
9012
  scriptPathStart?: string;
8981
9013
  /**
@@ -8991,11 +9023,11 @@ export type ListCompletedJobsData = {
8991
9023
  */
8992
9024
  success?: boolean;
8993
9025
  /**
8994
- * filter on jobs with a given tag/worker group
9026
+ * filter by tag/worker group. Supports comma-separated list (e.g. 'gpu,highmem') and negation by prefixing all values with '!' (e.g. '!gpu,!highmem')
8995
9027
  */
8996
9028
  tag?: string;
8997
9029
  /**
8998
- * worker this job was ran on
9030
+ * 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')
8999
9031
  */
9000
9032
  worker?: string;
9001
9033
  workspace: string;
@@ -9078,7 +9110,7 @@ export type ListJobsData = {
9078
9110
  */
9079
9111
  createdBeforeQueue?: string;
9080
9112
  /**
9081
- * mask to filter exact matching user creator
9113
+ * 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')
9082
9114
  */
9083
9115
  createdBy?: string;
9084
9116
  /**
@@ -9098,11 +9130,11 @@ export type ListJobsData = {
9098
9130
  */
9099
9131
  isSkipped?: boolean;
9100
9132
  /**
9101
- * filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
9133
+ * 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')
9102
9134
  */
9103
9135
  jobKinds?: string;
9104
9136
  /**
9105
- * 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')
9137
+ * 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')
9106
9138
  */
9107
9139
  label?: string;
9108
9140
  /**
@@ -9134,11 +9166,11 @@ export type ListJobsData = {
9134
9166
  */
9135
9167
  scriptHash?: string;
9136
9168
  /**
9137
- * mask to filter exact matching path
9169
+ * 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')
9138
9170
  */
9139
9171
  scriptPathExact?: string;
9140
9172
  /**
9141
- * mask to filter matching starting path
9173
+ * 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')
9142
9174
  */
9143
9175
  scriptPathStart?: string;
9144
9176
  /**
@@ -9158,15 +9190,15 @@ export type ListJobsData = {
9158
9190
  */
9159
9191
  suspended?: boolean;
9160
9192
  /**
9161
- * filter on jobs with a given tag/worker group
9193
+ * filter by tag/worker group. Supports comma-separated list (e.g. 'gpu,highmem') and negation by prefixing all values with '!' (e.g. '!gpu,!highmem')
9162
9194
  */
9163
9195
  tag?: string;
9164
9196
  /**
9165
- * trigger kind (schedule, http, websocket...)
9197
+ * filter by trigger kind. Supports comma-separated list (e.g. 'schedule,webhook') and negation by prefixing all values with '!' (e.g. '!schedule,!webhook')
9166
9198
  */
9167
- triggerKind?: JobTriggerKind;
9199
+ triggerKind?: string;
9168
9200
  /**
9169
- * worker this job was ran on
9201
+ * 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')
9170
9202
  */
9171
9203
  worker?: string;
9172
9204
  workspace: string;
@@ -9511,7 +9543,7 @@ export type ListExtendedJobsData = {
9511
9543
  */
9512
9544
  createdBeforeQueue?: string;
9513
9545
  /**
9514
- * mask to filter exact matching user creator
9546
+ * 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')
9515
9547
  */
9516
9548
  createdBy?: string;
9517
9549
  /**
@@ -9531,11 +9563,11 @@ export type ListExtendedJobsData = {
9531
9563
  */
9532
9564
  isSkipped?: boolean;
9533
9565
  /**
9534
- * filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
9566
+ * 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')
9535
9567
  */
9536
9568
  jobKinds?: string;
9537
9569
  /**
9538
- * 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')
9570
+ * 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')
9539
9571
  */
9540
9572
  label?: string;
9541
9573
  /**
@@ -9572,11 +9604,11 @@ export type ListExtendedJobsData = {
9572
9604
  */
9573
9605
  scriptHash?: string;
9574
9606
  /**
9575
- * mask to filter exact matching path
9607
+ * 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')
9576
9608
  */
9577
9609
  scriptPathExact?: string;
9578
9610
  /**
9579
- * mask to filter matching starting path
9611
+ * 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')
9580
9612
  */
9581
9613
  scriptPathStart?: string;
9582
9614
  /**
@@ -9592,13 +9624,13 @@ export type ListExtendedJobsData = {
9592
9624
  */
9593
9625
  success?: boolean;
9594
9626
  /**
9595
- * filter on jobs with a given tag/worker group
9627
+ * filter by tag/worker group. Supports comma-separated list (e.g. 'gpu,highmem') and negation by prefixing all values with '!' (e.g. '!gpu,!highmem')
9596
9628
  */
9597
9629
  tag?: string;
9598
9630
  /**
9599
- * trigger kind (schedule, http, websocket...)
9631
+ * filter by trigger kind. Supports comma-separated list (e.g. 'schedule,webhook') and negation by prefixing all values with '!' (e.g. '!schedule,!webhook')
9600
9632
  */
9601
- triggerKind?: JobTriggerKind;
9633
+ triggerKind?: string;
9602
9634
  workspace: string;
9603
9635
  };
9604
9636
  export type ListExtendedJobsResponse = ExtendedJobs;
@@ -9648,7 +9680,7 @@ export type ListConversationMessagesData = {
9648
9680
  export type ListConversationMessagesResponse = Array<FlowConversationMessage>;
9649
9681
  export type ListRawAppsData = {
9650
9682
  /**
9651
- * mask to filter exact matching user creator
9683
+ * 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')
9652
9684
  */
9653
9685
  createdBy?: string;
9654
9686
  /**
@@ -9781,6 +9813,10 @@ export type ListSchedulesData = {
9781
9813
  * filter on jobs containing those args as a json subset (@> in postgres)
9782
9814
  */
9783
9815
  args?: string;
9816
+ /**
9817
+ * pattern match filter for description field (case-insensitive)
9818
+ */
9819
+ description?: string;
9784
9820
  /**
9785
9821
  * filter schedules by whether they target a flow
9786
9822
  */
@@ -9790,7 +9826,7 @@ export type ListSchedulesData = {
9790
9826
  */
9791
9827
  page?: number;
9792
9828
  /**
9793
- * filter by path
9829
+ * filter by path (script path)
9794
9830
  */
9795
9831
  path?: string;
9796
9832
  /**
@@ -9801,6 +9837,14 @@ export type ListSchedulesData = {
9801
9837
  * number of items to return for a given page (default 30, max 100)
9802
9838
  */
9803
9839
  perPage?: number;
9840
+ /**
9841
+ * exact match on the schedule's path
9842
+ */
9843
+ schedulePath?: string;
9844
+ /**
9845
+ * pattern match filter for summary field (case-insensitive)
9846
+ */
9847
+ summary?: string;
9804
9848
  workspace: string;
9805
9849
  };
9806
9850
  export type ListSchedulesResponse = Array<Schedule>;
@@ -11757,6 +11801,10 @@ export type ListAssetsData = {
11757
11801
  * Filter by asset path (case-insensitive partial match)
11758
11802
  */
11759
11803
  assetPath?: string;
11804
+ /**
11805
+ * JSONB subset match filter for columns using base64 encoded JSON
11806
+ */
11807
+ columns?: string;
11760
11808
  /**
11761
11809
  * Cursor timestamp for pagination (created_at of last item from previous page)
11762
11810
  */
@@ -11765,6 +11813,10 @@ export type ListAssetsData = {
11765
11813
  * Cursor ID for pagination (id of last item from previous page)
11766
11814
  */
11767
11815
  cursorId?: number;
11816
+ /**
11817
+ * exact path match filter
11818
+ */
11819
+ path?: string;
11768
11820
  /**
11769
11821
  * Number of items per page (max 1000, default 50)
11770
11822
  */
@@ -14928,10 +14980,18 @@ export type $OpenApiTs = {
14928
14980
  '/w/{workspace}/variables/list': {
14929
14981
  get: {
14930
14982
  req: {
14983
+ /**
14984
+ * pattern match filter for description field (case-insensitive)
14985
+ */
14986
+ description?: string;
14931
14987
  /**
14932
14988
  * which page to return (start at 1, default 1)
14933
14989
  */
14934
14990
  page?: number;
14991
+ /**
14992
+ * exact path match filter
14993
+ */
14994
+ path?: string;
14935
14995
  /**
14936
14996
  * filter variables by path prefix
14937
14997
  */
@@ -14940,6 +15000,10 @@ export type $OpenApiTs = {
14940
15000
  * number of items to return for a given page (default 30, max 100)
14941
15001
  */
14942
15002
  perPage?: number;
15003
+ /**
15004
+ * pattern match filter for non-secret variable values (case-insensitive)
15005
+ */
15006
+ value?: string;
14943
15007
  workspace: string;
14944
15008
  };
14945
15009
  res: {
@@ -15416,10 +15480,18 @@ export type $OpenApiTs = {
15416
15480
  '/w/{workspace}/resources/list': {
15417
15481
  get: {
15418
15482
  req: {
15483
+ /**
15484
+ * pattern match filter for description field (case-insensitive)
15485
+ */
15486
+ description?: string;
15419
15487
  /**
15420
15488
  * which page to return (start at 1, default 1)
15421
15489
  */
15422
15490
  page?: number;
15491
+ /**
15492
+ * exact path match filter
15493
+ */
15494
+ path?: string;
15423
15495
  /**
15424
15496
  * filter resources by path prefix
15425
15497
  */
@@ -15436,6 +15508,10 @@ export type $OpenApiTs = {
15436
15508
  * resource_types to not list from, separated by ',',
15437
15509
  */
15438
15510
  resourceTypeExclude?: string;
15511
+ /**
15512
+ * JSONB subset match filter using base64 encoded JSON
15513
+ */
15514
+ value?: string;
15439
15515
  workspace: string;
15440
15516
  };
15441
15517
  res: {
@@ -15523,9 +15599,14 @@ export type $OpenApiTs = {
15523
15599
  };
15524
15600
  res: {
15525
15601
  /**
15526
- * map from resource type to file ext
15602
+ * map from resource type to file resource info
15527
15603
  */
15528
- 200: unknown;
15604
+ 200: {
15605
+ [key: string]: {
15606
+ format_extension?: string | null;
15607
+ is_fileset?: boolean;
15608
+ };
15609
+ };
15529
15610
  };
15530
15611
  };
15531
15612
  };
@@ -15821,7 +15902,7 @@ export type $OpenApiTs = {
15821
15902
  get: {
15822
15903
  req: {
15823
15904
  /**
15824
- * mask to filter exact matching user creator
15905
+ * 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')
15825
15906
  */
15826
15907
  createdBy?: string;
15827
15908
  /**
@@ -16266,7 +16347,7 @@ export type $OpenApiTs = {
16266
16347
  get: {
16267
16348
  req: {
16268
16349
  /**
16269
- * mask to filter exact matching user creator
16350
+ * 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')
16270
16351
  */
16271
16352
  createdBy?: string;
16272
16353
  /**
@@ -16887,7 +16968,7 @@ export type $OpenApiTs = {
16887
16968
  get: {
16888
16969
  req: {
16889
16970
  /**
16890
- * mask to filter exact matching user creator
16971
+ * 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')
16891
16972
  */
16892
16973
  createdBy?: string;
16893
16974
  /**
@@ -18770,7 +18851,7 @@ export type $OpenApiTs = {
18770
18851
  */
18771
18852
  args?: string;
18772
18853
  /**
18773
- * mask to filter exact matching user creator
18854
+ * 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')
18774
18855
  */
18775
18856
  createdBy?: string;
18776
18857
  /**
@@ -18778,7 +18859,7 @@ export type $OpenApiTs = {
18778
18859
  */
18779
18860
  isNotSchedule?: boolean;
18780
18861
  /**
18781
- * filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
18862
+ * 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')
18782
18863
  */
18783
18864
  jobKinds?: string;
18784
18865
  /**
@@ -18818,11 +18899,11 @@ export type $OpenApiTs = {
18818
18899
  */
18819
18900
  scriptHash?: string;
18820
18901
  /**
18821
- * mask to filter exact matching path
18902
+ * 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')
18822
18903
  */
18823
18904
  scriptPathExact?: string;
18824
18905
  /**
18825
- * mask to filter matching starting path
18906
+ * 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')
18826
18907
  */
18827
18908
  scriptPathStart?: string;
18828
18909
  /**
@@ -18842,19 +18923,19 @@ export type $OpenApiTs = {
18842
18923
  */
18843
18924
  suspended?: boolean;
18844
18925
  /**
18845
- * filter on jobs with a given tag/worker group
18926
+ * filter by tag/worker group. Supports comma-separated list (e.g. 'gpu,highmem') and negation by prefixing all values with '!' (e.g. '!gpu,!highmem')
18846
18927
  */
18847
18928
  tag?: string;
18848
18929
  /**
18849
- * trigger kind (schedule, http, websocket...)
18930
+ * filter by trigger kind. Supports comma-separated list (e.g. 'schedule,webhook') and negation by prefixing all values with '!' (e.g. '!schedule,!webhook')
18850
18931
  */
18851
- triggerKind?: JobTriggerKind;
18932
+ triggerKind?: string;
18852
18933
  /**
18853
- * mask to filter by trigger path
18934
+ * 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')
18854
18935
  */
18855
18936
  triggerPath?: string;
18856
18937
  /**
18857
- * worker this job was ran on
18938
+ * 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')
18858
18939
  */
18859
18940
  worker?: string;
18860
18941
  workspace: string;
@@ -18955,7 +19036,7 @@ export type $OpenApiTs = {
18955
19036
  */
18956
19037
  createdBeforeQueue?: string;
18957
19038
  /**
18958
- * mask to filter exact matching user creator
19039
+ * 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')
18959
19040
  */
18960
19041
  createdBy?: string;
18961
19042
  /**
@@ -18975,11 +19056,11 @@ export type $OpenApiTs = {
18975
19056
  */
18976
19057
  isSkipped?: boolean;
18977
19058
  /**
18978
- * filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
19059
+ * 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')
18979
19060
  */
18980
19061
  jobKinds?: string;
18981
19062
  /**
18982
- * 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')
19063
+ * 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')
18983
19064
  */
18984
19065
  label?: string;
18985
19066
  /**
@@ -19015,11 +19096,11 @@ export type $OpenApiTs = {
19015
19096
  */
19016
19097
  scriptHash?: string;
19017
19098
  /**
19018
- * mask to filter exact matching path
19099
+ * 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')
19019
19100
  */
19020
19101
  scriptPathExact?: string;
19021
19102
  /**
19022
- * mask to filter matching starting path
19103
+ * 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')
19023
19104
  */
19024
19105
  scriptPathStart?: string;
19025
19106
  /**
@@ -19039,11 +19120,11 @@ export type $OpenApiTs = {
19039
19120
  */
19040
19121
  suspended?: boolean;
19041
19122
  /**
19042
- * filter on jobs with a given tag/worker group
19123
+ * filter by tag/worker group. Supports comma-separated list (e.g. 'gpu,highmem') and negation by prefixing all values with '!' (e.g. '!gpu,!highmem')
19043
19124
  */
19044
19125
  tag?: string;
19045
19126
  /**
19046
- * worker this job was ran on
19127
+ * 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')
19047
19128
  */
19048
19129
  worker?: string;
19049
19130
  workspace: string;
@@ -19073,7 +19154,7 @@ export type $OpenApiTs = {
19073
19154
  args?: string;
19074
19155
  concurrencyKey?: string;
19075
19156
  /**
19076
- * mask to filter exact matching user creator
19157
+ * 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')
19077
19158
  */
19078
19159
  createdBy?: string;
19079
19160
  /**
@@ -19081,7 +19162,7 @@ export type $OpenApiTs = {
19081
19162
  */
19082
19163
  isNotSchedule?: boolean;
19083
19164
  /**
19084
- * filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
19165
+ * 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')
19085
19166
  */
19086
19167
  jobKinds?: string;
19087
19168
  /**
@@ -19121,11 +19202,11 @@ export type $OpenApiTs = {
19121
19202
  */
19122
19203
  scriptHash?: string;
19123
19204
  /**
19124
- * mask to filter exact matching path
19205
+ * 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')
19125
19206
  */
19126
19207
  scriptPathExact?: string;
19127
19208
  /**
19128
- * mask to filter matching starting path
19209
+ * 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')
19129
19210
  */
19130
19211
  scriptPathStart?: string;
19131
19212
  /**
@@ -19145,7 +19226,7 @@ export type $OpenApiTs = {
19145
19226
  */
19146
19227
  suspended?: boolean;
19147
19228
  /**
19148
- * filter on jobs with a given tag/worker group
19229
+ * filter by tag/worker group. Supports comma-separated list (e.g. 'gpu,highmem') and negation by prefixing all values with '!' (e.g. '!gpu,!highmem')
19149
19230
  */
19150
19231
  tag?: string;
19151
19232
  workspace: string;
@@ -19204,7 +19285,7 @@ export type $OpenApiTs = {
19204
19285
  */
19205
19286
  args?: string;
19206
19287
  /**
19207
- * mask to filter exact matching user creator
19288
+ * 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')
19208
19289
  */
19209
19290
  createdBy?: string;
19210
19291
  /**
@@ -19224,11 +19305,11 @@ export type $OpenApiTs = {
19224
19305
  */
19225
19306
  isSkipped?: boolean;
19226
19307
  /**
19227
- * filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
19308
+ * 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')
19228
19309
  */
19229
19310
  jobKinds?: string;
19230
19311
  /**
19231
- * 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')
19312
+ * 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')
19232
19313
  */
19233
19314
  label?: string;
19234
19315
  /**
@@ -19260,11 +19341,11 @@ export type $OpenApiTs = {
19260
19341
  */
19261
19342
  scriptHash?: string;
19262
19343
  /**
19263
- * mask to filter exact matching path
19344
+ * 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')
19264
19345
  */
19265
19346
  scriptPathExact?: string;
19266
19347
  /**
19267
- * mask to filter matching starting path
19348
+ * 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')
19268
19349
  */
19269
19350
  scriptPathStart?: string;
19270
19351
  /**
@@ -19280,11 +19361,11 @@ export type $OpenApiTs = {
19280
19361
  */
19281
19362
  success?: boolean;
19282
19363
  /**
19283
- * filter on jobs with a given tag/worker group
19364
+ * filter by tag/worker group. Supports comma-separated list (e.g. 'gpu,highmem') and negation by prefixing all values with '!' (e.g. '!gpu,!highmem')
19284
19365
  */
19285
19366
  tag?: string;
19286
19367
  /**
19287
- * worker this job was ran on
19368
+ * 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')
19288
19369
  */
19289
19370
  worker?: string;
19290
19371
  workspace: string;
@@ -19421,7 +19502,7 @@ export type $OpenApiTs = {
19421
19502
  */
19422
19503
  createdBeforeQueue?: string;
19423
19504
  /**
19424
- * mask to filter exact matching user creator
19505
+ * 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')
19425
19506
  */
19426
19507
  createdBy?: string;
19427
19508
  /**
@@ -19441,11 +19522,11 @@ export type $OpenApiTs = {
19441
19522
  */
19442
19523
  isSkipped?: boolean;
19443
19524
  /**
19444
- * filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
19525
+ * 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')
19445
19526
  */
19446
19527
  jobKinds?: string;
19447
19528
  /**
19448
- * 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')
19529
+ * 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')
19449
19530
  */
19450
19531
  label?: string;
19451
19532
  /**
@@ -19477,11 +19558,11 @@ export type $OpenApiTs = {
19477
19558
  */
19478
19559
  scriptHash?: string;
19479
19560
  /**
19480
- * mask to filter exact matching path
19561
+ * 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')
19481
19562
  */
19482
19563
  scriptPathExact?: string;
19483
19564
  /**
19484
- * mask to filter matching starting path
19565
+ * 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')
19485
19566
  */
19486
19567
  scriptPathStart?: string;
19487
19568
  /**
@@ -19501,15 +19582,15 @@ export type $OpenApiTs = {
19501
19582
  */
19502
19583
  suspended?: boolean;
19503
19584
  /**
19504
- * filter on jobs with a given tag/worker group
19585
+ * filter by tag/worker group. Supports comma-separated list (e.g. 'gpu,highmem') and negation by prefixing all values with '!' (e.g. '!gpu,!highmem')
19505
19586
  */
19506
19587
  tag?: string;
19507
19588
  /**
19508
- * trigger kind (schedule, http, websocket...)
19589
+ * filter by trigger kind. Supports comma-separated list (e.g. 'schedule,webhook') and negation by prefixing all values with '!' (e.g. '!schedule,!webhook')
19509
19590
  */
19510
- triggerKind?: JobTriggerKind;
19591
+ triggerKind?: string;
19511
19592
  /**
19512
- * worker this job was ran on
19593
+ * 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')
19513
19594
  */
19514
19595
  worker?: string;
19515
19596
  workspace: string;
@@ -20163,7 +20244,7 @@ export type $OpenApiTs = {
20163
20244
  */
20164
20245
  createdBeforeQueue?: string;
20165
20246
  /**
20166
- * mask to filter exact matching user creator
20247
+ * 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')
20167
20248
  */
20168
20249
  createdBy?: string;
20169
20250
  /**
@@ -20183,11 +20264,11 @@ export type $OpenApiTs = {
20183
20264
  */
20184
20265
  isSkipped?: boolean;
20185
20266
  /**
20186
- * filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
20267
+ * 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')
20187
20268
  */
20188
20269
  jobKinds?: string;
20189
20270
  /**
20190
- * 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')
20271
+ * 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')
20191
20272
  */
20192
20273
  label?: string;
20193
20274
  /**
@@ -20224,11 +20305,11 @@ export type $OpenApiTs = {
20224
20305
  */
20225
20306
  scriptHash?: string;
20226
20307
  /**
20227
- * mask to filter exact matching path
20308
+ * 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')
20228
20309
  */
20229
20310
  scriptPathExact?: string;
20230
20311
  /**
20231
- * mask to filter matching starting path
20312
+ * 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')
20232
20313
  */
20233
20314
  scriptPathStart?: string;
20234
20315
  /**
@@ -20244,13 +20325,13 @@ export type $OpenApiTs = {
20244
20325
  */
20245
20326
  success?: boolean;
20246
20327
  /**
20247
- * filter on jobs with a given tag/worker group
20328
+ * filter by tag/worker group. Supports comma-separated list (e.g. 'gpu,highmem') and negation by prefixing all values with '!' (e.g. '!gpu,!highmem')
20248
20329
  */
20249
20330
  tag?: string;
20250
20331
  /**
20251
- * trigger kind (schedule, http, websocket...)
20332
+ * filter by trigger kind. Supports comma-separated list (e.g. 'schedule,webhook') and negation by prefixing all values with '!' (e.g. '!schedule,!webhook')
20252
20333
  */
20253
- triggerKind?: JobTriggerKind;
20334
+ triggerKind?: string;
20254
20335
  workspace: string;
20255
20336
  };
20256
20337
  res: {
@@ -20336,7 +20417,7 @@ export type $OpenApiTs = {
20336
20417
  get: {
20337
20418
  req: {
20338
20419
  /**
20339
- * mask to filter exact matching user creator
20420
+ * 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')
20340
20421
  */
20341
20422
  createdBy?: string;
20342
20423
  /**
@@ -20559,6 +20640,10 @@ export type $OpenApiTs = {
20559
20640
  * filter on jobs containing those args as a json subset (@> in postgres)
20560
20641
  */
20561
20642
  args?: string;
20643
+ /**
20644
+ * pattern match filter for description field (case-insensitive)
20645
+ */
20646
+ description?: string;
20562
20647
  /**
20563
20648
  * filter schedules by whether they target a flow
20564
20649
  */
@@ -20568,7 +20653,7 @@ export type $OpenApiTs = {
20568
20653
  */
20569
20654
  page?: number;
20570
20655
  /**
20571
- * filter by path
20656
+ * filter by path (script path)
20572
20657
  */
20573
20658
  path?: string;
20574
20659
  /**
@@ -20579,6 +20664,14 @@ export type $OpenApiTs = {
20579
20664
  * number of items to return for a given page (default 30, max 100)
20580
20665
  */
20581
20666
  perPage?: number;
20667
+ /**
20668
+ * exact match on the schedule's path
20669
+ */
20670
+ schedulePath?: string;
20671
+ /**
20672
+ * pattern match filter for summary field (case-insensitive)
20673
+ */
20674
+ summary?: string;
20582
20675
  workspace: string;
20583
20676
  };
20584
20677
  res: {
@@ -24407,6 +24500,10 @@ export type $OpenApiTs = {
24407
24500
  * Filter by asset path (case-insensitive partial match)
24408
24501
  */
24409
24502
  assetPath?: string;
24503
+ /**
24504
+ * JSONB subset match filter for columns using base64 encoded JSON
24505
+ */
24506
+ columns?: string;
24410
24507
  /**
24411
24508
  * Cursor timestamp for pagination (created_at of last item from previous page)
24412
24509
  */
@@ -24415,6 +24512,10 @@ export type $OpenApiTs = {
24415
24512
  * Cursor ID for pagination (id of last item from previous page)
24416
24513
  */
24417
24514
  cursorId?: number;
24515
+ /**
24516
+ * exact path match filter
24517
+ */
24518
+ path?: string;
24418
24519
  /**
24419
24520
  * Number of items per page (max 1000, default 50)
24420
24521
  */