Variable adapterCapabilityInspectionSchemaConst
adapterCapabilityInspectionSchema: ZodObject<
{
configuration: ZodObject<
{
status: ZodEnum<
{
invalid: "invalid";
missing: "missing";
not_selected: "not_selected";
signed_selected: "signed_selected";
},
>;
},
$strict,
>;
hook: ZodObject<
{
mode: ZodNullable<
ZodEnum<{ control: "control"; observe: "observe" }>,
>;
provider: ZodNullable<
ZodEnum<
{ "claude-code": "claude-code"; "gemini-cli": "gemini-cli" },
>,
>;
status: ZodEnum<
{
agent_mismatch: "agent_mismatch";
control: "control";
drifted: "drifted";
expired: "expired";
invalid: "invalid";
not_applicable: "not_applicable";
not_installed: "not_installed";
observe: "observe";
},
>;
},
$strict,
>;
runtime: ZodObject<
{
command: ZodNullable<ZodString>;
status: ZodEnum<
{
detected: "detected";
not_detected: "not_detected";
version_unavailable: "version_unavailable";
},
>;
version: ZodNullable<ZodString>;
},
$strict,
>;
},
$strict,
> = ...