windmill-cli 1.664.0 → 1.665.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.
- package/esm/main.js +28 -3
- package/package.json +1 -1
package/esm/main.js
CHANGED
|
@@ -11785,7 +11785,7 @@ var init_OpenAPI = __esm(() => {
|
|
|
11785
11785
|
PASSWORD: undefined,
|
|
11786
11786
|
TOKEN: getEnv2("WM_TOKEN"),
|
|
11787
11787
|
USERNAME: undefined,
|
|
11788
|
-
VERSION: "1.
|
|
11788
|
+
VERSION: "1.665.0",
|
|
11789
11789
|
WITH_CREDENTIALS: true,
|
|
11790
11790
|
interceptors: {
|
|
11791
11791
|
request: new Interceptors,
|
|
@@ -12310,6 +12310,7 @@ __export(exports_services_gen, {
|
|
|
12310
12310
|
listExtendedJobs: () => listExtendedJobs,
|
|
12311
12311
|
listEmailTriggers: () => listEmailTriggers,
|
|
12312
12312
|
listDucklakes: () => listDucklakes,
|
|
12313
|
+
listDedicatedWithDeps: () => listDedicatedWithDeps,
|
|
12313
12314
|
listDataTables: () => listDataTables,
|
|
12314
12315
|
listDataTableSchemas: () => listDataTableSchemas,
|
|
12315
12316
|
listCustomInstanceDbs: () => listCustomInstanceDbs,
|
|
@@ -12441,6 +12442,7 @@ __export(exports_services_gen, {
|
|
|
12441
12442
|
getInputHistory: () => getInputHistory,
|
|
12442
12443
|
getIndexerStatus: () => getIndexerStatus,
|
|
12443
12444
|
getIndexStorageSizes: () => getIndexStorageSizes,
|
|
12445
|
+
getIndexDiskStorageSizes: () => getIndexDiskStorageSizes,
|
|
12444
12446
|
getHubScriptContentByPath: () => getHubScriptContentByPath,
|
|
12445
12447
|
getHubScriptByPath: () => getHubScriptByPath,
|
|
12446
12448
|
getHubRawAppById: () => getHubRawAppById,
|
|
@@ -12455,6 +12457,7 @@ __export(exports_services_gen, {
|
|
|
12455
12457
|
getGlobalConnectedRepositories: () => getGlobalConnectedRepositories,
|
|
12456
12458
|
getGlobal: () => getGlobal,
|
|
12457
12459
|
getGithubAppToken: () => getGithubAppToken,
|
|
12460
|
+
getGitSyncEnabled: () => getGitSyncEnabled,
|
|
12458
12461
|
getGitCommitHash: () => getGitCommitHash,
|
|
12459
12462
|
getGhesConfig: () => getGhesConfig,
|
|
12460
12463
|
getGcpTrigger: () => getGcpTrigger,
|
|
@@ -13843,6 +13846,14 @@ var backendVersion = () => {
|
|
|
13843
13846
|
body: data2.requestBody,
|
|
13844
13847
|
mediaType: "application/json"
|
|
13845
13848
|
});
|
|
13849
|
+
}, getGitSyncEnabled = (data2) => {
|
|
13850
|
+
return request(OpenAPI, {
|
|
13851
|
+
method: "GET",
|
|
13852
|
+
url: "/w/{workspace}/workspaces/git_sync_enabled",
|
|
13853
|
+
path: {
|
|
13854
|
+
workspace: data2.workspace
|
|
13855
|
+
}
|
|
13856
|
+
});
|
|
13846
13857
|
}, editWorkspaceGitSyncConfig = (data2) => {
|
|
13847
13858
|
return request(OpenAPI, {
|
|
13848
13859
|
method: "POST",
|
|
@@ -15079,6 +15090,14 @@ var backendVersion = () => {
|
|
|
15079
15090
|
body: data2.requestBody,
|
|
15080
15091
|
mediaType: "application/json"
|
|
15081
15092
|
});
|
|
15093
|
+
}, listDedicatedWithDeps = (data2) => {
|
|
15094
|
+
return request(OpenAPI, {
|
|
15095
|
+
method: "GET",
|
|
15096
|
+
url: "/w/{workspace}/scripts/list_dedicated_with_deps",
|
|
15097
|
+
path: {
|
|
15098
|
+
workspace: data2.workspace
|
|
15099
|
+
}
|
|
15100
|
+
});
|
|
15082
15101
|
}, rawScriptByPath = (data2) => {
|
|
15083
15102
|
return request(OpenAPI, {
|
|
15084
15103
|
method: "GET",
|
|
@@ -16611,7 +16630,8 @@ var backendVersion = () => {
|
|
|
16611
16630
|
stream_offset: data2.streamOffset,
|
|
16612
16631
|
get_progress: data2.getProgress,
|
|
16613
16632
|
only_result: data2.onlyResult,
|
|
16614
|
-
no_logs: data2.noLogs
|
|
16633
|
+
no_logs: data2.noLogs,
|
|
16634
|
+
fast: data2.fast
|
|
16615
16635
|
}
|
|
16616
16636
|
});
|
|
16617
16637
|
}, getLogFileFromStore = (data2) => {
|
|
@@ -19276,6 +19296,11 @@ var backendVersion = () => {
|
|
|
19276
19296
|
max_ts: data2.maxTs
|
|
19277
19297
|
}
|
|
19278
19298
|
});
|
|
19299
|
+
}, getIndexDiskStorageSizes = () => {
|
|
19300
|
+
return request(OpenAPI, {
|
|
19301
|
+
method: "GET",
|
|
19302
|
+
url: "/srch/index/storage/disk"
|
|
19303
|
+
});
|
|
19279
19304
|
}, clearIndex = (data2) => {
|
|
19280
19305
|
return request(OpenAPI, {
|
|
19281
19306
|
method: "DELETE",
|
|
@@ -80581,7 +80606,7 @@ var docs_default = command30;
|
|
|
80581
80606
|
|
|
80582
80607
|
// src/main.ts
|
|
80583
80608
|
await init_context();
|
|
80584
|
-
var VERSION = "1.
|
|
80609
|
+
var VERSION = "1.665.0";
|
|
80585
80610
|
var command31 = 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("generate-metadata", generate_metadata_default).command("docs", docs_default).command("version --version", "Show version information").action(async (opts) => {
|
|
80586
80611
|
console.log("CLI version: " + VERSION);
|
|
80587
80612
|
try {
|