Comparing version 1.1.2 to 1.1.3
{ | ||
"name": "edgegrid", | ||
"version": "1.1.2", | ||
"version": "1.1.3", | ||
"description": "Authorisation process and API helper for Akamai OPEN APIs", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -126,3 +126,3 @@ // Node modules | ||
if (request.method == "POST" || request.method == "PUT") { | ||
if (request.method == "POST" || request.method == "PUT" || request.method == "DELETE") { | ||
// Accept user-defined, case-insensitive content-type header -- or use default type | ||
@@ -146,3 +146,3 @@ request.headers['content-type'] = request.getHeader('content-type') || 'application/x-www-form-urlencoded'; | ||
if (request.method == "POST" || request.method == "PUT") { | ||
if (request.method == "POST" || request.method == "PUT" || request.method == "DELETE") { | ||
req.write(request.body); | ||
@@ -149,0 +149,0 @@ } |
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
43825