You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 3, 2022. It is now read-only.
First of all, thank you for adding basic authentication with #1060.
Yet, the client_authentication parameter is still missing in the index.d.ts file. It would be great, if you could add this line: client_authentication: string to OidcClientSettings.
Without this parameter, it's not really usable with Typescript projects.
Thanks in advance! :)
The text was updated successfully, but these errors were encountered:
can anybody make PR for this: in node_modules/oidc-client/index.d.ts
I am not allowed to push changes
line 126:
export interface OidcClientSettings {
/** The URL of the OIDC/OAuth2 provider /
authority?: string;
readonly metadataUrl?: string;
/* Provide metadata when authority server does not allow CORS on the metadata endpoint /
metadata?: Partial;
/* Provide signingKeys when authority server does not allow CORS on the jwks uri /
signingKeys?: any[];
/* Your client application's identifier as registered with the OIDC/OAuth2 /
client_id?: string;
client_secret?: string;
/* The DefaultClientAuthentication is 'client_secret_post' and can be set back to standard 'client_secret_basic' /
client_authentication? : string
/* The type of response desired from the OIDC/OAuth2 provider (default: 'id_token') */
First of all, thank you for adding basic authentication with #1060.
Yet, the
client_authentication
parameter is still missing in theindex.d.ts
file. It would be great, if you could add this line:client_authentication: string
toOidcClientSettings
.Without this parameter, it's not really usable with Typescript projects.
Thanks in advance! :)
The text was updated successfully, but these errors were encountered: