windmill-client 1.313.0 → 1.315.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.
@@ -24,7 +24,7 @@ exports.OpenAPI = {
24
24
  PASSWORD: undefined,
25
25
  TOKEN: undefined,
26
26
  USERNAME: undefined,
27
- VERSION: '1.313.0',
27
+ VERSION: '1.315.0',
28
28
  WITH_CREDENTIALS: false,
29
29
  interceptors: {
30
30
  request: new Interceptors(),
@@ -1989,6 +1989,7 @@ export declare class JobService {
1989
1989
  * @param data.page which page to return (start at 1, default 1)
1990
1990
  * @param data.perPage number of items to return for a given page (default 30, max 100)
1991
1991
  * @param data.allWorkspaces get jobs from all workspaces (only valid if request come from the `admins` workspace)
1992
+ * @param data.isNotSchedule is not a scheduled job
1992
1993
  * @returns QueuedJob All queued jobs
1993
1994
  * @throws ApiError
1994
1995
  */
@@ -2024,6 +2025,7 @@ export declare class JobService {
2024
2025
  * @param data.workspace
2025
2026
  * @param data.orderDesc order by desc order (default true)
2026
2027
  * @param data.createdBy mask to filter exact matching user creator
2028
+ * @param data.label mask to filter exact matching job's label (job labels are completed jobs with as a result an object containing a string at key 'wm_label')
2027
2029
  * @param data.parentJob The parent job that is at the origin and responsible for the execution of this script if any
2028
2030
  * @param data.scriptPathExact mask to filter exact matching path
2029
2031
  * @param data.scriptPathStart mask to filter matching starting path
@@ -2041,6 +2043,7 @@ export declare class JobService {
2041
2043
  * @param data.isSkipped is the job skipped
2042
2044
  * @param data.isFlowStep is the job a flow step
2043
2045
  * @param data.hasNullParent has null parent
2046
+ * @param data.isNotSchedule is not a scheduled job
2044
2047
  * @returns CompletedJob All completed jobs
2045
2048
  * @throws ApiError
2046
2049
  */
@@ -2050,6 +2053,7 @@ export declare class JobService {
2050
2053
  * @param data The data for the request.
2051
2054
  * @param data.workspace
2052
2055
  * @param data.createdBy mask to filter exact matching user creator
2056
+ * @param data.label mask to filter exact matching job's label (job labels are completed jobs with as a result an object containing a string at key 'wm_label')
2053
2057
  * @param data.parentJob The parent job that is at the origin and responsible for the execution of this script if any
2054
2058
  * @param data.scriptPathExact mask to filter exact matching path
2055
2059
  * @param data.scriptPathStart mask to filter matching starting path
@@ -2072,6 +2076,7 @@ export declare class JobService {
2072
2076
  * @param data.hasNullParent has null parent
2073
2077
  * @param data.success filter on successful jobs
2074
2078
  * @param data.allWorkspaces get jobs from all workspaces (only valid if request come from the `admins` workspace)
2079
+ * @param data.isNotSchedule is not a scheduled job
2075
2080
  * @returns Job All jobs
2076
2081
  * @throws ApiError
2077
2082
  */
@@ -3945,6 +3945,7 @@ class JobService {
3945
3945
  * @param data.page which page to return (start at 1, default 1)
3946
3946
  * @param data.perPage number of items to return for a given page (default 30, max 100)
3947
3947
  * @param data.allWorkspaces get jobs from all workspaces (only valid if request come from the `admins` workspace)
3948
+ * @param data.isNotSchedule is not a scheduled job
3948
3949
  * @returns QueuedJob All queued jobs
3949
3950
  * @throws ApiError
3950
3951
  */
@@ -3975,7 +3976,8 @@ class JobService {
3975
3976
  tag: data.tag,
3976
3977
  page: data.page,
3977
3978
  per_page: data.perPage,
3978
- all_workspaces: data.allWorkspaces
3979
+ all_workspaces: data.allWorkspaces,
3980
+ is_not_schedule: data.isNotSchedule
3979
3981
  }
3980
3982
  });
3981
3983
  }
@@ -4037,6 +4039,7 @@ class JobService {
4037
4039
  * @param data.workspace
4038
4040
  * @param data.orderDesc order by desc order (default true)
4039
4041
  * @param data.createdBy mask to filter exact matching user creator
4042
+ * @param data.label mask to filter exact matching job's label (job labels are completed jobs with as a result an object containing a string at key 'wm_label')
4040
4043
  * @param data.parentJob The parent job that is at the origin and responsible for the execution of this script if any
4041
4044
  * @param data.scriptPathExact mask to filter exact matching path
4042
4045
  * @param data.scriptPathStart mask to filter matching starting path
@@ -4054,6 +4057,7 @@ class JobService {
4054
4057
  * @param data.isSkipped is the job skipped
4055
4058
  * @param data.isFlowStep is the job a flow step
4056
4059
  * @param data.hasNullParent has null parent
4060
+ * @param data.isNotSchedule is not a scheduled job
4057
4061
  * @returns CompletedJob All completed jobs
4058
4062
  * @throws ApiError
4059
4063
  */
@@ -4067,6 +4071,7 @@ class JobService {
4067
4071
  query: {
4068
4072
  order_desc: data.orderDesc,
4069
4073
  created_by: data.createdBy,
4074
+ label: data.label,
4070
4075
  parent_job: data.parentJob,
4071
4076
  script_path_exact: data.scriptPathExact,
4072
4077
  script_path_start: data.scriptPathStart,
@@ -4083,7 +4088,8 @@ class JobService {
4083
4088
  per_page: data.perPage,
4084
4089
  is_skipped: data.isSkipped,
4085
4090
  is_flow_step: data.isFlowStep,
4086
- has_null_parent: data.hasNullParent
4091
+ has_null_parent: data.hasNullParent,
4092
+ is_not_schedule: data.isNotSchedule
4087
4093
  }
4088
4094
  });
4089
4095
  }
@@ -4092,6 +4098,7 @@ class JobService {
4092
4098
  * @param data The data for the request.
4093
4099
  * @param data.workspace
4094
4100
  * @param data.createdBy mask to filter exact matching user creator
4101
+ * @param data.label mask to filter exact matching job's label (job labels are completed jobs with as a result an object containing a string at key 'wm_label')
4095
4102
  * @param data.parentJob The parent job that is at the origin and responsible for the execution of this script if any
4096
4103
  * @param data.scriptPathExact mask to filter exact matching path
4097
4104
  * @param data.scriptPathStart mask to filter matching starting path
@@ -4114,6 +4121,7 @@ class JobService {
4114
4121
  * @param data.hasNullParent has null parent
4115
4122
  * @param data.success filter on successful jobs
4116
4123
  * @param data.allWorkspaces get jobs from all workspaces (only valid if request come from the `admins` workspace)
4124
+ * @param data.isNotSchedule is not a scheduled job
4117
4125
  * @returns Job All jobs
4118
4126
  * @throws ApiError
4119
4127
  */
@@ -4126,6 +4134,7 @@ class JobService {
4126
4134
  },
4127
4135
  query: {
4128
4136
  created_by: data.createdBy,
4137
+ label: data.label,
4129
4138
  parent_job: data.parentJob,
4130
4139
  script_path_exact: data.scriptPathExact,
4131
4140
  script_path_start: data.scriptPathStart,
@@ -4147,7 +4156,8 @@ class JobService {
4147
4156
  is_flow_step: data.isFlowStep,
4148
4157
  has_null_parent: data.hasNullParent,
4149
4158
  success: data.success,
4150
- all_workspaces: data.allWorkspaces
4159
+ all_workspaces: data.allWorkspaces,
4160
+ is_not_schedule: data.isNotSchedule
4151
4161
  }
4152
4162
  });
4153
4163
  }
@@ -909,6 +909,10 @@ export type OrderDesc = boolean;
909
909
  * mask to filter exact matching user creator
910
910
  */
911
911
  export type CreatedBy = string;
912
+ /**
913
+ * mask to filter exact matching job's label (job labels are completed jobs with as a result an object containing a string at key 'wm_label')
914
+ */
915
+ export type Label = string;
912
916
  /**
913
917
  * The parent job that is at the origin and responsible for the execution of this script if any
914
918
  */
@@ -4813,6 +4817,10 @@ export type $OpenApiTs = {
4813
4817
  * mask to filter exact matching user creator
4814
4818
  */
4815
4819
  createdBy?: string;
4820
+ /**
4821
+ * is not a scheduled job
4822
+ */
4823
+ isNotSchedule?: boolean;
4816
4824
  /**
4817
4825
  * filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
4818
4826
  */
@@ -4957,6 +4965,10 @@ export type $OpenApiTs = {
4957
4965
  * is the job a flow step
4958
4966
  */
4959
4967
  isFlowStep?: boolean;
4968
+ /**
4969
+ * is not a scheduled job
4970
+ */
4971
+ isNotSchedule?: boolean;
4960
4972
  /**
4961
4973
  * is the job skipped
4962
4974
  */
@@ -4965,6 +4977,10 @@ export type $OpenApiTs = {
4965
4977
  * filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
4966
4978
  */
4967
4979
  jobKinds?: string;
4980
+ /**
4981
+ * mask to filter exact matching job's label (job labels are completed jobs with as a result an object containing a string at key 'wm_label')
4982
+ */
4983
+ label?: string;
4968
4984
  /**
4969
4985
  * order by desc order (default true)
4970
4986
  */
@@ -5058,6 +5074,10 @@ export type $OpenApiTs = {
5058
5074
  * is the job a flow step
5059
5075
  */
5060
5076
  isFlowStep?: boolean;
5077
+ /**
5078
+ * is not a scheduled job
5079
+ */
5080
+ isNotSchedule?: boolean;
5061
5081
  /**
5062
5082
  * is the job skipped
5063
5083
  */
@@ -5066,6 +5086,10 @@ export type $OpenApiTs = {
5066
5086
  * filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,
5067
5087
  */
5068
5088
  jobKinds?: string;
5089
+ /**
5090
+ * mask to filter exact matching job's label (job labels are completed jobs with as a result an object containing a string at key 'wm_label')
5091
+ */
5092
+ label?: string;
5069
5093
  /**
5070
5094
  * which page to return (start at 1, default 1)
5071
5095
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "windmill-client",
3
3
  "description": "Windmill SDK client for browsers and Node.js",
4
- "version": "1.313.0",
4
+ "version": "1.315.0",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "devDependencies": {