Skip to content

Commit

Permalink
1.9.0-beta.4
Browse files Browse the repository at this point in the history
  • Loading branch information
brockallen committed Aug 6, 2019
1 parent 2f03065 commit 6439e91
Show file tree
Hide file tree
Showing 11 changed files with 181 additions and 82 deletions.
4 changes: 3 additions & 1 deletion dist/oidc-client.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/* Provides a namespace for when the library is loaded outside a module loader environment */
export as namespace Oidc;

export const Version:string;

export interface Logger {
error(message?: any, ...optionalParams: any[]): void;
info(message?: any, ...optionalParams: any[]): void;
Expand Down Expand Up @@ -167,7 +169,7 @@ export class UserManager extends OidcClient {
signinRedirectCallback(url?: string): Promise<User>;

signoutRedirect(args?: any): Promise<any>;
signoutRedirectCallback(url?: string): Promise<any>;
signoutRedirectCallback(url?: string): Promise<SignoutResponse>;

signoutPopup(args?: any): Promise<any>;
signoutPopupCallback(url?: string, keepOpen?: boolean): Promise<void>;
Expand Down
49 changes: 36 additions & 13 deletions dist/oidc-client.js

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions dist/oidc-client.min.js

Large diffs are not rendered by default.

74 changes: 51 additions & 23 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.

49 changes: 36 additions & 13 deletions dist/oidc-client.slim.js

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions dist/oidc-client.slim.min.js

Large diffs are not rendered by default.

49 changes: 36 additions & 13 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.

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.9.0-beta.3",
"version": "1.9.0-beta.4",
"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.9.0-beta.3"; export {Version};
const Version = "1.9.0-beta.4"; export {Version};

0 comments on commit 6439e91

Please sign in to comment.