Type Alias: InsertTurn
Makaio Framework / services-core / InsertTurn
Type Alias: InsertTurn
Section titled “Type Alias: InsertTurn”InsertTurn = typeof
turns.$inferInsert
Defined in: ../../../packages/services/core/src/session/turns/schema.ts:89
Type for inserting a new turn.
Type Composition
Section titled “Type Composition”InsertTurntypeof turns.$inferInsert
Resolved Shape
Section titled “Resolved Shape”type InsertTurn = { sessionId: string; turnId: string; status: 'error' | 'completed' | 'active'; startedAt: number; turnNumber: number; error?: string | null | undefined; usage?: string | null | undefined; completedAt?: number | null | undefined;};