@mojaloop/central-services-shared 18.7.0 → 18.7.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.
- package/CHANGELOG.md +14 -0
- package/package.json +5 -5
- package/src/enums/kafka.js +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [18.7.2](https://github.com/mojaloop/central-services-shared/compare/v18.7.1...v18.7.2) (2024-08-22)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* added action map for fx abort validation ([#395](https://github.com/mojaloop/central-services-shared/issues/395)) ([90dd015](https://github.com/mojaloop/central-services-shared/commit/90dd01512b268907f315d72d6ac08f6bd94f696b))
|
|
11
|
+
|
|
12
|
+
### [18.7.1](https://github.com/mojaloop/central-services-shared/compare/v18.7.0...v18.7.1) (2024-08-20)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* axios vulnerability GHSA-8hc4-vh64-cxmj ([#394](https://github.com/mojaloop/central-services-shared/issues/394)) ([8cf6e33](https://github.com/mojaloop/central-services-shared/commit/8cf6e336114d391fd2ec63fbb69aa99af707cbf5))
|
|
18
|
+
|
|
5
19
|
## [18.7.0](https://github.com/mojaloop/central-services-shared/compare/v18.6.3...v18.7.0) (2024-07-26)
|
|
6
20
|
|
|
7
21
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mojaloop/central-services-shared",
|
|
3
|
-
"version": "18.7.
|
|
3
|
+
"version": "18.7.2",
|
|
4
4
|
"description": "Shared code for mojaloop central services",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "ModusBox",
|
|
@@ -56,8 +56,8 @@
|
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"@hapi/catbox": "12.1.1",
|
|
58
58
|
"@hapi/catbox-memory": "5.0.1",
|
|
59
|
-
"@mojaloop/inter-scheme-proxy-cache-lib": "2.
|
|
60
|
-
"axios": "1.7.
|
|
59
|
+
"@mojaloop/inter-scheme-proxy-cache-lib": "2.2.0",
|
|
60
|
+
"axios": "1.7.4",
|
|
61
61
|
"clone": "2.1.2",
|
|
62
62
|
"dotenv": "16.4.5",
|
|
63
63
|
"env-var": "7.5.0",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"lodash": "4.17.21",
|
|
68
68
|
"mustache": "4.2.0",
|
|
69
69
|
"openapi-backend": "5.10.6",
|
|
70
|
-
"raw-body": "
|
|
70
|
+
"raw-body": "3.0.0",
|
|
71
71
|
"rc": "1.2.8",
|
|
72
72
|
"shins": "2.6.0",
|
|
73
73
|
"uuid4": "2.0.3",
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"audit-ci": "^7.1.0",
|
|
81
81
|
"base64url": "3.0.1",
|
|
82
82
|
"chance": "1.1.12",
|
|
83
|
-
"npm-check-updates": "
|
|
83
|
+
"npm-check-updates": "17.1.0",
|
|
84
84
|
"nyc": "17.0.0",
|
|
85
85
|
"pre-commit": "1.2.2",
|
|
86
86
|
"proxyquire": "2.1.3",
|
package/src/enums/kafka.js
CHANGED
|
@@ -154,6 +154,10 @@ const TopicMap = {
|
|
|
154
154
|
functionality: transferEventType.TRANSFER,
|
|
155
155
|
action: transferEventAction.POSITION
|
|
156
156
|
},
|
|
157
|
+
'fx-abort-validation': {
|
|
158
|
+
functionality: transferEventType.NOTIFICATION,
|
|
159
|
+
action: transferEventAction.EVENT
|
|
160
|
+
},
|
|
157
161
|
'fx-commit': {
|
|
158
162
|
functionality: transferEventType.NOTIFICATION,
|
|
159
163
|
action: transferEventAction.EVENT
|