account-lookup-service 15.6.0-iso.24 → 15.6.0-iso.25

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.
Files changed (2) hide show
  1. package/package.json +8 -8
  2. package/src/lib/db.js +2 -1
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": "15.6.0-iso.24",
4
+ "version": "15.6.0-iso.25",
5
5
  "license": "Apache-2.0",
6
6
  "author": "ModusBox",
7
7
  "contributors": [
@@ -90,12 +90,12 @@
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.2",
93
+ "@mojaloop/central-services-error-handling": "13.0.3",
94
94
  "@mojaloop/central-services-health": "15.0.0",
95
95
  "@mojaloop/central-services-logger": "11.5.1",
96
- "@mojaloop/central-services-metrics": "12.4.2",
97
- "@mojaloop/central-services-shared": "18.14.2",
98
- "@mojaloop/central-services-stream": "11.4.1",
96
+ "@mojaloop/central-services-metrics": "12.4.3",
97
+ "@mojaloop/central-services-shared": "18.15.1",
98
+ "@mojaloop/central-services-stream": "11.4.2",
99
99
  "@mojaloop/database-lib": "11.1.0",
100
100
  "@mojaloop/event-sdk": "14.1.1",
101
101
  "@mojaloop/inter-scheme-proxy-cache-lib": "2.3.1",
@@ -105,8 +105,8 @@
105
105
  "ajv": "8.17.1",
106
106
  "ajv-keywords": "5.1.0",
107
107
  "blipp": "4.0.2",
108
- "commander": "12.1.0",
109
- "cron": "3.3.1",
108
+ "commander": "13.0.0",
109
+ "cron": "3.3.2",
110
110
  "fast-safe-stringify": "^2.1.1",
111
111
  "hapi-auth-bearer-token": "8.0.0",
112
112
  "joi": "17.13.3",
@@ -161,7 +161,7 @@
161
161
  "jest-junit": "16.0.0",
162
162
  "jsdoc": "4.0.4",
163
163
  "nodemon": "3.1.9",
164
- "npm-check-updates": "17.1.11",
164
+ "npm-check-updates": "17.1.13",
165
165
  "nyc": "17.1.0",
166
166
  "pre-commit": "1.2.2",
167
167
  "replace": "^1.2.2",
package/src/lib/db.js CHANGED
@@ -23,4 +23,5 @@
23
23
  ******/
24
24
  'use strict'
25
25
 
26
- module.exports = require('@mojaloop/database-lib').Db
26
+ const Database = require('@mojaloop/database-lib/src/database')
27
+ module.exports = new Database()