windmill-cli 1.707.0 → 1.709.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/esm/main.js +8 -2
- package/package.json +1 -1
package/esm/main.js
CHANGED
|
@@ -16772,7 +16772,7 @@ var init_OpenAPI = __esm(() => {
|
|
|
16772
16772
|
PASSWORD: undefined,
|
|
16773
16773
|
TOKEN: getEnv3("WM_TOKEN"),
|
|
16774
16774
|
USERNAME: undefined,
|
|
16775
|
-
VERSION: "1.
|
|
16775
|
+
VERSION: "1.709.0",
|
|
16776
16776
|
WITH_CREDENTIALS: true,
|
|
16777
16777
|
interceptors: {
|
|
16778
16778
|
request: new Interceptors,
|
|
@@ -17381,6 +17381,7 @@ __export(exports_services_gen, {
|
|
|
17381
17381
|
getWorkspaceUsage: () => getWorkspaceUsage,
|
|
17382
17382
|
getWorkspaceSlackOauthConfig: () => getWorkspaceSlackOauthConfig,
|
|
17383
17383
|
getWorkspaceName: () => getWorkspaceName,
|
|
17384
|
+
getWorkspaceFairnessEvents: () => getWorkspaceFairnessEvents,
|
|
17384
17385
|
getWorkspaceEncryptionKey: () => getWorkspaceEncryptionKey,
|
|
17385
17386
|
getWorkspaceDefaultApp: () => getWorkspaceDefaultApp,
|
|
17386
17387
|
getWorkspaceAsSuperAdmin: () => getWorkspaceAsSuperAdmin,
|
|
@@ -24265,6 +24266,11 @@ var backendVersion = () => {
|
|
|
24265
24266
|
method: "GET",
|
|
24266
24267
|
url: "/workers/queue_running_counts"
|
|
24267
24268
|
});
|
|
24269
|
+
}, getWorkspaceFairnessEvents = () => {
|
|
24270
|
+
return request(OpenAPI, {
|
|
24271
|
+
method: "GET",
|
|
24272
|
+
url: "/workers/workspace_fairness_events"
|
|
24273
|
+
});
|
|
24268
24274
|
}, listWorkerGroups = () => {
|
|
24269
24275
|
return request(OpenAPI, {
|
|
24270
24276
|
method: "GET",
|
|
@@ -93199,7 +93205,7 @@ var ducklake_default = command40;
|
|
|
93199
93205
|
|
|
93200
93206
|
// src/main.ts
|
|
93201
93207
|
await init_context();
|
|
93202
|
-
var VERSION = "1.
|
|
93208
|
+
var VERSION = "1.709.0";
|
|
93203
93209
|
async function checkVersionSafe(cmd) {
|
|
93204
93210
|
const mainCommand = cmd.getMainCommand();
|
|
93205
93211
|
const upgradeCommand = mainCommand.getCommand("upgrade");
|