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