@openid4vc/openid4vci 0.5.2-alpha-20260701132441 → 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.
- package/dist/index.d.mts +8 -2
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -4024,6 +4024,7 @@ declare const zAuthorizationServerMetadata$1: z.ZodObject<{
|
|
|
4024
4024
|
client_secret_basic: "client_secret_basic";
|
|
4025
4025
|
client_secret_post: "client_secret_post";
|
|
4026
4026
|
attest_jwt_client_auth: "attest_jwt_client_auth";
|
|
4027
|
+
attest_jwt_client_auth_dpop: "attest_jwt_client_auth_dpop";
|
|
4027
4028
|
client_secret_jwt: "client_secret_jwt";
|
|
4028
4029
|
private_key_jwt: "private_key_jwt";
|
|
4029
4030
|
}>, z.ZodString]>>>;
|
|
@@ -4039,6 +4040,7 @@ declare const zAuthorizationServerMetadata$1: z.ZodObject<{
|
|
|
4039
4040
|
client_secret_basic: "client_secret_basic";
|
|
4040
4041
|
client_secret_post: "client_secret_post";
|
|
4041
4042
|
attest_jwt_client_auth: "attest_jwt_client_auth";
|
|
4043
|
+
attest_jwt_client_auth_dpop: "attest_jwt_client_auth_dpop";
|
|
4042
4044
|
client_secret_jwt: "client_secret_jwt";
|
|
4043
4045
|
private_key_jwt: "private_key_jwt";
|
|
4044
4046
|
}>, z.ZodString]>>>;
|
|
@@ -4047,6 +4049,9 @@ declare const zAuthorizationServerMetadata$1: z.ZodObject<{
|
|
|
4047
4049
|
interactive_authorization_endpoint: z.ZodOptional<z.ZodURL>;
|
|
4048
4050
|
require_interactive_authorization_request: z.ZodOptional<z.ZodBoolean>;
|
|
4049
4051
|
'pre-authorized_grant_anonymous_access_supported': z.ZodOptional<z.ZodBoolean>;
|
|
4052
|
+
client_attestation_signing_alg_values_supported: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4053
|
+
client_attestation_pop_signing_alg_values_supported: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4054
|
+
challenge_endpoint: z.ZodOptional<z.ZodURL>;
|
|
4050
4055
|
client_attestation_pop_nonce_required: z.ZodOptional<z.ZodBoolean>;
|
|
4051
4056
|
authorization_response_iss_parameter_supported: z.ZodOptional<z.ZodBoolean>;
|
|
4052
4057
|
}, z.core.$loose>;
|
|
@@ -5000,7 +5005,6 @@ declare class Openid4vciIssuer {
|
|
|
5000
5005
|
};
|
|
5001
5006
|
payload: {
|
|
5002
5007
|
[x: string]: unknown;
|
|
5003
|
-
iss: string;
|
|
5004
5008
|
sub: string;
|
|
5005
5009
|
exp: number;
|
|
5006
5010
|
cnf: {
|
|
@@ -5039,6 +5043,7 @@ declare class Openid4vciIssuer {
|
|
|
5039
5043
|
};
|
|
5040
5044
|
wallet_name?: string | undefined;
|
|
5041
5045
|
wallet_link?: string | undefined;
|
|
5046
|
+
iss?: string | undefined;
|
|
5042
5047
|
aud?: string | string[] | undefined;
|
|
5043
5048
|
iat?: number | undefined;
|
|
5044
5049
|
nbf?: number | undefined;
|
|
@@ -5091,10 +5096,11 @@ declare class Openid4vciIssuer {
|
|
|
5091
5096
|
};
|
|
5092
5097
|
payload: {
|
|
5093
5098
|
[x: string]: unknown;
|
|
5094
|
-
iss: string;
|
|
5095
5099
|
aud: string | string[];
|
|
5096
5100
|
jti: string;
|
|
5101
|
+
challenge?: string | undefined;
|
|
5097
5102
|
nonce?: string | undefined;
|
|
5103
|
+
iss?: string | undefined;
|
|
5098
5104
|
iat?: number | undefined;
|
|
5099
5105
|
exp?: number | undefined;
|
|
5100
5106
|
nbf?: number | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openid4vc/openid4vci",
|
|
3
|
-
"version": "0.5.2
|
|
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/
|
|
25
|
-
"@openid4vc/
|
|
24
|
+
"@openid4vc/oauth2": "0.5.2",
|
|
25
|
+
"@openid4vc/utils": "0.5.2"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"jose": "^6.2.3"
|