@xuda.io/ai_module 1.1.5629 → 1.1.5631

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 CHANGED
@@ -21,6 +21,10 @@ export const generate_site_draft = async function (...args) {
21
21
  return await broker.send_to_queue("generate_site_draft", ...args);
22
22
  };
23
23
 
24
+ export const classify_external_app_scan = async function (...args) {
25
+ return await broker.send_to_queue("classify_external_app_scan", ...args);
26
+ };
27
+
24
28
  export const execute_codex_request = async function (...args) {
25
29
  return await broker.send_to_queue("execute_codex_request", ...args);
26
30
  };
package/index_msa.mjs CHANGED
@@ -21,6 +21,10 @@ export const generate_site_draft = function (...args) {
21
21
  broker.send_to_queue_async("generate_site_draft", ...args);
22
22
  };
23
23
 
24
+ export const classify_external_app_scan = function (...args) {
25
+ broker.send_to_queue_async("classify_external_app_scan", ...args);
26
+ };
27
+
24
28
  export const execute_codex_request = function (...args) {
25
29
  broker.send_to_queue_async("execute_codex_request", ...args);
26
30
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xuda.io/ai_module",
3
- "version": "1.1.5629",
3
+ "version": "1.1.5631",
4
4
  "description": "Xuda AI Module",
5
5
  "main": "index.mjs",
6
6
  "type": "module",