@actual-app/cli 26.9.0-nightly.20260901 → 26.9.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/dist/cli.js +1 -1
- package/dist/stats.json +1242 -1242
- package/package.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -162326,7 +162326,7 @@ function registerTransactionsCommand(program) {
|
|
|
162326
162326
|
//#endregion
|
|
162327
162327
|
//#region src/index.ts
|
|
162328
162328
|
var program = new Command();
|
|
162329
|
-
program.name("actual").description("CLI for Actual Budget").version("26.9.0
|
|
162329
|
+
program.name("actual").description("CLI for Actual Budget").version("26.9.0").option("--server-url <url>", "Actual server URL (env: ACTUAL_SERVER_URL)").option("--password <password>", "Server password (env: ACTUAL_PASSWORD)").option("--session-token <token>", "Session token (env: ACTUAL_SESSION_TOKEN)").option("--sync-id <id>", "Budget sync ID (env: ACTUAL_SYNC_ID)").option("--data-dir <path>", "Data directory (env: ACTUAL_DATA_DIR)").option("--encryption-password <password>", "E2E encryption password (env: ACTUAL_ENCRYPTION_PASSWORD)").option("--cache-ttl <seconds>", "Cache TTL in seconds (env: ACTUAL_CACHE_TTL; default: 60)", (value) => parseNonNegativeIntFlag(value, "--cache-ttl")).option("--refresh", "Force a sync on this call, ignoring the cache", false).option("--no-cache", "Alias for --refresh").option("--lock-timeout <seconds>", "How long to wait for another CLI process to release the lock (env: ACTUAL_LOCK_TIMEOUT; default: 10)", (value) => parseNonNegativeIntFlag(value, "--lock-timeout")).option("--no-lock", "Disable the budget directory lock (use with care, env: ACTUAL_NO_LOCK)").addOption(new Option("--format <format>", "Output format: json, table, csv").choices([
|
|
162330
162330
|
"json",
|
|
162331
162331
|
"table",
|
|
162332
162332
|
"csv"
|