@alfe.ai/gateway 0.0.16 → 0.0.17
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/health.js +1 -1
- package/package.json +3 -3
package/dist/health.js
CHANGED
|
@@ -3769,7 +3769,7 @@ var ReconciliationEngine = class {
|
|
|
3769
3769
|
});
|
|
3770
3770
|
return;
|
|
3771
3771
|
}
|
|
3772
|
-
if (local.version !== desired.version) {
|
|
3772
|
+
if (local.version !== desired.version && desired.version !== "" && local.version !== "unknown") {
|
|
3773
3773
|
log$2.info(`Upgrading ${id}: ${local.version} → ${desired.version}`);
|
|
3774
3774
|
try {
|
|
3775
3775
|
await this.manager.deactivate(id);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfe.ai/gateway",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.17",
|
|
4
4
|
"description": "Alfe local gateway daemon — persistent control plane for agent integrations",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"smol-toml": ">=1.6.1",
|
|
24
24
|
"ws": "^8.18.0",
|
|
25
25
|
"@alfe.ai/ai-proxy-local": "^0.0.4",
|
|
26
|
-
"@alfe.ai/config": "^0.0.4",
|
|
27
26
|
"@alfe.ai/doctor": "^0.0.5",
|
|
28
|
-
"@alfe.ai/integrations": "^0.0.
|
|
27
|
+
"@alfe.ai/integrations": "^0.0.10",
|
|
28
|
+
"@alfe.ai/config": "^0.0.4"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/ws": "^8.5.13",
|