@actual-app/cli 26.7.0 → 26.8.0-nightly.20260704
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 +2 -2
- package/dist/stats.json +1248 -1253
- package/package.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -159783,7 +159783,7 @@ var require_ansi_regex = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
159783
159783
|
};
|
|
159784
159784
|
}));
|
|
159785
159785
|
//#endregion
|
|
159786
|
-
//#region ../../node_modules/
|
|
159786
|
+
//#region ../../node_modules/strip-ansi/index.js
|
|
159787
159787
|
var require_strip_ansi = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
159788
159788
|
var ansiRegex = require_ansi_regex();
|
|
159789
159789
|
module.exports = (string) => typeof string === "string" ? string.replace(ansiRegex(), "") : string;
|
|
@@ -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.
|
|
162300
|
+
program.name("actual").description("CLI for Actual Budget").version("26.8.0-nightly.20260704").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"
|