atlarix 14.46.0 → 14.46.1
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.
|
@@ -190314,7 +190314,16 @@ async function encryptionAvailableWithRetry() {
|
|
|
190314
190314
|
return false;
|
|
190315
190315
|
}
|
|
190316
190316
|
async function readBlobFromDisk() {
|
|
190317
|
-
|
|
190317
|
+
let encPath;
|
|
190318
|
+
try {
|
|
190319
|
+
encPath = fallbackEncryptedPath();
|
|
190320
|
+
} catch (e3) {
|
|
190321
|
+
logger13.warn(
|
|
190322
|
+
"[SupabaseSecureStorage] could not resolve the session path \u2014 reporting UNAVAILABLE:",
|
|
190323
|
+
e3
|
|
190324
|
+
);
|
|
190325
|
+
return { status: "unavailable" };
|
|
190326
|
+
}
|
|
190318
190327
|
let encFileExists = false;
|
|
190319
190328
|
try {
|
|
190320
190329
|
encFileExists = fs14.existsSync(encPath);
|
|
@@ -190337,8 +190346,8 @@ async function readBlobFromDisk() {
|
|
|
190337
190346
|
logger13.warn("[SupabaseSecureStorage] encrypted file read failed:", e3);
|
|
190338
190347
|
if (encFileExists) return { status: "unavailable" };
|
|
190339
190348
|
}
|
|
190340
|
-
const legacy = legacyJsonPath();
|
|
190341
190349
|
try {
|
|
190350
|
+
const legacy = legacyJsonPath();
|
|
190342
190351
|
if (fs14.existsSync(legacy)) {
|
|
190343
190352
|
const data = fs14.readFileSync(legacy, "utf8");
|
|
190344
190353
|
const parsed = JSON.parse(data);
|
|
@@ -339567,7 +339576,7 @@ if (!process.env.ATLARIX_MODELS_SNAPSHOT) {
|
|
|
339567
339576
|
const shipped = path51.join(here, "models-snapshot.json.gz");
|
|
339568
339577
|
if (fs41.existsSync(shipped)) process.env.ATLARIX_MODELS_SNAPSHOT = shipped;
|
|
339569
339578
|
}
|
|
339570
|
-
var VERSION15 = false ? "dev" : "14.46.
|
|
339579
|
+
var VERSION15 = false ? "dev" : "14.46.1";
|
|
339571
339580
|
if (process.argv[2] === "run") process.argv.splice(2, 1);
|
|
339572
339581
|
function arg(name29) {
|
|
339573
339582
|
const i4 = process.argv.indexOf(`--${name29}`);
|
package/package.json
CHANGED