eve 0.9.5 → 0.9.8
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/CHANGELOG.md +0 -515
- package/dist/src/cli/dev/tui/terminal-renderer.js +2 -2
- package/dist/src/cli/run.d.ts +1 -1
- package/dist/src/cli/run.js +1 -1
- package/dist/src/compiled/.vendor-stamp.json +1 -1
- package/dist/src/evals/context.js +1 -1
- package/dist/src/evals/types.d.ts +2 -0
- package/dist/src/internal/application/package.js +1 -1
- package/dist/src/internal/nitro/host/ports.d.ts +1 -1
- package/dist/src/internal/nitro/host/ports.js +1 -1
- package/dist/src/internal/nitro/host/start-development-server.js +1 -1
- package/dist/src/public/definitions/connections/openapi.d.ts +7 -5
- package/dist/src/runtime/connections/openapi-client.d.ts +2 -2
- package/dist/src/runtime/connections/openapi-client.js +1 -1
- package/dist/src/runtime/connections/openapi-security.d.ts +2 -1
- package/dist/src/runtime/connections/openapi-security.js +1 -1
- package/dist/src/runtime/connections/openapi-spec.d.ts +4 -6
- package/dist/src/runtime/connections/openapi-spec.js +1 -1
- package/dist/src/runtime/prompt/connections.js +1 -1
- package/dist/src/setup/scaffold/create/project.js +1 -1
- package/docs/README.md +1 -1
- package/docs/concepts/sessions-runs-and-streaming.md +5 -5
- package/docs/connections.mdx +5 -5
- package/docs/getting-started.mdx +4 -9
- package/docs/guides/client/messages.mdx +1 -1
- package/docs/guides/client/output-schema.mdx +1 -1
- package/docs/guides/client/overview.mdx +1 -1
- package/docs/reference/cli.md +1 -1
- package/docs/schedules.mdx +1 -1
- package/package.json +1 -1
package/docs/reference/cli.md
CHANGED
|
@@ -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 `
|
|
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) |
|
package/docs/schedules.mdx
CHANGED
|
@@ -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:
|
|
89
|
+
curl -X POST http://localhost:2000/eve/v1/dev/schedules/heartbeat
|
|
90
90
|
# -> { "scheduleId": "heartbeat", "sessionIds": ["..."] }
|
|
91
91
|
```
|
|
92
92
|
|