@epilot/cli 0.1.55 → 0.1.56
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/README.md +3 -3
- package/definitions/ai-agents.json +971 -98
- package/definitions/integration-toolkit.json +557 -1
- package/dist/{ai-agents-HEDTH2EP.js → ai-agents-53M2KHPI.js} +1 -1
- package/dist/bin/epilot.js +7 -7
- package/dist/{chunk-44NTPQBR.js → chunk-SODHUMYQ.js} +13 -4
- package/dist/{completion-4HOIJNFX.js → completion-YKNRP3BS.js} +1 -1
- package/dist/{upgrade-SJPZVQ2P.js → upgrade-KITITKDI.js} +1 -1
- package/package.json +1 -1
|
@@ -39,9 +39,9 @@ var API_LIST = [
|
|
|
39
39
|
{
|
|
40
40
|
apiName: "aiAgents",
|
|
41
41
|
kebabName: "ai-agents",
|
|
42
|
-
title: "AI Agents API
|
|
42
|
+
title: "AI Agents API",
|
|
43
43
|
serverUrl: "https://ai-agents.sls.epilot.io",
|
|
44
|
-
operationCount:
|
|
44
|
+
operationCount: 19,
|
|
45
45
|
operationIds: [
|
|
46
46
|
"listAgents",
|
|
47
47
|
"createAgent",
|
|
@@ -49,12 +49,19 @@ var API_LIST = [
|
|
|
49
49
|
"updateAgentById",
|
|
50
50
|
"deleteAgentById",
|
|
51
51
|
"executeAgent",
|
|
52
|
+
"executeAgentStream",
|
|
52
53
|
"listExecutions",
|
|
53
54
|
"getExecution",
|
|
54
55
|
"cancelExecution",
|
|
55
56
|
"getExecutionTrace",
|
|
56
57
|
"approveExecution",
|
|
57
|
-
"rejectExecution"
|
|
58
|
+
"rejectExecution",
|
|
59
|
+
"streamExecution",
|
|
60
|
+
"chat",
|
|
61
|
+
"listConversations",
|
|
62
|
+
"getConversation",
|
|
63
|
+
"deleteConversation",
|
|
64
|
+
"submitConversationFeedback"
|
|
58
65
|
]
|
|
59
66
|
},
|
|
60
67
|
{
|
|
@@ -753,7 +760,7 @@ var API_LIST = [
|
|
|
753
760
|
kebabName: "integration-toolkit",
|
|
754
761
|
title: "Integration Toolkit API",
|
|
755
762
|
serverUrl: "https://integration-toolkit.sls.epilot.io",
|
|
756
|
-
operationCount:
|
|
763
|
+
operationCount: 53,
|
|
757
764
|
operationIds: [
|
|
758
765
|
"acknowledgeTracking",
|
|
759
766
|
"triggerErp",
|
|
@@ -780,6 +787,8 @@ var API_LIST = [
|
|
|
780
787
|
"getIntegrationV2",
|
|
781
788
|
"updateIntegrationV2",
|
|
782
789
|
"deleteIntegrationV2",
|
|
790
|
+
"listNotificationHistory",
|
|
791
|
+
"testSendNotification",
|
|
783
792
|
"getSecureProxyWhitelist",
|
|
784
793
|
"updateSecureProxyWhitelist",
|
|
785
794
|
"listSecureProxyWhitelistHistory",
|
|
@@ -72,7 +72,7 @@ ${GREEN}${BOLD}Upgraded to @epilot/cli@${latest}${RESET}
|
|
|
72
72
|
}
|
|
73
73
|
});
|
|
74
74
|
var getCurrentVersion = () => {
|
|
75
|
-
if (true) return "0.1.
|
|
75
|
+
if (true) return "0.1.56";
|
|
76
76
|
try {
|
|
77
77
|
const output = execSync("npm ls -g @epilot/cli --depth=0 --json 2>/dev/null", {
|
|
78
78
|
encoding: "utf-8",
|