mnemospark 2026.4.9 → 2026.4.10

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 CHANGED
@@ -1542,7 +1542,7 @@ function parseStorageLsWebSessionResponse(payload) {
1542
1542
  throw new Error("Invalid ls-web session response payload");
1543
1543
  }
1544
1544
  const code = asNonEmptyString(record.code) ?? asNonEmptyString(record.exchange_code);
1545
- const appUrl = asNonEmptyString(record.app_url) ?? asNonEmptyString(record.appUrl) ?? void 0;
1545
+ const appUrl = asNonEmptyString(record.app) ?? asNonEmptyString(record.app_url) ?? asNonEmptyString(record.appUrl) ?? void 0;
1546
1546
  const expiresAt = asNonEmptyString(record.expires_at) ?? asNonEmptyString(record.expiresAt) ?? void 0;
1547
1547
  if (!code || !expiresAt) {
1548
1548
  throw new Error("ls-web session response is missing required fields");