ml-testing-toolkit 18.19.0 → 18.19.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.
- package/CHANGELOG.md +12 -0
- package/audit-ci.jsonc +0 -2
- package/package.json +9 -6
- package/{sbom-v18.17.3.csv → sbom-v18.19.0.csv} +48 -47
- package/src/lib/mocking/openApiMockHandler.js +11 -4
- package/src/lib/mocking/openApiRulesEngine.js +3 -1
- package/src/lib/test-outbound/outbound-initiator.js +7 -3
- package/src/lib/utils.js +82 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,16 @@
|
|
|
1
1
|
# Changelog: [mojaloop/thirdparty-api-svc](https://github.com/mojaloop/thirdparty-api-svc)
|
|
2
|
+
### [18.19.1](https://github.com/mojaloop/ml-testing-toolkit/compare/v18.19.0...v18.19.1) (2026-02-12)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* download spec files issue [#4197](https://github.com/mojaloop/ml-testing-toolkit/issues/4197) ([#371](https://github.com/mojaloop/ml-testing-toolkit/issues/371)) ([cefcbdd](https://github.com/mojaloop/ml-testing-toolkit/commit/cefcbdd9dba28eedad9b93d40415b67ab140c35b))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Chore
|
|
11
|
+
|
|
12
|
+
* **sbom:** update sbom [skip ci] ([2078f44](https://github.com/mojaloop/ml-testing-toolkit/commit/2078f44a133fb1a82f890d4e1fb61b4b8371d8cf))
|
|
13
|
+
|
|
2
14
|
## [18.19.0](https://github.com/mojaloop/ml-testing-toolkit/compare/v18.18.0...v18.19.0) (2026-02-06)
|
|
3
15
|
|
|
4
16
|
|
package/audit-ci.jsonc
CHANGED
package/package.json
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ml-testing-toolkit",
|
|
3
3
|
"description": "Testing Toolkit for Mojaloop implementations",
|
|
4
|
-
"version": "18.19.
|
|
4
|
+
"version": "18.19.1",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Vijaya Kumar Guthi, ModusBox Inc. ",
|
|
7
7
|
"contributors": [
|
|
8
8
|
"Georgi Logodazhki <georgi.logodazhki@modusbox.com>",
|
|
9
9
|
"Sam Kummary <sam@modusbox.com>",
|
|
10
10
|
"Steven Oderayi <steven.oderayi@modusbox.com>",
|
|
11
|
-
"Vijay Kumar <vijaya.guthi@modusbox.com>"
|
|
11
|
+
"Vijay Kumar <vijaya.guthi@modusbox.com>",
|
|
12
|
+
"Shashikant Hirugade <shashi.mojaloop@gmail.com>"
|
|
12
13
|
],
|
|
13
14
|
"engines": {
|
|
14
15
|
"node": ">=22.x"
|
|
@@ -71,7 +72,7 @@
|
|
|
71
72
|
"genexec": "pkg -t node8-win ."
|
|
72
73
|
},
|
|
73
74
|
"dependencies": {
|
|
74
|
-
"@elastic/elasticsearch": "9.3.
|
|
75
|
+
"@elastic/elasticsearch": "9.3.1",
|
|
75
76
|
"@hapi/basic": "7.0.2",
|
|
76
77
|
"@hapi/boom": "10.0.1",
|
|
77
78
|
"@hapi/good": "9.0.1",
|
|
@@ -88,7 +89,7 @@
|
|
|
88
89
|
"adm-zip": "0.5.16",
|
|
89
90
|
"ajv-formats": "3.0.1",
|
|
90
91
|
"atob": "2.1.2",
|
|
91
|
-
"axios": "1.13.
|
|
92
|
+
"axios": "1.13.5",
|
|
92
93
|
"chai": "4.4.1",
|
|
93
94
|
"connection-string": "^5.0.0",
|
|
94
95
|
"cookie-parser": "1.4.7",
|
|
@@ -97,7 +98,6 @@
|
|
|
97
98
|
"dotenv": "17.2.4",
|
|
98
99
|
"express": "5.2.1",
|
|
99
100
|
"express-validator": "7.3.1",
|
|
100
|
-
"fs": "0.0.1-security",
|
|
101
101
|
"handlebars": "4.7.8",
|
|
102
102
|
"hapi-auth-bearer-token": "8.0.0",
|
|
103
103
|
"hapi-openapi": "3.0.0",
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"json-rules-engine": "7.3.1",
|
|
109
109
|
"jsonwebtoken": "9.0.3",
|
|
110
110
|
"lodash": "4.17.23",
|
|
111
|
-
"mongoose": "9.1
|
|
111
|
+
"mongoose": "9.2.1",
|
|
112
112
|
"multer": "2.0.2",
|
|
113
113
|
"mustache": "4.2.0",
|
|
114
114
|
"mv": "2.1.1",
|
|
@@ -169,6 +169,7 @@
|
|
|
169
169
|
}
|
|
170
170
|
},
|
|
171
171
|
"overrides": {
|
|
172
|
+
"axios": "1.13.5",
|
|
172
173
|
"form-data": "4.0.4",
|
|
173
174
|
"brace-expansion": "2.0.2",
|
|
174
175
|
"npm-check-updates": {
|
|
@@ -178,6 +179,8 @@
|
|
|
178
179
|
"read-package-json": "6.0.0",
|
|
179
180
|
"cacache": "17.0.4"
|
|
180
181
|
},
|
|
182
|
+
"lodash": "4.17.23",
|
|
183
|
+
"lodash-es": "4.17.23",
|
|
181
184
|
"make-fetch-happen": {
|
|
182
185
|
"cacache": "17.0.4"
|
|
183
186
|
},
|