windmill-cli 1.714.1 → 1.715.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 +12 -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.714.1",
16775
+ VERSION: "1.715.0",
16776
16776
  WITH_CREDENTIALS: true,
16777
16777
  interceptors: {
16778
16778
  request: new Interceptors,
@@ -17462,6 +17462,7 @@ __export(exports_services_gen, {
17462
17462
  getLatestKeyRenewalAttempt: () => getLatestKeyRenewalAttempt,
17463
17463
  getKafkaTrigger: () => getKafkaTrigger,
17464
17464
  getJwks: () => getJwks,
17465
+ getJobViewToken: () => getJobViewToken,
17465
17466
  getJobUpdatesSse: () => getJobUpdatesSse,
17466
17467
  getJobUpdates: () => getJobUpdates,
17467
17468
  getJobProgress: () => getJobProgress,
@@ -20950,6 +20951,15 @@ var backendVersion = () => {
20950
20951
  node_id: data3.nodeId
20951
20952
  }
20952
20953
  });
20954
+ }, getJobViewToken = (data3) => {
20955
+ return request(OpenAPI, {
20956
+ method: "GET",
20957
+ url: "/w/{workspace}/jobs/job_view_token/{id}",
20958
+ path: {
20959
+ workspace: data3.workspace,
20960
+ id: data3.id
20961
+ }
20962
+ });
20953
20963
  }, listFlowPaths = (data3) => {
20954
20964
  return request(OpenAPI, {
20955
20965
  method: "GET",
@@ -93017,7 +93027,7 @@ var object_storage_default = command41;
93017
93027
 
93018
93028
  // src/main.ts
93019
93029
  await init_context();
93020
- var VERSION = "1.714.1";
93030
+ var VERSION = "1.715.0";
93021
93031
  async function checkVersionSafe(cmd) {
93022
93032
  const mainCommand = cmd.getMainCommand();
93023
93033
  const upgradeCommand = mainCommand.getCommand("upgrade");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "windmill-cli",
3
- "version": "1.714.1",
3
+ "version": "1.715.0",
4
4
  "description": "CLI for Windmill",
5
5
  "license": "Apache 2.0",
6
6
  "type": "module",