@xuda.io/account_module 1.2.2059 → 1.2.2061

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.
@@ -1,3 +1,5 @@
1
+ const db_module = await import(`${module_path}/db_module/index.mjs`);
2
+
1
3
  export const get_active_account_profile_info = async function (uid, profile_id) {
2
4
  try {
3
5
  const acc_obj = await db_module.get_couch_doc_native('xuda_accounts', uid);
package/index.mjs CHANGED
@@ -52,6 +52,8 @@ const stripe_ms = await import(`${module_path}/stripe_module/index_ms.mjs`);
52
52
  const logs_ms = await import(`${module_path}/logs_module/index_ms.mjs`);
53
53
  const ws_dashboard_ms = await import(`${module_path}/ws_dashboard_module/index_ms.mjs`);
54
54
 
55
+ // const {get_active_account_profile_info} = await import(`${module_path}/ws_dashboard_module/get_active_account_profile_info.mjs`);
56
+
55
57
  export const update_account_info = async function (req, job_id, headers) {
56
58
  const { uid } = req;
57
59
  const data = req;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xuda.io/account_module",
3
- "version": "1.2.2059",
3
+ "version": "1.2.2061",
4
4
  "description": "Xuda Account Server Module",
5
5
  "main": "index.mjs",
6
6
  "dependencies": {