Type Alias: ClientInstallProgress
Makaio Framework / contracts / ClientInstallProgress
Type Alias: ClientInstallProgress
Section titled “Type Alias: ClientInstallProgress”ClientInstallProgress =
z.infer<typeofClientInstallProgressSchema>
Defined in: ../../../packages/contracts/src/client/binary-management.ts:270
Type Composition
Section titled “Type Composition”ClientInstallProgressz.infer<typeof ClientInstallProgressSchema>typeof ClientInstallProgressSchema
Resolved Shape
Section titled “Resolved Shape”type ClientInstallProgress = { jobId: string; clientId: string; strategy: 'manifest-bucket' | 'npm' | 'github-release'; stage: 'resolving' | 'downloading' | 'verifying' | 'extracting' | 'installing' | 'post-install' | 'activating'; progress: number | null; version?: string | undefined; installPath?: string | undefined; activeAfterCompletion?: boolean | undefined; metadata?: Record<string, unknown> | undefined;};