From 6c62bc0d6c37d09c8711c6de041a8805dabbbd20 Mon Sep 17 00:00:00 2001 From: abisalehalliprasan Date: Thu, 25 Apr 2019 11:09:34 -0700 Subject: [PATCH] New Release Candidate 1.2.0 --- README.md | 2 +- package.json | 4 ++-- src/access-token/Token.js | 5 +---- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 3e3dee46..d7c71c88 100644 --- a/README.md +++ b/README.md @@ -270,7 +270,7 @@ var oauthClient = new OAuthClient({ redirectUri: '', token: authToken }); - +```` The authToken parameters are as follows: ``` { diff --git a/package.json b/package.json index a4a48e4a..1f1990aa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "intuit-oauth", - "version": "1.1.3", + "version": "1.2.0", "description": "Intuit Node.js client for OAuth2.0 and OpenID", "main": "./src/OAuthClient.js", "scripts": { @@ -12,7 +12,7 @@ "docs-gen": "doctoc README.md --github --no-title", "clean-install": "rm -rf node_modules && npm install" }, - "keywords": ["intuit-oauth", "intuit-oauth-nodejs", "intuit-nodejs", "oauth2.0", "openid", "quickbooks-accounting", "quickbooks-payment"], + "keywords": ["intuit-oauth", "intuit-oauth-nodejs", "intuit-nodejs", "oauth2.0", "openid", "openidConnect", "quickbooks-accounting", "quickbooks-payment"], "nyc": { "exclude": [ "node_modules", diff --git a/src/access-token/Token.js b/src/access-token/Token.js index f7c90b8a..92a5c80d 100644 --- a/src/access-token/Token.js +++ b/src/access-token/Token.js @@ -104,7 +104,6 @@ Token.prototype.setToken = function(tokenData) { }; - /** * Helper Method to check token expiry { set Token Object } * @param seconds @@ -125,7 +124,6 @@ Token.prototype.isAccessTokenValid = function() { }; - /** * Check if there is a valid (not expired) access token * @return {boolean} @@ -136,5 +134,4 @@ Token.prototype.isRefreshTokenValid = function() { }; - -module.exports = Token; +module.exports = Token; \ No newline at end of file