account-lookup-service 17.4.0-csi-1233.0 → 17.4.0-csi-1233.1
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/.ncurc.yaml +2 -1
- package/package.json +4 -3
- package/src/domain/parties/utils.js +1 -1
package/.ncurc.yaml
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
## Add a TODO comment indicating the reason for each rejected dependency upgrade added to this list, and what should be done to resolve it (i.e. handle it through a story, etc).
|
2
2
|
reject: [
|
3
3
|
# TODO: v6+ (ref: https://github.com/sindresorhus/get-port/releases/tag/v6.0.0) is an ESM library and thus not compatible with CommonJS. Future story needed to resolve.
|
4
|
-
"get-port"
|
4
|
+
"get-port",
|
5
|
+
"@mojaloop/central-services-logger"
|
5
6
|
]
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "account-lookup-service",
|
3
3
|
"description": "Account Lookup Service is used to validate Party and Participant lookups.",
|
4
|
-
"version": "17.4.0-csi-1233.
|
4
|
+
"version": "17.4.0-csi-1233.1",
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"author": "ModusBox",
|
7
7
|
"contributors": [
|
@@ -93,12 +93,12 @@
|
|
93
93
|
"@hapi/vision": "7.0.3",
|
94
94
|
"@mojaloop/central-services-error-handling": "13.0.7",
|
95
95
|
"@mojaloop/central-services-health": "15.0.4",
|
96
|
-
"@mojaloop/central-services-logger": "11.
|
96
|
+
"@mojaloop/central-services-logger": "11.5.5",
|
97
97
|
"@mojaloop/central-services-metrics": "12.4.5",
|
98
98
|
"@mojaloop/central-services-shared": "18.22.2-snapshot.2",
|
99
99
|
"@mojaloop/central-services-stream": "11.5.1",
|
100
100
|
"@mojaloop/database-lib": "11.1.3",
|
101
|
-
"@mojaloop/event-sdk": "14.3.
|
101
|
+
"@mojaloop/event-sdk": "14.3.1",
|
102
102
|
"@mojaloop/inter-scheme-proxy-cache-lib": "2.3.7",
|
103
103
|
"@mojaloop/ml-schema-transformer-lib": "2.5.6",
|
104
104
|
"@mojaloop/sdk-standard-components": "19.10.0",
|
@@ -119,6 +119,7 @@
|
|
119
119
|
"rc": "1.2.8"
|
120
120
|
},
|
121
121
|
"overrides": {
|
122
|
+
"@mojaloop/central-services-logger": "11.5.5",
|
122
123
|
"postcss": {
|
123
124
|
"nanoid": "^3.3.8"
|
124
125
|
},
|
@@ -75,7 +75,7 @@ const createErrorHandlerOnSendingCallback = (config, logger) => async (err, head
|
|
75
75
|
} catch (exc) {
|
76
76
|
// We can't do anything else here- we _must_ handle all errors _within_ this function because
|
77
77
|
// we've already sent a sync response- we cannot throw.
|
78
|
-
logger.error('
|
78
|
+
logger.error('failed to handleErrorOnSendingCallback', exc)
|
79
79
|
}
|
80
80
|
}
|
81
81
|
|