@suveren/gateway 0.7.6 → 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 (161) hide show
  1. package/content/integrations/mollie.json +103 -28
  2. package/dist/mcp-server/http.mjs +228 -118
  3. package/dist/ui/assets/{index-CsrM6RQr.js → index-BFnSVa9N.js} +22 -22
  4. package/dist/ui/index.html +1 -1
  5. package/node_modules/@hap/core/dist/index.d.mts +29 -6
  6. package/node_modules/@hap/core/dist/index.d.ts +29 -6
  7. package/node_modules/@hap/core/dist/index.js +54 -8
  8. package/node_modules/@hap/core/dist/index.mjs +53 -8
  9. package/node_modules/@hap/core/package.json +2 -1
  10. package/node_modules/@hap/core/src/frame.ts +115 -14
  11. package/node_modules/@hap/core/src/gatekeeper.ts +26 -0
  12. package/node_modules/@hap/core/src/types.ts +7 -1
  13. package/node_modules/@types/node/README.md +1 -1
  14. package/node_modules/@types/node/buffer.buffer.d.ts +5 -0
  15. package/node_modules/@types/node/crypto.d.ts +0 -2
  16. package/node_modules/@types/node/dgram.d.ts +119 -4
  17. package/node_modules/@types/node/ffi.d.ts +1 -1
  18. package/node_modules/@types/node/fs/promises.d.ts +61 -65
  19. package/node_modules/@types/node/fs.d.ts +86 -76
  20. package/node_modules/@types/node/http.d.ts +1 -1
  21. package/node_modules/@types/node/http2.d.ts +2 -2
  22. package/node_modules/@types/node/index.d.ts +1 -0
  23. package/node_modules/@types/node/inspector.d.ts +2 -1
  24. package/node_modules/@types/node/net.d.ts +108 -16
  25. package/node_modules/@types/node/package.json +2 -2
  26. package/node_modules/@types/node/quic.d.ts +37 -11
  27. package/node_modules/@types/node/stream/iter.d.ts +4 -4
  28. package/node_modules/@types/node/tls.d.ts +24 -0
  29. package/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +5 -0
  30. package/node_modules/@types/node/ts5.6/index.d.ts +1 -0
  31. package/node_modules/@types/node/ts5.7/index.d.ts +1 -0
  32. package/node_modules/@types/node/tty.d.ts +4 -3
  33. package/node_modules/@types/node/vfs.d.ts +210 -0
  34. package/node_modules/@types/node/vm.d.ts +1 -1
  35. package/node_modules/express-rate-limit/dist/index.cjs +6 -3
  36. package/node_modules/express-rate-limit/dist/index.d.cts +11 -0
  37. package/node_modules/express-rate-limit/dist/index.d.mts +11 -0
  38. package/node_modules/express-rate-limit/dist/index.d.ts +11 -0
  39. package/node_modules/express-rate-limit/dist/index.mjs +6 -3
  40. package/node_modules/express-rate-limit/{license.md → license} +7 -6
  41. package/node_modules/express-rate-limit/package.json +5 -5
  42. package/node_modules/express-rate-limit/readme.md +1 -0
  43. package/node_modules/fast-uri/index.js +20 -5
  44. package/node_modules/fast-uri/lib/utils.js +8 -1
  45. package/node_modules/fast-uri/package.json +1 -1
  46. package/node_modules/fast-uri/test/component-safe-serialization.test.js +58 -0
  47. package/node_modules/fast-uri/test/ipv6-validation.test.js +34 -0
  48. package/node_modules/ip-address/README.md +92 -82
  49. package/node_modules/ip-address/dist/common.d.ts +20 -0
  50. package/node_modules/ip-address/dist/common.js +36 -0
  51. package/node_modules/ip-address/dist/common.js.map +1 -1
  52. package/node_modules/ip-address/dist/ipv4.d.ts +50 -0
  53. package/node_modules/ip-address/dist/ipv4.js +75 -0
  54. package/node_modules/ip-address/dist/ipv4.js.map +1 -1
  55. package/node_modules/ip-address/dist/ipv6.d.ts +79 -10
  56. package/node_modules/ip-address/dist/ipv6.js +120 -30
  57. package/node_modules/ip-address/dist/ipv6.js.map +1 -1
  58. package/node_modules/ip-address/dist/v4/constants.d.ts +12 -0
  59. package/node_modules/ip-address/dist/v4/constants.js +40 -1
  60. package/node_modules/ip-address/dist/v4/constants.js.map +1 -1
  61. package/node_modules/ip-address/dist/v6/constants.d.ts +14 -0
  62. package/node_modules/ip-address/dist/v6/constants.js +47 -1
  63. package/node_modules/ip-address/dist/v6/constants.js.map +1 -1
  64. package/node_modules/ip-address/package.json +1 -1
  65. package/node_modules/jose/dist/types/jwe/compact/decrypt.d.ts +7 -16
  66. package/node_modules/jose/dist/types/jwe/compact/encrypt.d.ts +6 -17
  67. package/node_modules/jose/dist/types/jwe/flattened/decrypt.d.ts +7 -16
  68. package/node_modules/jose/dist/types/jwe/flattened/encrypt.d.ts +11 -34
  69. package/node_modules/jose/dist/types/jwe/general/decrypt.d.ts +7 -16
  70. package/node_modules/jose/dist/types/jwe/general/encrypt.d.ts +15 -35
  71. package/node_modules/jose/dist/types/jwk/embedded.d.ts +3 -8
  72. package/node_modules/jose/dist/types/jwk/thumbprint.d.ts +5 -5
  73. package/node_modules/jose/dist/types/jwks/local.d.ts +6 -10
  74. package/node_modules/jose/dist/types/jwks/remote.d.ts +13 -24
  75. package/node_modules/jose/dist/types/jws/compact/sign.d.ts +5 -10
  76. package/node_modules/jose/dist/types/jws/compact/verify.d.ts +9 -18
  77. package/node_modules/jose/dist/types/jws/flattened/sign.d.ts +7 -16
  78. package/node_modules/jose/dist/types/jws/flattened/verify.d.ts +9 -18
  79. package/node_modules/jose/dist/types/jws/general/sign.d.ts +11 -21
  80. package/node_modules/jose/dist/types/jws/general/verify.d.ts +9 -18
  81. package/node_modules/jose/dist/types/jwt/decrypt.d.ts +10 -20
  82. package/node_modules/jose/dist/types/jwt/encrypt.d.ts +6 -13
  83. package/node_modules/jose/dist/types/jwt/sign.d.ts +5 -6
  84. package/node_modules/jose/dist/types/jwt/unsecured.d.ts +9 -14
  85. package/node_modules/jose/dist/types/jwt/verify.d.ts +9 -19
  86. package/node_modules/jose/dist/types/key/export.d.ts +4 -4
  87. package/node_modules/jose/dist/types/key/generate_key_pair.d.ts +6 -8
  88. package/node_modules/jose/dist/types/key/generate_secret.d.ts +4 -11
  89. package/node_modules/jose/dist/types/key/import.d.ts +10 -17
  90. package/node_modules/jose/dist/types/types.d.ts +44 -84
  91. package/node_modules/jose/dist/types/util/base64url.d.ts +2 -2
  92. package/node_modules/jose/dist/types/util/decode_jwt.d.ts +3 -10
  93. package/node_modules/jose/dist/types/util/decode_protected_header.d.ts +4 -4
  94. package/node_modules/jose/dist/types/util/errors.d.ts +26 -53
  95. package/node_modules/jose/dist/webapi/index.js +70 -32
  96. package/node_modules/jose/dist/webapi/jwe/compact/decrypt.js +7 -8
  97. package/node_modules/jose/dist/webapi/jwe/compact/encrypt.js +42 -48
  98. package/node_modules/jose/dist/webapi/jwe/flattened/decrypt.js +14 -14
  99. package/node_modules/jose/dist/webapi/jwe/flattened/encrypt.js +53 -64
  100. package/node_modules/jose/dist/webapi/jwe/general/decrypt.js +38 -49
  101. package/node_modules/jose/dist/webapi/jwe/general/encrypt.js +121 -169
  102. package/node_modules/jose/dist/webapi/jwk/embedded.js +30 -32
  103. package/node_modules/jose/dist/webapi/jwk/thumbprint.js +54 -70
  104. package/node_modules/jose/dist/webapi/jwks/local.js +47 -64
  105. package/node_modules/jose/dist/webapi/jwks/remote.js +88 -136
  106. package/node_modules/jose/dist/webapi/jws/compact/sign.js +21 -21
  107. package/node_modules/jose/dist/webapi/jws/compact/verify.js +7 -8
  108. package/node_modules/jose/dist/webapi/jws/flattened/sign.js +29 -31
  109. package/node_modules/jose/dist/webapi/jws/flattened/verify.js +21 -24
  110. package/node_modules/jose/dist/webapi/jws/general/sign.js +61 -72
  111. package/node_modules/jose/dist/webapi/jws/general/verify.js +45 -69
  112. package/node_modules/jose/dist/webapi/jwt/decrypt.js +13 -20
  113. package/node_modules/jose/dist/webapi/jwt/encrypt.js +57 -70
  114. package/node_modules/jose/dist/webapi/jwt/sign.js +17 -16
  115. package/node_modules/jose/dist/webapi/jwt/unsecured.js +32 -40
  116. package/node_modules/jose/dist/webapi/jwt/verify.js +12 -14
  117. package/node_modules/jose/dist/webapi/key/export.js +32 -37
  118. package/node_modules/jose/dist/webapi/key/generate_key_pair.js +40 -48
  119. package/node_modules/jose/dist/webapi/key/generate_secret.js +35 -40
  120. package/node_modules/jose/dist/webapi/key/import.js +52 -56
  121. package/node_modules/jose/dist/webapi/lib/asn1.js +130 -169
  122. package/node_modules/jose/dist/webapi/lib/base64.js +18 -20
  123. package/node_modules/jose/dist/webapi/lib/buffer_utils.js +34 -38
  124. package/node_modules/jose/dist/webapi/lib/content_encryption.js +79 -115
  125. package/node_modules/jose/dist/webapi/lib/crypto_key.js +24 -25
  126. package/node_modules/jose/dist/webapi/lib/deflate.js +45 -47
  127. package/node_modules/jose/dist/webapi/lib/helpers.js +40 -37
  128. package/node_modules/jose/dist/webapi/lib/invalid_key_input.js +10 -24
  129. package/node_modules/jose/dist/webapi/lib/is_key_like.js +17 -15
  130. package/node_modules/jose/dist/webapi/lib/jwe_algorithms.js +106 -93
  131. package/node_modules/jose/dist/webapi/lib/jwe_decrypt.js +207 -230
  132. package/node_modules/jose/dist/webapi/lib/jwe_encrypt.js +104 -138
  133. package/node_modules/jose/dist/webapi/lib/jwk_metadata.js +17 -18
  134. package/node_modules/jose/dist/webapi/lib/jwk_to_key.js +9 -16
  135. package/node_modules/jose/dist/webapi/lib/jws_algorithms.js +62 -61
  136. package/node_modules/jose/dist/webapi/lib/jws_sign.js +50 -75
  137. package/node_modules/jose/dist/webapi/lib/jws_verify.js +80 -125
  138. package/node_modules/jose/dist/webapi/lib/jwt_claims_set.js +123 -209
  139. package/node_modules/jose/dist/webapi/lib/key.js +84 -136
  140. package/node_modules/jose/dist/webapi/lib/key_algorithm.js +13 -8
  141. package/node_modules/jose/dist/webapi/lib/key_descriptor.js +8 -6
  142. package/node_modules/jose/dist/webapi/lib/key_management.js +200 -231
  143. package/node_modules/jose/dist/webapi/lib/key_options.js +7 -5
  144. package/node_modules/jose/dist/webapi/lib/options.js +55 -68
  145. package/node_modules/jose/dist/webapi/lib/signing.js +18 -22
  146. package/node_modules/jose/dist/webapi/lib/type_checks.js +26 -29
  147. package/node_modules/jose/dist/webapi/util/base64url.js +26 -35
  148. package/node_modules/jose/dist/webapi/util/decode_jwt.js +32 -31
  149. package/node_modules/jose/dist/webapi/util/decode_protected_header.js +18 -23
  150. package/node_modules/jose/dist/webapi/util/errors.js +94 -84
  151. package/node_modules/jose/package.json +17 -81
  152. package/package.json +2 -2
  153. package/profiles/calendar/0.5.profile.json +190 -0
  154. package/profiles/charge/0.5.profile.json +210 -0
  155. package/profiles/customers/0.7.profile.json +157 -0
  156. package/profiles/deploy/0.9.profile.json +176 -0
  157. package/profiles/email/0.6.profile.json +208 -0
  158. package/profiles/index.json +9 -1
  159. package/profiles/publish/0.5.profile.json +186 -0
  160. package/profiles/purchase/0.5.profile.json +231 -0
  161. package/profiles/records/0.5.profile.json +117 -0
