-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(csi-106): added iso-20022 headers support (#402)
* feat(csi-106): added iso-20022 headers support * chore(snapshot): 18.10.0-snapshot.0 * feat(csi-106): cleaned up * feat(csi-106): added API_TYPES * chore(snapshot): 18.10.0-snapshot.1 * feat(csi-106): exported checkApiType * chore(snapshot): 18.10.0-snapshot.2 * feat(csi-106): improved typings * chore(snapshot): 18.10.0-snapshot.3 * feat(csi-106): updated transformHeaders to support ISO * chore(snapshot): 18.10.0-snapshot.4 --------- Co-authored-by: Kevin Leyow <kleyow@gmail.com>
- Loading branch information
Showing
15 changed files
with
399 additions
and
220 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
const API_TYPES = Object.freeze({ | ||
fspiop: 'fspiop', | ||
iso20022: 'iso20022' | ||
}) | ||
|
||
const ISO_HEADER_PART = 'iso20022' | ||
|
||
module.exports = { | ||
API_TYPES, | ||
ISO_HEADER_PART | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
const { loggerFactory } = require('@mojaloop/central-services-logger/src/contextLogger') | ||
|
||
const logger = loggerFactory('CSSh') // global logger | ||
|
||
module.exports = { | ||
logger, | ||
loggerFactory | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.