windmill-cli 1.736.0 → 1.737.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 +31 -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.736.0",
16775
+ VERSION: "1.737.0",
16776
16776
  WITH_CREDENTIALS: true,
16777
16777
  interceptors: {
16778
16778
  request: new Interceptors,
@@ -17558,6 +17558,9 @@ __export(exports_services_gen, {
17558
17558
  getAppLiteByPath: () => getAppLiteByPath,
17559
17559
  getAppLatestVersion: () => getAppLatestVersion,
17560
17560
  getAppHistoryByPath: () => getAppHistoryByPath,
17561
+ getAppEmbedTokenBySecret: () => getAppEmbedTokenBySecret,
17562
+ getAppEmbedTokenByPath: () => getAppEmbedTokenByPath,
17563
+ getAppEmbedTokenByCustomPath: () => getAppEmbedTokenByCustomPath,
17561
17564
  getAppByVersion: () => getAppByVersion,
17562
17565
  getAppByPath: () => getAppByPath,
17563
17566
  getAiSkill: () => getAiSkill,
@@ -20242,6 +20245,14 @@ var backendVersion = () => {
20242
20245
  custom_path: data3.customPath
20243
20246
  }
20244
20247
  });
20248
+ }, getAppEmbedTokenByCustomPath = (data3) => {
20249
+ return request(OpenAPI, {
20250
+ method: "GET",
20251
+ url: "/apps_u/embed_token_by_custom_path/{custom_path}",
20252
+ path: {
20253
+ custom_path: data3.customPath
20254
+ }
20255
+ });
20245
20256
  }, getHubScriptContentByPath = (data3) => {
20246
20257
  return request(OpenAPI, {
20247
20258
  method: "GET",
@@ -21429,6 +21440,15 @@ var backendVersion = () => {
21429
21440
  raw_app: data3.rawApp
21430
21441
  }
21431
21442
  });
21443
+ }, getAppEmbedTokenByPath = (data3) => {
21444
+ return request(OpenAPI, {
21445
+ method: "GET",
21446
+ url: "/w/{workspace}/apps/embed_token/p/{path}",
21447
+ path: {
21448
+ workspace: data3.workspace,
21449
+ path: data3.path
21450
+ }
21451
+ });
21432
21452
  }, getAppLiteByPath = (data3) => {
21433
21453
  return request(OpenAPI, {
21434
21454
  method: "GET",
@@ -21487,6 +21507,15 @@ var backendVersion = () => {
21487
21507
  path: data3.path
21488
21508
  }
21489
21509
  });
21510
+ }, getAppEmbedTokenBySecret = (data3) => {
21511
+ return request(OpenAPI, {
21512
+ method: "GET",
21513
+ url: "/w/{workspace}/apps_u/embed_token/{secret}",
21514
+ path: {
21515
+ workspace: data3.workspace,
21516
+ secret: data3.secret
21517
+ }
21518
+ });
21490
21519
  }, getPublicResource = (data3) => {
21491
21520
  return request(OpenAPI, {
21492
21521
  method: "GET",
@@ -25460,7 +25489,7 @@ var init_auth = __esm(async () => {
25460
25489
  });
25461
25490
 
25462
25491
  // src/core/constants.ts
25463
- var WM_FORK_PREFIX = "wm-fork", VERSION = "1.736.0";
25492
+ var WM_FORK_PREFIX = "wm-fork", VERSION = "1.737.0";
25464
25493
 
25465
25494
  // src/utils/git.ts
25466
25495
  var exports_git = {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "windmill-cli",
3
- "version": "1.736.0",
3
+ "version": "1.737.0",
4
4
  "description": "CLI for Windmill",
5
5
  "license": "Apache 2.0",
6
6
  "type": "module",