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

Commit d96347e

Browse files
committed
1.10.1
1 parent ccb31b0 commit d96347e

14 files changed

+25
-25
lines changed

dist/oidc-client.d.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ export class InMemoryWebStorage {
3838
}
3939

4040
export class Log {
41-
static readonly NONE = 0;
42-
static readonly ERROR = 1;
43-
static readonly WARN = 2;
44-
static readonly INFO = 3;
45-
static readonly DEBUG = 4;
41+
static readonly NONE: 0;
42+
static readonly ERROR: 1;
43+
static readonly WARN: 2;
44+
static readonly INFO: 3;
45+
static readonly DEBUG: 4;
4646

4747
static reset(): void;
4848

@@ -123,14 +123,14 @@ export class OidcClient {
123123

124124
export interface OidcClientSettings {
125125
/** The URL of the OIDC/OAuth2 provider */
126-
authority: string;
126+
authority?: string;
127127
readonly metadataUrl?: string;
128128
/** Provide metadata when authority server does not allow CORS on the metadata endpoint */
129129
metadata?: Partial<OidcMetadata>;
130130
/** Provide signingKeys when authority server does not allow CORS on the jwks uri */
131131
signingKeys?: any[];
132132
/** Your client application's identifier as registered with the OIDC/OAuth2 */
133-
client_id: string;
133+
client_id?: string;
134134
client_secret?: string;
135135
/** The type of response desired from the OIDC/OAuth2 provider (default: 'id_token') */
136136
readonly response_type?: string;

dist/oidc-client.js

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

dist/oidc-client.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/oidc-client.rsa256.slim.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/oidc-client.rsa256.slim.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/oidc-client.slim.js

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

dist/oidc-client.slim.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/oidc-client.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/oidc-client.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/oidc-client.rsa256.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)