@xuda.io/account_module 1.2.116 → 1.2.118
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
|
@@ -391,7 +391,7 @@ exports.get_account_data = async function (req) {
|
|
|
391
391
|
_id: acc_obj._id,
|
|
392
392
|
account_info: acc_obj.account_info,
|
|
393
393
|
usage: acc_obj.activity_usage,
|
|
394
|
-
|
|
394
|
+
membership_plan: acc_obj.membership_plan,
|
|
395
395
|
plan_changed: acc_obj.plan_changed,
|
|
396
396
|
plan_info: acc_obj.plan_info,
|
|
397
397
|
support_plan: acc_obj.support_plan,
|
|
@@ -421,6 +421,8 @@ exports.get_account_data = async function (req) {
|
|
|
421
421
|
project_data_size: acc_obj.project_data_size || 0,
|
|
422
422
|
total_drive_size: acc_obj.total_drive_size || 0,
|
|
423
423
|
},
|
|
424
|
+
stripe_seller_account_id:acc_obj?.stripe_seller_account_obj?.id
|
|
425
|
+
stripe_seller_account_status:acc_obj?.stripe_seller_account_info
|
|
424
426
|
};
|
|
425
427
|
|
|
426
428
|
// if (account_ret.data.stripe_membership_subscription_id) {
|