@suveren/gateway 0.7.4 → 0.8.0

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.
Files changed (264) hide show
  1. package/content/integrations/mollie.json +103 -28
  2. package/dist/control-plane/index.mjs +248 -58
  3. package/dist/mcp-server/http.mjs +577 -124
  4. package/dist/ui/assets/index-BFnSVa9N.js +110 -0
  5. package/dist/ui/assets/{index-CkWaRck1.css → index-BYVb_0oG.css} +1 -1
  6. package/dist/ui/index.html +2 -2
  7. package/node_modules/@hap/core/dist/index.d.mts +285 -13
  8. package/node_modules/@hap/core/dist/index.d.ts +285 -13
  9. package/node_modules/@hap/core/dist/index.js +281 -13
  10. package/node_modules/@hap/core/dist/index.mjs +266 -12
  11. package/node_modules/@hap/core/package.json +4 -2
  12. package/node_modules/@hap/core/src/did-key.ts +126 -0
  13. package/node_modules/@hap/core/src/frame.ts +115 -14
  14. package/node_modules/@hap/core/src/gatekeeper.ts +26 -0
  15. package/node_modules/@hap/core/src/identity.ts +21 -5
  16. package/node_modules/@hap/core/src/index.ts +3 -0
  17. package/node_modules/@hap/core/src/mandate.ts +207 -0
  18. package/node_modules/@hap/core/src/receipt.ts +74 -0
  19. package/node_modules/@hap/core/src/types.ts +87 -5
  20. package/node_modules/@modelcontextprotocol/sdk/node_modules/negotiator/lib/accept.js +54 -0
  21. package/node_modules/@modelcontextprotocol/sdk/node_modules/negotiator/lib/charset.js +10 -34
  22. package/node_modules/@modelcontextprotocol/sdk/node_modules/negotiator/lib/encoding.js +9 -30
  23. package/node_modules/@modelcontextprotocol/sdk/node_modules/negotiator/lib/language.js +15 -36
  24. package/node_modules/@modelcontextprotocol/sdk/node_modules/negotiator/lib/mediaType.js +16 -134
  25. package/node_modules/@modelcontextprotocol/sdk/node_modules/negotiator/node_modules/content-type/LICENSE +22 -0
  26. package/node_modules/@modelcontextprotocol/sdk/node_modules/negotiator/node_modules/content-type/README.md +71 -0
  27. package/node_modules/@modelcontextprotocol/sdk/node_modules/negotiator/node_modules/content-type/dist/index.d.ts +46 -0
  28. package/node_modules/@modelcontextprotocol/sdk/node_modules/negotiator/node_modules/content-type/dist/index.js +176 -0
  29. package/node_modules/@modelcontextprotocol/sdk/node_modules/negotiator/node_modules/content-type/dist/index.js.map +1 -0
  30. package/node_modules/@modelcontextprotocol/sdk/node_modules/negotiator/node_modules/content-type/package.json +52 -0
  31. package/node_modules/@modelcontextprotocol/sdk/node_modules/negotiator/package.json +16 -10
  32. package/node_modules/@types/node/README.md +1 -1
  33. package/node_modules/@types/node/buffer.buffer.d.ts +10 -5
  34. package/node_modules/@types/node/crypto.d.ts +2 -4
  35. package/node_modules/@types/node/dgram.d.ts +119 -4
  36. package/node_modules/@types/node/ffi.d.ts +1 -1
  37. package/node_modules/@types/node/fs/promises.d.ts +61 -65
  38. package/node_modules/@types/node/fs.d.ts +86 -76
  39. package/node_modules/@types/node/http.d.ts +17 -1
  40. package/node_modules/@types/node/http2.d.ts +12 -4
  41. package/node_modules/@types/node/index.d.ts +1 -0
  42. package/node_modules/@types/node/inspector.d.ts +2 -1
  43. package/node_modules/@types/node/net.d.ts +108 -16
  44. package/node_modules/@types/node/package.json +2 -2
  45. package/node_modules/@types/node/process.d.ts +52 -0
  46. package/node_modules/@types/node/quic.d.ts +246 -38
  47. package/node_modules/@types/node/sqlite.d.ts +6 -2
  48. package/node_modules/@types/node/stream/iter.d.ts +4 -4
  49. package/node_modules/@types/node/test.d.ts +36 -0
  50. package/node_modules/@types/node/tls.d.ts +24 -0
  51. package/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +5 -0
  52. package/node_modules/@types/node/ts5.6/index.d.ts +1 -0
  53. package/node_modules/@types/node/ts5.7/index.d.ts +1 -0
  54. package/node_modules/@types/node/tty.d.ts +4 -3
  55. package/node_modules/@types/node/vfs.d.ts +210 -0
  56. package/node_modules/@types/node/vm.d.ts +1 -1
  57. package/node_modules/express-rate-limit/dist/index.cjs +6 -3
  58. package/node_modules/express-rate-limit/dist/index.d.cts +11 -0
  59. package/node_modules/express-rate-limit/dist/index.d.mts +11 -0
  60. package/node_modules/express-rate-limit/dist/index.d.ts +11 -0
  61. package/node_modules/express-rate-limit/dist/index.mjs +6 -3
  62. package/node_modules/express-rate-limit/{license.md → license} +7 -6
  63. package/node_modules/express-rate-limit/package.json +5 -5
  64. package/node_modules/express-rate-limit/readme.md +1 -0
  65. package/node_modules/fast-uri/index.js +215 -47
  66. package/node_modules/fast-uri/lib/schemes.js +9 -4
  67. package/node_modules/fast-uri/lib/utils.js +396 -92
  68. package/node_modules/fast-uri/package.json +1 -1
  69. package/node_modules/fast-uri/test/component-safe-serialization.test.js +163 -0
  70. package/node_modules/fast-uri/test/equal.test.js +31 -3
  71. package/node_modules/fast-uri/test/fixtures/uri-js-parse.json +2 -0
  72. package/node_modules/fast-uri/test/ipv6-canonical.test.js +34 -0
  73. package/node_modules/fast-uri/test/ipv6-validation.test.js +124 -0
  74. package/node_modules/fast-uri/test/malformed-percent.test.js +77 -0
  75. package/node_modules/fast-uri/test/malformed-urn.test.js +61 -0
  76. package/node_modules/fast-uri/test/parse.test.js +7 -3
  77. package/node_modules/fast-uri/test/query-fragment-normalization.test.js +33 -0
  78. package/node_modules/fast-uri/test/reserved-path-normalization.test.js +109 -0
  79. package/node_modules/fast-uri/test/scheme-validation.test.js +124 -0
  80. package/node_modules/fast-uri/test/security-normalization.test.js +101 -0
  81. package/node_modules/fast-uri/test/security.test.js +75 -3
  82. package/node_modules/fast-uri/test/urn-full-input.test.js +29 -0
  83. package/node_modules/fast-uri/test/websocket-query-preservation.test.js +24 -0
  84. package/node_modules/hono/dist/cjs/client/client.js +25 -11
  85. package/node_modules/hono/dist/cjs/client/utils.js +4 -1
  86. package/node_modules/hono/dist/cjs/context.js +4 -0
  87. package/node_modules/hono/dist/cjs/helper/accepts/accepts.js +36 -2
  88. package/node_modules/hono/dist/cjs/helper/ssg/ssg.js +1 -1
  89. package/node_modules/hono/dist/cjs/helper/ssg/utils.js +30 -10
  90. package/node_modules/hono/dist/cjs/jsx/dom/render.js +2 -0
  91. package/node_modules/hono/dist/cjs/middleware/cache/index.js +1 -1
  92. package/node_modules/hono/dist/cjs/middleware/cors/index.js +1 -1
  93. package/node_modules/hono/dist/cjs/middleware/csrf/index.js +1 -1
  94. package/node_modules/hono/dist/cjs/middleware/etag/digest.js +1 -1
  95. package/node_modules/hono/dist/cjs/middleware/etag/index.js +3 -3
  96. package/node_modules/hono/dist/cjs/middleware/pretty-json/index.js +3 -1
  97. package/node_modules/hono/dist/cjs/request.js +8 -4
  98. package/node_modules/hono/dist/cjs/router/linear-router/router.js +7 -2
  99. package/node_modules/hono/dist/cjs/router/pattern-router/router.js +3 -9
  100. package/node_modules/hono/dist/cjs/router/reg-exp-router/node.js +10 -3
  101. package/node_modules/hono/dist/cjs/router/reg-exp-router/router.js +47 -83
  102. package/node_modules/hono/dist/cjs/router/reg-exp-router/trie.js +2 -1
  103. package/node_modules/hono/dist/cjs/router/trie-router/node.js +46 -69
  104. package/node_modules/hono/dist/cjs/router/trie-router/router.js +3 -11
  105. package/node_modules/hono/dist/cjs/router/utils.js +27 -0
  106. package/node_modules/hono/dist/cjs/utils/body.js +15 -3
  107. package/node_modules/hono/dist/cjs/utils/cookie.js +1 -1
  108. package/node_modules/hono/dist/cjs/utils/ipaddr.js +5 -3
  109. package/node_modules/hono/dist/cjs/utils/stream.js +7 -1
  110. package/node_modules/hono/dist/cjs/utils/url.js +9 -1
  111. package/node_modules/hono/dist/client/client.js +25 -11
  112. package/node_modules/hono/dist/client/utils.js +4 -1
  113. package/node_modules/hono/dist/context.js +4 -0
  114. package/node_modules/hono/dist/helper/accepts/accepts.js +36 -2
  115. package/node_modules/hono/dist/helper/ssg/ssg.js +1 -1
  116. package/node_modules/hono/dist/helper/ssg/utils.js +30 -10
  117. package/node_modules/hono/dist/jsx/dom/render.js +2 -0
  118. package/node_modules/hono/dist/middleware/cache/index.js +1 -1
  119. package/node_modules/hono/dist/middleware/cors/index.js +1 -1
  120. package/node_modules/hono/dist/middleware/csrf/index.js +1 -1
  121. package/node_modules/hono/dist/middleware/etag/digest.js +1 -1
  122. package/node_modules/hono/dist/middleware/etag/index.js +3 -3
  123. package/node_modules/hono/dist/middleware/pretty-json/index.js +3 -1
  124. package/node_modules/hono/dist/request.js +8 -4
  125. package/node_modules/hono/dist/router/linear-router/router.js +7 -2
  126. package/node_modules/hono/dist/router/pattern-router/router.js +3 -9
  127. package/node_modules/hono/dist/router/reg-exp-router/node.js +6 -2
  128. package/node_modules/hono/dist/router/reg-exp-router/router.js +53 -84
  129. package/node_modules/hono/dist/router/reg-exp-router/trie.js +2 -1
  130. package/node_modules/hono/dist/router/trie-router/node.js +46 -69
  131. package/node_modules/hono/dist/router/trie-router/router.js +3 -11
  132. package/node_modules/hono/dist/router/utils.js +5 -0
  133. package/node_modules/hono/dist/types/context.d.ts +4 -0
  134. package/node_modules/hono/dist/types/router/reg-exp-router/node.d.ts +3 -0
  135. package/node_modules/hono/dist/types/router/trie-router/node.d.ts +1 -2
  136. package/node_modules/hono/dist/types/router/trie-router/router.d.ts +0 -1
  137. package/node_modules/hono/dist/types/router/utils.d.ts +1 -0
  138. package/node_modules/hono/dist/types/utils/url.d.ts +4 -0
  139. package/node_modules/hono/dist/utils/body.js +15 -3
  140. package/node_modules/hono/dist/utils/cookie.js +1 -1
  141. package/node_modules/hono/dist/utils/ipaddr.js +5 -3
  142. package/node_modules/hono/dist/utils/stream.js +7 -1
  143. package/node_modules/hono/dist/utils/url.js +9 -1
  144. package/node_modules/hono/package.json +1 -1
  145. package/node_modules/ip-address/README.md +92 -82
  146. package/node_modules/ip-address/dist/common.d.ts +20 -0
  147. package/node_modules/ip-address/dist/common.js +36 -0
  148. package/node_modules/ip-address/dist/common.js.map +1 -1
  149. package/node_modules/ip-address/dist/ipv4.d.ts +50 -0
  150. package/node_modules/ip-address/dist/ipv4.js +75 -0
  151. package/node_modules/ip-address/dist/ipv4.js.map +1 -1
  152. package/node_modules/ip-address/dist/ipv6.d.ts +79 -10
  153. package/node_modules/ip-address/dist/ipv6.js +120 -30
  154. package/node_modules/ip-address/dist/ipv6.js.map +1 -1
  155. package/node_modules/ip-address/dist/v4/constants.d.ts +12 -0
  156. package/node_modules/ip-address/dist/v4/constants.js +40 -1
  157. package/node_modules/ip-address/dist/v4/constants.js.map +1 -1
  158. package/node_modules/ip-address/dist/v6/constants.d.ts +14 -0
  159. package/node_modules/ip-address/dist/v6/constants.js +47 -1
  160. package/node_modules/ip-address/dist/v6/constants.js.map +1 -1
  161. package/node_modules/ip-address/package.json +1 -1
  162. package/node_modules/is-plain-object/README.md +39 -95
  163. package/node_modules/is-plain-object/dist/is-plain-object.js +0 -2
  164. package/node_modules/is-plain-object/is-plain-object.d.ts +6 -1
  165. package/node_modules/is-plain-object/package.json +8 -34
  166. package/node_modules/jose/dist/types/jwe/compact/decrypt.d.ts +7 -16
  167. package/node_modules/jose/dist/types/jwe/compact/encrypt.d.ts +10 -20
  168. package/node_modules/jose/dist/types/jwe/flattened/decrypt.d.ts +7 -16
  169. package/node_modules/jose/dist/types/jwe/flattened/encrypt.d.ts +16 -38
  170. package/node_modules/jose/dist/types/jwe/general/decrypt.d.ts +7 -16
  171. package/node_modules/jose/dist/types/jwe/general/encrypt.d.ts +19 -38
  172. package/node_modules/jose/dist/types/jwk/embedded.d.ts +3 -8
  173. package/node_modules/jose/dist/types/jwk/thumbprint.d.ts +5 -5
  174. package/node_modules/jose/dist/types/jwks/local.d.ts +6 -10
  175. package/node_modules/jose/dist/types/jwks/remote.d.ts +17 -28
  176. package/node_modules/jose/dist/types/jws/compact/sign.d.ts +5 -10
  177. package/node_modules/jose/dist/types/jws/compact/verify.d.ts +9 -18
  178. package/node_modules/jose/dist/types/jws/flattened/sign.d.ts +7 -16
  179. package/node_modules/jose/dist/types/jws/flattened/verify.d.ts +9 -18
  180. package/node_modules/jose/dist/types/jws/general/sign.d.ts +11 -21
  181. package/node_modules/jose/dist/types/jws/general/verify.d.ts +12 -21
  182. package/node_modules/jose/dist/types/jwt/decrypt.d.ts +10 -20
  183. package/node_modules/jose/dist/types/jwt/encrypt.d.ts +17 -29
  184. package/node_modules/jose/dist/types/jwt/sign.d.ts +12 -19
  185. package/node_modules/jose/dist/types/jwt/unsecured.d.ts +17 -28
  186. package/node_modules/jose/dist/types/jwt/verify.d.ts +9 -19
  187. package/node_modules/jose/dist/types/key/export.d.ts +4 -4
  188. package/node_modules/jose/dist/types/key/generate_key_pair.d.ts +6 -8
  189. package/node_modules/jose/dist/types/key/generate_secret.d.ts +4 -11
  190. package/node_modules/jose/dist/types/key/import.d.ts +10 -17
  191. package/node_modules/jose/dist/types/types.d.ts +48 -86
  192. package/node_modules/jose/dist/types/util/base64url.d.ts +2 -2
  193. package/node_modules/jose/dist/types/util/decode_jwt.d.ts +3 -10
  194. package/node_modules/jose/dist/types/util/decode_protected_header.d.ts +4 -4
  195. package/node_modules/jose/dist/types/util/errors.d.ts +26 -53
  196. package/node_modules/jose/dist/webapi/index.js +70 -32
  197. package/node_modules/jose/dist/webapi/jwe/compact/decrypt.js +7 -8
  198. package/node_modules/jose/dist/webapi/jwe/compact/encrypt.js +42 -26
  199. package/node_modules/jose/dist/webapi/jwe/flattened/decrypt.js +14 -10
  200. package/node_modules/jose/dist/webapi/jwe/flattened/encrypt.js +53 -71
  201. package/node_modules/jose/dist/webapi/jwe/general/decrypt.js +38 -49
  202. package/node_modules/jose/dist/webapi/jwe/general/encrypt.js +121 -158
  203. package/node_modules/jose/dist/webapi/jwk/embedded.js +30 -18
  204. package/node_modules/jose/dist/webapi/jwk/thumbprint.js +54 -64
  205. package/node_modules/jose/dist/webapi/jwks/local.js +49 -74
  206. package/node_modules/jose/dist/webapi/jwks/remote.js +91 -160
  207. package/node_modules/jose/dist/webapi/jws/compact/sign.js +21 -20
  208. package/node_modules/jose/dist/webapi/jws/compact/verify.js +7 -8
  209. package/node_modules/jose/dist/webapi/jws/flattened/sign.js +29 -30
  210. package/node_modules/jose/dist/webapi/jws/flattened/verify.js +21 -23
  211. package/node_modules/jose/dist/webapi/jws/general/sign.js +61 -70
  212. package/node_modules/jose/dist/webapi/jws/general/verify.js +47 -41
  213. package/node_modules/jose/dist/webapi/jwt/decrypt.js +13 -22
  214. package/node_modules/jose/dist/webapi/jwt/encrypt.js +58 -100
  215. package/node_modules/jose/dist/webapi/jwt/sign.js +18 -50
  216. package/node_modules/jose/dist/webapi/jwt/unsecured.js +34 -63
  217. package/node_modules/jose/dist/webapi/jwt/verify.js +12 -14
  218. package/node_modules/jose/dist/webapi/key/export.js +32 -37
  219. package/node_modules/jose/dist/webapi/key/generate_key_pair.js +40 -44
  220. package/node_modules/jose/dist/webapi/key/generate_secret.js +35 -39
  221. package/node_modules/jose/dist/webapi/key/import.js +52 -52
  222. package/node_modules/jose/dist/webapi/lib/asn1.js +130 -164
  223. package/node_modules/jose/dist/webapi/lib/base64.js +18 -20
  224. package/node_modules/jose/dist/webapi/lib/buffer_utils.js +34 -38
  225. package/node_modules/jose/dist/webapi/lib/content_encryption.js +79 -123
  226. package/node_modules/jose/dist/webapi/lib/crypto_key.js +24 -25
  227. package/node_modules/jose/dist/webapi/lib/deflate.js +46 -40
  228. package/node_modules/jose/dist/webapi/lib/helpers.js +40 -37
  229. package/node_modules/jose/dist/webapi/lib/invalid_key_input.js +10 -24
  230. package/node_modules/jose/dist/webapi/lib/is_key_like.js +17 -15
  231. package/node_modules/jose/dist/webapi/lib/jwe_algorithms.js +106 -93
  232. package/node_modules/jose/dist/webapi/lib/jwe_decrypt.js +210 -176
  233. package/node_modules/jose/dist/webapi/lib/jwe_encrypt.js +105 -107
  234. package/node_modules/jose/dist/webapi/lib/jwk_metadata.js +19 -0
  235. package/node_modules/jose/dist/webapi/lib/jwk_to_key.js +9 -16
  236. package/node_modules/jose/dist/webapi/lib/jws_algorithms.js +62 -61
  237. package/node_modules/jose/dist/webapi/lib/jws_sign.js +58 -72
  238. package/node_modules/jose/dist/webapi/lib/jws_verify.js +90 -103
  239. package/node_modules/jose/dist/webapi/lib/jwt_claims_set.js +134 -185
  240. package/node_modules/jose/dist/webapi/lib/key.js +84 -121
  241. package/node_modules/jose/dist/webapi/lib/key_algorithm.js +13 -8
  242. package/node_modules/jose/dist/webapi/lib/key_descriptor.js +8 -6
  243. package/node_modules/jose/dist/webapi/lib/key_management.js +200 -225
  244. package/node_modules/jose/dist/webapi/lib/key_options.js +8 -0
  245. package/node_modules/jose/dist/webapi/lib/options.js +57 -44
  246. package/node_modules/jose/dist/webapi/lib/signing.js +18 -22
  247. package/node_modules/jose/dist/webapi/lib/type_checks.js +28 -33
  248. package/node_modules/jose/dist/webapi/util/base64url.js +26 -35
  249. package/node_modules/jose/dist/webapi/util/decode_jwt.js +32 -31
  250. package/node_modules/jose/dist/webapi/util/decode_protected_header.js +18 -23
  251. package/node_modules/jose/dist/webapi/util/errors.js +94 -84
  252. package/node_modules/jose/package.json +17 -81
  253. package/package.json +2 -2
  254. package/profiles/calendar/0.5.profile.json +190 -0
  255. package/profiles/charge/0.5.profile.json +210 -0
  256. package/profiles/customers/0.7.profile.json +157 -0
  257. package/profiles/deploy/0.9.profile.json +176 -0
  258. package/profiles/email/0.6.profile.json +208 -0
  259. package/profiles/index.json +9 -1
  260. package/profiles/publish/0.5.profile.json +186 -0
  261. package/profiles/purchase/0.5.profile.json +231 -0
  262. package/profiles/records/0.5.profile.json +117 -0
  263. package/dist/ui/assets/index-0Q2eNytX.js +0 -110
  264. package/node_modules/@modelcontextprotocol/sdk/node_modules/negotiator/HISTORY.md +0 -114
