openapi-merge
    Preparing search index...

    Type Alias PathSelector

    One includePaths/excludePaths entry (proposal 43 / PR #67).

    path supports the same * wildcard as includeTags/excludeTags (issue #111, wildcard-matching.ts) -- an author who already knows one already knows the other. method omitted means "every method on this path"; given as a plain string (not restricted to the nine standard verbs) so a 3.2 additionalOperations custom verb (PURGE, LOCK, ...) can be selected too, matched case-sensitively to agree with how custom verbs are already treated everywhere else in this codebase (merge-path-items.ts). A standard method's own key is always lowercase (get, not GET), since that is what an OpenAPI document itself declares.

    type PathSelector = {
        method?: string | ReadonlyArray<string>;
        path: string;
    }
    Index
    method?: string | ReadonlyArray<string>
    path: string