Creating Plot Twists
    Preparing search index...

    Type Alias ScopeConfig

    Structured scope declaration. required scopes must be granted — auth fails and re-prompts if any is declined. optional groups are requested by default but auth still succeeds if the user declines them; the connector should detect the absence via the granted token.scopes and degrade gracefully.

    type ScopeConfig = {
        required: string[];
        description?: string[];
        optional?: OptionalScopeGroup[];
    }
    Index

    Properties

    required: string[]
    description?: string[]

    Friendly bullets describing what the always-on (required) access does.

    optional?: OptionalScopeGroup[]