@mojaloop/sdk-scheme-adapter 24.9.6 → 24.9.8-snapshot.2

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 (20) hide show
  1. package/.ncurc.yaml +2 -1
  2. package/.yarn/cache/{@typescript-eslint-eslint-plugin-npm-8.33.0-0c4da18297-d9d009e644.zip → @typescript-eslint-eslint-plugin-npm-8.33.1-ac6a7a1440-8732c42790.zip} +0 -0
  3. package/.yarn/cache/{@typescript-eslint-parser-npm-8.33.0-67664fe1c4-16b4e34626.zip → @typescript-eslint-parser-npm-8.33.1-9a3fc183f0-2b527529a1.zip} +0 -0
  4. package/.yarn/cache/{@typescript-eslint-project-service-npm-8.33.0-0b8e3c7267-efb90f2fea.zip → @typescript-eslint-project-service-npm-8.33.1-fd3317e16e-237618a025.zip} +0 -0
  5. package/.yarn/cache/{@typescript-eslint-scope-manager-npm-8.33.0-bdad5df8b4-e5a82f102a.zip → @typescript-eslint-scope-manager-npm-8.33.1-2e7c814c1c-fbc3ec340f.zip} +0 -0
  6. package/.yarn/cache/{@typescript-eslint-tsconfig-utils-npm-8.33.0-d26e1ec245-5bb139be99.zip → @typescript-eslint-tsconfig-utils-npm-8.33.1-82226a8649-9e0e348af4.zip} +0 -0
  7. package/.yarn/cache/{@typescript-eslint-type-utils-npm-8.33.0-36d614815a-edd6bb629f.zip → @typescript-eslint-type-utils-npm-8.33.1-0cc601298c-54099177a5.zip} +0 -0
  8. package/.yarn/cache/{@typescript-eslint-types-npm-8.33.0-a3afab3a2a-3fa8c45989.zip → @typescript-eslint-types-npm-8.33.1-e7c6a5abd5-80ad8b8573.zip} +0 -0
  9. package/.yarn/cache/{@typescript-eslint-typescript-estree-npm-8.33.0-575e7dfb97-365de7456d.zip → @typescript-eslint-typescript-estree-npm-8.33.1-83df5ea6f8-aacb925257.zip} +0 -0
  10. package/.yarn/cache/{@typescript-eslint-utils-npm-8.33.0-909f5cda94-e654ceac6a.zip → @typescript-eslint-utils-npm-8.33.1-27dd8aa528-aef41fe93d.zip} +0 -0
  11. package/.yarn/cache/{@typescript-eslint-visitor-keys-npm-8.33.0-f53e6c2cd3-c92eacedd9.zip → @typescript-eslint-visitor-keys-npm-8.33.1-f3a9c59a3a-d8bbb35ff2.zip} +0 -0
  12. package/.yarn/cache/{undici-npm-6.21.1-0f7fc2c179-2efc52f772.zip → undici-npm-6.21.3-28d9334837-a2af0601de.zip} +0 -0
  13. package/.yarn/install-state.gz +0 -0
  14. package/CHANGELOG.md +7 -0
  15. package/modules/api-svc/package.json +1 -1
  16. package/modules/api-svc/src/InboundServer/index.js +3 -0
  17. package/modules/outbound-command-event-handler/package.json +3 -3
  18. package/modules/outbound-domain-event-handler/package.json +3 -3
  19. package/modules/private-shared-lib/package.json +3 -3
  20. package/package.json +4 -3
package/.ncurc.yaml CHANGED
@@ -12,5 +12,6 @@ reject: [
12
12
  ## esLint 9.15.0 caused the error: TypeError: Error while loading rule '@typescript-eslint/no-unused-expressions': Cannot read properties of undefined (reading 'allowShortCircuit')
13
13
  "eslint",
14
14
  ## express >5 introduces breaking changes that are not compatible with the current codebase.
15
- "express"
15
+ "express",
16
+ "@mojaloop/central-services-shared"
16
17
  ]
Binary file
package/CHANGELOG.md CHANGED
@@ -1,4 +1,11 @@
1
1
  # Changelog: [mojaloop/sdk-scheme-adapter](https://github.com/mojaloop/sdk-scheme-adapter)
