Creating Plot Twists
    Preparing search index...

    Type Alias Authorization

    Represents authorization criteria for token lookup.

    Used to specify which authentication token to retrieve from storage based on provider, scopes, and authorization ID.

    type Authorization = {
        id: string;
        provider: AuthProvider;
        scopes: string[];
    }
    Index

    Properties

    Properties

    id: string

    Unique identifier for this authorization

    provider: AuthProvider

    The OAuth provider this authorization is for

    scopes: string[]

    Array of OAuth scopes this authorization covers