account-lookup-service 17.8.0 → 17.8.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/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
|
+
### [17.8.1](https://github.com/mojaloop/account-lookup-service/compare/v17.8.0...v17.8.1) (2025-04-07)
|
6
|
+
|
7
|
+
|
8
|
+
### Bug Fixes
|
9
|
+
|
10
|
+
* **csi-1386:** delete participant audit ([#547](https://github.com/mojaloop/account-lookup-service/issues/547)) ([5ecf562](https://github.com/mojaloop/account-lookup-service/commit/5ecf562db8f48cf688f1ee19e901d46671d16ce9))
|
11
|
+
|
5
12
|
## [17.8.0](https://github.com/mojaloop/account-lookup-service/compare/v17.7.1...v17.8.0) (2025-04-03)
|
6
13
|
|
7
14
|
|
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.8.
|
4
|
+
"version": "17.8.1",
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"author": "ModusBox",
|
7
7
|
"contributors": [
|
@@ -98,7 +98,7 @@
|
|
98
98
|
"@mojaloop/central-services-stream": "11.5.2",
|
99
99
|
"@mojaloop/database-lib": "11.1.4",
|
100
100
|
"@mojaloop/event-sdk": "14.4.0",
|
101
|
-
"@mojaloop/inter-scheme-proxy-cache-lib": "2.
|
101
|
+
"@mojaloop/inter-scheme-proxy-cache-lib": "2.5.0",
|
102
102
|
"@mojaloop/ml-schema-transformer-lib": "2.7.1",
|
103
103
|
"@mojaloop/sdk-standard-components": "19.11.3-snapshot.0",
|
104
104
|
"@now-ims/hapi-now-auth": "2.1.0",
|
@@ -106,7 +106,7 @@
|
|
106
106
|
"ajv-keywords": "5.1.0",
|
107
107
|
"blipp": "4.0.2",
|
108
108
|
"commander": "13.1.0",
|
109
|
-
"cron": "4.1.
|
109
|
+
"cron": "4.1.4",
|
110
110
|
"fast-safe-stringify": "^2.1.1",
|
111
111
|
"hapi-auth-bearer-token": "8.0.0",
|
112
112
|
"joi": "17.13.3",
|
@@ -175,7 +175,7 @@ module.exports = {
|
|
175
175
|
['success']
|
176
176
|
).startTimer()
|
177
177
|
|
178
|
-
const { headers,
|
178
|
+
const { headers, method, path, params, span } = request
|
179
179
|
const spanTags = LibUtil.getSpanTags(request, Enum.Events.Event.Type.PARTICIPANT, Enum.Events.Event.Action.DELETE)
|
180
180
|
span.setTags(spanTags)
|
181
181
|
const queryTags = EventFrameworkUtil.Tags.getQueryTags(
|
@@ -193,7 +193,7 @@ module.exports = {
|
|
193
193
|
span.setTags(queryTags)
|
194
194
|
await span.audit({
|
195
195
|
headers,
|
196
|
-
payload
|
196
|
+
payload: undefined
|
197
197
|
}, EventSdk.AuditEventAction.start)
|
198
198
|
|
199
199
|
const metadata = `${request.method} ${request.path}`
|