Theia API Documentation v1.65.0
    Preparing search index...

    An Event which fires when an AuthenticationSession is added, removed, or changed.

    interface AuthenticationProviderAuthenticationSessionsChangeEvent {
        added: undefined | readonly AuthenticationSession[];
        changed: undefined | readonly AuthenticationSession[];
        removed: undefined | readonly AuthenticationSession[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    added: undefined | readonly AuthenticationSession[]

    The AuthenticationSessions of the AuthenticationProvider that have been added.

    changed: undefined | readonly AuthenticationSession[]

    The AuthenticationSessions of the AuthenticationProvider that have been changed. A session changes when its data excluding the id are updated. An example of this is a session refresh that results in a new access token being set for the session.

    removed: undefined | readonly AuthenticationSession[]

    The AuthenticationSessions of the AuthenticationProvider that have been removed.