@actual-app/cli 26.7.0-nightly.20260702 → 26.7.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
|
@@ -162297,7 +162297,7 @@ function registerTransactionsCommand(program) {
|
|
|
162297
162297
|
//#endregion
|
|
162298
162298
|
//#region src/index.ts
|
|
162299
162299
|
var program = new Command();
|
|
162300
|
-
program.name("actual").description("CLI for Actual Budget").version("26.7.0
|
|
162300
|
+
program.name("actual").description("CLI for Actual Budget").version("26.7.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([
|
|
162301
162301
|
"json",
|
|
162302
162302
|
"table",
|
|
162303
162303
|
"csv"
|