@xuda.io/account_module 1.2.1332 → 1.2.1333
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 +25 -22
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -2776,10 +2776,13 @@ export const update_account_profile = async function (req, job_id, headers) {
|
|
|
2776
2776
|
};
|
|
2777
2777
|
|
|
2778
2778
|
export const update_entity_account_profiles = async function (req, job_id, headers) {
|
|
2779
|
-
const { uid, entity } = req;
|
|
2780
|
-
const app_id = await get_account_default_project_id(uid);
|
|
2779
|
+
const { uid, entity, _id } = req;
|
|
2780
|
+
const app_id = await account_module.get_account_default_project_id(uid);
|
|
2781
2781
|
|
|
2782
|
+
let save_ret;
|
|
2782
2783
|
try {
|
|
2784
|
+
let doc = await db_module.get_app_couch_doc_native(app_id, _id);
|
|
2785
|
+
|
|
2783
2786
|
switch (entity) {
|
|
2784
2787
|
case 'ai_chat': {
|
|
2785
2788
|
break;
|
|
@@ -2790,35 +2793,35 @@ export const update_entity_account_profiles = async function (req, job_id, heade
|
|
|
2790
2793
|
break;
|
|
2791
2794
|
}
|
|
2792
2795
|
|
|
2793
|
-
let { data: account_profile_doc } = await db_module.get_app_couch_doc(app_id, _id);
|
|
2796
|
+
// let { data: account_profile_doc } = await db_module.get_app_couch_doc(app_id, _id);
|
|
2794
2797
|
|
|
2795
|
-
if (account_profile_doc.docType !== 'account_profile') {
|
|
2796
|
-
|
|
2797
|
-
}
|
|
2798
|
+
// if (account_profile_doc.docType !== 'account_profile') {
|
|
2799
|
+
// throw new Error('not account profile doc');
|
|
2800
|
+
// }
|
|
2798
2801
|
|
|
2799
|
-
let changes_arr = [];
|
|
2802
|
+
// let changes_arr = [];
|
|
2800
2803
|
|
|
2801
|
-
for (const key of account_profile_properties) {
|
|
2802
|
-
|
|
2803
|
-
|
|
2804
|
-
|
|
2805
|
-
|
|
2806
|
-
|
|
2807
|
-
|
|
2808
|
-
}
|
|
2804
|
+
// for (const key of account_profile_properties) {
|
|
2805
|
+
// let val = req[key];
|
|
2806
|
+
// if (typeof val === 'undefined') continue;
|
|
2807
|
+
// if (account_profile_doc[key] !== val) {
|
|
2808
|
+
// changes_arr.push(key);
|
|
2809
|
+
// account_profile_doc[key] = val;
|
|
2810
|
+
// }
|
|
2811
|
+
// }
|
|
2809
2812
|
|
|
2810
|
-
if (!changes_arr.length) {
|
|
2811
|
-
|
|
2812
|
-
|
|
2813
|
-
}
|
|
2813
|
+
// if (!changes_arr.length) {
|
|
2814
|
+
// // throw new Error('no change');
|
|
2815
|
+
// return { code: 56, data: 'no change' };
|
|
2816
|
+
// }
|
|
2814
2817
|
|
|
2815
|
-
account_profile_doc.ts = Date.now();
|
|
2818
|
+
// account_profile_doc.ts = Date.now();
|
|
2816
2819
|
|
|
2817
2820
|
const save_ret = await db_module.save_app_couch_doc(app_id, account_profile_doc);
|
|
2818
2821
|
|
|
2819
|
-
return { code:
|
|
2822
|
+
return { code: 57, data: save_ret };
|
|
2820
2823
|
} catch (err) {
|
|
2821
|
-
return { code: -
|
|
2824
|
+
return { code: -57, data: err.message };
|
|
2822
2825
|
}
|
|
2823
2826
|
};
|
|
2824
2827
|
|