Skip to content

Type Alias: ForkChildInfo

Makaio Framework


Makaio Framework / contracts / ForkChildInfo

ForkChildInfo = z.infer<typeof ForkChildInfoSchema>

Defined in: ../../../packages/contracts/src/session/schemas/fork-child-info.ts:25

  • ForkChildInfo
    • z.infer<typeof ForkChildInfoSchema>
      • typeof ForkChildInfoSchema
type ForkChildInfo = {
sessionId: string;
title: string | null;
forkPointMessageId: string | null;
branchKind: 'fork' | 'subagent' | 'compress' | 'branch' | 'aside' | 'rewrite' | 'coordinator' | null;
messageCount: number;
hasChildren: boolean;
spawningToolCallId?: string | undefined;
};