node-vault
Advanced tools
Comparing version 0.9.5 to 0.9.6
{ | ||
"name": "node-vault", | ||
"version": "0.9.5", | ||
"version": "0.9.6", | ||
"description": "Javascript client for HashiCorp's Vault", | ||
@@ -15,4 +15,2 @@ "main": "./src/index.js", | ||
"docs": "docco --output docs src/*.js", | ||
"nsp": "nsp check", | ||
"prepublish": "npm run nsp", | ||
"precommit": "node scripts/write-features.js && git add features.md" | ||
@@ -46,3 +44,2 @@ }, | ||
"mocha": "2.4.5", | ||
"nsp": "^2.6.3", | ||
"sinon": "1.17.3", | ||
@@ -49,0 +46,0 @@ "sinon-chai": "^2.8.0" |
@@ -408,2 +408,22 @@ const sealStatusResponse = { | ||
}, | ||
gcpLogin: { | ||
method: 'POST', | ||
path: '/auth/{{mount_point}}{{^mount_point}}gcp{{/mount_point}}/login', | ||
tokenSource: true, | ||
schema: { | ||
req: { | ||
type: 'object', | ||
properties: { | ||
role: { | ||
type: 'string', | ||
}, | ||
jwt: { | ||
type: 'string', | ||
}, | ||
}, | ||
required: ['role', 'jwt'], | ||
}, | ||
res: tokenResponse, | ||
}, | ||
}, | ||
githubLogin: { | ||
@@ -410,0 +430,0 @@ method: 'POST', |
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
38271
13
1415