Skip to content

Type Alias: SessionDiscovered

Makaio Framework


Makaio Framework / contracts / SessionDiscovered

SessionDiscovered = z.infer<typeof SessionDiscoveredSchema>

Defined in: ../../../packages/contracts/src/adapter/schemas/session-discovered.ts:39

  • SessionDiscovered
    • z.infer<typeof SessionDiscoveredSchema>
      • typeof SessionDiscoveredSchema
type SessionDiscovered = {
adapterId: string;
adapterName: string;
model: string | null;
cwd: string | null;
adapterSessionId: string;
title?: string | undefined;
logFilePath?: string | null | undefined;
startedAt?: number | undefined;
kind: 'fork' | 'root' | 'subagent' | 'compress';
parentAdapterSessionId: string | null;
forkPointMessageId: string | null;
};