comisai 1.0.17 → 1.0.18
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/node_modules/@comis/agent/package.json +1 -1
- package/node_modules/@comis/channels/package.json +1 -1
- package/node_modules/@comis/cli/dist/wizard/steps/01-detect-existing.js +2 -4
- package/node_modules/@comis/cli/package.json +1 -1
- package/node_modules/@comis/core/package.json +1 -1
- package/node_modules/@comis/daemon/package.json +1 -1
- package/node_modules/@comis/gateway/package.json +1 -1
- package/node_modules/@comis/infra/package.json +1 -1
- package/node_modules/@comis/memory/package.json +1 -1
- package/node_modules/@comis/scheduler/package.json +1 -1
- package/node_modules/@comis/shared/package.json +1 -1
- package/node_modules/@comis/skills/package.json +1 -1
- package/node_modules/@comis/web/package.json +1 -1
- package/package.json +13 -13
|
@@ -68,16 +68,14 @@ function extractStateFromConfig(raw, envRecord = {}) {
|
|
|
68
68
|
bindMode = "custom";
|
|
69
69
|
customIp = host;
|
|
70
70
|
}
|
|
71
|
-
// Recover gateway.web.enabled (default true) when reloading existing config
|
|
72
|
-
const webRaw = gatewayRaw["web"];
|
|
73
|
-
const webEnabled = webRaw && typeof webRaw["enabled"] === "boolean" ? webRaw["enabled"] : true;
|
|
74
71
|
if (port !== undefined) {
|
|
72
|
+
const webRaw = gatewayRaw["web"];
|
|
75
73
|
gateway = {
|
|
76
74
|
port,
|
|
77
75
|
bindMode,
|
|
78
76
|
...(customIp !== undefined && { customIp }),
|
|
79
77
|
authMethod: "token",
|
|
80
|
-
webEnabled,
|
|
78
|
+
webEnabled: typeof webRaw?.["enabled"] === "boolean" ? webRaw["enabled"] : true,
|
|
81
79
|
};
|
|
82
80
|
}
|
|
83
81
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "comisai",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.18",
|
|
4
4
|
"author": "Moshe Anconina",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"description": "Security-first AI agent platform — connects AI agents to Discord, Telegram, Slack, WhatsApp, and more",
|
|
@@ -116,18 +116,18 @@
|
|
|
116
116
|
"@comis/web"
|
|
117
117
|
],
|
|
118
118
|
"dependencies": {
|
|
119
|
-
"@comis/shared": "1.0.
|
|
120
|
-
"@comis/core": "1.0.
|
|
121
|
-
"@comis/infra": "1.0.
|
|
122
|
-
"@comis/memory": "1.0.
|
|
123
|
-
"@comis/gateway": "1.0.
|
|
124
|
-
"@comis/skills": "1.0.
|
|
125
|
-
"@comis/scheduler": "1.0.
|
|
126
|
-
"@comis/agent": "1.0.
|
|
127
|
-
"@comis/channels": "1.0.
|
|
128
|
-
"@comis/cli": "1.0.
|
|
129
|
-
"@comis/daemon": "1.0.
|
|
130
|
-
"@comis/web": "1.0.
|
|
119
|
+
"@comis/shared": "1.0.18",
|
|
120
|
+
"@comis/core": "1.0.18",
|
|
121
|
+
"@comis/infra": "1.0.18",
|
|
122
|
+
"@comis/memory": "1.0.18",
|
|
123
|
+
"@comis/gateway": "1.0.18",
|
|
124
|
+
"@comis/skills": "1.0.18",
|
|
125
|
+
"@comis/scheduler": "1.0.18",
|
|
126
|
+
"@comis/agent": "1.0.18",
|
|
127
|
+
"@comis/channels": "1.0.18",
|
|
128
|
+
"@comis/cli": "1.0.18",
|
|
129
|
+
"@comis/daemon": "1.0.18",
|
|
130
|
+
"@comis/web": "1.0.18",
|
|
131
131
|
"@agentclientprotocol/sdk": "^0.15.0",
|
|
132
132
|
"@clack/core": "^1.1.0",
|
|
133
133
|
"@clack/prompts": "^1.1.0",
|