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.
package/dist/core/OpenAPI.js
CHANGED
package/dist/models/Preview.d.ts
CHANGED
|
@@ -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
|
}
|