@xuda.io/account_module 1.2.1940 → 1.2.1941
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 +6 -13
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -2754,7 +2754,7 @@ export const unpin_contact = async function (req) {
|
|
|
2754
2754
|
|
|
2755
2755
|
export const not_spam_contact = async function (req, job_id, headers) {
|
|
2756
2756
|
const email_module = await import(`${module_path}/email_module/index.mjs`);
|
|
2757
|
-
|
|
2757
|
+
const ai_module = await import(`${module_path}/ai_module/index.mjs`);
|
|
2758
2758
|
|
|
2759
2759
|
const { contact_id, uid } = req;
|
|
2760
2760
|
const account_profile_info = await get_active_account_profile_info(uid);
|
|
@@ -2764,21 +2764,14 @@ export const not_spam_contact = async function (req, job_id, headers) {
|
|
|
2764
2764
|
|
|
2765
2765
|
//////////////////
|
|
2766
2766
|
const is_business = await ai_module.is_business_contact(uid, contact_doc.email, contact_doc.name, contact_doc?.metadata?.subject, contact_doc?.metadata?.summarized_body, account_profile_info);
|
|
2767
|
-
account_type = is_business ? 'business' : 'personal';
|
|
2767
|
+
contact_doc.account_type = is_business ? 'business' : 'personal';
|
|
2768
2768
|
if (is_business) {
|
|
2769
|
-
business_info = await ai_module.get_business_info(uid, '', email, account_profile_info, { light: true });
|
|
2769
|
+
contact_doc.business_info = await ai_module.get_business_info(uid, '', contact_doc.email, account_profile_info, { light: true });
|
|
2770
2770
|
if (business_info.business_name !== 'Not available') {
|
|
2771
|
-
business_has_person = await ai_module.is_business_contact_has_person(uid, email, name, metadata
|
|
2772
|
-
} else {
|
|
2773
|
-
account_type = 'personal';
|
|
2774
|
-
business_info = undefined;
|
|
2775
|
-
}
|
|
2776
|
-
}
|
|
2777
|
-
if (_.isEmpty(cached_contact) && account_type === 'business' && !business_has_person) {
|
|
2778
|
-
if (!identifyPersonalProvider(business_info.business_domain)) {
|
|
2779
|
-
cached_contact = await get_xuda_cache(uid, 'contact', business_info.business_domain, 'metadata');
|
|
2771
|
+
contact_doc.business_has_person = await ai_module.is_business_contact_has_person(uid, contact_doc.email, contact_doc.name, contact_doc?.metadata?.subject, contact_doc?.metadata?.summarized_body, account_profile_info);
|
|
2780
2772
|
} else {
|
|
2781
|
-
|
|
2773
|
+
contact_doc.account_type = 'personal';
|
|
2774
|
+
contact_doc.business_info = undefined;
|
|
2782
2775
|
}
|
|
2783
2776
|
}
|
|
2784
2777
|
|