@openid4vc/openid4vp 0.4.3-alpha-20251210143838 → 0.4.4-alpha-20251210145219
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 +4 -4
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -35,8 +35,8 @@ declare const zWalletMetadata: z.ZodObject<{
|
|
|
35
35
|
x509_san_dns: "x509_san_dns";
|
|
36
36
|
x509_san_uri: "x509_san_uri";
|
|
37
37
|
x509_hash: "x509_hash";
|
|
38
|
-
origin: "origin";
|
|
39
38
|
https: "https";
|
|
39
|
+
origin: "origin";
|
|
40
40
|
"web-origin": "web-origin";
|
|
41
41
|
}>>>;
|
|
42
42
|
client_id_prefixes_supported: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -46,9 +46,9 @@ declare const zWalletMetadata: z.ZodObject<{
|
|
|
46
46
|
x509_san_dns: "x509_san_dns";
|
|
47
47
|
x509_san_uri: "x509_san_uri";
|
|
48
48
|
x509_hash: "x509_hash";
|
|
49
|
-
origin: "origin";
|
|
50
49
|
openid_federation: "openid_federation";
|
|
51
50
|
decentralized_identifier: "decentralized_identifier";
|
|
51
|
+
origin: "origin";
|
|
52
52
|
}>>>;
|
|
53
53
|
request_object_signing_alg_values_supported: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
54
54
|
authorization_encryption_alg_values_supported: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1120,10 +1120,10 @@ declare const zClientIdPrefix: z.ZodEnum<{
|
|
|
1120
1120
|
x509_san_dns: "x509_san_dns";
|
|
1121
1121
|
x509_san_uri: "x509_san_uri";
|
|
1122
1122
|
x509_hash: "x509_hash";
|
|
1123
|
-
origin: "origin";
|
|
1124
1123
|
https: "https";
|
|
1125
1124
|
openid_federation: "openid_federation";
|
|
1126
1125
|
decentralized_identifier: "decentralized_identifier";
|
|
1126
|
+
origin: "origin";
|
|
1127
1127
|
"web-origin": "web-origin";
|
|
1128
1128
|
}>;
|
|
1129
1129
|
declare const zUniformClientIdPrefix: z.ZodEnum<{
|
|
@@ -1133,9 +1133,9 @@ declare const zUniformClientIdPrefix: z.ZodEnum<{
|
|
|
1133
1133
|
x509_san_dns: "x509_san_dns";
|
|
1134
1134
|
x509_san_uri: "x509_san_uri";
|
|
1135
1135
|
x509_hash: "x509_hash";
|
|
1136
|
-
origin: "origin";
|
|
1137
1136
|
openid_federation: "openid_federation";
|
|
1138
1137
|
decentralized_identifier: "decentralized_identifier";
|
|
1138
|
+
origin: "origin";
|
|
1139
1139
|
}>;
|
|
1140
1140
|
type ClientIdPrefix = z.infer<typeof zClientIdPrefix>;
|
|
1141
1141
|
type UniformClientIdPrefix = z.infer<typeof zUniformClientIdPrefix>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openid4vc/openid4vp",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.4-alpha-20251210145219",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist"
|
|
6
6
|
],
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"zod": "^4.1.13",
|
|
24
|
-
"@openid4vc/
|
|
25
|
-
"@openid4vc/
|
|
24
|
+
"@openid4vc/utils": "0.4.4-alpha-20251210145219",
|
|
25
|
+
"@openid4vc/oauth2": "0.4.4-alpha-20251210145219"
|
|
26
26
|
},
|
|
27
27
|
"scripts": {
|
|
28
28
|
"build": "tsdown src/index.ts --format esm --dts --sourcemap"
|