@accelerated-software-development/caddy-api-client - v0.10.0
    Preparing search index...

    Variable HttpMethodSchemaConst

    HttpMethodSchema: ZodString = ...

    HTTP method schema, for Caddy's method matcher (match.method).

    Real Caddy's MatchMethod is []string -- genuinely unrestricted, not an enum of standard methods. Verified via caddy validate: a matcher with "method": ["CONNECT", "TRACE", "PURGE"] (two methods this schema used to reject, plus a fully custom/nonstandard one) validates successfully. A stricter enum here would wrongly reject legitimate configs matching on CONNECT/TRACE or a custom verb.