@mojaloop/sdk-scheme-adapter 24.3.0-snapshot.1 → 24.3.1

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 (18) hide show
  1. package/.yarn/cache/{@mojaloop-sdk-standard-components-npm-19.10.0-snapshot.2-c380c8c569-c7ec67c802.zip → @mojaloop-sdk-standard-components-npm-19.10.0-2948ef6f6d-000ddc4ae6.zip} +0 -0
  2. package/.yarn/cache/{@typescript-eslint-eslint-plugin-npm-8.26.0-64bda8e44c-fbfc0e65b9.zip → @typescript-eslint-eslint-plugin-npm-8.26.1-1c840523d3-633a37d9e6.zip} +0 -0
  3. package/.yarn/cache/{@typescript-eslint-parser-npm-8.26.0-80aadd4d9c-6d8a8fcca1.zip → @typescript-eslint-parser-npm-8.26.1-69088fa315-98daa1652b.zip} +0 -0
  4. package/.yarn/cache/{@typescript-eslint-scope-manager-npm-8.26.0-ef399f862d-b1d35e8b4e.zip → @typescript-eslint-scope-manager-npm-8.26.1-e95481198a-e854c2c6b8.zip} +0 -0
  5. package/.yarn/cache/{@typescript-eslint-type-utils-npm-8.26.0-f34f57bfb3-eab175e5be.zip → @typescript-eslint-type-utils-npm-8.26.1-cb25d3d453-7513b2dbb2.zip} +0 -0
  6. package/.yarn/cache/{@typescript-eslint-types-npm-8.26.0-6090977dc6-dea8535575.zip → @typescript-eslint-types-npm-8.26.1-b7d54af192-11c5e80786.zip} +0 -0
  7. package/.yarn/cache/{@typescript-eslint-typescript-estree-npm-8.26.0-352c786ebb-492ad542c1.zip → @typescript-eslint-typescript-estree-npm-8.26.1-23f980f4b7-71adb8e06e.zip} +0 -0
  8. package/.yarn/cache/{@typescript-eslint-utils-npm-8.26.0-50b78242aa-6bb6e7c9bd.zip → @typescript-eslint-utils-npm-8.26.1-33138d7104-a7037f94b1.zip} +0 -0
  9. package/.yarn/cache/{@typescript-eslint-visitor-keys-npm-8.26.0-ff1c3f4568-4209794bbd.zip → @typescript-eslint-visitor-keys-npm-8.26.1-74d45343c6-fbb06a2158.zip} +0 -0
  10. package/.yarn/install-state.gz +0 -0
  11. package/CHANGELOG.md +14 -0
  12. package/modules/api-svc/package.json +1 -1
  13. package/modules/api-svc/src/index.js +0 -2
  14. package/modules/outbound-command-event-handler/package.json +2 -2
  15. package/modules/outbound-domain-event-handler/package.json +2 -2
  16. package/modules/private-shared-lib/package.json +2 -2
  17. package/package.json +3 -3
  18. package/modules/private-shared-lib/package-lock.json +0 -17372
Binary file
package/CHANGELOG.md CHANGED
@@ -1,4 +1,18 @@
1
1
  # Changelog: [mojaloop/sdk-scheme-adapter](https://github.com/mojaloop/sdk-scheme-adapter)
