Skip to content

Variable: ClientUninstallSchema

Makaio Framework


Makaio Framework / contracts/client / ClientUninstallSchema

const ClientUninstallSchema: object

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

Request and response schemas for client.uninstall.

Removes a specific installed version of a managed client binary. If the removed version was active, the active pointer is cleared to null — no automatic replacement is made. Callers must explicitly call client.setActive to promote another installed version.

request: ZodObject<{ clientId: ZodString; version: ZodString; }, $strip>

response: ZodObject<{ activeVersion: ZodNullable<ZodString>; clientId: ZodString; removedVersion: ZodString; }, $strip>