Skip to content

Commit

Permalink
New Release Candidate 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
abisalehalliprasan committed Apr 25, 2019
1 parent d3f3734 commit 6c62bc0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ var oauthClient = new OAuthClient({
redirectUri: '<http://localhost:8000/callback>',
token: authToken
});
````
The authToken parameters are as follows:
```
{
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand All @@ -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",
Expand Down
5 changes: 1 addition & 4 deletions src/access-token/Token.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ Token.prototype.setToken = function(tokenData) {

};


/**
* Helper Method to check token expiry { set Token Object }
* @param seconds
Expand All @@ -125,7 +124,6 @@ Token.prototype.isAccessTokenValid = function() {

};


/**
* Check if there is a valid (not expired) access token
* @return {boolean}
Expand All @@ -136,5 +134,4 @@ Token.prototype.isRefreshTokenValid = function() {

};


module.exports = Token;
module.exports = Token;

0 comments on commit 6c62bc0

Please sign in to comment.