windmill-client 1.698.0 → 1.699.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -29,7 +29,7 @@ const OpenAPI = {
29
29
  PASSWORD: void 0,
30
30
  TOKEN: getEnv("WM_TOKEN"),
31
31
  USERNAME: void 0,
32
- VERSION: "1.698.0",
32
+ VERSION: "1.699.0",
33
33
  WITH_CREDENTIALS: true,
34
34
  interceptors: {
35
35
  request: new Interceptors(),
package/dist/index.js CHANGED
@@ -126,7 +126,7 @@ const OpenAPI = {
126
126
  PASSWORD: void 0,
127
127
  TOKEN: getEnv$1("WM_TOKEN"),
128
128
  USERNAME: void 0,
129
- VERSION: "1.698.0",
129
+ VERSION: "1.699.0",
130
130
  WITH_CREDENTIALS: true,
131
131
  interceptors: {
132
132
  request: new Interceptors(),
@@ -8385,6 +8385,7 @@ var JobService = class {
8385
8385
  * @param data.success filter on successful jobs
8386
8386
  * @param data.allWorkspaces get jobs from all workspaces (only valid if request come from the `admins` workspace)
8387
8387
  * @param data.isNotSchedule is not a scheduled job
8388
+ * @param data.excludesEntrypointOverride exclude jobs that were started with a `_ENTRYPOINT_OVERRIDE` arg (e.g. dynamic-select helper runs and preprocessor previews)
8388
8389
  * @param data.broadFilter broad search across multiple fields (case-insensitive substring match on path, tag, schedule path, trigger kind, label)
8389
8390
  * @returns Job All jobs
8390
8391
  * @throws ApiError
@@ -8427,6 +8428,7 @@ var JobService = class {
8427
8428
  success: data.success,
8428
8429
  all_workspaces: data.allWorkspaces,
8429
8430
  is_not_schedule: data.isNotSchedule,
8431
+ excludes_entrypoint_override: data.excludesEntrypointOverride,
8430
8432
  broad_filter: data.broadFilter
8431
8433
  }
8432
8434
  });
@@ -4253,6 +4253,7 @@ export declare class JobService {
4253
4253
  * @param data.success filter on successful jobs
4254
4254
  * @param data.allWorkspaces get jobs from all workspaces (only valid if request come from the `admins` workspace)
4255
4255
  * @param data.isNotSchedule is not a scheduled job
4256
+ * @param data.excludesEntrypointOverride exclude jobs that were started with a `_ENTRYPOINT_OVERRIDE` arg (e.g. dynamic-select helper runs and preprocessor previews)
4256
4257
  * @param data.broadFilter broad search across multiple fields (case-insensitive substring match on path, tag, schedule path, trigger kind, label)
4257
4258
  * @returns Job All jobs
4258
4259
  * @throws ApiError
@@ -8017,6 +8017,7 @@ var JobService = class {
8017
8017
  * @param data.success filter on successful jobs
8018
8018
  * @param data.allWorkspaces get jobs from all workspaces (only valid if request come from the `admins` workspace)
8019
8019
  * @param data.isNotSchedule is not a scheduled job
8020
+ * @param data.excludesEntrypointOverride exclude jobs that were started with a `_ENTRYPOINT_OVERRIDE` arg (e.g. dynamic-select helper runs and preprocessor previews)
8020
8021
  * @param data.broadFilter broad search across multiple fields (case-insensitive substring match on path, tag, schedule path, trigger kind, label)
8021
8022
  * @returns Job All jobs
8022
8023
  * @throws ApiError
@@ -8059,6 +8060,7 @@ var JobService = class {
8059
8060
  success: data.success,
8060
8061
  all_workspaces: data.allWorkspaces,
8061
8062
  is_not_schedule: data.isNotSchedule,
8063
+ excludes_entrypoint_override: data.excludesEntrypointOverride,
8062
8064
  broad_filter: data.broadFilter
8063
8065
  }
8064
8066
  });
@@ -10559,6 +10559,10 @@ export type ListJobsData = {
10559
10559
  * 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')
10560
10560
  */
10561
10561
  createdBy?: string;
10562
+ /**
10563
+ * exclude jobs that were started with a `_ENTRYPOINT_OVERRIDE` arg (e.g. dynamic-select helper runs and preprocessor previews)
10564
+ */
10565
+ excludesEntrypointOverride?: boolean;
10562
10566
  /**
10563
10567
  * has null parent
10564
10568
  */
@@ -22550,6 +22554,10 @@ export type $OpenApiTs = {
22550
22554
  * 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')
22551
22555
  */
22552
22556
  createdBy?: string;
22557
+ /**
22558
+ * exclude jobs that were started with a `_ENTRYPOINT_OVERRIDE` arg (e.g. dynamic-select helper runs and preprocessor previews)
22559
+ */
22560
+ excludesEntrypointOverride?: boolean;
22553
22561
  /**
22554
22562
  * has null parent
22555
22563
  */
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.698.0",
4
+ "version": "1.699.0",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "sideEffects": false,