Member Junction
    Preparing search index...

    Interface QueryCacheAuthorization

    Result of ProviderBase.ResolveQueryCacheAuthorization — the single pre-fingerprint resolution + authorization computation the RunQuery TTL cache gate relies on (B45/B46). See the method JSDoc for the full contract.

    interface QueryCacheAuthorization {
        authorized: boolean;
        categoryPath?: string;
        queryName?: string;
        resolvable: boolean;
    }
    Index

    Properties

    authorized: boolean

    The user may run the resolved query. Meaningful only when resolvable is true.

    categoryPath?: string

    Canonical full category path of the RESOLVED query (e.g. '/MJ/AI/Agents/'; '' when uncategorized).

    queryName?: string

    Resolved query name — for log messages when the request was by ID only.

    resolvable: boolean

    Metadata could resolve the request (by ID, or by name [+ stated category]).