@automagik/omni 2.260422.14 → 2.260423.2
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/dist/index.js +5 -4
- package/dist/server/index.js +1285 -545
- package/package.json +10 -9
package/dist/index.js
CHANGED
|
@@ -35076,21 +35076,21 @@ class AgnoClient {
|
|
|
35076
35076
|
]);
|
|
35077
35077
|
const entries = [
|
|
35078
35078
|
...agents.map((a) => ({
|
|
35079
|
-
id: a.agent_id,
|
|
35079
|
+
id: a.id ?? a.agent_id,
|
|
35080
35080
|
name: a.name,
|
|
35081
35081
|
type: "agent",
|
|
35082
35082
|
description: a.description,
|
|
35083
35083
|
metadata: a.model ? { model: a.model } : undefined
|
|
35084
35084
|
})),
|
|
35085
35085
|
...teams.map((t) => ({
|
|
35086
|
-
id: t.team_id,
|
|
35086
|
+
id: t.id ?? t.team_id,
|
|
35087
35087
|
name: t.name,
|
|
35088
35088
|
type: "team",
|
|
35089
35089
|
description: t.description,
|
|
35090
35090
|
metadata: t.mode ? { mode: t.mode, memberCount: t.members?.length } : undefined
|
|
35091
35091
|
})),
|
|
35092
35092
|
...workflows.map((w) => ({
|
|
35093
|
-
id: w.workflow_id,
|
|
35093
|
+
id: w.id ?? w.workflow_id,
|
|
35094
35094
|
name: w.name,
|
|
35095
35095
|
type: "workflow",
|
|
35096
35096
|
description: w.description
|
|
@@ -113839,7 +113839,7 @@ import { fileURLToPath } from "url";
|
|
|
113839
113839
|
// package.json
|
|
113840
113840
|
var package_default = {
|
|
113841
113841
|
name: "@automagik/omni",
|
|
113842
|
-
version: "2.
|
|
113842
|
+
version: "2.260423.2",
|
|
113843
113843
|
description: "LLM-optimized CLI for Omni",
|
|
113844
113844
|
type: "module",
|
|
113845
113845
|
bin: {
|
|
@@ -113880,6 +113880,7 @@ var package_default = {
|
|
|
113880
113880
|
devDependencies: {
|
|
113881
113881
|
"@omni/api": "workspace:*",
|
|
113882
113882
|
"@omni/channel-discord": "workspace:*",
|
|
113883
|
+
"@omni/channel-gupshup": "workspace:*",
|
|
113883
113884
|
"@omni/channel-sdk": "workspace:*",
|
|
113884
113885
|
"@omni/channel-slack": "workspace:*",
|
|
113885
113886
|
"@omni/channel-telegram": "workspace:*",
|