@pollar/core 0.9.0-rc.3 → 0.9.0
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/README.md +17 -3
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/dist/index.rn.js +2 -2
- package/dist/index.rn.js.map +1 -1
- package/dist/index.rn.mjs +2 -2
- package/dist/index.rn.mjs.map +1 -1
- package/package.json +1 -1
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
|
|
1174
|
+
var POLLAR_CORE_VERSION = "0.9.0" ;
|
|
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
|
}
|