Files
vibn-agent-runner/dist/vibn-events-ingest.d.ts
mawkone 419af40ca2 feat(agent): POST timeline events to vibn-frontend ingest API
- vibn-events-ingest.ts + emit() dual-write with session PATCH
- .env.example: VIBN_API_URL, AGENT_RUNNER_SECRET

Made-with: Cursor
2026-04-01 11:48:57 -07:00

7 lines
258 B
TypeScript

export interface IngestEventInput {
type: string;
payload?: Record<string, unknown>;
ts?: string;
}
export declare function ingestSessionEvents(vibnApiUrl: string, projectId: string, sessionId: string, events: IngestEventInput[]): Promise<void>;