@mojaloop/sdk-scheme-adapter 24.10.11 → 24.11.0-snapshot.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.
- package/.yarn/cache/@mojaloop-central-services-error-handling-npm-13.1.2-680b8f106e-1357eefd24.zip +0 -0
- package/.yarn/cache/{@mojaloop-sdk-standard-components-npm-19.16.9-b012b439ba-7a4f57c3e7.zip → @mojaloop-sdk-standard-components-npm-19.17.0-0519957b97-95fef19fc4.zip} +0 -0
- package/.yarn/cache/{@types-node-npm-24.4.0-8e03fde567-8ed3a165f8.zip → @types-node-npm-24.5.1-e2de7d4e53-1dd21dffe0.zip} +0 -0
- package/.yarn/cache/@types-retry-npm-0.12.5-f1986a76a6-3fb6bf9183.zip +0 -0
- package/.yarn/cache/{ts-jest-npm-29.4.1-ab76d85d32-6aed48232c.zip → ts-jest-npm-29.4.2-1fc50073bc-09494224db.zip} +0 -0
- package/.yarn/cache/{undici-types-npm-7.11.0-7389c6cf1c-0cb7230eb4.zip → undici-types-npm-7.12.0-af0c725921-4a0f927c98.zip} +0 -0
- package/.yarn/install-state.gz +0 -0
- package/modules/api-svc/package.json +5 -3
- package/modules/api-svc/src/InboundServer/handlers.js +26 -8
- package/modules/api-svc/src/config.js +17 -1
- package/modules/api-svc/src/lib/model/InboundTransfersModel.js +142 -2
- package/modules/api-svc/test/__mocks__/redis.js +5 -2
- package/modules/api-svc/test/unit/inboundApi/handlers-iso20022.test.js +3 -1
- package/modules/api-svc/test/unit/inboundApi/handlers.test.js +4 -2
- package/modules/api-svc/test/unit/lib/model/InboundTransfersModel.test.js +482 -117
- package/modules/outbound-command-event-handler/package.json +3 -3
- package/modules/outbound-domain-event-handler/package.json +3 -3
- package/modules/private-shared-lib/package.json +3 -3
- package/package.json +3 -3
- package/{sbom-v24.10.10.csv → sbom-v24.10.11.csv} +190 -190
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mojaloop/sdk-scheme-adapter-outbound-command-event-handler",
|
|
3
|
-
"version": "0.3.0-snapshot.
|
|
3
|
+
"version": "0.3.0-snapshot.54",
|
|
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/",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"@types/convict": "6.1.6",
|
|
61
61
|
"@types/express": "5.0.3",
|
|
62
62
|
"@types/jest": "30.0.0",
|
|
63
|
-
"@types/node": "24.
|
|
63
|
+
"@types/node": "24.5.1",
|
|
64
64
|
"@types/node-cache": "4.2.5",
|
|
65
65
|
"@types/supertest": "6.0.3",
|
|
66
66
|
"@types/swagger-ui-express": "4.1.8",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"npm-check-updates": "16.7.10",
|
|
75
75
|
"replace": "1.2.2",
|
|
76
76
|
"standard-version": "9.5.0",
|
|
77
|
-
"ts-jest": "29.4.
|
|
77
|
+
"ts-jest": "29.4.2",
|
|
78
78
|
"ts-node": "10.9.2",
|
|
79
79
|
"typescript": "5.9.2"
|
|
80
80
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mojaloop/sdk-scheme-adapter-outbound-domain-event-handler",
|
|
3
|
-
"version": "0.3.0-snapshot.
|
|
3
|
+
"version": "0.3.0-snapshot.54",
|
|
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/",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"@types/convict": "6.1.6",
|
|
58
58
|
"@types/express": "5.0.3",
|
|
59
59
|
"@types/jest": "30.0.0",
|
|
60
|
-
"@types/node": "24.
|
|
60
|
+
"@types/node": "24.5.1",
|
|
61
61
|
"@types/node-cache": "4.2.5",
|
|
62
62
|
"@types/supertest": "6.0.3",
|
|
63
63
|
"@types/swagger-ui-express": "4.1.8",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"npm-check-updates": "16.7.10",
|
|
72
72
|
"replace": "1.2.2",
|
|
73
73
|
"standard-version": "9.5.0",
|
|
74
|
-
"ts-jest": "29.4.
|
|
74
|
+
"ts-jest": "29.4.2",
|
|
75
75
|
"ts-node": "10.9.2",
|
|
76
76
|
"typescript": "5.9.2"
|
|
77
77
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mojaloop/sdk-scheme-adapter-private-shared-lib",
|
|
3
|
-
"version": "0.4.0-snapshot.
|
|
3
|
+
"version": "0.4.0-snapshot.54",
|
|
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",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@eslint/compat": "1.3.2",
|
|
43
|
-
"@types/node": "24.
|
|
43
|
+
"@types/node": "24.5.1",
|
|
44
44
|
"@types/uuid": "10.0.0",
|
|
45
45
|
"@typescript-eslint/eslint-plugin": "8.44.0",
|
|
46
46
|
"@typescript-eslint/parser": "8.44.0",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"npm-check-updates": "16.7.10",
|
|
50
50
|
"replace": "1.2.2",
|
|
51
51
|
"standard-version": "9.5.0",
|
|
52
|
-
"ts-jest": "29.4.
|
|
52
|
+
"ts-jest": "29.4.2",
|
|
53
53
|
"tslib": "2.8.1",
|
|
54
54
|
"typescript": "5.9.2"
|
|
55
55
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mojaloop/sdk-scheme-adapter",
|
|
3
|
-
"version": "24.
|
|
3
|
+
"version": "24.11.0-snapshot.0",
|
|
4
4
|
"description": "mojaloop sdk-scheme-adapter",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://github.com/mojaloop/sdk-scheme-adapter",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
},
|
|
83
83
|
"devDependencies": {
|
|
84
84
|
"@types/jest": "30.0.0",
|
|
85
|
-
"@types/node": "24.
|
|
85
|
+
"@types/node": "24.5.1",
|
|
86
86
|
"@types/node-cache": "4.2.5",
|
|
87
87
|
"@typescript-eslint/eslint-plugin": "8.44.0",
|
|
88
88
|
"@typescript-eslint/parser": "8.44.0",
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"npm-check-updates": "16.7.10",
|
|
98
98
|
"replace": "1.2.2",
|
|
99
99
|
"standard-version": "9.5.0",
|
|
100
|
-
"ts-jest": "29.4.
|
|
100
|
+
"ts-jest": "29.4.2",
|
|
101
101
|
"ts-node": "10.9.2",
|
|
102
102
|
"typescript": "5.9.2",
|
|
103
103
|
"yarn-audit-fix": "10.1.1"
|