@openid4vc/openid4vp 0.3.0-alpha-20251029103950 → 0.3.0-alpha-20251030140425
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 +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -1060,6 +1060,7 @@ declare const zJarRequestObjectPayload: z.ZodObject<{
|
|
|
1060
1060
|
nbf: z.ZodOptional<z.ZodNumber>;
|
|
1061
1061
|
nonce: z.ZodOptional<z.ZodString>;
|
|
1062
1062
|
jti: z.ZodOptional<z.ZodString>;
|
|
1063
|
+
sub: z.ZodOptional<z.ZodString>;
|
|
1063
1064
|
cnf: z.ZodOptional<z.ZodObject<{
|
|
1064
1065
|
jwk: z.ZodOptional<z.ZodObject<{
|
|
1065
1066
|
kty: z.ZodString;
|
|
@@ -1489,6 +1490,7 @@ declare function verifyJarmAuthorizationResponse(options: VerifyJarmAuthorizatio
|
|
|
1489
1490
|
nbf?: number | undefined;
|
|
1490
1491
|
nonce?: string | undefined;
|
|
1491
1492
|
jti?: string | undefined;
|
|
1493
|
+
sub?: string | undefined;
|
|
1492
1494
|
cnf?: {
|
|
1493
1495
|
[x: string]: unknown;
|
|
1494
1496
|
jwk?: {
|
|
@@ -1536,6 +1538,7 @@ declare function verifyJarmAuthorizationResponse(options: VerifyJarmAuthorizatio
|
|
|
1536
1538
|
nbf?: number | undefined;
|
|
1537
1539
|
nonce?: string | undefined;
|
|
1538
1540
|
jti?: string | undefined;
|
|
1541
|
+
sub?: string | undefined;
|
|
1539
1542
|
cnf?: {
|
|
1540
1543
|
[x: string]: unknown;
|
|
1541
1544
|
jwk?: {
|
package/dist/index.d.ts
CHANGED
|
@@ -1060,6 +1060,7 @@ declare const zJarRequestObjectPayload: z.ZodObject<{
|
|
|
1060
1060
|
nbf: z.ZodOptional<z.ZodNumber>;
|
|
1061
1061
|
nonce: z.ZodOptional<z.ZodString>;
|
|
1062
1062
|
jti: z.ZodOptional<z.ZodString>;
|
|
1063
|
+
sub: z.ZodOptional<z.ZodString>;
|
|
1063
1064
|
cnf: z.ZodOptional<z.ZodObject<{
|
|
1064
1065
|
jwk: z.ZodOptional<z.ZodObject<{
|
|
1065
1066
|
kty: z.ZodString;
|
|
@@ -1489,6 +1490,7 @@ declare function verifyJarmAuthorizationResponse(options: VerifyJarmAuthorizatio
|
|
|
1489
1490
|
nbf?: number | undefined;
|
|
1490
1491
|
nonce?: string | undefined;
|
|
1491
1492
|
jti?: string | undefined;
|
|
1493
|
+
sub?: string | undefined;
|
|
1492
1494
|
cnf?: {
|
|
1493
1495
|
[x: string]: unknown;
|
|
1494
1496
|
jwk?: {
|
|
@@ -1536,6 +1538,7 @@ declare function verifyJarmAuthorizationResponse(options: VerifyJarmAuthorizatio
|
|
|
1536
1538
|
nbf?: number | undefined;
|
|
1537
1539
|
nonce?: string | undefined;
|
|
1538
1540
|
jti?: string | undefined;
|
|
1541
|
+
sub?: string | undefined;
|
|
1539
1542
|
cnf?: {
|
|
1540
1543
|
[x: string]: unknown;
|
|
1541
1544
|
jwk?: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openid4vc/openid4vp",
|
|
3
|
-
"version": "0.3.0-alpha-
|
|
3
|
+
"version": "0.3.0-alpha-20251030140425",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist"
|
|
6
6
|
],
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"zod": "^4.1.12",
|
|
24
|
-
"@openid4vc/oauth2": "0.3.0-alpha-
|
|
25
|
-
"@openid4vc/utils": "0.3.0-alpha-
|
|
24
|
+
"@openid4vc/oauth2": "0.3.0-alpha-20251030140425",
|
|
25
|
+
"@openid4vc/utils": "0.3.0-alpha-20251030140425"
|
|
26
26
|
},
|
|
27
27
|
"scripts": {
|
|
28
28
|
"build": "tsdown src/index.ts --format cjs,esm --dts --sourcemap"
|