@xuda.io/account_module 1.2.1849 → 1.2.1851
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 +2 -45
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -2043,7 +2043,7 @@ const set_account_profile_picture = async function (uid, account_uid, metadata,
|
|
|
2043
2043
|
|
|
2044
2044
|
const { bio, country, mainCategory, subCategory } = account_info;
|
|
2045
2045
|
|
|
2046
|
-
const file_ret = await ai_module.get_profile_avatar(account_info.profile_picture, uid, '', account_profile_info, account_info.account_type, 'account', account_uid, { bio, country, mainCategory, subCategory }, business_size, name, account_info.email, job_id, headers);
|
|
2046
|
+
const file_ret = await ai_module.get_profile_avatar(account_info.profile_picture, uid, '', account_profile_info, account_info.account_type, 'account', account_uid, { bio, country, mainCategory, subCategory, is_user: true }, business_size, name, account_info.email, job_id, headers);
|
|
2047
2047
|
if (file_ret.code < 0) {
|
|
2048
2048
|
throw new Error(file_ret.data);
|
|
2049
2049
|
}
|
|
@@ -2210,33 +2210,9 @@ export const add_contact = async function (req, job_id, headers) {
|
|
|
2210
2210
|
account_profiles: [account_profile_obj._id],
|
|
2211
2211
|
account_type: cached_contact?.account_type || account_type,
|
|
2212
2212
|
profile_avatar_stat: 0,
|
|
2213
|
-
// account_type_info: cached_contact?.account_type_info || account_type_info,
|
|
2214
|
-
// email_type_info: cached_contact?.email_type_info || email_type_info,
|
|
2215
2213
|
};
|
|
2216
|
-
// if (!_.isEmpty(cached_contact?.business_info)) {
|
|
2217
|
-
// contact_obj.business_info = _.cloneDeep(cached_contact.business_info);
|
|
2218
|
-
// } else {
|
|
2219
|
-
if (!is_spam) {
|
|
2220
|
-
// if (account_type === 'business') {
|
|
2221
|
-
// contact_obj.business_info = await ai_module.get_business_info(uid, contact_obj.name, contact_obj.email, account_profile_info);
|
|
2222
|
-
// save_xuda_cache(uid, 'contact', contact_obj.domain, null, contact_obj);
|
|
2223
|
-
|
|
2224
|
-
// // const business_info = await ai_module.get_business_info(uid, contact_obj.name, contact_obj.email, account_profile_info);
|
|
2225
|
-
// // if (business_info) {
|
|
2226
|
-
// // const { business_size, business_category, business_sub_category, business_country, business_bio, business_name } = business_info;
|
|
2227
|
-
// // contact_obj.mainCategory = business_category;
|
|
2228
|
-
// // contact_obj.subCategory = business_sub_category;
|
|
2229
|
-
// // contact_obj.business_size = business_size;
|
|
2230
|
-
// // contact_obj.country = business_country;
|
|
2231
|
-
// // contact_obj.bio = business_bio;
|
|
2232
|
-
// // contact_obj.business_name = business_name;
|
|
2233
|
-
|
|
2234
|
-
// // if (!contact_obj.name) {
|
|
2235
|
-
// // contact_obj.name = business_name;
|
|
2236
|
-
// // }
|
|
2237
|
-
// // }
|
|
2238
|
-
// }
|
|
2239
2214
|
|
|
2215
|
+
if (!is_spam) {
|
|
2240
2216
|
if (account_type === 'personal' || contact_obj?.business_has_person) {
|
|
2241
2217
|
contact_obj.person_info = await ai_module.get_person_info(uid, contact_obj.name, contact_obj.email, account_profile_info, metadata?.summarized_body, { light: true });
|
|
2242
2218
|
if (!contact_obj.name) {
|
|
@@ -2249,25 +2225,6 @@ export const add_contact = async function (req, job_id, headers) {
|
|
|
2249
2225
|
}
|
|
2250
2226
|
}
|
|
2251
2227
|
|
|
2252
|
-
// if (account_type === 'personal') {
|
|
2253
|
-
// if (!contact_obj.name) {
|
|
2254
|
-
// contact_obj.name = await ai_module.get_name_from_email_addr(uid, contact_obj.email, account_profile_info);
|
|
2255
|
-
// }
|
|
2256
|
-
// }
|
|
2257
|
-
// }
|
|
2258
|
-
// else {
|
|
2259
|
-
// // get from cache
|
|
2260
|
-
|
|
2261
|
-
// contact_obj.business_info = _.cloneDeep(cached_contact.business_info);
|
|
2262
|
-
|
|
2263
|
-
// // contact_obj.mainCategory = cached_contact.mainCategory;
|
|
2264
|
-
// // contact_obj.subCategory = cached_contact.subCategory;
|
|
2265
|
-
// // contact_obj.business_size = cached_contact.business_size;
|
|
2266
|
-
// // contact_obj.country = cached_contact.country;
|
|
2267
|
-
// // contact_obj.bio = cached_contact.bio;
|
|
2268
|
-
// // contact_obj.business_name = cached_contact.business_name;
|
|
2269
|
-
// // // contact_obj.is_spam = cached_contact.is_spam;
|
|
2270
|
-
// }
|
|
2271
2228
|
const save_ret = await save_contact(uid, contact_obj);
|
|
2272
2229
|
save_xuda_cache(uid, 'contact', contact_obj.email, null, contact_obj);
|
|
2273
2230
|
|