@xuda.io/account_module 1.2.18 → 1.2.20
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.js +3 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -686,8 +686,9 @@ exports.validate_user_plan = async function (req) {
|
|
|
686
686
|
);
|
|
687
687
|
|
|
688
688
|
if (
|
|
689
|
+
app_obj.app_type === "master" &&
|
|
689
690
|
user_active_app_requests_count_ret.data?.rows?.[0]?.value >=
|
|
690
|
-
|
|
691
|
+
plan.features.team
|
|
691
692
|
) {
|
|
692
693
|
return {
|
|
693
694
|
code: -9,
|
|
@@ -1394,6 +1395,7 @@ exports.add_contact = async function (req) {
|
|
|
1394
1395
|
contact_uid,
|
|
1395
1396
|
uid,
|
|
1396
1397
|
req_id,
|
|
1398
|
+
date_created_ts: Date.now(),
|
|
1397
1399
|
});
|
|
1398
1400
|
return ret;
|
|
1399
1401
|
}
|