@@ -1,107 +1,94 @@
1
- import { verify } from './signing.js';
2
- import { jwsAlgorithm } from './jws_algorithms.js';
3
- import { JOSEAlgNotAllowed, JWSInvalid, JWSSignatureVerificationFailed } from '../util/errors.js';
4
- import { concat, decoder, encoder, encode } from './buffer_utils.js';
5
- import { decodeBase64url, encodeBase64url, parseJoseHeader } from './helpers.js';
6
- import { isDisjoint } from './type_checks.js';
7
- import { validateCrit, validateAlgorithms, JWS_RECOGNIZED } from './options.js';
8
- import { prepareKey } from './key.js';
9
- export function verifyResult(jws, verified) {
10
- const [payload, parsedProt, , key, resolvedKey] = verified;
11
- const result = { payload };
12
- if (jws.protected !== undefined) {
13
- result.protectedHeader = parsedProt;
14
- }
15
- if (jws.header !== undefined) {
16
- result.unprotectedHeader = jws.header;
17
- }
18
- if (resolvedKey) {
19
- return { ...result, key };
20
- }
21
- return result;
1
+ import { verify } from "./signing.js";
2
+ import { jwsAlgorithm } from "./jws_algorithms.js";
3
+ import { JOSEAlgNotAllowed, JWSInvalid, JWSSignatureVerificationFailed } from "../util/errors.js";
4
+ import { concat, decoder, encoder, encode } from "./buffer_utils.js";
5
+ import { decodeBase64url, encodeBase64url, parseJoseHeader } from "./helpers.js";
6
+ import { isDisjoint, isObject } from "./type_checks.js";
7
+ import { validateB64, validateCrit, validateAlgorithms, JWS_RECOGNIZED } from "./options.js";
8
+ import { prepareKey } from "./key.js";
9
+ function snapshotJws(jws, sharedPayload) {
10
+ const encodedProtected = jws.protected, inputHeader = jws.header, header = isObject(inputHeader) ? { ...inputHeader } : inputHeader;
11
+ let payload = sharedPayload ? sharedPayload[0] : jws.payload;
12
+ !sharedPayload && payload instanceof Uint8Array && (payload = new Uint8Array(payload));
13
+ const signature = jws.signature, snapshot = { payload, signature };
14
+ return encodedProtected !== void 0 && (snapshot.protected = encodedProtected), inputHeader !== void 0 && (snapshot.header = header), snapshot;
22
15
  }
23
- export function prepareVerify(options) {
24
- return [options && validateAlgorithms('algorithms', options.algorithms), options?.crit];
16
+ function verifyResult(jws, verified) {
17
+ const [payload, parsedProt, , key, resolvedKey] = verified, result = { payload };
18
+ return jws.protected !== void 0 && (result.protectedHeader = parsedProt), jws.header !== void 0 && (result.unprotectedHeader = jws.header), resolvedKey ? { ...result, key } : result;
25
19
  }
26
- export async function verifySignature(jws, shared, key) {
27
- const { protected: encodedProtected, header, payload: inputPayload } = jws;
28
- let parsedProt = {};
29
- if (encodedProtected) {
30
- parsedProt = parseJoseHeader(encodedProtected, JWSInvalid, 'JWS Protected Header is invalid');
31
- }
32
- let joseHeader;
33
- if (header !== undefined) {
34
- if (!isDisjoint(parsedProt, header)) {
35
- throw new JWSInvalid('JWS Protected and JWS Unprotected Header Parameter names must be disjoint');
36
- }
37
- joseHeader = { ...parsedProt, ...header };
38
- }
39
- else {
40
- joseHeader = parsedProt;
41
- }
42
- const extensions = validateCrit(JWSInvalid, JWS_RECOGNIZED, shared[1], parsedProt, joseHeader);
43
- let b64 = true;
44
- if (extensions.includes('b64')) {
45
- b64 = parsedProt.b64;
46
- if (typeof b64 !== 'boolean') {
47
- throw new JWSInvalid('The "b64" (base64url-encode payload) Header Parameter must be a boolean');
48
- }
49
- }
50
- const { alg } = joseHeader;
51
- if (typeof alg !== 'string' || !alg) {
52
- throw new JWSInvalid('JWS "alg" (Algorithm) Header Parameter missing or invalid');
53
- }
54
- if (shared[0] && !shared[0].has(alg)) {
55
- throw new JOSEAlgNotAllowed('"alg" (Algorithm) Header Parameter value not allowed');
56
- }
57
- if (b64) {
58
- if (typeof inputPayload !== 'string') {
59
- throw new JWSInvalid('JWS Payload must be a string');
60
- }
61
- }
62
- else if (typeof inputPayload !== 'string' && !(inputPayload instanceof Uint8Array)) {
63
- throw new JWSInvalid('JWS Payload must be a string or an Uint8Array instance');
64
- }
65
- let resolvedKey = false;
66
- if (typeof key === 'function') {
67
- key = await key(parsedProt, jws);
68
- resolvedKey = true;
69
- }
70
- const entry = jwsAlgorithm(alg);
71
- const data = concat(encodedProtected !== undefined ? encode(encodedProtected) : new Uint8Array(), encode('.'), typeof inputPayload === 'string'
72
- ? b64
73
- ?
74
- (shared[2] ??= encodeBase64url(inputPayload, 'payload', JWSInvalid))
75
- : encoder.encode(inputPayload)
76
- : inputPayload);
77
- const signature = decodeBase64url(jws.signature, 'signature', JWSInvalid);
78
- const k = await prepareKey(entry, key, 'verify');
79
- const verified = await verify(entry, k, signature, data);
80
- if (!verified) {
81
- throw new JWSSignatureVerificationFailed();
82
- }
83
- let payload;
84
- if (b64) {
85
- payload = decodeBase64url(inputPayload, 'payload', JWSInvalid);
86
- }
87
- else if (typeof inputPayload === 'string') {
88
- payload = encoder.encode(inputPayload);
89
- }
90
- else {
91
- payload = inputPayload;
92
- }
93
- return [payload, parsedProt, b64, k, resolvedKey];
20
+ function prepareVerify(options) {
21
+ return [options && validateAlgorithms("algorithms", options.algorithms), options?.crit];
94
22
  }
95
- export async function verifyCompact(jws, shared, key) {
96
- if (jws instanceof Uint8Array) {
97
- jws = decoder.decode(jws);
98
- }
99
- if (typeof jws !== 'string') {
100
- throw new JWSInvalid('Compact JWS must be a string or Uint8Array');
101
- }
102
- const { 0: protectedHeader, 1: payload, 2: signature, length } = jws.split('.');
103
- if (length !== 3) {
104
- throw new JWSInvalid('Invalid Compact JWS');
105
- }
106
- return verifySignature({ payload, protected: protectedHeader, signature }, shared, key);
23
+ function parseProtectedHeader(encodedProtected, parsedProtected = encodedProtected === void 0 ? {} : parseJoseHeader(encodedProtected, JWSInvalid, "JWS Protected Header is invalid")) {
24
+ return parsedProtected;
107
25
  }
26
+ function validateJwsHeaders(parsedProt, joseHeader, shared) {
27
+ const b64 = validateB64(parsedProt, validateCrit(JWSInvalid, JWS_RECOGNIZED, shared[1], parsedProt, joseHeader)), alg = joseHeader.alg;
28
+ if (typeof alg != "string" || !alg)
29
+ throw new JWSInvalid('JWS "alg" (Algorithm) Header Parameter missing or invalid');
30
+ if (shared[0] && !shared[0].has(alg))
31
+ throw new JOSEAlgNotAllowed('"alg" (Algorithm) Header Parameter value not allowed');
32
+ return [b64, alg];
33
+ }
34
+ function parseJwsHeaders(encodedProtected, header, shared, parsedProtected) {
35
+ const parsedProt = parseProtectedHeader(encodedProtected, parsedProtected);
36
+ let joseHeader;
37
+ if (header !== void 0) {
38
+ if (!isDisjoint(parsedProt, header))
39
+ throw new JWSInvalid("JWS Protected and JWS Unprotected Header Parameter names must be disjoint");
40
+ joseHeader = { ...parsedProt, ...header };
41
+ } else
42
+ joseHeader = parsedProt;
43
+ return [parsedProt, joseHeader, ...validateJwsHeaders(parsedProt, joseHeader, shared)];
44
+ }
45
+ function encodeJsonUnencodedPayload(payload) {
46
+ const invalid = /[\p{Cs}\p{Cn}]/u.exec(payload)?.[0];
47
+ if (invalid !== void 0)
48
+ throw new JWSInvalid(/\p{Cs}/u.test(invalid) ? "JWS Payload must be a well-formed Unicode string" : "JWS Payload must not contain unassigned Unicode code points");
49
+ return encoder.encode(payload);
50
+ }
51
+ function encodeCompactUnencodedPayload(payload) {
52
+ try {
53
+ return encode(payload);
54
+ } catch {
55
+ throw new JWSInvalid("JWS Compact Serialization payload must use only ASCII characters");
56
+ }
57
+ }
58
+ async function verifyPrepared(jws, shared, key, encodedProtected, parsedProt, alg, signingPayload) {
59
+ let resolvedKey = !1;
60
+ typeof key == "function" && (key = await key(parsedProt, jws), resolvedKey = !0);
61
+ const b64 = typeof signingPayload == "string", entry = jwsAlgorithm(alg), data = concat(encodedProtected !== void 0 ? encode(encodedProtected) : new Uint8Array(), encode("."), b64 ? shared[2] ??= encodeBase64url(signingPayload, "payload", JWSInvalid) : signingPayload), signature = decodeBase64url(jws.signature, "signature", JWSInvalid), k = await prepareKey(entry, key, "verify");
62
+ if (!await verify(entry, k, signature, data))
63
+ throw new JWSSignatureVerificationFailed();
64
+ return [b64 ? decodeBase64url(signingPayload, "payload", JWSInvalid) : signingPayload, parsedProt, b64, k, resolvedKey];
65
+ }
66
+ async function verifySignature(jws, shared, key, encodeUnencodedPayload, parsedProtected) {
67
+ const { protected: encodedProtected, header, payload: inputPayload } = jws, [parsedProt, , b64, alg] = parseJwsHeaders(encodedProtected, header, shared, parsedProtected);
68
+ if (b64) {
69
+ if (typeof inputPayload != "string")
70
+ throw new JWSInvalid("JWS Payload must be a string");
71
+ } else if (typeof inputPayload != "string" && !(inputPayload instanceof Uint8Array))
72
+ throw new JWSInvalid("JWS Payload must be a string or an Uint8Array instance");
73
+ const signingPayload = b64 || typeof inputPayload != "string" ? inputPayload : encodeUnencodedPayload(inputPayload);
74
+ return verifyPrepared(jws, shared, key, encodedProtected, parsedProt, alg, signingPayload);
75
+ }
76
+ async function verifyCompact(jws, shared, key) {
77
+ if (jws instanceof Uint8Array && (jws = decoder.decode(jws)), typeof jws != "string")
78
+ throw new JWSInvalid("Compact JWS must be a string or Uint8Array");
79
+ const { 0: protectedHeader, 1: payload, 2: signature, length } = jws.split(".");
80
+ if (length !== 3)
81
+ throw new JWSInvalid("Invalid Compact JWS");
82
+ const compactJws = { payload, protected: protectedHeader, signature }, parsedProt = parseProtectedHeader(protectedHeader), [b64, alg] = validateJwsHeaders(parsedProt, parsedProt, shared), signingPayload = b64 ? payload : encodeCompactUnencodedPayload(payload);
83
+ return verifyPrepared(compactJws, shared, key, protectedHeader, parsedProt, alg, signingPayload);
84
+ }
85
+ export {
86
+ encodeJsonUnencodedPayload,
87
+ parseJwsHeaders,
88
+ parseProtectedHeader,
89
+ prepareVerify,
90
+ snapshotJws,
91
+ verifyCompact,
92
+ verifyResult,
93
+ verifySignature
94
+ };
@@ -1,197 +1,146 @@
1
- import { JWTClaimValidationFailed, JWTExpired, JWTInvalid } from '../util/errors.js';
2
- import { encoder, strictDecoder } from './buffer_utils.js';
3
- import { isObject } from './type_checks.js';
4
- const epoch = (date) => Math.floor(date.getTime() / 1000);
5
- const multipliers = {
6
- s: 1,
7
- m: 60,
8
- h: 3600,
9
- d: 86400,
10
- w: 604800,
11
- y: 31557600,
12
- };
13
- const REGEX = /^(\+|\-)? ?(\d+|\d+\.\d+) ?(seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)(?: (ago|from now))?$/i;
14
- const checkFailed = 'check_failed';
15
- export function secs(str) {
16
- const matched = REGEX.exec(str);
17
- if (!matched || (matched[4] && matched[1])) {
18
- throw new TypeError('Invalid time period format');
19
- }
20
- const value = parseFloat(matched[2]);
21
- const numericDate = Math.round(value * multipliers[matched[3][0].toLowerCase()]);
22
- if (matched[1] === '-' || matched[4] === 'ago') {
23
- return -numericDate;
24
- }
25
- return numericDate;
1
+ import { JWTClaimValidationFailed, JWTExpired, JWTInvalid } from "../util/errors.js";
2
+ import { encoder, strictDecoder } from "./buffer_utils.js";
3
+ import { isObject } from "./type_checks.js";
4
+ const epoch = (date) => Math.floor(date.getTime() / 1e3), multipliers = {
5
+ s: 1,
6
+ m: 60,
7
+ h: 3600,
8
+ d: 86400,
9
+ w: 604800,
10
+ y: 31557600
11
+ }, REGEX = /^(\+|\-)? ?(\d+|\d+\.\d+) ?(seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)(?: (ago|from now))?$/i, checkFailed = "check_failed";
12
+ function invalidDuration() {
13
+ throw new TypeError("Invalid time period format");
14
+ }
15
+ function secs(str) {
16
+ typeof str != "string" && invalidDuration();
17
+ const matched = REGEX.exec(str);
18
+ (!matched || matched[4] && matched[1]) && invalidDuration();
19
+ const value = parseFloat(matched[2]), numericDate2 = Math.round(value * multipliers[matched[3][0].toLowerCase()]);
20
+ return Number.isFinite(numericDate2) || invalidDuration(), matched[1] === "-" || matched[4] === "ago" ? -numericDate2 : numericDate2;
26
21
  }
27
22
  function validateInput(label, input) {
28
- if (!Number.isFinite(input)) {
29
- throw new TypeError(`Invalid ${label} input`);
30
- }
31
- return input;
23
+ if (!Number.isFinite(input))
24
+ throw new TypeError(`Invalid ${label} input`);
25
+ return input;
26
+ }
27
+ function validateStringClaim(claim, value) {
28
+ if (typeof value != "string")
29
+ throw new TypeError(`"${claim}" claim must be a string`);
30
+ }
31
+ function validateAudienceClaim(value) {
32
+ if (typeof value != "string" && (!Array.isArray(value) || Array.from(value).some((member) => typeof member != "string")))
33
+ throw new TypeError('"aud" claim must be a string or an array of strings');
32
34
  }
33
35
  function numericDate(value, label) {
34
- if (typeof value === 'number')
35
- return validateInput(label, value);
36
- if (value instanceof Date)
37
- return validateInput(label, epoch(value));
38
- return epoch(new Date()) + secs(value);
36
+ return typeof value == "number" ? validateInput(label, value) : value instanceof Date ? validateInput(label, epoch(value)) : epoch(/* @__PURE__ */ new Date()) + secs(value);
39
37
  }
40
38
  const normalizeTyp = (value) => {
41
- if (value.includes('/')) {
42
- return value.toLowerCase();
43
- }
44
- return `application/${value.toLowerCase()}`;
45
- };
46
- const checkAudiencePresence = (audPayload, audOption) => {
47
- if (typeof audPayload === 'string') {
48
- return audOption.includes(audPayload);
49
- }
50
- if (Array.isArray(audPayload)) {
51
- return audOption.some((aud) => audPayload.includes(aud));
52
- }
53
- return false;
54
- };
55
- function validateNumericDate(payload, claim, required = false) {
56
- const value = payload[claim];
57
- if (value === undefined && !required)
58
- return undefined;
59
- if (typeof value !== 'number') {
60
- throw new JWTClaimValidationFailed(`"${claim}" claim must be a number`, payload, claim, 'invalid');
61
- }
39
+ const normalized = value.toLowerCase();
40
+ return value.includes("/") ? normalized : `application/${normalized}`;
41
+ }, checkAudiencePresence = (audPayload, audOption) => typeof audPayload == "string" ? audOption.includes(audPayload) : Array.isArray(audPayload) ? audOption.some((aud) => audPayload.includes(aud)) : !1;
42
+ function validateNumericDate(payload, claim, required = !1) {
43
+ const value = payload[claim];
44
+ if (!(value === void 0 && !required)) {
45
+ if (typeof value != "number")
46
+ throw new JWTClaimValidationFailed(`"${claim}" claim must be a number`, payload, claim, "invalid");
62
47
  return value;
48
+ }
63
49
  }
64
50
  function unexpectedClaim(payload, claim) {
65
- throw new JWTClaimValidationFailed(`unexpected "${claim}" claim value`, payload, claim, checkFailed);
51
+ throw new JWTClaimValidationFailed(`unexpected "${claim}" claim value`, payload, claim, checkFailed);
52
+ }
53
+ function validateClaimsSet(protectedHeader, encodedPayload, options = {}) {
54
+ let payload;
55
+ try {
56
+ payload = JSON.parse(strictDecoder.decode(encodedPayload));
57
+ } catch {
58
+ }
59
+ if (!isObject(payload))
60
+ throw new JWTInvalid("JWT Claims Set must be a top-level JSON object");
61
+ const { typ } = options;
62
+ if (typ !== void 0 && (typeof protectedHeader.typ != "string" || normalizeTyp(protectedHeader.typ) !== normalizeTyp(typ)))
63
+ throw new JWTClaimValidationFailed('unexpected "typ" JWT header value', payload, "typ", checkFailed);
64
+ const { requiredClaims = [], issuer, subject, audience, maxTokenAge } = options, presenceCheck = [...requiredClaims];
65
+ maxTokenAge !== void 0 && presenceCheck.push("iat"), audience !== void 0 && presenceCheck.push("aud"), subject !== void 0 && presenceCheck.push("sub"), issuer !== void 0 && presenceCheck.push("iss");
66
+ for (const claim of new Set(presenceCheck.reverse()))
67
+ if (!Object.hasOwn(payload, claim))
68
+ throw new JWTClaimValidationFailed(`missing required "${claim}" claim`, payload, claim, "missing");
69
+ issuer !== void 0 && !(Array.isArray(issuer) ? issuer : [issuer]).includes(payload.iss) && unexpectedClaim(payload, "iss"), subject !== void 0 && payload.sub !== subject && unexpectedClaim(payload, "sub"), audience !== void 0 && !checkAudiencePresence(payload.aud, typeof audience == "string" ? [audience] : audience) && unexpectedClaim(payload, "aud");
70
+ const { clockTolerance } = options;
71
+ let tolerance = 0;
72
+ if (typeof clockTolerance == "string")
73
+ tolerance = secs(clockTolerance);
74
+ else if (clockTolerance !== void 0) {
75
+ if (typeof clockTolerance != "number")
76
+ throw new TypeError("Invalid clockTolerance option type");
77
+ tolerance = clockTolerance;
78
+ }
79
+ validateInput("clockTolerance option", tolerance);
80
+ const { currentDate } = options, now = validateInput("currentDate option", epoch(currentDate === void 0 ? /* @__PURE__ */ new Date() : currentDate)), iat = validateNumericDate(payload, "iat", maxTokenAge !== void 0), nbf = validateNumericDate(payload, "nbf");
81
+ if (nbf !== void 0 && nbf > now + tolerance)
82
+ throw new JWTClaimValidationFailed('"nbf" claim timestamp check failed', payload, "nbf", checkFailed);
83
+ const exp = validateNumericDate(payload, "exp");
84
+ if (exp !== void 0 && exp <= now - tolerance)
85
+ throw new JWTExpired('"exp" claim timestamp check failed', payload, "exp", checkFailed);
86
+ if (maxTokenAge !== void 0) {
87
+ const age = now - iat, max = validateInput("maxTokenAge option", typeof maxTokenAge == "number" ? maxTokenAge : secs(maxTokenAge));
88
+ if (age - tolerance > max)
89
+ throw new JWTExpired('"iat" claim timestamp check failed (too far in the past)', payload, "iat", checkFailed);
90
+ if (age < -tolerance)
91
+ throw new JWTClaimValidationFailed('"iat" claim timestamp check failed (it should be in the past)', payload, "iat", checkFailed);
92
+ }
93
+ return payload;
94
+ }
95
+ let producerPayloads;
96
+ function producerPayload(producer) {
97
+ return producerPayloads.get(producer);
66
98
  }
67
- export function validateClaimsSet(protectedHeader, encodedPayload, options = {}) {
68
- let payload;
69
- try {
70
- payload = JSON.parse(strictDecoder.decode(encodedPayload));
71
- }
72
- catch {
73
- }
74
- if (!isObject(payload)) {
75
- throw new JWTInvalid('JWT Claims Set must be a top-level JSON object');
76
- }
77
- const { typ } = options;
78
- if (typ &&
79
- (typeof protectedHeader.typ !== 'string' ||
80
- normalizeTyp(protectedHeader.typ) !== normalizeTyp(typ))) {
81
- throw new JWTClaimValidationFailed('unexpected "typ" JWT header value', payload, 'typ', checkFailed);
82
- }
83
- const { requiredClaims = [], issuer, subject, audience, maxTokenAge } = options;
84
- const presenceCheck = [...requiredClaims];
85
- if (maxTokenAge !== undefined)
86
- presenceCheck.push('iat');
87
- if (audience !== undefined)
88
- presenceCheck.push('aud');
89
- if (subject !== undefined)
90
- presenceCheck.push('sub');
91
- if (issuer !== undefined)
92
- presenceCheck.push('iss');
93
- for (const claim of new Set(presenceCheck.reverse())) {
94
- if (!Object.hasOwn(payload, claim)) {
95
- throw new JWTClaimValidationFailed(`missing required "${claim}" claim`, payload, claim, 'missing');
96
- }
97
- }
98
- if (issuer !== undefined &&
99
- !(Array.isArray(issuer) ? issuer : [issuer]).includes(payload.iss)) {
100
- unexpectedClaim(payload, 'iss');
101
- }
102
- if (subject !== undefined && payload.sub !== subject) {
103
- unexpectedClaim(payload, 'sub');
104
- }
105
- if (audience !== undefined &&
106
- !checkAudiencePresence(payload.aud, typeof audience === 'string' ? [audience] : audience)) {
107
- unexpectedClaim(payload, 'aud');
108
- }
109
- const { clockTolerance } = options;
110
- let tolerance = 0;
111
- if (typeof clockTolerance === 'string') {
112
- tolerance = secs(clockTolerance);
113
- }
114
- else if (clockTolerance !== undefined) {
115
- if (typeof clockTolerance !== 'number') {
116
- throw new TypeError('Invalid clockTolerance option type');
117
- }
118
- tolerance = clockTolerance;
119
- }
120
- validateInput('clockTolerance option', tolerance);
121
- const { currentDate } = options;
122
- const now = validateInput('currentDate option', epoch(currentDate || new Date()));
123
- const iat = validateNumericDate(payload, 'iat', maxTokenAge !== undefined);
124
- const nbf = validateNumericDate(payload, 'nbf');
125
- if (nbf !== undefined) {
126
- if (nbf > now + tolerance) {
127
- throw new JWTClaimValidationFailed('"nbf" claim timestamp check failed', payload, 'nbf', checkFailed);
128
- }
129
- }
130
- const exp = validateNumericDate(payload, 'exp');
131
- if (exp !== undefined) {
132
- if (exp <= now - tolerance) {
133
- throw new JWTExpired('"exp" claim timestamp check failed', payload, 'exp', checkFailed);
134
- }
135
- }
136
- if (maxTokenAge !== undefined) {
137
- const age = now - iat;
138
- const max = typeof maxTokenAge === 'number' ? maxTokenAge : secs(maxTokenAge);
139
- if (age - tolerance > max) {
140
- throw new JWTExpired('"iat" claim timestamp check failed (too far in the past)', payload, 'iat', checkFailed);
141
- }
142
- if (age < 0 - tolerance) {
143
- throw new JWTClaimValidationFailed('"iat" claim timestamp check failed (it should be in the past)', payload, 'iat', checkFailed);
144
- }
145
- }
146
- return payload;
99
+ function jwtData(producer) {
100
+ const payload = producerPayload(producer);
101
+ for (const claim of ["iat", "nbf", "exp"]) {
102
+ const value = payload[claim];
103
+ if (typeof value == "number" && !Number.isFinite(value))
104
+ throw new TypeError(`"${claim}" claim must be a finite number`);
105
+ }
106
+ return encoder.encode(JSON.stringify(payload));
107
+ }
108
+ function jwtClaim(producer, claim) {
109
+ return producerPayload(producer)[claim];
147
110
  }
148
- export class JWTClaimsBuilder {
149
- #payload;
150
- constructor(payload) {
151
- if (!isObject(payload)) {
152
- throw new TypeError('JWT Claims Set MUST be an object');
153
- }
154
- this.#payload = structuredClone(payload);
155
- }
156
- data() {
157
- return encoder.encode(JSON.stringify(this.#payload));
158
- }
159
- get iss() {
160
- return this.#payload.iss;
161
- }
162
- set iss(value) {
163
- this.#payload.iss = value;
164
- }
165
- get sub() {
166
- return this.#payload.sub;
167
- }
168
- set sub(value) {
169
- this.#payload.sub = value;
170
- }
171
- get aud() {
172
- return this.#payload.aud;
173
- }
174
- set aud(value) {
175
- this.#payload.aud = value;
176
- }
177
- set jti(value) {
178
- this.#payload.jti = value;
179
- }
180
- set nbf(value) {
181
- this.#payload.nbf = numericDate(value, 'setNotBefore');
182
- }
183
- set exp(value) {
184
- this.#payload.exp = numericDate(value, 'setExpirationTime');
185
- }
186
- set iat(value) {
187
- if (value === undefined) {
188
- this.#payload.iat = epoch(new Date());
189
- }
190
- else if (typeof value === 'string') {
191
- this.#payload.iat = validateInput('setIssuedAt', epoch(new Date()) + secs(value));
192
- }
193
- else {
194
- this.#payload.iat = numericDate(value, 'setIssuedAt');
195
- }
196
- }
111
+ class JWTClaimsBuilder {
112
+ constructor(payload = {}) {
113
+ if (!isObject(payload))
114
+ throw new TypeError("JWT Claims Set MUST be an object");
115
+ (producerPayloads ||= /* @__PURE__ */ new WeakMap()).set(this, structuredClone(payload));
116
+ }
117
+ setIssuer(value) {
118
+ return validateStringClaim("iss", value), producerPayload(this).iss = value, this;
119
+ }
120
+ setSubject(value) {
121
+ return validateStringClaim("sub", value), producerPayload(this).sub = value, this;
122
+ }
123
+ setAudience(value) {
124
+ return validateAudienceClaim(value), producerPayload(this).aud = value, this;
125
+ }
126
+ setJti(value) {
127
+ return validateStringClaim("jti", value), producerPayload(this).jti = value, this;
128
+ }
129
+ setNotBefore(value) {
130
+ return producerPayload(this).nbf = numericDate(value, "setNotBefore"), this;
131
+ }
132
+ setExpirationTime(value) {
133
+ return producerPayload(this).exp = numericDate(value, "setExpirationTime"), this;
134
+ }
135
+ setIssuedAt(value) {
136
+ const payload = producerPayload(this);
137
+ return value === void 0 ? payload.iat = epoch(/* @__PURE__ */ new Date()) : typeof value == "string" ? payload.iat = validateInput("setIssuedAt", epoch(/* @__PURE__ */ new Date()) + secs(value)) : payload.iat = numericDate(value, "setIssuedAt"), this;
138
+ }
197
139
  }
140
+ export {
141
+ JWTClaimsBuilder,
142
+ jwtClaim,
143
+ jwtData,
144
+ secs,
145
+ validateClaimsSet
146
+ };