@xuda.io/account_module 1.2.2249 → 1.2.2250
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_ms.mjs +4 -4
- package/index_msa.mjs +4 -4
- package/package.json +1 -1
package/index_ms.mjs
CHANGED
|
@@ -25,10 +25,6 @@ export const update_account_preferences = async function (...args) {
|
|
|
25
25
|
return await broker.send_to_queue("update_account_preferences", ...args);
|
|
26
26
|
};
|
|
27
27
|
|
|
28
|
-
export const did_you_know_tips = async function (...args) {
|
|
29
|
-
return await broker.send_to_queue("did_you_know_tips", ...args);
|
|
30
|
-
};
|
|
31
|
-
|
|
32
28
|
export const save_admin_presets = async function (...args) {
|
|
33
29
|
return await broker.send_to_queue("save_admin_presets", ...args);
|
|
34
30
|
};
|
|
@@ -61,6 +57,10 @@ export const get_account_info = async function (...args) {
|
|
|
61
57
|
return await broker.send_to_queue("get_account_info", ...args);
|
|
62
58
|
};
|
|
63
59
|
|
|
60
|
+
export const did_you_know_tips = async function (...args) {
|
|
61
|
+
return await broker.send_to_queue("did_you_know_tips", ...args);
|
|
62
|
+
};
|
|
63
|
+
|
|
64
64
|
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
|
};
|
package/index_msa.mjs
CHANGED
|
@@ -25,10 +25,6 @@ export const update_account_preferences = function (...args) {
|
|
|
25
25
|
broker.send_to_queue_async("update_account_preferences", ...args);
|
|
26
26
|
};
|
|
27
27
|
|
|
28
|
-
export const did_you_know_tips = function (...args) {
|
|
29
|
-
broker.send_to_queue_async("did_you_know_tips", ...args);
|
|
30
|
-
};
|
|
31
|
-
|
|
32
28
|
export const save_admin_presets = function (...args) {
|
|
33
29
|
broker.send_to_queue_async("save_admin_presets", ...args);
|
|
34
30
|
};
|
|
@@ -61,6 +57,10 @@ export const get_account_info = function (...args) {
|
|
|
61
57
|
broker.send_to_queue_async("get_account_info", ...args);
|
|
62
58
|
};
|
|
63
59
|
|
|
60
|
+
export const did_you_know_tips = function (...args) {
|
|
61
|
+
broker.send_to_queue_async("did_you_know_tips", ...args);
|
|
62
|
+
};
|
|
63
|
+
|
|
64
64
|
export const get_active_account_profile_info = function (...args) {
|
|
65
65
|
broker.send_to_queue_async("get_active_account_profile_info", ...args);
|
|
66
66
|
};
|