@xuda.io/account_module 1.2.962 → 1.2.964
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 +5 -1
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -482,6 +482,10 @@ export const get_account_data = async function (req) {
|
|
|
482
482
|
try {
|
|
483
483
|
const { data: acc_obj } = await db_module.get_couch_doc('xuda_accounts', uid);
|
|
484
484
|
|
|
485
|
+
let membership_plan = 0;
|
|
486
|
+
let ai_workspace_plan = 0;
|
|
487
|
+
let contact_connection = 0;
|
|
488
|
+
|
|
485
489
|
var ret = { code: 1 };
|
|
486
490
|
ret.data = {
|
|
487
491
|
_id: acc_obj._id,
|
|
@@ -519,7 +523,7 @@ export const get_account_data = async function (req) {
|
|
|
519
523
|
project_data_size: acc_obj.project_data_size || 0,
|
|
520
524
|
total_drive_size: acc_obj.total_drive_size || 0,
|
|
521
525
|
},
|
|
522
|
-
ai_credits: { credits: [{ membership_plan }, { ai_workspace_plan }, {
|
|
526
|
+
ai_credits: { credits: [{ membership_plan }, { ai_workspace_plan }, { contact_connection }], usage: { profile: [], projects: [] } },
|
|
523
527
|
stripe_connect_account_id: acc_obj?.stripe_connect_account_obj?.id,
|
|
524
528
|
stripe_connect_account_status: acc_obj?.stripe_connect_account_status,
|
|
525
529
|
};
|