@mojaloop/central-services-shared 18.6.2 → 18.6.3
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 +7 -0
- package/package.json +2 -2
- package/src/enums/kafka.js +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
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.6.3](https://github.com/mojaloop/central-services-shared/compare/v18.6.2...v18.6.3) (2024-07-12)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Chore
|
|
9
|
+
|
|
10
|
+
* add forwarded notification to kafka topic map ([#392](https://github.com/mojaloop/central-services-shared/issues/392)) ([fe60cda](https://github.com/mojaloop/central-services-shared/commit/fe60cdad7bd0c66f1e03e3a8ff2cc1eae57af358))
|
|
11
|
+
|
|
5
12
|
### [18.6.2](https://github.com/mojaloop/central-services-shared/compare/v18.6.1...v18.6.2) (2024-07-08)
|
|
6
13
|
|
|
7
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mojaloop/central-services-shared",
|
|
3
|
-
"version": "18.6.
|
|
3
|
+
"version": "18.6.3",
|
|
4
4
|
"description": "Shared code for mojaloop central services",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "ModusBox",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"@hapi/joi": "17.1.1",
|
|
79
79
|
"audit-ci": "^7.1.0",
|
|
80
80
|
"base64url": "3.0.1",
|
|
81
|
-
"chance": "1.1.
|
|
81
|
+
"chance": "1.1.12",
|
|
82
82
|
"npm-check-updates": "16.14.20",
|
|
83
83
|
"nyc": "17.0.0",
|
|
84
84
|
"pre-commit": "1.2.2",
|
package/src/enums/kafka.js
CHANGED
|
@@ -142,6 +142,10 @@ const TopicMap = {
|
|
|
142
142
|
functionality: transferEventType.NOTIFICATION,
|
|
143
143
|
action: transferEventAction.EVENT
|
|
144
144
|
},
|
|
145
|
+
forwarded: {
|
|
146
|
+
functionality: transferEventType.NOTIFICATION,
|
|
147
|
+
action: transferEventAction.EVENT
|
|
148
|
+
},
|
|
145
149
|
'fx-abort': {
|
|
146
150
|
functionality: transferEventType.NOTIFICATION,
|
|
147
151
|
action: transferEventAction.EVENT
|