@openid4vc/oauth2 0.3.0-alpha-20251110114129 → 0.3.0-alpha-20251111183603
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.cjs +4 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -2099,7 +2099,10 @@ var Oauth2AuthorizationServer = class {
|
|
|
2099
2099
|
* Parse a pushed authorization request
|
|
2100
2100
|
*/
|
|
2101
2101
|
async parsePushedAuthorizationRequest(options) {
|
|
2102
|
-
return await parsePushedAuthorizationRequest(
|
|
2102
|
+
return await parsePushedAuthorizationRequest({
|
|
2103
|
+
...options,
|
|
2104
|
+
callbacks: this.options.callbacks
|
|
2105
|
+
});
|
|
2103
2106
|
}
|
|
2104
2107
|
/**
|
|
2105
2108
|
* Verify pushed authorization request.
|