Variable ControllerErrorSchemaConst
ControllerErrorSchema: ZodObject<
{
success: ZodLiteral<false>;
error: ZodUnion<
readonly [
ZodLiteral<"INVALID_TRANSITION">,
ZodLiteral<"INVALID_STATE">,
ZodLiteral<"NOT_FOUND">,
ZodLiteral<"UNKNOWN_SCENARIO">,
ZodLiteral<"INVALID_PARAMS">,
ZodLiteral<"FORBIDDEN">,
ZodLiteral<"INTERNAL_ERROR">,
],
>;
error_detail: ZodOptional<ZodString>;
current_state: ZodNullable<ZodOptional<ZodString>>;
context: ZodOptional<ZodObject<{}, $loose>>;
ext: ZodOptional<ZodObject<{}, $loose>>;
},
$loose,
> = ...