Skip to content

Commit

Permalink
feat(csi-16): added PAYEE_IDENTIFIER_NOT_VALID error (#208)
Browse files Browse the repository at this point in the history
* feat(csi-16): added PAYEE_IDENTIFIER_NOT_VALID error

* chore(snapshot): 18.4.0-snapshot.0
  • Loading branch information
geka-evk authored Aug 6, 2024
1 parent c749795 commit bd4a397
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mojaloop/sdk-standard-components",
"version": "18.3.0",
"version": "18.4.0-snapshot.0",
"description": "A set of standard components for connecting to Mojaloop API enabled Switches",
"main": "src/index.js",
"types": "src/index.d.ts",
Expand Down Expand Up @@ -49,7 +49,7 @@
"devDependencies": {
"@mojaloop/api-snippets": "^17.5.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"@types/node": "^20.14.10",
"audit-ci": "^7.1.0",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
Expand Down
1 change: 1 addition & 0 deletions src/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -735,6 +735,7 @@ declare namespace SDKStandardComponents {
PAYEE_REJECTED_TXN: MojaloopApiErrorCode
PAYEE_FSP_REJECTED_TXN: MojaloopApiErrorCode
PAYEE_UNSUPPORTED_CURRENCY: MojaloopApiErrorCode
PAYEE_IDENTIFIER_NOT_VALID: MojaloopApiErrorCode
PAYEE_LIMIT_ERROR: MojaloopApiErrorCode
PAYEE_PERMISSION_ERROR: MojaloopApiErrorCode
GENERIC_PAYEE_BLOCKED_ERROR: MojaloopApiErrorCode
Expand Down
1 change: 1 addition & 0 deletions src/lib/errors/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ const MojaloopApiErrorCodes = {
PAYEE_REJECTED_TXN: { code: '5104', message: 'Payee rejected transaction' },
PAYEE_FSP_REJECTED_TXN: { code: '5105', message: 'Payee FSP rejected transaction' },
PAYEE_UNSUPPORTED_CURRENCY: { code: '5106', message: 'Payee unsupported currency' },
PAYEE_IDENTIFIER_NOT_VALID: { code: '5107', message: 'Payee identifier no-longer valid' },
PAYEE_LIMIT_ERROR: { code: '5200', message: 'Payee limit error' },
PAYEE_PERMISSION_ERROR: { code: '5300', message: 'Payee permission error' },
GENERIC_PAYEE_BLOCKED_ERROR: { code: '5400', message: 'Generic Payee blocked error' },
Expand Down

0 comments on commit bd4a397

Please sign in to comment.