Skip to content

Commit

Permalink
1.10.0-beta.2
Browse files Browse the repository at this point in the history
  • Loading branch information
brockallen committed Dec 2, 2019
1 parent 0894a05 commit f9ef4f4
Show file tree
Hide file tree
Showing 14 changed files with 146 additions and 96 deletions.
8 changes: 4 additions & 4 deletions dist/oidc-client.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ export interface SigninResponse {
profile: any;
scope: string;
session_state: string;
state: string;
state: any;
token_type: string;

readonly expired: boolean | undefined;
Expand All @@ -354,7 +354,7 @@ export interface SignoutResponse {
error?: string;
error_description?: string;
error_uri?: string;
state: string;
state?: any;
}

export interface UserSettings {
Expand All @@ -366,7 +366,7 @@ export interface UserSettings {
scope: string;
profile: Profile;
expires_at: number;
state: string;
state: any;
}

export class User {
Expand All @@ -389,7 +389,7 @@ export class User {
/** The expires at returned from the OIDC provider */
expires_at: number;
/** The custom state transferred in the last signin */
state: string;
state: any;

toStorageString(): string;
static fromStorageString(storageString: string): User;
Expand Down
41 changes: 25 additions & 16 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.

41 changes: 25 additions & 16 deletions dist/oidc-client.rsa256.slim.js

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

41 changes: 25 additions & 16 deletions dist/oidc-client.slim.js

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

41 changes: 25 additions & 16 deletions lib/oidc-client.js

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

41 changes: 25 additions & 16 deletions lib/oidc-client.rsa256.js

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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-beta.1",
"version": "1.10.0-beta.2",
"description": "OpenID Connect (OIDC) & OAuth2 client library",
"main": "lib/oidc-client.min.js",
"scripts": {
Expand Down
5 changes: 5 additions & 0 deletions samples/VanillaJS/public/code-identityserver-sample.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ var settings = {
validateSubOnSilentRenew: true,
//silentRequestTimeout:10000,

monitorAnonymousSession : true,

filterProtocolClaims: true,
loadUserInfo: true,
revokeAccessTokenOnSignout : true
Expand Down Expand Up @@ -91,6 +93,9 @@ mgr.events.addUserUnloaded(function (e) {
console.log("user unloaded");
});

mgr.events.addUserSignedIn(function (e) {
log("user logged in to the token server");
});
mgr.events.addUserSignedOut(function (e) {
log("user logged out of the token server");
});
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-beta.1"; export {Version};
const Version = "1.10.0-beta.2"; export {Version};

0 comments on commit f9ef4f4

Please sign in to comment.