Type Alias: InsertAdapterSession
Makaio Framework / services-core / InsertAdapterSession
Type Alias: InsertAdapterSession
Section titled “Type Alias: InsertAdapterSession”InsertAdapterSession = typeof
adapterSessions.$inferInsert
Defined in: ../../../packages/services/core/src/session/adapter-sessions/schema.ts:111
Type for inserting a new adapter session.
Type Composition
Section titled “Type Composition”InsertAdapterSessiontypeof adapterSessions.$inferInsert
Resolved Shape
Section titled “Resolved Shape”type InsertAdapterSession = { adapterName: string; adapterSessionId: string; startedAt: number; discoveredAt: number; sessionId?: string | null | undefined; model?: string | null | undefined; cwd?: string | null | undefined; kind?: 'fork' | 'root' | 'subagent' | 'compress' | undefined; parentAdapterSessionId?: string | null | undefined; forkPointMessageId?: string | null | undefined; status?: 'discovered' | 'imported' | 'live' | 'tracking' | undefined; logFilePath?: string | null | undefined;};