@xuda.io/account_module 1.2.2073 → 1.2.2075
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/index.mjs +3 -1
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -42,7 +42,8 @@ const _utils = await import(path.join(process.env.XUDA_HOME, 'common', 'xuda-cpi
|
|
|
42
42
|
// Module Paths
|
|
43
43
|
const module_path = path.join(process.env.XUDA_HOME, 'cpi') + (!_conf.is_debug ? '/node_modules/@xuda.io' : '');
|
|
44
44
|
|
|
45
|
-
const
|
|
45
|
+
const db_module = await import(`${module_path}/db_module/index.mjs`);
|
|
46
|
+
|
|
46
47
|
const ai_ms = await import(`${module_path}/ai_module/index_ms.mjs`);
|
|
47
48
|
const drive_ms = await import(`${module_path}/drive_module/index_ms.mjs`);
|
|
48
49
|
|
|
@@ -52,6 +53,7 @@ const marketplace_ms = await import(`${module_path}/marketplace_module/index_ms.
|
|
|
52
53
|
const stripe_ms = await import(`${module_path}/stripe_module/index_ms.mjs`);
|
|
53
54
|
const logs_ms = await import(`${module_path}/logs_module/index_ms.mjs`);
|
|
54
55
|
const ws_dashboard_ms = await import(`${module_path}/ws_dashboard_module/index_ms.mjs`);
|
|
56
|
+
const ws_dashboard_msa = await import(`${module_path}/ws_dashboard_module/index_msa.mjs`);
|
|
55
57
|
|
|
56
58
|
// const {get_active_account_profile_info} = await import(`${module_path}/ws_dashboard_module/get_active_account_profile_info.mjs`);
|
|
57
59
|
|