@@ -1,107 +1,120 @@
1
- import { JOSENotSupported } from '../util/errors.js';
2
- import { table } from './key_descriptor.js';
1
+ import { JOSENotSupported } from "../util/errors.js";
2
+ import { table } from "./key_descriptor.js";
3
3
  const wrap = [
4
- ['encrypt', 'wrapKey'],
5
- ['decrypt', 'unwrapKey'],
6
- ];
7
- const derive = [[], ['deriveBits']];
8
- const none = [[], []];
4
+ ["encrypt", "wrapKey"],
5
+ ["decrypt", "unwrapKey"]
6
+ ], derive = [[], ["deriveBits"]], none = [[], []];
9
7
  function rsaes(bits) {
10
- return {
11
- kty: ['RSA'],
12
- subtle: { name: 'RSA-OAEP', hash: `SHA-${bits}` },
13
- usages: wrap,
14
- ops: ['wrapKey', 'unwrapKey'],
15
- };
8
+ return {
9
+ kty: ["RSA"],
10
+ mode: "key-encryption",
11
+ subtle: { name: "RSA-OAEP", hash: `SHA-${bits}` },
12
+ usages: wrap,
13
+ ops: ["wrapKey", "unwrapKey"]
14
+ };
16
15
  }
17
- function ecdh() {
18
- return {
19
- kty: ['EC', 'OKP'],
20
- subtle: { name: 'ECDH' },
21
- resolve: ({ kty, crv, asymmetricKeyType }) => {
22
- if (crv === 'X25519' || asymmetricKeyType === 'x25519') {
23
- return { name: 'X25519' };
24
- }
25
- if (kty === 'OKP') {
26
- throw new JOSENotSupported('Invalid or unsupported JWK "alg" (Algorithm) Parameter value');
27
- }
28
- return { name: 'ECDH', namedCurve: crv };
29
- },
30
- usages: derive,
31
- ops: [undefined, 'deriveBits'],
32
- };
16
+ function ecdh(mode) {
17
+ return {
18
+ kty: ["EC", "OKP"],
19
+ mode,
20
+ subtle: { name: "ECDH" },
21
+ resolve: ({ kty, crv, asymmetricKeyType }) => {
22
+ if (crv === "X25519" || asymmetricKeyType === "x25519")
23
+ return { name: "X25519" };
24
+ if (kty === "OKP")
25
+ throw new JOSENotSupported('Invalid or unsupported JWK "alg" (Algorithm) Parameter value');
26
+ return { name: "ECDH", namedCurve: crv };
27
+ },
28
+ usages: derive,
29
+ ops: [void 0, "deriveBits"]
30
+ };
33
31
  }
34
- function aeskw(bits, gcm = false) {
35
- return {
36
- kty: ['oct'],
37
- secret: true,
38
- subtle: { name: gcm ? 'AES-GCM' : 'AES-KW', length: bits },
39
- usages: none,
40
- ops: gcm ? ['encrypt', 'decrypt'] : ['wrapKey', 'unwrapKey'],
41
- };
32
+ function aeskw(bits, gcm = !1) {
33
+ return {
34
+ kty: ["oct"],
35
+ mode: "key-wrapping",
36
+ secret: !0,
37
+ subtle: { name: gcm ? "AES-GCM" : "AES-KW", length: bits },
38
+ usages: none,
39
+ ops: gcm ? ["encrypt", "decrypt"] : ["wrapKey", "unwrapKey"]
40
+ };
42
41
  }
43
42
  function pbes2() {
44
- return {
45
- kty: ['oct'],
46
- secret: true,
47
- subtle: { name: 'PBKDF2' },
48
- usages: none,
49
- ops: ['deriveBits', 'deriveBits'],
50
- };
43
+ return {
44
+ kty: ["oct"],
45
+ mode: "key-wrapping",
46
+ secret: !0,
47
+ subtle: { name: "PBKDF2" },
48
+ usages: none,
49
+ ops: ["deriveBits", "deriveBits"]
50
+ };
51
51
  }
52
- export const JWE = table({
53
- dir: {
54
- kty: ['oct'],
55
- secret: true,
56
- subtle: { name: 'AES-GCM' },
57
- usages: none,
58
- ops: ['encrypt', 'decrypt'],
59
- },
60
- 'RSA-OAEP': rsaes(1),
61
- 'RSA-OAEP-256': rsaes(256),
62
- 'RSA-OAEP-384': rsaes(384),
63
- 'RSA-OAEP-512': rsaes(512),
64
- 'ECDH-ES': ecdh(),
65
- 'ECDH-ES+A128KW': ecdh(),
66
- 'ECDH-ES+A192KW': ecdh(),
67
- 'ECDH-ES+A256KW': ecdh(),
68
- A128KW: aeskw(128),
69
- A192KW: aeskw(192),
70
- A256KW: aeskw(256),
71
- A128GCMKW: aeskw(128, true),
72
- A192GCMKW: aeskw(192, true),
73
- A256GCMKW: aeskw(256, true),
74
- 'PBES2-HS256+A128KW': pbes2(),
75
- 'PBES2-HS384+A192KW': pbes2(),
76
- 'PBES2-HS512+A256KW': pbes2(),
77
- });
78
- const contentOps = ['encrypt', 'decrypt'];
79
- function contentEncryption(bits, cbc = false) {
80
- return {
81
- kty: ['oct'],
82
- secret: true,
83
- subtle: { name: cbc ? 'AES-CBC' : 'AES-GCM', length: bits },
84
- usages: none,
85
- ops: contentOps,
86
- cekBits: bits,
87
- ivBits: cbc ? 128 : 96,
88
- cbc,
89
- };
52
+ const JWE = table({
53
+ dir: {
54
+ kty: ["oct"],
55
+ mode: "direct-encryption",
56
+ secret: !0,
57
+ subtle: { name: "AES-GCM" },
58
+ usages: none,
59
+ ops: ["encrypt", "decrypt"]
60
+ },
61
+ "RSA-OAEP": rsaes(1),
62
+ "RSA-OAEP-256": rsaes(256),
63
+ "RSA-OAEP-384": rsaes(384),
64
+ "RSA-OAEP-512": rsaes(512),
65
+ "ECDH-ES": ecdh("direct-key-agreement"),
66
+ "ECDH-ES+A128KW": ecdh("key-agreement-with-key-wrapping"),
67
+ "ECDH-ES+A192KW": ecdh("key-agreement-with-key-wrapping"),
68
+ "ECDH-ES+A256KW": ecdh("key-agreement-with-key-wrapping"),
69
+ A128KW: aeskw(128),
70
+ A192KW: aeskw(192),
71
+ A256KW: aeskw(256),
72
+ A128GCMKW: aeskw(128, !0),
73
+ A192GCMKW: aeskw(192, !0),
74
+ A256GCMKW: aeskw(256, !0),
75
+ "PBES2-HS256+A128KW": pbes2(),
76
+ "PBES2-HS384+A192KW": pbes2(),
77
+ "PBES2-HS512+A256KW": pbes2()
78
+ }), contentOps = ["encrypt", "decrypt"];
79
+ function contentEncryption(bits, cbc = !1) {
80
+ return {
81
+ kty: ["oct"],
82
+ secret: !0,
83
+ subtle: { name: cbc ? "AES-CBC" : "AES-GCM", length: bits },
84
+ usages: none,
85
+ ops: contentOps,
86
+ cekBits: bits,
87
+ ivBits: cbc ? 128 : 96,
88
+ cbc
89
+ };
90
90
  }
91
91
  const ENC = table({
92
- A128GCM: contentEncryption(128),
93
- A192GCM: contentEncryption(192),
94
- A256GCM: contentEncryption(256),
95
- 'A128CBC-HS256': contentEncryption(256, true),
96
- 'A192CBC-HS384': contentEncryption(384, true),
97
- 'A256CBC-HS512': contentEncryption(512, true),
92
+ A128GCM: contentEncryption(128),
93
+ A192GCM: contentEncryption(192),
94
+ A256GCM: contentEncryption(256),
95
+ "A128CBC-HS256": contentEncryption(256, !0),
96
+ "A192CBC-HS384": contentEncryption(384, !0),
97
+ "A256CBC-HS512": contentEncryption(512, !0)
98
98
  });
99
99
  function unsupported(parameter, name) {
100
- throw new JOSENotSupported(`Invalid or unsupported "${parameter}" (JWE ${name}) header value`);
100
+ throw new JOSENotSupported(`Invalid or unsupported "${parameter}" (JWE ${name}) header value`);
101
+ }
102
+ function jweAlgorithm(alg) {
103
+ return (typeof alg == "string" ? JWE[alg] : void 0) ?? unsupported("alg", "Algorithm");
104
+ }
105
+ function isJWECEKTransport(algorithm) {
106
+ return algorithm.mode === "key-wrapping" || algorithm.mode === "key-encryption" || algorithm.mode === "key-agreement-with-key-wrapping";
101
107
  }
102
- export function jweAlgorithm(alg) {
103
- return (typeof alg === 'string' ? JWE[alg] : undefined) ?? unsupported('alg', 'Algorithm');
108
+ function invalidJWEKeyManagementMode(_mode) {
109
+ throw new TypeError("Invalid JWE key management mode");
104
110
  }
105
- export function jweEncryption(enc) {
106
- return ((typeof enc === 'string' ? ENC[enc] : undefined) ?? unsupported('enc', 'Encryption Algorithm'));
111
+ function jweEncryption(enc) {
112
+ return (typeof enc == "string" ? ENC[enc] : void 0) ?? unsupported("enc", "Encryption Algorithm");
107
113
  }
114
+ export {
115
+ JWE,
116
+ invalidJWEKeyManagementMode,
117
+ isJWECEKTransport,
118
+ jweAlgorithm,
119
+ jweEncryption
120
+ };