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

Commit

Permalink
1.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
brockallen committed Dec 18, 2019
1 parent ccb31b0 commit d96347e
Show file tree
Hide file tree
Showing 14 changed files with 25 additions and 25 deletions.
14 changes: 7 additions & 7 deletions dist/oidc-client.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ export class InMemoryWebStorage {
}

export class Log {
static readonly NONE = 0;
static readonly ERROR = 1;
static readonly WARN = 2;
static readonly INFO = 3;
static readonly DEBUG = 4;
static readonly NONE: 0;
static readonly ERROR: 1;
static readonly WARN: 2;
static readonly INFO: 3;
static readonly DEBUG: 4;

static reset(): void;

Expand Down Expand Up @@ -123,14 +123,14 @@ export class OidcClient {

export interface OidcClientSettings {
/** The URL of the OIDC/OAuth2 provider */
authority: string;
authority?: string;
readonly metadataUrl?: string;
/** Provide metadata when authority server does not allow CORS on the metadata endpoint */
metadata?: Partial<OidcMetadata>;
/** 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_id?: string;
client_secret?: string;
/** The type of response desired from the OIDC/OAuth2 provider (default: 'id_token') */
readonly response_type?: string;
Expand Down
4 changes: 2 additions & 2 deletions dist/oidc-client.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/oidc-client.min.js

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/oidc-client.rsa256.slim.min.js

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/oidc-client.slim.min.js

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/oidc-client.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions lib/oidc-client.rsa256.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/oidc-client.rsa256.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oidc-client",
"version": "1.10.0",
"version": "1.10.1",
"description": "OpenID Connect (OIDC) & OAuth2 client library",
"main": "lib/oidc-client.min.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
const Version = "1.10.0"; export {Version};
const Version = "1.10.1"; export {Version};

0 comments on commit d96347e

Please sign in to comment.