@openid4vc/openid4vci 0.5.2-alpha-20260701133640 → 0.5.2

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.
Files changed (2) hide show
  1. package/dist/index.d.mts +8 -8
  2. package/package.json +3 -3
package/dist/index.d.mts CHANGED
@@ -3176,6 +3176,10 @@ interface SendInteractiveAuthorizationRequestOptions {
3176
3176
  */
3177
3177
  declare function sendInteractiveAuthorizationRequest(options: SendInteractiveAuthorizationRequestOptions): Promise<{
3178
3178
  interactiveAuthorizationResponse: {
3179
+ [x: string]: unknown;
3180
+ status: "ok";
3181
+ code: string;
3182
+ } | {
3179
3183
  [x: string]: unknown;
3180
3184
  status: "require_interaction";
3181
3185
  auth_session: string;
@@ -3189,10 +3193,6 @@ declare function sendInteractiveAuthorizationRequest(options: SendInteractiveAut
3189
3193
  type: "redirect_to_web";
3190
3194
  request_uri: string;
3191
3195
  expires_in?: number | undefined;
3192
- } | {
3193
- [x: string]: unknown;
3194
- status: "ok";
3195
- code: string;
3196
3196
  };
3197
3197
  dpop: {
3198
3198
  nonce: string | undefined;
@@ -3991,6 +3991,10 @@ declare class Openid4vciClient {
3991
3991
  */
3992
3992
  sendInteractiveAuthorizationRequest(options: Omit<SendInteractiveAuthorizationRequestOptions, 'callbacks'>): Promise<{
3993
3993
  interactiveAuthorizationResponse: {
3994
+ [x: string]: unknown;
3995
+ status: "ok";
3996
+ code: string;
3997
+ } | {
3994
3998
  [x: string]: unknown;
3995
3999
  status: "require_interaction";
3996
4000
  auth_session: string;
@@ -4004,10 +4008,6 @@ declare class Openid4vciClient {
4004
4008
  type: "redirect_to_web";
4005
4009
  request_uri: string;
4006
4010
  expires_in?: number | undefined;
4007
- } | {
4008
- [x: string]: unknown;
4009
- status: "ok";
4010
- code: string;
4011
4011
  };
4012
4012
  dpop: {
4013
4013
  nonce: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openid4vc/openid4vci",
3
- "version": "0.5.2-alpha-20260701133640",
3
+ "version": "0.5.2",
4
4
  "files": [
5
5
  "dist"
6
6
  ],
@@ -21,8 +21,8 @@
21
21
  },
22
22
  "dependencies": {
23
23
  "zod": "^4.4.3",
24
- "@openid4vc/oauth2": "0.5.2-alpha-20260701133640",
25
- "@openid4vc/utils": "0.5.2-alpha-20260701133640"
24
+ "@openid4vc/oauth2": "0.5.2",
25
+ "@openid4vc/utils": "0.5.2"
26
26
  },
27
27
  "devDependencies": {
28
28
  "jose": "^6.2.3"