@concavejs/docstore-bun-sqlite 0.0.1-alpha.6 → 0.0.1-alpha.7
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 +2 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5589,6 +5589,8 @@ function decodeJwtClaimsToken(token) {
|
|
|
5589
5589
|
return null;
|
|
5590
5590
|
}
|
|
5591
5591
|
}
|
|
5592
|
+
var DEFAULT_JWKS_CACHE_TTL_MS = 5 * 60 * 1000;
|
|
5593
|
+
var MAX_JWKS_CACHE_TTL_MS = 24 * 60 * 60 * 1000;
|
|
5592
5594
|
var JWKS_CACHE = new Map;
|
|
5593
5595
|
function decodeJwtUnsafe(token) {
|
|
5594
5596
|
if (!token)
|