Skip to content

Type Alias: ClientInstallCompleted

Makaio Framework


Makaio Framework / contracts / ClientInstallCompleted

ClientInstallCompleted = z.infer<typeof ClientInstallCompletedSchema>

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

type ClientInstallCompleted = {
jobId: string;
clientId: string;
strategy: 'manifest-bucket' | 'npm' | 'github-release';
status: 'success' | 'error';
activeVersion: string | null;
version?: string | undefined;
installPath?: string | undefined;
error?: { message: string; code?: string | undefined; } | undefined;
metadata?: Record<string, unknown> | undefined;
};