Type Alias: AwaitSubagentResponse
Makaio Framework / contracts / AwaitSubagentResponse
Type Alias: AwaitSubagentResponse
Section titled “Type Alias: AwaitSubagentResponse”AwaitSubagentResponse =
z.infer<typeofAwaitSubagentResponseSchema>
Defined in: ../../../packages/contracts/src/subagent/schemas.ts:211
Type Composition
Section titled “Type Composition”AwaitSubagentResponsez.infer<typeof AwaitSubagentResponseSchema>typeof AwaitSubagentResponseSchema
Resolved Shape
Section titled “Resolved Shape”type AwaitSubagentResponse = { status: 'completed' | 'cancelled' | 'timeout' | 'failed' | 'waiting_input'; result?: string | undefined; error?: string | undefined; pendingRequest?: { messageId: string; question: string; context?: string | undefined; } | undefined;};