Skip to content
This repository has been archived by the owner on Mar 3, 2022. It is now read-only.

Fix code smells #1389

Open
wants to merge 4 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -157,3 +157,10 @@ distribution/
*_NCrunch_*
source/IdentityServer3.sln.GhostDoc.xml
/.vs

#nyc reports
/.nyc_output
/coverage

#VS code files
/.vscode
6 changes: 4 additions & 2 deletions dist/oidc-client.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,8 @@ export interface OidcClientSettings {
metadata?: Partial<OidcMetadata>;
/** Provide signingKeys when authority server does not allow CORS on the jwks uri */
signingKeys?: any[];
/** Can be used to seed or add additional values to the results of the discovery request */
metadataSeed?: Partial<OidcMetadata>;
/** Your client application's identifier as registered with the OIDC/OAuth2 */
client_id?: string;
client_secret?: string;
Expand Down Expand Up @@ -252,11 +254,11 @@ export interface UserManagerEvents extends AccessTokenEvents {
addSilentRenewError(callback: UserManagerEvents.SilentRenewErrorCallback): void;
removeSilentRenewError(callback: UserManagerEvents.SilentRenewErrorCallback): void;

/** Subscribe to events raised when the user's signed-in */
/** When `monitorSession` subscribe to events raised when the user's signed-in */
addUserSignedIn(callback: UserManagerEvents.UserSignedInCallback): void;
removeUserSignedIn(callback: UserManagerEvents.UserSignedInCallback): void;

/** Subscribe to events raised when the user's sign-in status at the OP has changed */
/** When `monitorSession` subscribe to events raised when the user's sign-in status at the OP has changed */
addUserSignedOut(callback: UserManagerEvents.UserSignedOutCallback): void;
removeUserSignedOut(callback: UserManagerEvents.UserSignedOutCallback): void;

Expand Down
601 changes: 300 additions & 301 deletions dist/oidc-client.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/oidc-client.min.js

Large diffs are not rendered by default.

Loading