@xuda.io/account_module 1.2.2121 → 1.2.2122

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 +4 -3
  2. package/package.json +1 -1
package/index.mjs CHANGED
@@ -1737,6 +1737,7 @@ export const get_user_card = async function (req) {
1737
1737
  limit: 1,
1738
1738
  fields: ['_id'],
1739
1739
  };
1740
+ // const account_profile_info = await get_active_account_profile_info(uid);
1740
1741
  const user_contacts = await find_contact_query(uid, opt);
1741
1742
 
1742
1743
  const contact_id = user_contacts?.docs?.[0]?._id;
@@ -3312,7 +3313,6 @@ export const update_entity_account_profiles = async function (req, job_id, heade
3312
3313
  };
3313
3314
 
3314
3315
  export const get_contact = async function (uid, contact_id) {
3315
- debugger;
3316
3316
  const account_profile_info = await get_active_account_profile_info(uid);
3317
3317
 
3318
3318
  const contact_ret = await db_module.get_app_couch_doc_native(account_profile_info.app_id, contact_id);
@@ -3326,8 +3326,9 @@ export const save_contact = async function (uid, contact_doc) {
3326
3326
  };
3327
3327
 
3328
3328
  export const find_contact_query = async function (uid, opt) {
3329
- const app_id = await get_account_default_project_id(uid);
3330
- const ret = await db_module.find_app_couch_query(app_id, opt);
3329
+ // const app_id = await get_account_default_project_id(uid);
3330
+ const account_profile_info = await get_active_account_profile_info(uid);
3331
+ const ret = await db_module.find_app_couch_query(account_profile_info.app_id, opt);
3331
3332
  return ret;
3332
3333
  };
3333
3334
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xuda.io/account_module",
3
- "version": "1.2.2121",
3
+ "version": "1.2.2122",
4
4
  "description": "Xuda Account Server Module",
5
5
  "main": "index.mjs",
6
6
  "dependencies": {