@xuda.io/account_module 1.2.2091 → 1.2.2093
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 +1 -3
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -51,14 +51,12 @@ const team_ms = await import(`${module_path}/team_module/index_ms.mjs`);
|
|
|
51
51
|
const email_ms = await import(`${module_path}/email_module/index_ms.mjs`);
|
|
52
52
|
const marketplace_ms = await import(`${module_path}/marketplace_module/index_ms.mjs`);
|
|
53
53
|
const stripe_ms = await import(`${module_path}/stripe_module/index_ms.mjs`);
|
|
54
|
-
const logs_ms = await import(`${module_path}/logs_module/index_ms.mjs`);
|
|
55
54
|
|
|
56
55
|
const ws_dashboard_msa = await import(`${module_path}/ws_dashboard_module/index_msa.mjs`);
|
|
57
56
|
const drive_msa = await import(`${module_path}/drive_module/index_msa.mjs`);
|
|
58
57
|
const email_msa = await import(`${module_path}/email_module/index_msa.mjs`);
|
|
59
58
|
const logs_msa = await import(`${module_path}/logs_module/index_msa.mjs`);
|
|
60
59
|
const ai_msa = await import(`${module_path}/ai_module/index_msa.mjs`);
|
|
61
|
-
// const {get_active_account_profile_info} = await import(`${module_path}/ws_dashboard_module/get_active_account_profile_info.mjs`);
|
|
62
60
|
|
|
63
61
|
export const update_account_info = async function (req, job_id, headers) {
|
|
64
62
|
const { uid } = req;
|
|
@@ -3268,7 +3266,7 @@ export const update_entity_account_profiles = async function (req, job_id, heade
|
|
|
3268
3266
|
|
|
3269
3267
|
case 'studio': {
|
|
3270
3268
|
//mini_app //ai_agent
|
|
3271
|
-
if (doc.studio_meta.miniApp) {
|
|
3269
|
+
if (doc.studio_meta.miniApp || doc.properties.menuType === 'ai_agent') {
|
|
3272
3270
|
doc.studio_meta.account_profiles = account_profiles;
|
|
3273
3271
|
break;
|
|
3274
3272
|
}
|