/** * Parameters for an activation via OpenID connect provider. */ export interface PowerAuthOIDCParameters { /** OAuth 2.0 provider identification. */ providerId: string; /** OAuth 2.0 authorization code. */ code: string; /** Nonce used in the OAuth 2.0 flow. */ nonce: string; /** Optional code verifier, in case that PKCE extension is used for an activation. */ codeVerifier?: string; }