Skip to content

Variable: SupervisorSessionStatusSchema

Makaio Framework


Makaio Framework / contracts / SupervisorSessionStatusSchema

const SupervisorSessionStatusSchema: ZodEnum<{ exited: "exited"; running: "running"; stopped: "stopped"; unknown: "unknown"; }>

Defined in: ../../../packages/contracts/src/native-session-supervisor/schemas.ts:28

Lifecycle status of a supervised runtime process.

  • 'running' — the process is currently active.
  • 'stopped' — the process was explicitly stopped via a stop request.
  • 'exited' — the process exited on its own (zero or non-zero exit code).
  • 'unknown' — the supervisor has no current status information.