@pollar/core 0.9.0-rc.3 → 0.9.0-rc.4

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/index.rn.mjs CHANGED
@@ -1107,7 +1107,7 @@ function defaultStorage(options = {}) {
1107
1107
  }
1108
1108
 
1109
1109
  // src/version.ts
1110
- var POLLAR_CORE_VERSION = "0.9.0-rc.3" ;
1110
+ var POLLAR_CORE_VERSION = "0.9.0-rc.4" ;
1111
1111
 
1112
1112
  // src/visibility/noop.ts
1113
1113
  function createNoopVisibilityProvider() {
@@ -1432,7 +1432,7 @@ function isValidSession(value, logger = console) {
1432
1432
  return false;
1433
1433
  }
1434
1434
  const w = wallet;
1435
- if (w["type"] !== "internal" && w["type"] !== "smart" && w["type"] !== "external") {
1435
+ if (w["type"] !== "internal" && w["type"] !== "smart" && w["type"] !== "external" && w["type"] !== "custodial") {
1436
1436
  logger.debug("[PollarClient:session] Invalid session \u2014 wallet.type must be internal|smart|external");
1437
1437
  return false;
1438
1438
  }