@openid4vc/openid4vci 0.3.0-alpha-20250322161816 → 0.3.0-alpha-20250322171044
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 +4 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -1774,7 +1774,10 @@ var Openid4vciClient = class {
|
|
|
1774
1774
|
* @throws ValidationError - if validating the nonce response failed
|
|
1775
1775
|
*/
|
|
1776
1776
|
async requestNonce(options) {
|
|
1777
|
-
return requestNonce(
|
|
1777
|
+
return requestNonce({
|
|
1778
|
+
...options,
|
|
1779
|
+
fetch: this.options.callbacks.fetch
|
|
1780
|
+
});
|
|
1778
1781
|
}
|
|
1779
1782
|
/**
|
|
1780
1783
|
* Creates the jwt proof payload and header to be included in a credential request.
|