@adcp/client API Reference - v4.19.0
    Preparing search index...

    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<ZodNullable<ZodString>>;
            current_state: ZodNullable<ZodOptional<ZodNullable<ZodString>>>;
            context: ZodOptional<ZodNullable<ZodObject<{}, $loose>>>;
            ext: ZodOptional<ZodNullable<ZodObject<{}, $loose>>>;
        },
        $loose,
    > = ...