account-lookup-service 16.1.0-iso.1 → 17.0.2
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 +25 -0
- package/CODEOWNERS +1 -1
- package/LICENSE.md +1 -1
- package/README.md +4 -0
- package/package.json +12 -12
- package/test/fixtures/index.js +1 -1
- package/test/util/helper.js +6 -6
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,31 @@
|
|
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.0.2](https://github.com/mojaloop/account-lookup-service/compare/v17.0.1...v17.0.2) (2025-01-27)
|
6
|
+
|
7
|
+
|
8
|
+
### Chore
|
9
|
+
|
10
|
+
* maintenance updates ([#520](https://github.com/mojaloop/account-lookup-service/issues/520)) ([2e91f4a](https://github.com/mojaloop/account-lookup-service/commit/2e91f4a21239158c9f4a4bb72f0eb09206f4e292))
|
11
|
+
|
12
|
+
### [17.0.1](https://github.com/mojaloop/account-lookup-service/compare/v17.0.0...v17.0.1) (2025-01-20)
|
13
|
+
|
14
|
+
|
15
|
+
### Chore
|
16
|
+
|
17
|
+
* address follow up iso comments ([#519](https://github.com/mojaloop/account-lookup-service/issues/519)) ([f1fe64f](https://github.com/mojaloop/account-lookup-service/commit/f1fe64f9764b9febbb449249a8daa59e22310d37))
|
18
|
+
|
19
|
+
## [17.0.0](https://github.com/mojaloop/account-lookup-service/compare/v16.0.2...v17.0.0) (2025-01-19)
|
20
|
+
|
21
|
+
|
22
|
+
### ⚠ BREAKING CHANGES
|
23
|
+
|
24
|
+
* add iso20022 compatibility (#518)
|
25
|
+
|
26
|
+
### Features
|
27
|
+
|
28
|
+
* add iso20022 compatibility ([#518](https://github.com/mojaloop/account-lookup-service/issues/518)) ([1eaaff1](https://github.com/mojaloop/account-lookup-service/commit/1eaaff13048af5bc34cd55fcd85b2152e6413963)), closes [#482](https://github.com/mojaloop/account-lookup-service/issues/482) [#483](https://github.com/mojaloop/account-lookup-service/issues/483)
|
29
|
+
|
5
30
|
### [16.0.2](https://github.com/mojaloop/account-lookup-service/compare/v16.0.1...v16.0.2) (2025-01-07)
|
6
31
|
|
7
32
|
|
package/CODEOWNERS
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
## @global-owner1 and @global-owner2 will be requested for
|
7
7
|
## review when someone opens a pull request.
|
8
8
|
#* @global-owner1 @global-owner2
|
9
|
-
* @
|
9
|
+
* @elnyry-sam-k @vijayg10 @kleyow @geka-evk @bushjames @oderayi @shashi165 @gibaros
|
10
10
|
|
11
11
|
## Order is important; the last matching pattern takes the most
|
12
12
|
## precedence. When someone opens a pull request that only
|
package/LICENSE.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# LICENSE
|
2
2
|
|
3
|
-
Copyright © 2020-
|
3
|
+
Copyright © 2020-2025 Mojaloop Foundation
|
4
4
|
|
5
5
|
The Mojaloop files are made available by the Mojaloop Foundation under the Apache License, Version 2.0 (the "License") and you may not use these files except in compliance with the License.
|
6
6
|
|
package/README.md
CHANGED
@@ -252,3 +252,7 @@ push a release triggering another subsequent build that also publishes a docker
|
|
252
252
|
## Additional Notes
|
253
253
|
|
254
254
|
- For all put parties callbacks `FSPIOP-Destination` header is considered to be mandatory.
|
255
|
+
- Since the first pass ISO20022 support doesn't cover all resources at this time
|
256
|
+
`api-swagger-iso20022-parties.yaml` still uses fspiop for resources that
|
257
|
+
weren't in the iso scope on the first pass example `/participants`.
|
258
|
+
This is to ensure no regression for resources that aren't yet covered.
|
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": "
|
4
|
+
"version": "17.0.2",
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"author": "ModusBox",
|
7
7
|
"contributors": [
|
@@ -90,22 +90,22 @@
|
|
90
90
|
"@hapi/hapi": "21.3.12",
|
91
91
|
"@hapi/inert": "7.1.0",
|
92
92
|
"@hapi/vision": "7.0.3",
|
93
|
-
"@mojaloop/central-services-error-handling": "13.0.
|
94
|
-
"@mojaloop/central-services-health": "15.0.
|
95
|
-
"@mojaloop/central-services-logger": "11.5.
|
96
|
-
"@mojaloop/central-services-metrics": "12.4.
|
97
|
-
"@mojaloop/central-services-shared": "18.
|
98
|
-
"@mojaloop/central-services-stream": "11.4.
|
99
|
-
"@mojaloop/database-lib": "11.1.
|
100
|
-
"@mojaloop/event-sdk": "14.1.
|
93
|
+
"@mojaloop/central-services-error-handling": "13.0.4",
|
94
|
+
"@mojaloop/central-services-health": "15.0.2",
|
95
|
+
"@mojaloop/central-services-logger": "11.5.3",
|
96
|
+
"@mojaloop/central-services-metrics": "12.4.4",
|
97
|
+
"@mojaloop/central-services-shared": "18.16.0",
|
98
|
+
"@mojaloop/central-services-stream": "11.4.3",
|
99
|
+
"@mojaloop/database-lib": "11.1.2",
|
100
|
+
"@mojaloop/event-sdk": "14.1.3",
|
101
101
|
"@mojaloop/inter-scheme-proxy-cache-lib": "2.3.1",
|
102
102
|
"@mojaloop/ml-schema-transformer-lib": "2.5.1",
|
103
|
-
"@mojaloop/sdk-standard-components": "19.6.
|
103
|
+
"@mojaloop/sdk-standard-components": "19.6.4",
|
104
104
|
"@now-ims/hapi-now-auth": "2.1.0",
|
105
105
|
"ajv": "8.17.1",
|
106
106
|
"ajv-keywords": "5.1.0",
|
107
107
|
"blipp": "4.0.2",
|
108
|
-
"commander": "13.
|
108
|
+
"commander": "13.1.0",
|
109
109
|
"cron": "3.5.0",
|
110
110
|
"fast-safe-stringify": "^2.1.1",
|
111
111
|
"hapi-auth-bearer-token": "8.0.0",
|
@@ -172,7 +172,7 @@
|
|
172
172
|
"jest-junit": "16.0.0",
|
173
173
|
"jsdoc": "4.0.4",
|
174
174
|
"nodemon": "3.1.9",
|
175
|
-
"npm-check-updates": "17.1.
|
175
|
+
"npm-check-updates": "17.1.14",
|
176
176
|
"nyc": "17.1.0",
|
177
177
|
"pre-commit": "1.2.2",
|
178
178
|
"proxyquire": "2.1.3",
|
package/test/fixtures/index.js
CHANGED
package/test/util/helper.js
CHANGED
@@ -88,7 +88,7 @@ function defaultHeaders (destination, resource, source, version = '1.1', apiType
|
|
88
88
|
accept: `application/vnd.interoperability${isoPart}.${resource}+json;version=${version}`,
|
89
89
|
'fspiop-destination': destination || '',
|
90
90
|
'content-type': `application/vnd.interoperability${isoPart}.${resource}+json;version=${version}`,
|
91
|
-
date:
|
91
|
+
date: new Date().toUTCString(),
|
92
92
|
'fspiop-source': source,
|
93
93
|
'fspiop-signature': '{"signature":"iU4GBXSfY8twZMj1zXX1CTe3LDO8Zvgui53icrriBxCUF_wltQmnjgWLWI4ZUEueVeOeTbDPBZazpBWYvBYpl5WJSUoXi14nVlangcsmu2vYkQUPmHtjOW-yb2ng6_aPfwd7oHLWrWzcsjTF-S4dW7GZRPHEbY_qCOhEwmmMOnE1FWF1OLvP0dM0r4y7FlnrZNhmuVIFhk_pMbEC44rtQmMFv4pm4EVGqmIm3eyXz0GkX8q_O1kGBoyIeV_P6RRcZ0nL6YUVMhPFSLJo6CIhL2zPm54Qdl2nVzDFWn_shVyV0Cl5vpcMJxJ--O_Zcbmpv6lxqDdygTC782Ob3CNMvg\\",\\"protectedHeader\\":\\"eyJhbGciOiJSUzI1NiIsIkZTUElPUC1VUkkiOiIvdHJhbnNmZXJzIiwiRlNQSU9QLUhUVFAtTWV0aG9kIjoiUE9TVCIsIkZTUElPUC1Tb3VyY2UiOiJPTUwiLCJGU1BJT1AtRGVzdGluYXRpb24iOiJNVE5Nb2JpbGVNb25leSIsIkRhdGUiOiIifQ"}'
|
94
94
|
}
|
@@ -113,7 +113,7 @@ const getByTypeIdRequest = {
|
|
113
113
|
accept: 'application/vnd.interoperability.participants+json;version=1',
|
114
114
|
'fspiop-destination': payeefsp,
|
115
115
|
'content-type': 'application/vnd.interoperability.participants+json;version=1.1',
|
116
|
-
date:
|
116
|
+
date: new Date().toUTCString(),
|
117
117
|
'fspiop-source': payerfsp
|
118
118
|
},
|
119
119
|
method: 'get'
|
@@ -129,7 +129,7 @@ const getByTypeIdRequestError = {
|
|
129
129
|
accept: 'application/vnd.interoperability.participants+json;version=1',
|
130
130
|
'fspiop-destination': payeefsp,
|
131
131
|
'content-type': 'application/vnd.interoperability.participants+json;version=1.1',
|
132
|
-
date:
|
132
|
+
date: new Date().toUTCString(),
|
133
133
|
'fspiop-source': payerfsp
|
134
134
|
},
|
135
135
|
method: 'get'
|
@@ -145,7 +145,7 @@ const putByTypeIdRequest = {
|
|
145
145
|
accept: 'application/vnd.interoperability.participants+json;version=1',
|
146
146
|
'fspiop-destination': payeefsp,
|
147
147
|
'content-type': 'application/vnd.interoperability.participants+json;version=1.1',
|
148
|
-
date:
|
148
|
+
date: new Date().toUTCString(),
|
149
149
|
'fspiop-source': payerfsp
|
150
150
|
},
|
151
151
|
method: 'put'
|
@@ -163,7 +163,7 @@ const getByTypeIdCurrencyRequest = {
|
|
163
163
|
accept: 'application/vnd.interoperability.participants+json;version=1',
|
164
164
|
'fspiop-destination': payeefsp,
|
165
165
|
'content-type': 'application/vnd.interoperability.participants+json;version=1.1',
|
166
|
-
date:
|
166
|
+
date: new Date().toUTCString(),
|
167
167
|
'fspiop-source': payerfsp
|
168
168
|
},
|
169
169
|
method: 'get'
|
@@ -181,7 +181,7 @@ const postByTypeIdCurrencyRequest = {
|
|
181
181
|
accept: 'application/vnd.interoperability.participants+json;version=1',
|
182
182
|
'fspiop-destination': payeefsp,
|
183
183
|
'content-type': 'application/vnd.interoperability.participants+json;version=1.1',
|
184
|
-
date:
|
184
|
+
date: new Date().toUTCString(),
|
185
185
|
'fspiop-source': payerfsp
|
186
186
|
},
|
187
187
|
method: 'post'
|