2
+ ### [24.9.7](https://github.com/mojaloop/sdk-scheme-adapter/compare/v24.9.6...v24.9.7) (2025-06-02)
3
+
4
+
5
+ ### Chore
6
+
7
+ * **deps:** bump undici from 6.21.1 to 6.21.3 ([#583](https://github.com/mojaloop/sdk-scheme-adapter/issues/583)) ([b2d51ad](https://github.com/mojaloop/sdk-scheme-adapter/commit/b2d51adaa37b1c01b4433c3e028ef17c33ec0347))
8
+
2
9
  ### [24.9.6](https://github.com/mojaloop/sdk-scheme-adapter/compare/v24.9.5...v24.9.6) (2025-06-01)
3
10
 
4
11
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mojaloop/sdk-scheme-adapter-api-svc",
3
- "version": "21.0.0-snapshot.37",
3
+ "version": "21.0.0-snapshot.40",
4
4
  "description": "An adapter for connecting to Mojaloop API enabled switches.",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -88,6 +88,9 @@ class InboundApi extends EventEmitter {
88
88
  }
89
89
 
90
90
  _updatePeerJwsKeys(peerJwsKeys) {
91
+ // Security Risk only for testing purposes.
92
+ this._logger && this._logger.isDebugEnabled && this._logger.debug('Old peer JWS keys:', Object.entries(this._jwsVerificationKeys).map(([k, v]) => [k, v.toString()]));
93
+ this._logger && this._logger.isDebugEnabled && this._logger.debug('New peer JWS keys:', Object.entries(peerJwsKeys).map(([k, v]) => [k, v.toString()]));
91
94
  if (this._conf.pm4mlEnabled && !_.isEqual(this._jwsVerificationKeys, peerJwsKeys) &&
92
95
  this._jwsVerificationKeys && typeof this._jwsVerificationKeys === 'object') {
93
96
  this._logger && this._logger.isVerboseEnabled && this._logger.verbose('Clearing existing JWS verification keys');
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mojaloop/sdk-scheme-adapter-outbound-command-event-handler",
3
- "version": "0.3.0-snapshot.34",
3
+ "version": "0.3.0-snapshot.36",
4
4
  "description": "Mojaloop sdk scheme adapter command event handler",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://github.com/mojaloop/sdk-scheme-adapter/",
@@ -65,8 +65,8 @@
65
65
  "@types/supertest": "6.0.3",
66
66
  "@types/swagger-ui-express": "4.1.8",
67
67
  "@types/yamljs": "0.2.34",
68
- "@typescript-eslint/eslint-plugin": "8.33.0",
69
- "@typescript-eslint/parser": "8.33.0",
68
+ "@typescript-eslint/eslint-plugin": "8.33.1",
69
+ "@typescript-eslint/parser": "8.33.1",
70
70
  "copyfiles": "2.4.1",
71
71
  "eslint": "9.15.0",
72
72
  "jest": "29.7.0",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mojaloop/sdk-scheme-adapter-outbound-domain-event-handler",
3
- "version": "0.3.0-snapshot.34",
3
+ "version": "0.3.0-snapshot.36",
4
4
  "description": "mojaloop sdk scheme adapter outbound domain event handler",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://github.com/mojaloop/sdk-scheme-adapter/",
@@ -62,8 +62,8 @@
62
62
  "@types/supertest": "6.0.3",
63
63
  "@types/swagger-ui-express": "4.1.8",
64
64
  "@types/yamljs": "0.2.34",
65
- "@typescript-eslint/eslint-plugin": "8.33.0",
66
- "@typescript-eslint/parser": "8.33.0",
65
+ "@typescript-eslint/eslint-plugin": "8.33.1",
66
+ "@typescript-eslint/parser": "8.33.1",
67
67
  "copyfiles": "2.4.1",
68
68
  "eslint": "9.15.0",
69
69
  "jest": "29.7.0",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mojaloop/sdk-scheme-adapter-private-shared-lib",
3
- "version": "0.4.0-snapshot.34",
3
+ "version": "0.4.0-snapshot.36",
4
4
  "description": "SDK Scheme Adapter private shared library.",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://github.com/mojaloop/accounts-and-balances-bc/tree/main/modules/private-types",
@@ -42,8 +42,8 @@
42
42
  "@eslint/compat": "1.2.9",
43
43
  "@types/node": "22.15.29",
44
44
  "@types/uuid": "10.0.0",
45
- "@typescript-eslint/eslint-plugin": "8.33.0",
46
- "@typescript-eslint/parser": "8.33.0",
45
+ "@typescript-eslint/eslint-plugin": "8.33.1",
46
+ "@typescript-eslint/parser": "8.33.1",
47
47
  "eslint": "9.15.0",
48
48
  "jest": "29.7.0",
49
49
  "npm-check-updates": "16.7.10",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mojaloop/sdk-scheme-adapter",
3
- "version": "24.9.6",
3
+ "version": "24.9.8-snapshot.2",
4
4
  "description": "mojaloop sdk-scheme-adapter",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://github.com/mojaloop/sdk-scheme-adapter",
@@ -77,6 +77,7 @@
77
77
  "wait-4-docker": "node ./scripts/_wait4_all.js"
78
78
  },
79
79
  "dependencies": {
80
+ "@mojaloop/central-services-shared": "18.26.2",
80
81
  "nx": "16.5.0",
81
82
  "tslib": "2.8.1"
82
83
  },
@@ -84,8 +85,8 @@
84
85
  "@types/jest": "29.5.14",
85
86
  "@types/node": "22.15.29",
86
87
  "@types/node-cache": "4.2.5",
87
- "@typescript-eslint/eslint-plugin": "8.33.0",
88
- "@typescript-eslint/parser": "8.33.0",
88
+ "@typescript-eslint/eslint-plugin": "8.33.1",
89
+ "@typescript-eslint/parser": "8.33.1",
89
90
  "audit-ci": "7.1.0",
90
91
  "eslint": "9.15.0",
91
92
  "eslint-config-airbnb-typescript": "18.0.0",