payservedb 6.6.2 → 6.6.3

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/index.js +1 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -69,7 +69,6 @@ async function switchDB(dbName) {
69
69
  // This maintains backward compatibility for existing services
70
70
  const models = {
71
71
  User: require("./src/models/user"),
72
- AuditLog: require("./src/models/auditlog"),
73
72
  Company: require("./src/models/company"),
74
73
  Customer: require("./src/models/customer"),
75
74
  FacilityEmailDetails: require("./src/models/email"),
@@ -273,5 +272,5 @@ module.exports = {
273
272
  switchDB,
274
273
  getModelFromDB,
275
274
  initializeService,
276
- ...models, // Spread operator to export all models for backward compatibility
275
+ ...models,
277
276
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "payservedb",
3
- "version": "6.6.2",
3
+ "version": "6.6.3",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"