@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.mjs CHANGED
@@ -1171,7 +1171,7 @@ function defaultStorage(options = {}) {
1171
1171
  }
1172
1172
 
1173
1173
  // src/version.ts
1174
- var POLLAR_CORE_VERSION = "0.9.0-rc.3" ;
1174
+ var POLLAR_CORE_VERSION = "0.9.0-rc.4" ;
1175
1175
 
1176
1176
  // src/visibility/noop.ts
1177
1177
  function createNoopVisibilityProvider() {
@@ -1496,7 +1496,7 @@ function isValidSession(value, logger = console) {
1496
1496
  return false;
1497
1497
  }
1498
1498
  const w = wallet;
1499
- if (w["type"] !== "internal" && w["type"] !== "smart" && w["type"] !== "external") {
1499
+ if (w["type"] !== "internal" && w["type"] !== "smart" && w["type"] !== "external" && w["type"] !== "custodial") {
1500
1500
  logger.debug("[PollarClient:session] Invalid session \u2014 wallet.type must be internal|smart|external");
1501
1501
  return false;
1502
1502
  }