eve 0.9.5 → 0.10.0

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.
@@ -15,7 +15,7 @@ A `Client` binds one host, auth policy, header policy, and stream reconnection b
15
15
  import { Client } from "eve/client";
16
16
 
17
17
  const client = new Client({
18
- host: "http://127.0.0.1:3000",
18
+ host: "http://127.0.0.1:2000",
19
19
  });
20
20
  ```
21
21
 
@@ -77,7 +77,7 @@ Pass a bare URL as the only argument and the UI connects to that server instead
77
77
  | Flag | Effect |
78
78
  | ----------------------------------- | ----------------------------------------------------------------------------------------- |
79
79
  | `--host <host>` | Host interface to bind |
80
- | `--port <port>` | Port to listen on (defaults to `$PORT`, then `3000`) |
80
+ | `--port <port>` | Port to listen on (defaults to `$PORT`, then `2000`) |
81
81
  | `-u, --url <url>` | Connect to an existing server URL instead of starting one |
82
82
  | `--no-ui` | Start the server without an interactive UI |
83
83
  | `--name <name>` | Title shown in the terminal UI (defaults to the app folder name) |
@@ -86,7 +86,7 @@ A handler-form session runs on the same durable runtime engine as any other sess
86
86
  In production the cron cadence is the only thing that fires a schedule, but waiting for the next tick gets old fast while iterating in `eve dev`. So the dev server mounts a one-shot dispatch route: fire a schedule by name, out of band, exactly once.
87
87
 
88
88
  ```sh
89
- curl -X POST http://localhost:3000/eve/v1/dev/schedules/heartbeat
89
+ curl -X POST http://localhost:2000/eve/v1/dev/schedules/heartbeat
90
90
  # -> { "scheduleId": "heartbeat", "sessionIds": ["..."] }
91
91
  ```
92
92
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eve",
3
- "version": "0.9.5",
3
+ "version": "0.10.0",
4
4
  "private": false,
5
5
  "description": "Filesystem-first framework for durable backend AI agents that run anywhere.",
6
6
  "keywords": [