diff --git a/CHANGELOG.md b/CHANGELOG.md index 283c9f3..2a0a03a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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`). diff --git a/sdk-typescript/packages/adk/src/agents/AgentLogger.ts b/sdk-typescript/packages/adk/src/agents/AgentLogger.ts index 53f6ed8..b76b912 100644 --- a/sdk-typescript/packages/adk/src/agents/AgentLogger.ts +++ b/sdk-typescript/packages/adk/src/agents/AgentLogger.ts @@ -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'; diff --git a/sdk-typescript/packages/console/src/console.ts b/sdk-typescript/packages/console/src/console.ts index 0969a84..34f5fac 100644 --- a/sdk-typescript/packages/console/src/console.ts +++ b/sdk-typescript/packages/console/src/console.ts @@ -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. * @@ -49,7 +49,6 @@ export interface ConsoleQueryInput { export interface ConsoleSourceResult { source: | 'argus' - | 'dash0' | 'sentry' | 'supabase' | 'posthog'