Skip to content

Variable: InstallStageSchema

Makaio Framework


Makaio Framework / contracts/client / InstallStageSchema

const InstallStageSchema: ZodEnum<{ activating: "activating"; downloading: "downloading"; extracting: "extracting"; installing: "installing"; post-install: "post-install"; resolving: "resolving"; verifying: "verifying"; }>

Defined in: ../../../packages/contracts/src/client/binary-management.ts:222

Install pipeline stage identifiers, ordered by progression.

  • 'resolving' — determining the concrete version to install.
  • 'downloading' — fetching the binary archive from upstream.
  • 'verifying' — validating checksums, signatures, or installed binary version.
  • 'extracting' — unpacking the downloaded archive.
  • 'installing' — writing the binary to its final install path.
  • 'post-install' — running post-install hooks.
  • 'activating' — marking the installed version as active.