@xuda.io/notification_module 1.1.104 → 1.1.105

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.mjs +1 -1
  2. package/package.json +1 -1
package/index.mjs CHANGED
@@ -12,7 +12,7 @@ global._conf = (
12
12
 
13
13
  const _common = await import(path.join(process.env.XUDA_HOME, 'common', 'xuda_node_common.mjs'));
14
14
  const module_path = path.join(process.env.XUDA_HOME, 'cpi') + (!_conf.is_debug ? '/node_modules/@xuda.io' : '');
15
- const db_ms = await import(`${module_path}/db_module/index_ms.mjs`);
15
+ const db_module = await import(`${module_path}/db_module/index.mjs`);
16
16
  const email_ms = await import(`${module_path}/email_module/index_ms.mjs`);
17
17
  const ws_dashboard_ms = await import(`${module_path}/ws_dashboard_module/index_ms.mjs`);
18
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xuda.io/notification_module",
3
- "version": "1.1.104",
3
+ "version": "1.1.105",
4
4
  "description": "Xuda Notification Server Module",
5
5
  "main": "index.mjs",
6
6
  "dependencies": {