Member Junction
    Preparing search index...

    Interface ScopeAuthResult

    Result of scope authorization check

    interface ScopeAuthResult {
        Allowed: boolean;
        Checked: boolean;
        EvaluatedRules?: EvaluatedRule[];
        Reason?: string;
    }
    Index

    Properties

    Allowed: boolean

    Whether access is allowed

    Checked: boolean

    Whether scope checking was performed (false if no API key or enforcement disabled)

    EvaluatedRules?: EvaluatedRule[]

    All rules evaluated during the check

    Reason?: string

    Human-readable reason for the decision