@openid4vc/openid4vp 0.3.0-alpha-20250321143321 → 0.3.0-alpha-20250321150652
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.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -994,7 +994,8 @@ async function verifyJarRequest(options) {
|
|
|
994
994
|
requestUri: jarRequestParams.request_uri,
|
|
995
995
|
clientIdentifierScheme,
|
|
996
996
|
method,
|
|
997
|
-
wallet
|
|
997
|
+
wallet,
|
|
998
|
+
fetch: callbacks.fetch
|
|
998
999
|
});
|
|
999
1000
|
const requestObjectIsEncrypted = zCompactJwe2.safeParse(requestObject).success;
|
|
1000
1001
|
const { decryptionJwk, payload: decryptedRequestObject } = requestObjectIsEncrypted ? await decryptJarRequest({ jwe: requestObject, callbacks }) : { payload: requestObject, decryptionJwk: void 0 };
|