windmill-cli 1.693.2 → 1.693.3

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 -3
  2. package/package.json +1 -1
package/esm/main.js CHANGED
@@ -16710,7 +16710,7 @@ var init_OpenAPI = __esm(() => {
16710
16710
  PASSWORD: undefined,
16711
16711
  TOKEN: getEnv3("WM_TOKEN"),
16712
16712
  USERNAME: undefined,
16713
- VERSION: "1.693.2",
16713
+ VERSION: "1.693.3",
16714
16714
  WITH_CREDENTIALS: true,
16715
16715
  interceptors: {
16716
16716
  request: new Interceptors,
@@ -17362,6 +17362,7 @@ __export(exports_services_gen, {
17362
17362
  getQueuePosition: () => getQueuePosition,
17363
17363
  getQueueMetrics: () => getQueueMetrics,
17364
17364
  getQueueCount: () => getQueueCount,
17365
+ getPublicSettings: () => getPublicSettings,
17365
17366
  getPublicSecretOfLatestVersionOfApp: () => getPublicSecretOfLatestVersionOfApp,
17366
17367
  getPublicSecretOfApp: () => getPublicSecretOfApp,
17367
17368
  getPublicResource: () => getPublicResource,
@@ -18675,6 +18676,14 @@ var backendVersion = () => {
18675
18676
  workspace: data3.workspace
18676
18677
  }
18677
18678
  });
18679
+ }, getPublicSettings = (data3) => {
18680
+ return request(OpenAPI, {
18681
+ method: "GET",
18682
+ url: "/w/{workspace}/workspaces/get_public_settings",
18683
+ path: {
18684
+ workspace: data3.workspace
18685
+ }
18686
+ });
18678
18687
  }, getSettings = (data3) => {
18679
18688
  return request(OpenAPI, {
18680
18689
  method: "GET",
@@ -24594,7 +24603,8 @@ var backendVersion = () => {
24594
24603
  workspace: data3.workspace
24595
24604
  },
24596
24605
  query: {
24597
- file_key: data3.fileKey
24606
+ file_key: data3.fileKey,
24607
+ marker_file: data3.markerFile
24598
24608
  }
24599
24609
  });
24600
24610
  }, loadParquetPreview = (data3) => {
@@ -88324,7 +88334,7 @@ var config_default = command35;
88324
88334
 
88325
88335
  // src/main.ts
88326
88336
  await init_context();
88327
- var VERSION = "1.693.2";
88337
+ var VERSION = "1.693.3";
88328
88338
  async function checkVersionSafe(cmd) {
88329
88339
  const mainCommand = cmd.getMainCommand();
88330
88340
  const upgradeCommand = mainCommand.getCommand("upgrade");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "windmill-cli",
3
- "version": "1.693.2",
3
+ "version": "1.693.3",
4
4
  "description": "CLI for Windmill",
5
5
  "license": "Apache 2.0",
6
6
  "type": "module",