windmill-cli 1.718.0 → 1.720.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.
Files changed (2) hide show
  1. package/esm/main.js +13 -2
  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.718.0",
16775
+ VERSION: "1.720.0",
16776
16776
  WITH_CREDENTIALS: true,
16777
16777
  interceptors: {
16778
16778
  request: new Interceptors,
@@ -17056,6 +17056,7 @@ __export(exports_services_gen, {
17056
17056
  updateUser: () => updateUser,
17057
17057
  updateTutorialProgress: () => updateTutorialProgress,
17058
17058
  updateTokenScopes: () => updateTokenScopes,
17059
+ updateTokenLabel: () => updateTokenLabel,
17059
17060
  updateSqsTrigger: () => updateSqsTrigger,
17060
17061
  updateSharedUi: () => updateSharedUi,
17061
17062
  updateScriptHistory: () => updateScriptHistory,
@@ -19407,6 +19408,16 @@ var backendVersion = () => {
19407
19408
  body: data3.requestBody,
19408
19409
  mediaType: "application/json"
19409
19410
  });
19411
+ }, updateTokenLabel = (data3) => {
19412
+ return request(OpenAPI, {
19413
+ method: "POST",
19414
+ url: "/users/tokens/update_label/{token_prefix}",
19415
+ path: {
19416
+ token_prefix: data3.tokenPrefix
19417
+ },
19418
+ body: data3.requestBody,
19419
+ mediaType: "application/json"
19420
+ });
19410
19421
  }, listTokens = (data3 = {}) => {
19411
19422
  return request(OpenAPI, {
19412
19423
  method: "GET",
@@ -25293,7 +25304,7 @@ var init_auth = __esm(async () => {
25293
25304
  });
25294
25305
 
25295
25306
  // src/core/constants.ts
25296
- var WM_FORK_PREFIX = "wm-fork", VERSION = "1.718.0";
25307
+ var WM_FORK_PREFIX = "wm-fork", VERSION = "1.720.0";
25297
25308
 
25298
25309
  // src/utils/git.ts
25299
25310
  var exports_git = {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "windmill-cli",
3
- "version": "1.718.0",
3
+ "version": "1.720.0",
4
4
  "description": "CLI for Windmill",
5
5
  "license": "Apache 2.0",
6
6
  "type": "module",