@mojaloop/account-lookup-bc-client-lib
Advanced tools
Comparing version 0.1.13 to 0.1.14
@@ -32,3 +32,2 @@ /***** | ||
import { ILogger } from "@mojaloop/logging-bc-public-types-lib"; | ||
import { ParticipantLookup } from "@mojaloop/account-lookup-bc-domain"; | ||
export declare class AccountLookupHttpClient { | ||
@@ -41,3 +40,8 @@ private readonly _logger; | ||
participantBulkLookUp(partyIdentifiers: { | ||
[key: string]: ParticipantLookup; | ||
[key: string]: { | ||
partyType: string; | ||
partyId: string; | ||
partySubId: string | null; | ||
currency: string | null; | ||
}; | ||
}): Promise<{ | ||
@@ -44,0 +48,0 @@ [key: string]: string | null; |
@@ -39,4 +39,8 @@ /***** | ||
class AccountLookupHttpClient { | ||
// Properties received through the constructor. | ||
_logger; | ||
// Other properties. | ||
_httpClient; | ||
CLIENT_URL = "/account-lookup"; | ||
constructor(logger, baseUrl, timeoutMs = DEFAULT_TIMEOUT_MS) { | ||
this.CLIENT_URL = "/account-lookup"; | ||
this._logger = logger; | ||
@@ -43,0 +47,0 @@ this._httpClient = axios_1.default.create({ |
{ | ||
"name": "@mojaloop/account-lookup-bc-client-lib", | ||
"version": "0.1.13", | ||
"version": "0.1.14", | ||
"description": "Account Lookup BC - Clients", | ||
"license": "Apache-2.0", | ||
"homepage": "https://github.com/mojaloop/account-lookup-bc/tree/main/modules/client", | ||
"homepage": "https://github.com/mojaloop/account-lookup-bc/tree/main/modules/client-lib", | ||
"bugs": { | ||
@@ -30,7 +30,7 @@ "url": "https://github.com/mojaloop/account-lookup-bc/issues#readme" | ||
"audit:check": "npm npm audit", | ||
"dep:check": "npm exec ncu -- -e 2", | ||
"dep:update": "npm exec ncu -- -u", | ||
"dep:check": "ncu -e 2", | ||
"dep:update": "ncu -u", | ||
"lint": "eslint ./src", | ||
"lint:fix": "eslint ./src --fix", | ||
"test:unit": "jest --runInBand --forceExit --detectOpenHandles --verbose || ECHO.", | ||
"test:unit": "jest --passWithNoTests --testMatch '**/test/unit/**/*.test.ts'", | ||
"test:debug": "SET DEBUG=nock.* && jest --runInBand --forceExit --detectOpenHandles --verbose --inspect-brk || ECHO.", | ||
@@ -40,9 +40,8 @@ "npm_publish": "npm version patch && npm publish --tag=latest --access public" | ||
"dependencies": { | ||
"@mojaloop/logging-bc-client-lib": "^0.1.16", | ||
"@mojaloop/account-lookup-bc-domain": "*", | ||
"axios": "^1.1.2" | ||
"@mojaloop/logging-bc-client-lib": "^0.1.18", | ||
"axios": "^1.3.4" | ||
}, | ||
"devDependencies": { | ||
"nock": "^13.2.9" | ||
"nock": "^13.3.0" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
Wildcard dependency
QualityPackage has a dependency with a floating version range. This can cause issues if the dependency publishes a new major version.
Found 1 instance in 1 package
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
17390
2
250
1
- Removed@mojaloop/account-lookup-bc-domain@*
Updatedaxios@^1.3.4