@supen-ai/cli 1.4.8 → 1.4.9
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/daemon/dist/agent-sdk/drivers/codex-app-server-driver.d.ts.map +1 -1
- package/daemon/dist/agent-sdk/drivers/codex-app-server-driver.js +5 -236
- package/daemon/dist/agent-sdk/drivers/codex-app-server-driver.js.map +1 -1
- package/daemon/dist/core/codex-app-server-host.d.ts +39 -0
- package/daemon/dist/core/codex-app-server-host.d.ts.map +1 -0
- package/daemon/dist/core/codex-app-server-host.js +240 -0
- package/daemon/dist/core/codex-app-server-host.js.map +1 -0
- package/daemon/dist/core/codex-subscription.d.ts.map +1 -1
- package/daemon/dist/core/codex-subscription.js +13 -125
- package/daemon/dist/core/codex-subscription.js.map +1 -1
- package/daemon/dist/core/gateway.d.ts.map +1 -1
- package/daemon/dist/core/gateway.js +30 -4
- package/daemon/dist/core/gateway.js.map +1 -1
- package/daemon/dist/http/routes/automations.d.ts.map +1 -1
- package/daemon/dist/http/routes/automations.js +19 -2
- package/daemon/dist/http/routes/automations.js.map +1 -1
- package/daemon/dist/http/routes/system.d.ts +1 -0
- package/daemon/dist/http/routes/system.d.ts.map +1 -1
- package/daemon/dist/http/routes/system.js +82 -153
- package/daemon/dist/http/routes/system.js.map +1 -1
- package/daemon/package.json +1 -1
- package/dist/computer.js +1 -1
- package/package.json +1 -1
package/daemon/package.json
CHANGED
package/dist/computer.js
CHANGED
|
@@ -11,7 +11,7 @@ import { hostOsIdentityEnv } from './os-identity.js';
|
|
|
11
11
|
import { createTransport, resolveTransportConfig } from './transport/index.js';
|
|
12
12
|
const DEFAULT_LOCAL_GATEWAY_URL = 'http://127.0.0.1:2755';
|
|
13
13
|
const DEFAULT_PRODUCTION_HUB_URL = 'https://hub.supen.ai';
|
|
14
|
-
const HOST_DAEMON_PACKAGE_SPEC = '@supen-ai/cli@1.4.
|
|
14
|
+
const HOST_DAEMON_PACKAGE_SPEC = '@supen-ai/cli@1.4.9';
|
|
15
15
|
const DEFAULT_NPM_REGISTRY = 'https://registry.npmjs.org';
|
|
16
16
|
function normalizeGatewayUrl(raw) {
|
|
17
17
|
const trimmed = (raw || '').trim();
|