windmill-cli 1.677.0 → 1.678.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
@@ -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.677.0",
11815
+ VERSION: "1.678.0",
11816
11816
  WITH_CREDENTIALS: true,
11817
11817
  interceptors: {
11818
11818
  request: new Interceptors,
@@ -12514,6 +12514,7 @@ __export(exports_services_gen, {
12514
12514
  getFlowDebugInfo: () => getFlowDebugInfo,
12515
12515
  getFlowByPathWithDraft: () => getFlowByPathWithDraft,
12516
12516
  getFlowByPath: () => getFlowByPath,
12517
+ getFlowAllLogs: () => getFlowAllLogs,
12517
12518
  getEmailTrigger: () => getEmailTrigger,
12518
12519
  getDeployTo: () => getDeployTo,
12519
12520
  getDependentsAmounts: () => getDependentsAmounts,
@@ -16740,6 +16741,15 @@ var backendVersion = () => {
16740
16741
  remove_ansi_warnings: data2.removeAnsiWarnings
16741
16742
  }
16742
16743
  });
16744
+ }, getFlowAllLogs = (data2) => {
16745
+ return request(OpenAPI, {
16746
+ method: "GET",
16747
+ url: "/w/{workspace}/jobs_u/get_flow_all_logs/{id}",
16748
+ path: {
16749
+ workspace: data2.workspace,
16750
+ id: data2.id
16751
+ }
16752
+ });
16743
16753
  }, getCompletedJobLogsTail = (data2) => {
16744
16754
  return request(OpenAPI, {
16745
16755
  method: "GET",
@@ -82863,7 +82873,7 @@ var config_default = command35;
82863
82873
 
82864
82874
  // src/main.ts
82865
82875
  await init_context();
82866
- var VERSION = "1.677.0";
82876
+ var VERSION = "1.678.0";
82867
82877
  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) => {
82868
82878
  console.log("CLI version: " + VERSION);
82869
82879
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "windmill-cli",
3
- "version": "1.677.0",
3
+ "version": "1.678.0",
4
4
  "description": "CLI for Windmill",
5
5
  "license": "Apache 2.0",
6
6
  "type": "module",