@sd-jwt/core 0.19.1-next.11 → 0.19.1-next.12

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 CHANGED
@@ -336,6 +336,12 @@ type VerifierOptions = {
336
336
  * nonce used to verify the key binding jwt to prevent replay attacks.
337
337
  */
338
338
  keyBindingNonce?: string;
339
+ /**
340
+ * disable the verification of the status claim in the payload.
341
+ *
342
+ * @default false
343
+ */
344
+ disableStatusVerification?: boolean;
339
345
  /**
340
346
  * any other custom options
341
347
  */
package/dist/index.d.ts CHANGED
@@ -336,6 +336,12 @@ type VerifierOptions = {
336
336
  * nonce used to verify the key binding jwt to prevent replay attacks.
337
337
  */
338
338
  keyBindingNonce?: string;
339
+ /**
340
+ * disable the verification of the status claim in the payload.
341
+ *
342
+ * @default false
343
+ */
344
+ disableStatusVerification?: boolean;
339
345
  /**
340
346
  * any other custom options
341
347
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sd-jwt/core",
3
- "version": "0.19.1-next.11+9e9bca1",
3
+ "version": "0.19.1-next.12+c9d73e4",
4
4
  "description": "sd-jwt draft 7 implementation in typescript",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -58,5 +58,5 @@
58
58
  "esm"
59
59
  ]
60
60
  },
61
- "gitHead": "9e9bca10de3ad8574bfcbc875c85e37cee541505"
61
+ "gitHead": "c9d73e4db2a925e5096988fffe7eded62db1b6a7"
62
62
  }
package/src/jwt.ts CHANGED
@@ -37,6 +37,13 @@ export type VerifierOptions = {
37
37
  */
38
38
  keyBindingNonce?: string;
39
39
 
40
+ /**
41
+ * disable the verification of the status claim in the payload.
42
+ *
43
+ * @default false
44
+ */
45
+ disableStatusVerification?: boolean;
46
+
40
47
  /**
41
48
  * any other custom options
42
49
  */