Comparing version 1.7.0 to 1.7.1
{ | ||
"name": "myges", | ||
"version": "1.7.0", | ||
"version": "1.7.1", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "keywords": [], |
@@ -89,5 +89,6 @@ const fs = require('fs').promises | ||
const { access_token, token_type } = await token.authenticate(parsed.username, password) | ||
parsed.access_token = access_token | ||
parsed.token_type = token_type | ||
const info = await token.authenticate(parsed.username, password) | ||
parsed.access_token = info.access_token | ||
parsed.token_type = info.token_type | ||
parsed.expires = Date.now() + (parseInt(info.expires_in, 10) * 1000) | ||
@@ -94,0 +95,0 @@ await save(parsed) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
32460
801