windmill-client 1.199.0 → 1.201.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.
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.OpenAPI = void 0;
4
4
  exports.OpenAPI = {
5
5
  BASE: '/api',
6
- VERSION: '1.199.0',
6
+ VERSION: '1.201.0',
7
7
  WITH_CREDENTIALS: false,
8
8
  CREDENTIALS: 'include',
9
9
  TOKEN: undefined,
@@ -6,6 +6,7 @@ export type Preview = {
6
6
  language?: Preview.language;
7
7
  tag?: string;
8
8
  kind?: Preview.kind;
9
+ dedicated_worker?: boolean;
9
10
  };
10
11
  export declare namespace Preview {
11
12
  enum language {
@@ -7,4 +7,5 @@ export type WorkerPing = {
7
7
  jobs_executed: number;
8
8
  custom_tags?: Array<string>;
9
9
  worker_group: string;
10
+ wm_version: string;
10
11
  };
@@ -62,4 +62,10 @@ export declare class SettingService {
62
62
  license_key: string;
63
63
  };
64
64
  }): CancelablePromise<string>;
65
+ /**
66
+ * send stats
67
+ * @returns string status
68
+ * @throws ApiError
69
+ */
70
+ static sendStats(): CancelablePromise<string>;
65
71
  }
@@ -71,5 +71,16 @@ class SettingService {
71
71
  mediaType: 'application/json',
72
72
  });
73
73
  }
74
+ /**
75
+ * send stats
76
+ * @returns string status
77
+ * @throws ApiError
78
+ */
79
+ static sendStats() {
80
+ return (0, request_1.request)(OpenAPI_1.OpenAPI, {
81
+ method: 'POST',
82
+ url: '/settings/send_stats',
83
+ });
84
+ }
74
85
  }
75
86
  exports.SettingService = SettingService;
@@ -176,6 +176,7 @@ export declare class WorkspaceService {
176
176
  code_completion_enabled: boolean;
177
177
  error_handler?: string;
178
178
  error_handler_extra_args?: ScriptArgs;
179
+ error_handler_muted_on_cancel?: boolean;
179
180
  }>;
180
181
  /**
181
182
  * get deploy to
@@ -308,6 +309,7 @@ export declare class WorkspaceService {
308
309
  requestBody: {
309
310
  error_handler?: string;
310
311
  error_handler_extra_args?: ScriptArgs;
312
+ error_handler_muted_on_cancel?: boolean;
311
313
  };
312
314
  }): CancelablePromise<string>;
313
315
  }
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.199.0",
4
+ "version": "1.201.0",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "devDependencies": {