Skip to content

Type Alias: StatusResponse

Makaio Framework


Makaio Framework / services-core / StatusResponse

StatusResponse = z.infer<typeof StatusResponseSchema>

Defined in: ../../../packages/services/core/src/execution-target/container-schemas.ts:122

  • StatusResponse
    • z.infer<typeof StatusResponseSchema>
      • typeof StatusResponseSchema
type StatusResponse = {
state: 'created' | 'running' | 'stopped' | 'destroyed';
sessionId: string;
worktreePath?: string | undefined;
};