Files
vibn-api/dist/vibn-events-ingest.d.ts
2026-05-17 12:43:53 -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>;