@actual-app/api 26.1.0-nightly.20251218 → 26.1.0-nightly.20251219
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/app/bundle.api.js +2 -2
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/app/bundle.api.js
CHANGED
|
@@ -16,6 +16,7 @@ const fs$1 = require("fs");
|
|
|
16
16
|
const path = require("path");
|
|
17
17
|
const SQL = require("better-sqlite3");
|
|
18
18
|
const node_crypto = require("node:crypto");
|
|
19
|
+
const os = require("os");
|
|
19
20
|
const crypto = require("crypto");
|
|
20
21
|
const require$$0 = require("zlib");
|
|
21
22
|
const require$$0$1 = require("util");
|
|
@@ -11822,7 +11823,6 @@ function isDevelopmentEnvironment() {
|
|
|
11822
11823
|
function isNonProductionEnvironment() {
|
|
11823
11824
|
return isPreviewEnvironment() || isDevelopmentEnvironment();
|
|
11824
11825
|
}
|
|
11825
|
-
const os = require("os");
|
|
11826
11826
|
os.platform() === "win32";
|
|
11827
11827
|
os.platform() === "darwin";
|
|
11828
11828
|
os.platform() === "linux";
|
|
@@ -59608,7 +59608,7 @@ async function upload() {
|
|
|
59608
59608
|
...uploadMeta ? { "X-ACTUAL-ENCRYPT-META": JSON.stringify(uploadMeta) } : null,
|
|
59609
59609
|
...groupId ? { "X-ACTUAL-GROUP-ID": groupId } : null
|
|
59610
59610
|
// TODO: fix me
|
|
59611
|
-
//
|
|
59611
|
+
// oxlint-disable-next-line typescript/no-explicit-any
|
|
59612
59612
|
},
|
|
59613
59613
|
body: uploadContent
|
|
59614
59614
|
});
|
package/dist/package.json
CHANGED