@xuda.io/ai_module 1.1.5652 → 1.1.5654
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 +1600 -249
- package/index_ms.mjs +20 -0
- package/index_msa.mjs +20 -0
- package/package.json +1 -1
package/index_ms.mjs
CHANGED
|
@@ -109,6 +109,26 @@ export const get_apps = async function (...args) {
|
|
|
109
109
|
return await broker.send_to_queue("get_apps", ...args);
|
|
110
110
|
};
|
|
111
111
|
|
|
112
|
+
export const log_ai_agent_activity = async function (...args) {
|
|
113
|
+
return await broker.send_to_queue("log_ai_agent_activity", ...args);
|
|
114
|
+
};
|
|
115
|
+
|
|
116
|
+
export const record_studio_agent_edit = async function (...args) {
|
|
117
|
+
return await broker.send_to_queue("record_studio_agent_edit", ...args);
|
|
118
|
+
};
|
|
119
|
+
|
|
120
|
+
export const get_ai_agent_activity = async function (...args) {
|
|
121
|
+
return await broker.send_to_queue("get_ai_agent_activity", ...args);
|
|
122
|
+
};
|
|
123
|
+
|
|
124
|
+
export const log_ai_chat_activity = async function (...args) {
|
|
125
|
+
return await broker.send_to_queue("log_ai_chat_activity", ...args);
|
|
126
|
+
};
|
|
127
|
+
|
|
128
|
+
export const get_ai_chat_activity = async function (...args) {
|
|
129
|
+
return await broker.send_to_queue("get_ai_chat_activity", ...args);
|
|
130
|
+
};
|
|
131
|
+
|
|
112
132
|
export const create_ai_agent = async function (...args) {
|
|
113
133
|
return await broker.send_to_queue("create_ai_agent", ...args);
|
|
114
134
|
};
|
package/index_msa.mjs
CHANGED
|
@@ -109,6 +109,26 @@ export const get_apps = function (...args) {
|
|
|
109
109
|
broker.send_to_queue_async("get_apps", ...args);
|
|
110
110
|
};
|
|
111
111
|
|
|
112
|
+
export const log_ai_agent_activity = function (...args) {
|
|
113
|
+
broker.send_to_queue_async("log_ai_agent_activity", ...args);
|
|
114
|
+
};
|
|
115
|
+
|
|
116
|
+
export const record_studio_agent_edit = function (...args) {
|
|
117
|
+
broker.send_to_queue_async("record_studio_agent_edit", ...args);
|
|
118
|
+
};
|
|
119
|
+
|
|
120
|
+
export const get_ai_agent_activity = function (...args) {
|
|
121
|
+
broker.send_to_queue_async("get_ai_agent_activity", ...args);
|
|
122
|
+
};
|
|
123
|
+
|
|
124
|
+
export const log_ai_chat_activity = function (...args) {
|
|
125
|
+
broker.send_to_queue_async("log_ai_chat_activity", ...args);
|
|
126
|
+
};
|
|
127
|
+
|
|
128
|
+
export const get_ai_chat_activity = function (...args) {
|
|
129
|
+
broker.send_to_queue_async("get_ai_chat_activity", ...args);
|
|
130
|
+
};
|
|
131
|
+
|
|
112
132
|
export const create_ai_agent = function (...args) {
|
|
113
133
|
broker.send_to_queue_async("create_ai_agent", ...args);
|
|
114
134
|
};
|