@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 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
- //profile_docs.docs.length === 1 &&
3258
- // return empty state if no custom profile defined by user
3259
- return {
3260
- code: 1,
3261
- data: {
3262
- docs: [],
3263
- total_docs: 0,
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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xuda.io/account_module",
3
- "version": "1.2.2254",
3
+ "version": "1.2.2256",
4
4
  "description": "Xuda Account Server Module",
5
5
  "main": "index.mjs",
6
6
  "dependencies": {