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