Skip to main content

Interface: AuthenticationProviderAuthenticationSessionsChangeEvent

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

Properties

added?

readonly optional added: readonly AuthenticationSession[]

The AuthenticationSessions of the AuthenticationProvider that have been added.

Defined in

packages/extension-api/src/extension-api.d.ts:3838


changed?

readonly optional changed: 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.

Defined in

packages/extension-api/src/extension-api.d.ts:3850


removed?

readonly optional removed: readonly AuthenticationSession[]

The AuthenticationSessions of the AuthenticationProvider that have been removed.

Defined in

packages/extension-api/src/extension-api.d.ts:3843