account-lookup-service 17.12.6 → 17.12.8
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 +24 -0
- package/package.json +6 -7
- package/{sbom-v17.12.5.csv → sbom-v17.12.7.csv} +55 -60
- package/src/api/participants/{ID}.js +5 -2
- package/src/api/participants/{Type}/{ID}.js +11 -10
- package/src/lib/dto.js +38 -0
- package/test/integration/api/parties.test.js +1 -1
- package/test/unit/api/participants/participants.test.js +21 -0
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,30 @@
|
|
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.12.8](https://github.com/mojaloop/account-lookup-service/compare/v17.12.7...v17.12.8) (2025-09-05)
|
6
|
+
|
7
|
+
|
8
|
+
### Bug Fixes
|
9
|
+
|
10
|
+
* **csi-1695:** updated stream lib and event-sdk ([#571](https://github.com/mojaloop/account-lookup-service/issues/571)) ([1ba4a6d](https://github.com/mojaloop/account-lookup-service/commit/1ba4a6d9d72f107774659cbb4be8c6b1848671ec))
|
11
|
+
|
12
|
+
|
13
|
+
### Chore
|
14
|
+
|
15
|
+
* **sbom:** update sbom [skip ci] ([5e1f94d](https://github.com/mojaloop/account-lookup-service/commit/5e1f94dc48d9cd7b114569c177d13fab4f2e16b8))
|
16
|
+
|
17
|
+
### [17.12.7](https://github.com/mojaloop/account-lookup-service/compare/v17.12.6...v17.12.7) (2025-09-03)
|
18
|
+
|
19
|
+
|
20
|
+
### Bug Fixes
|
21
|
+
|
22
|
+
* **csi-1694:** fixed PUT /participants/{ID} logic ([#570](https://github.com/mojaloop/account-lookup-service/issues/570)) ([4955c30](https://github.com/mojaloop/account-lookup-service/commit/4955c307a677082b7a394728bfb44a15a63cf29b))
|
23
|
+
|
24
|
+
|
25
|
+
### Chore
|
26
|
+
|
27
|
+
* **sbom:** update sbom [skip ci] ([e4838bf](https://github.com/mojaloop/account-lookup-service/commit/e4838bf63d3a3cd3b42cdaf434d993e1c55ef770))
|
28
|
+
|
5
29
|
### [17.12.6](https://github.com/mojaloop/account-lookup-service/compare/v17.12.5...v17.12.6) (2025-09-02)
|
6
30
|
|
7
31
|
|
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.12.
|
4
|
+
"version": "17.12.8",
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"author": "ModusBox",
|
7
7
|
"contributors": [
|
@@ -34,9 +34,9 @@
|
|
34
34
|
},
|
35
35
|
"pre-commit": [
|
36
36
|
"lint",
|
37
|
+
"test",
|
37
38
|
"dep:check",
|
38
|
-
"audit:check"
|
39
|
-
"test"
|
39
|
+
"audit:check"
|
40
40
|
],
|
41
41
|
"scripts": {
|
42
42
|
"start": "node src/index.js server",
|
@@ -96,9 +96,9 @@
|
|
96
96
|
"@mojaloop/central-services-logger": "11.9.1",
|
97
97
|
"@mojaloop/central-services-metrics": "12.6.0",
|
98
98
|
"@mojaloop/central-services-shared": "18.30.8",
|
99
|
-
"@mojaloop/central-services-stream": "11.8.
|
99
|
+
"@mojaloop/central-services-stream": "11.8.6",
|
100
100
|
"@mojaloop/database-lib": "^11.3.2",
|
101
|
-
"@mojaloop/event-sdk": "14.
|
101
|
+
"@mojaloop/event-sdk": "14.7.0",
|
102
102
|
"@mojaloop/inter-scheme-proxy-cache-lib": "2.6.0",
|
103
103
|
"@mojaloop/ml-schema-transformer-lib": "2.7.7",
|
104
104
|
"@mojaloop/sdk-standard-components": "19.16.7",
|
@@ -108,7 +108,6 @@
|
|
108
108
|
"blipp": "4.0.2",
|
109
109
|
"commander": "14.0.0",
|
110
110
|
"cron": "4.3.3",
|
111
|
-
"fast-safe-stringify": "^2.1.1",
|
112
111
|
"hapi-auth-bearer-token": "8.0.0",
|
113
112
|
"joi": "18.0.1",
|
114
113
|
"knex": "3.1.0",
|
@@ -169,7 +168,7 @@
|
|
169
168
|
"axios": "1.11.0",
|
170
169
|
"axios-retry": "^4.5.0",
|
171
170
|
"docdash": "2.0.2",
|
172
|
-
"dotenv": "^17.2.
|
171
|
+
"dotenv": "^17.2.2",
|
173
172
|
"get-port": "5.1.1",
|
174
173
|
"ioredis-mock": "^8.9.0",
|
175
174
|
"jest": "29.7.0",
|