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