zero-ai 1.0.82 → 1.0.84
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/.r2mo/task/2026-03-05/2026-03-05.10-21-33-TASK@ai ex-api /345/221/275/344/273/244/346/225/264/346/224/271.md" +38 -0
- package/.r2mo/task/2026-03-05/2026-03-05.11-08-44-TASK@ai ex-api BUG.md +29 -0
- package/.r2mo/task/task-001.md +308 -2
- package/ExCommand.md +674 -0
- package/package.json +1 -1
- package/src/commander/ex-menu.json +6 -0
- package/src/commander-ai/fn.ex.api.js +194 -96
- package/src/commander-ai/fn.ex.menu.js +259 -0
- package/src/commander-ai/fn.source.front.js +8 -0
- package/src/commander-ai/fn.source.sync.js +1 -0
- package/src/commander-ai/index.js +2 -0
|
@@ -12,6 +12,7 @@ const executeExPerm = require('./fn.ex.perm');
|
|
|
12
12
|
const executeExApi = require('./fn.ex.api');
|
|
13
13
|
const executeExCrud = require('./fn.ex.crud');
|
|
14
14
|
const executeExApp = require('./fn.ex.app');
|
|
15
|
+
const executeExMenu = require('./fn.ex.menu');
|
|
15
16
|
const exported = {
|
|
16
17
|
executeUuid, // ai uuid
|
|
17
18
|
executeString, // ai str
|
|
@@ -29,6 +30,7 @@ const exported = {
|
|
|
29
30
|
executeExApi, // ai ex-api
|
|
30
31
|
executeExCrud, // ai ex-crud
|
|
31
32
|
executeExApp, // ai ex-app
|
|
33
|
+
executeExMenu, // ai ex-menu
|
|
32
34
|
};
|
|
33
35
|
module.exports = exported;
|
|
34
36
|
/**
|