@sd-jwt/types 0.6.2-next.2 → 0.6.2-next.27

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/README.md CHANGED
@@ -32,7 +32,7 @@ Ensure you have Node.js installed as a prerequisite.
32
32
 
33
33
  ### Usage
34
34
 
35
- Check out more details in our [documentation](https://github.com/openwallet-foundation-labs/sd-jwt-js/tree/next/docs) or [examples](https://github.com/openwallet-foundation-labs/sd-jwt-js/tree/next/examples)
35
+ Check out more details in our [documentation](https://github.com/openwallet-foundation-labs/sd-jwt-js/tree/main/docs) or [examples](https://github.com/openwallet-foundation-labs/sd-jwt-js/tree/main/examples)
36
36
 
37
37
  ### Dependencies
38
38
 
package/dist/index.d.mts CHANGED
@@ -60,6 +60,7 @@ interface JwtPayload {
60
60
  cnf?: {
61
61
  jwk: JsonWebKey;
62
62
  };
63
+ exp?: number;
63
64
  [key: string]: unknown;
64
65
  }
65
66
  type OrPromise<T> = T | Promise<T>;
package/dist/index.d.ts CHANGED
@@ -60,6 +60,7 @@ interface JwtPayload {
60
60
  cnf?: {
61
61
  jwk: JsonWebKey;
62
62
  };
63
+ exp?: number;
63
64
  [key: string]: unknown;
64
65
  }
65
66
  type OrPromise<T> = T | Promise<T>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sd-jwt/types",
3
- "version": "0.6.2-next.2+2e92cb3",
3
+ "version": "0.6.2-next.27+5711484",
4
4
  "description": "sd-jwt draft 7 implementation in typescript",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -25,7 +25,7 @@
25
25
  "sd-jwt-vc"
26
26
  ],
27
27
  "engines": {
28
- "node": ">=16"
28
+ "node": ">=18"
29
29
  },
30
30
  "repository": {
31
31
  "type": "git",
@@ -53,5 +53,5 @@
53
53
  "esm"
54
54
  ]
55
55
  },
56
- "gitHead": "2e92cb3abc27f6dbde19c7c016bc1f8ba60f9ff6"
56
+ "gitHead": "5711484f7aedc207763835f1f7f656a75558798d"
57
57
  }
package/src/type.ts CHANGED
@@ -66,6 +66,7 @@ export interface JwtPayload {
66
66
  cnf?: {
67
67
  jwk: JsonWebKey;
68
68
  };
69
+ exp?: number;
69
70
  [key: string]: unknown;
70
71
  }
71
72