feat(hooks): add cleanup fields to HookDispatchers type

This commit is contained in:
Trevin Chow 2026-01-29 09:18:18 -08:00 committed by Trevin Chow
parent b1dcfa0651
commit d60f9b920f

View File

@ -47,6 +47,8 @@ type HookDispatchers = {
thinking?: string; thinking?: string;
timeoutSeconds?: number; timeoutSeconds?: number;
allowUnsafeExternalContent?: boolean; allowUnsafeExternalContent?: boolean;
cleanup?: "delete" | "keep";
cleanupDelayMinutes?: number;
}) => string; }) => string;
}; };