Skip to content

Commit

Permalink
fix(mojaloop/#3382): sdk-scheme-adapter config.trxReqEndpoint is not …
Browse files Browse the repository at this point in the history
…being set (#451)

fix(mojaloop/#3382): sdk-scheme-adapter config.transactionRequestsEndpoint is not being set correctly - mojaloop/project#3382
- added missing config mapping for transactionRequestsEndpoint on OutboundRequestToPayModel
  • Loading branch information
mdebarros authored Jun 15, 2023
1 parent 3b302be commit c29a81d
Show file tree
Hide file tree
Showing 7 changed files with 685 additions and 974 deletions.
6 changes: 3 additions & 3 deletions modules/api-svc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@
"ws": "^8.13.0"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/preset-env": "^7.22.4",
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@redocly/openapi-cli": "^1.0.0-beta.94",
"@types/jest": "^29.5.2",
"babel-jest": "^29.5.0",
Expand All @@ -107,7 +107,7 @@
"nock": "^13.3.1",
"npm-check-updates": "^16.7.10",
"openapi-response-validator": "^12.1.3",
"openapi-typescript": "^6.2.6",
"openapi-typescript": "^6.2.7",
"redis-mock": "^0.56.3",
"replace": "^1.2.2",
"standard-version": "^9.5.0",
Expand Down
1 change: 1 addition & 0 deletions modules/api-svc/src/lib/model/OutboundRequestToPayModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ class OutboundRequestToPayModel {
logger: this._logger,
peerEndpoint: config.peerEndpoint,
alsEndpoint: config.alsEndpoint,
transactionRequestsEndpoint: config.transactionRequestsEndpoint,
dfspId: config.dfspId,
tls: {
enabled: config.outbound.tls.mutualTLS.enabled,
Expand Down
6 changes: 3 additions & 3 deletions modules/outbound-command-event-handler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@
"@types/convict": "^6.1.2",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/node": "^20.2.5",
"@types/node": "^20.3.1",
"@types/node-cache": "^4.2.5",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/yamljs": "^0.2.31",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"copyfiles": "^2.4.1",
"eslint": "^8.42.0",
"jest": "^29.5.0",
Expand Down
6 changes: 3 additions & 3 deletions modules/outbound-domain-event-handler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@
"@types/convict": "^6.1.2",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/node": "^20.2.5",
"@types/node": "^20.3.1",
"@types/node-cache": "^4.2.5",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/yamljs": "^0.2.31",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"copyfiles": "^2.4.1",
"eslint": "^8.42.0",
"jest": "^29.5.0",
Expand Down
4 changes: 2 additions & 2 deletions modules/private-shared-lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@
"@mojaloop/api-snippets": "17.2.0",
"@mojaloop/central-services-shared": "^17.5.1",
"@mojaloop/logging-bc-public-types-lib": "^0.1.19",
"@mojaloop/platform-shared-lib-messaging-types-lib": "^0.2.98",
"@mojaloop/platform-shared-lib-messaging-types-lib": "^0.2.100",
"@mojaloop/platform-shared-lib-nodejs-kafka-client-lib": "0.2.15",
"ajv": "^8.12.0",
"redis": "^4.6.7",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/node": "^20.2.5",
"@types/node": "^20.3.1",
"eslint": "^8.42.0",
"jest": "^29.5.0",
"npm-check-updates": "^16.7.10",
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^20.2.5",
"@types/node": "^20.3.1",
"@types/node-cache": "^4.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"audit-ci": "^6.6.1",
"eslint": "^8.42.0",
"eslint-config-airbnb-typescript": "^17.0.0",
Expand Down
Loading

0 comments on commit c29a81d

Please sign in to comment.