2
+ ### [24.3.1](https://github.com/mojaloop/sdk-scheme-adapter/compare/v24.3.0...v24.3.1) (2025-03-10)
3
+
4
+
5
+ ### Chore
6
+
7
+ * fix vulnerabilities ([#560](https://github.com/mojaloop/sdk-scheme-adapter/issues/560)) ([72314be](https://github.com/mojaloop/sdk-scheme-adapter/commit/72314bed24053b210b691aaad1621b7070e540df))
8
+
9
+ ## [24.3.0](https://github.com/mojaloop/sdk-scheme-adapter/compare/v24.2.0...v24.3.0) (2025-03-10)
10
+
11
+
12
+ ### Features
13
+
14
+ * **csi-1253:** switched to use ContextLogger ([#558](https://github.com/mojaloop/sdk-scheme-adapter/issues/558)) ([5861cf6](https://github.com/mojaloop/sdk-scheme-adapter/commit/5861cf686a7e4de900d77f453f0e17b293471ef0))
15
+
2
16
  ## [24.2.0](https://github.com/mojaloop/sdk-scheme-adapter/compare/v24.1.3...v24.2.0) (2025-03-05)
3
17
 
4
18
 
@@ -73,7 +73,7 @@
73
73
  "@mojaloop/logging-bc-client-lib": "0.5.8",
74
74
  "@mojaloop/ml-schema-transformer-lib": "2.5.6",
75
75
  "@mojaloop/sdk-scheme-adapter-private-shared-lib": "workspace:^",
76
- "@mojaloop/sdk-standard-components": "19.10.0-snapshot.2",
76
+ "@mojaloop/sdk-standard-components": "19.10.0",
77
77
  "ajv": "8.17.1",
78
78
  "axios": "1.8.2",
79
79
  "body-parser": "1.20.3",
@@ -69,10 +69,8 @@ class Server extends EventEmitter {
69
69
  this.conf = conf;
70
70
  this.logger = logger;
71
71
  this.cache = createCache(conf);
72
- this.pingTimeout;
73
72
 
74
73
  this.metricsClient = new MetricsClient();
75
-
76
74
  this.metricsServer = new MetricsServer({
77
75
  port: this.conf.metrics.port,
78
76
  logger: this.logger
@@ -64,8 +64,8 @@
64
64
  "@types/supertest": "6.0.2",
65
65
  "@types/swagger-ui-express": "4.1.8",
66
66
  "@types/yamljs": "0.2.34",
67
- "@typescript-eslint/eslint-plugin": "8.26.0",
68
- "@typescript-eslint/parser": "8.26.0",
67
+ "@typescript-eslint/eslint-plugin": "8.26.1",
68
+ "@typescript-eslint/parser": "8.26.1",
69
69
  "copyfiles": "2.4.1",
70
70
  "eslint": "9.15.0",
71
71
  "jest": "29.7.0",
@@ -61,8 +61,8 @@
61
61
  "@types/supertest": "6.0.2",
62
62
  "@types/swagger-ui-express": "4.1.8",
63
63
  "@types/yamljs": "0.2.34",
64
- "@typescript-eslint/eslint-plugin": "8.26.0",
65
- "@typescript-eslint/parser": "8.26.0",
64
+ "@typescript-eslint/eslint-plugin": "8.26.1",
65
+ "@typescript-eslint/parser": "8.26.1",
66
66
  "copyfiles": "2.4.1",
67
67
  "eslint": "9.15.0",
68
68
  "jest": "29.7.0",
@@ -42,8 +42,8 @@
42
42
  "@eslint/compat": "1.2.7",
43
43
  "@types/node": "22.13.10",
44
44
  "@types/uuid": "10.0.0",
45
- "@typescript-eslint/eslint-plugin": "8.26.0",
46
- "@typescript-eslint/parser": "8.26.0",
45
+ "@typescript-eslint/eslint-plugin": "8.26.1",
46
+ "@typescript-eslint/parser": "8.26.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.3.0-snapshot.1",
3
+ "version": "24.3.1",
4
4
  "description": "mojaloop sdk-scheme-adapter",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://github.com/mojaloop/sdk-scheme-adapter",
@@ -84,8 +84,8 @@
84
84
  "@types/jest": "29.5.14",
85
85
  "@types/node": "22.13.10",
86
86
  "@types/node-cache": "4.2.5",
87
- "@typescript-eslint/eslint-plugin": "8.26.0",
88
- "@typescript-eslint/parser": "8.26.0",
87
+ "@typescript-eslint/eslint-plugin": "8.26.1",
88
+ "@typescript-eslint/parser": "8.26.1",
89
89
  "audit-ci": "7.1.0",
90
90
  "eslint": "9.15.0",
91
91
  "eslint-config-airbnb-typescript": "18.0.0",