@xuda.io/account_module 1.2.2017 → 1.2.2019
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 +3 -1
- package/package.json +1 -1
package/index_ms.mjs
CHANGED
|
@@ -44,12 +44,14 @@ const send_to_queue =async function(ms_method, ...args) {
|
|
|
44
44
|
JSON.stringify({
|
|
45
45
|
ms_method,
|
|
46
46
|
data: args,
|
|
47
|
-
cb:`_account_module-${global.module_in}_ch
|
|
47
|
+
cb:`_account_module-${global.module_in}_ch`,
|
|
48
|
+
queue_id
|
|
48
49
|
})
|
|
49
50
|
)
|
|
50
51
|
);
|
|
51
52
|
|
|
52
53
|
})
|
|
54
|
+
return queue[queue_id]
|
|
53
55
|
};
|
|
54
56
|
|
|
55
57
|
// You must define this somewhere before using these wrappers:
|