account-lookup-service 17.9.0 → 17.9.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.9.1](https://github.com/mojaloop/account-lookup-service/compare/v17.9.0...v17.9.1) (2025-04-09)
|
6
|
+
|
7
|
+
|
8
|
+
### Bug Fixes
|
9
|
+
|
10
|
+
* avoid exception when no proxy cache exists ([#548](https://github.com/mojaloop/account-lookup-service/issues/548)) ([37dd8fa](https://github.com/mojaloop/account-lookup-service/commit/37dd8fa8932694022d1cd9c4ad8e2ddf180133e5))
|
11
|
+
|
5
12
|
## [17.9.0](https://github.com/mojaloop/account-lookup-service/compare/v17.8.1...v17.9.0) (2025-04-08)
|
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.9.
|
4
|
+
"version": "17.9.1",
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"author": "ModusBox",
|
7
7
|
"contributors": [
|
@@ -100,7 +100,7 @@
|
|
100
100
|
"@mojaloop/event-sdk": "14.4.0",
|
101
101
|
"@mojaloop/inter-scheme-proxy-cache-lib": "2.5.0",
|
102
102
|
"@mojaloop/ml-schema-transformer-lib": "2.7.1",
|
103
|
-
"@mojaloop/sdk-standard-components": "19.11.3
|
103
|
+
"@mojaloop/sdk-standard-components": "19.11.3",
|
104
104
|
"@now-ims/hapi-now-auth": "2.1.0",
|
105
105
|
"ajv": "8.17.1",
|
106
106
|
"ajv-keywords": "5.1.0",
|
@@ -316,7 +316,7 @@ class GetPartiesService extends BasePartiesService {
|
|
316
316
|
if (isSentToProxy && isLocalSource) {
|
317
317
|
this.stepInProgress('#setProxyGetPartiesTimeout')
|
318
318
|
const alsReq = this.deps.partiesUtils.alsRequestDto(this.state.source, this.inputs.params)
|
319
|
-
const isSet = await this.deps.proxyCache
|
319
|
+
const isSet = await this.deps.proxyCache?.setProxyGetPartiesTimeout(alsReq, sendTo)
|
320
320
|
this.log.info('#setProxyGetPartiesTimeout is done', { isSet })
|
321
321
|
return isSet
|
322
322
|
}
|