windmill-cli 1.675.1 → 1.676.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 +11 -2
  2. package/package.json +1 -1
package/esm/main.js CHANGED
@@ -11812,7 +11812,7 @@ var init_OpenAPI = __esm(() => {
11812
11812
  PASSWORD: undefined,
11813
11813
  TOKEN: getEnv2("WM_TOKEN"),
11814
11814
  USERNAME: undefined,
11815
- VERSION: "1.675.1",
11815
+ VERSION: "1.676.0",
11816
11816
  WITH_CREDENTIALS: true,
11817
11817
  interceptors: {
11818
11818
  request: new Interceptors,
@@ -12303,6 +12303,7 @@ __export(exports_services_gen, {
12303
12303
  listPostgresReplicationSlot: () => listPostgresReplicationSlot,
12304
12304
  listPostgresPublication: () => listPostgresPublication,
12305
12305
  listPendingInvites: () => listPendingInvites,
12306
+ listPathAutocompletePaths: () => listPathAutocompletePaths,
12306
12307
  listOauthLogins: () => listOauthLogins,
12307
12308
  listOauthConnects: () => listOauthConnects,
12308
12309
  listNextCloudEvents: () => listNextCloudEvents,
@@ -15836,6 +15837,14 @@ var backendVersion = () => {
15836
15837
  after_id: data2.afterId
15837
15838
  }
15838
15839
  });
15840
+ }, listPathAutocompletePaths = (data2) => {
15841
+ return request(OpenAPI, {
15842
+ method: "GET",
15843
+ url: "/w/{workspace}/path_autocomplete/list_paths",
15844
+ path: {
15845
+ workspace: data2.workspace
15846
+ }
15847
+ });
15839
15848
  }, listRawApps = (data2) => {
15840
15849
  return request(OpenAPI, {
15841
15850
  method: "GET",
@@ -82830,7 +82839,7 @@ var config_default = command35;
82830
82839
 
82831
82840
  // src/main.ts
82832
82841
  await init_context();
82833
- var VERSION = "1.675.1";
82842
+ var VERSION = "1.676.0";
82834
82843
  var command36 = new Command().name("wmill").action(() => info(`Welcome to Windmill CLI ${VERSION}. Use -h for help.`)).description("Windmill CLI").globalOption("--workspace <workspace:string>", "Specify the target workspace. This overrides the default workspace.").globalOption("--debug --verbose", "Show debug/verbose logs").globalOption("--show-diffs", "Show diff informations when syncing (may show sensitive informations)").globalOption("--token <token:string>", "Specify an API token. This will override any stored token.").globalOption("--base-url <baseUrl:string>", "Specify the base URL of the API. If used, --token and --workspace are required and no local remote/workspace already set will be used.").globalOption("--config-dir <configDir:string>", "Specify a custom config directory. Overrides WMILL_CONFIG_DIR environment variable and default ~/.config location.").env("HEADERS <headers:string>", `Specify headers to use for all requests. e.g: "HEADERS='h1: v1, h2: v2'"`).version(VERSION).versionOption(false).command("init", init_default).command("app", app_default).command("flow", flow_default).command("script", script_default).command("workspace", workspace_default).command("resource", resource_default).command("resource-type", resource_type_default).command("user", user_default).command("variable", variable_default).command("hub", hub_default).command("folder", folder_default).command("schedule", schedule_default).command("trigger", trigger_default).command("dev", dev_default2).command("sync", sync_default).command("lint", lint_default).command("gitsync-settings", gitsync_settings_default).command("instance", instance_default).command("worker-groups", worker_groups_default).command("workers", workers_default).command("queues", queues_default).command("dependencies", dependencies_default).command("jobs", jobs_default).command("job", job_default).command("group", group_default).command("audit", audit_default).command("token", token_default).command("generate-metadata", generate_metadata_default).command("docs", docs_default).command("config", config_default).command("version --version", "Show version information").action(async (opts) => {
82835
82844
  console.log("CLI version: " + VERSION);
82836
82845
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "windmill-cli",
3
- "version": "1.675.1",
3
+ "version": "1.676.0",
4
4
  "description": "CLI for Windmill",
5
5
  "license": "Apache 2.0",
6
6
  "type": "module",