@xuda.io/account_module 1.2.2254 → 1.2.2256
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 +10 -11
- package/index_ms.mjs +4 -4
- package/index_msa.mjs +4 -0
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -3253,17 +3253,16 @@ export const get_account_profiles = async function (req) {
|
|
|
3253
3253
|
}
|
|
3254
3254
|
}
|
|
3255
3255
|
|
|
3256
|
-
if (filter_type === 'all' && !profile_id && !search && active_tab && profile_docs.docs[0].main) {
|
|
3257
|
-
|
|
3258
|
-
|
|
3259
|
-
|
|
3260
|
-
|
|
3261
|
-
|
|
3262
|
-
|
|
3263
|
-
|
|
3264
|
-
|
|
3265
|
-
|
|
3266
|
-
}
|
|
3256
|
+
// if (filter_type === 'all' && !profile_id && !search && active_tab && profile_docs.docs.length === 1 && profile_docs.docs[0].main) {
|
|
3257
|
+
// // return empty state if no custom profile defined by user
|
|
3258
|
+
// return {
|
|
3259
|
+
// code: 1,
|
|
3260
|
+
// data: {
|
|
3261
|
+
// docs: [],
|
|
3262
|
+
// total_docs: 0,
|
|
3263
|
+
// },
|
|
3264
|
+
// };
|
|
3265
|
+
// }
|
|
3267
3266
|
|
|
3268
3267
|
return {
|
|
3269
3268
|
code: 1,
|
package/index_ms.mjs
CHANGED
|
@@ -65,14 +65,14 @@ export const get_active_account_profile_info = async function (...args) {
|
|
|
65
65
|
return await broker.send_to_queue("get_active_account_profile_info", ...args);
|
|
66
66
|
};
|
|
67
67
|
|
|
68
|
-
export const get_account_name = async function (...args) {
|
|
69
|
-
return await broker.send_to_queue("get_account_name", ...args);
|
|
70
|
-
};
|
|
71
|
-
|
|
72
68
|
export const get_account_profile_group_member_uids = async function (...args) {
|
|
73
69
|
return await broker.send_to_queue("get_account_profile_group_member_uids", ...args);
|
|
74
70
|
};
|
|
75
71
|
|
|
72
|
+
export const get_account_name = async function (...args) {
|
|
73
|
+
return await broker.send_to_queue("get_account_name", ...args);
|
|
74
|
+
};
|
|
75
|
+
|
|
76
76
|
export const account_validate_username = async function (...args) {
|
|
77
77
|
return await broker.send_to_queue("account_validate_username", ...args);
|
|
78
78
|
};
|
package/index_msa.mjs
CHANGED
|
@@ -65,6 +65,10 @@ export const get_active_account_profile_info = function (...args) {
|
|
|
65
65
|
broker.send_to_queue_async("get_active_account_profile_info", ...args);
|
|
66
66
|
};
|
|
67
67
|
|
|
68
|
+
export const get_account_profile_group_member_uids = function (...args) {
|
|
69
|
+
broker.send_to_queue_async("get_account_profile_group_member_uids", ...args);
|
|
70
|
+
};
|
|
71
|
+
|
|
68
72
|
export const get_account_name = function (...args) {
|
|
69
73
|
broker.send_to_queue_async("get_account_name", ...args);
|
|
70
74
|
};
|