account-lookup-service 17.8.0-snapshot.14 → 17.8.0-snapshot.16

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.7.1](https://github.com/mojaloop/account-lookup-service/compare/v17.7.0...v17.7.1) (2025-03-27)
6
+
7
+
8
+ ### Chore
9
+
10
+ * **csi-1248:** update transform-lib, others ([#543](https://github.com/mojaloop/account-lookup-service/issues/543)) ([7a0a5c4](https://github.com/mojaloop/account-lookup-service/commit/7a0a5c402e8f8f28661540ea5982b1ac9a97a8dd))
11
+
5
12
  ## [17.7.0](https://github.com/mojaloop/account-lookup-service/compare/v17.6.0...v17.7.0) (2025-03-26)
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.0-snapshot.14",
4
+ "version": "17.8.0-snapshot.16",
5
5
  "license": "Apache-2.0",
6
6
  "author": "ModusBox",
7
7
  "contributors": [
@@ -181,6 +181,11 @@ class BasePartiesService {
181
181
  return ErrorHandler.Factory.createFSPIOPError(ErrorHandler.Enums.FSPIOPErrorCodes.ID_NOT_FOUND, errMessage)
182
182
  }
183
183
 
184
+ createFspiopPartyNotFoundError (errMessage, log = this.log) {
185
+ log.warn(errMessage)
186
+ return ErrorHandler.Factory.createFSPIOPError(ErrorHandler.Enums.FSPIOPErrorCodes.PARTY_NOT_FOUND, errMessage)
187
+ }
188
+
184
189
  stepInProgress (stepName) {
185
190
  this.log.debug('step is in progress', { stepName })
186
191
  this.state.stepState?.inProgress(stepName)
@@ -236,7 +236,7 @@ class GetPartiesService extends BasePartiesService {
236
236
  async #sendPartyNotFoundErrorCallback (headers) {
237
237
  const { params } = this.inputs
238
238
  const callbackHeaders = GetPartiesService.createErrorCallbackHeaders(headers, params)
239
- const fspiopError = super.createFspiopIdNotFoundError('No proxy found to start inter-scheme discovery flow')
239
+ const fspiopError = super.createFspiopPartyNotFoundError('No proxy found to start inter-scheme discovery flow')
240
240
  const errorInfo = await this.deps.partiesUtils.makePutPartiesErrorPayload(
241
241
  this.deps.config, fspiopError, callbackHeaders, params
242
242
  )