Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ All notable changes to this project are documented here. The format is based on

## [Unreleased]

### Removed

- **`'dash0'` dropped from the exported `ConsoleSourceResult['source']` union** (`@wave-av/console`).
Dash0 is retired from the WAVE stack, so the published type no longer advertises it as a valid
console source. This narrows the public typed surface: consumers switching on `result.source`
with a `'dash0'` arm or assigning the literal will now fail to typecheck. Type-level only, no
runtime change. The `@wave-av/adk` `AgentLogger` doc comment and the console module header were
updated to match (Sentry + OTLP ingest).

### Fixed

- **Codegen crashed on any OpenAPI 3.1 nullable union** (`codegen/parse_spec.py`).
Expand Down
2 changes: 1 addition & 1 deletion sdk-typescript/packages/adk/src/agents/AgentLogger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* AgentLogger — Structured log forwarding for WAVE agents
*
* Outputs JSON-structured logs to stdout and optionally forwards
* to the WAVE observability platform (Dash0/Sentry).
* to the WAVE observability platform (Sentry + OTLP ingest).
*/

export type LogLevel = 'debug' | 'info' | 'warn' | 'error';
Expand Down
3 changes: 1 addition & 2 deletions sdk-typescript/packages/console/src/console.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* GET /v1/wave-console/health
*
* Customer agents use this to query their own org's data across 15+
* vendor sources (Stripe, Sentry, Dash0, PostHog, Mux, LiveKit, Vercel,
* vendor sources (Stripe, Sentry, PostHog, Mux, LiveKit, Vercel,
* Twilio, etc.) with one call. The API gates by RBAC — agent's API key
* must match the org_id passed.
*
Expand Down Expand Up @@ -49,7 +49,6 @@ export interface ConsoleQueryInput {
export interface ConsoleSourceResult<T = unknown> {
source:
| 'argus'
| 'dash0'
| 'sentry'
Comment thread
yakimoto marked this conversation as resolved.
Comment thread
yakimoto marked this conversation as resolved.
Comment thread
yakimoto marked this conversation as resolved.
Comment thread
yakimoto marked this conversation as resolved.
| 'supabase'
| 'posthog'
Expand Down
Loading