openapi-merge
    Preparing search index...

    Type Alias OperationSelection

    type OperationSelection = {
        excludePaths?: PathSelector[];
        excludeTags?: string[];
        includePaths?: PathSelector[];
        includeTags?: string[];
    }
    Index
    excludePaths?: PathSelector[]

    Any Operation whose path (and, if given, method) matches one of these selectors will be excluded from the final result, the same way excludeTags works. If an Operation is matched by both includePaths and excludePaths, or by an exclude rule of either kind (path or tag), exclusion takes precedence.

    excludeTags?: string[]

    Any Operation that has any one of these tags will be excluded from the final result. If a single Operation contains an includeTag and an excludeTag then it will be excluded; exclusion takes precedence.

    includePaths?: PathSelector[]

    Only Operations whose path (and, if given, method) matches one of these selectors will be taken from this OpenAPI file. path supports a * wildcard, matched the same way includeTags/excludeTags are (issue #111). Selectors are matched against this input's own original path, before pathModification is applied. If an Operation is matched by both includePaths and includeTags (or neither), both must pass for it to survive -- an include list only ever narrows what an Operation must clear, on top of any other include list configured. If an Operation is matched by both an includePaths and an excludePaths selector, exclusion takes precedence.

    includeTags?: string[]

    Only Operatinos that have these tags will be taken from this OpenAPI file. If a single Operation contains an includeTag and an excludeTag then it will be excluded; exclusion takes precedence.