auth.provider API
    Preparing search index...

    Fine-grained route advertisement attached to a RouteContribution. Enables the boot planner to detect method + path collisions at the sub-router level, independent of mountPath.

    Per A2-β §4.2.

    interface RouteAdvertisement {
        method: HttpMethod;
        path: string;
    }
    Index

    Properties

    Properties

    method: HttpMethod

    HTTP method this advertisement covers. Per A2-β §4.2.

    path: string

    Path relative to the contribution's mountPath. MUST start with "/"; the boot planner's validateManifests stage throws invalid-route-advertisement-path otherwise (A2-β §5.1 step 7, §6.1).

    Per A2-β §4.2.