Variable InterceptHandlerSchemaConst
InterceptHandlerSchema: ZodObject<
{ handle_response: ZodOptional<ZodArray<ZodAny, "many">> } & {
handler: ZodLiteral<"intercept">;
},
"strip",
ZodTypeAny,
{ handle_response?: any[]; handler: "intercept" },
{ handle_response?: any[]; handler: "intercept" },
> = ...
Intercept handler schema - response interception
Intercepts responses from upstream handlers to modify or replace them.