aws4-axios
Advanced tools
Comparing version 1.0.7 to 1.1.0
@@ -5,4 +5,5 @@ import { AxiosRequestConfig } from "axios"; | ||
region?: string; | ||
signQuery?: boolean; | ||
} | ||
export declare const interceptor: (options?: InterceptorOptions | undefined) => (config: AxiosRequestConfig) => AxiosRequestConfig; | ||
export {}; |
@@ -12,4 +12,5 @@ "use strict"; | ||
var service; | ||
var signQuery; | ||
if (options) { | ||
(region = options.region, service = options.service); | ||
(region = options.region, service = options.service, signQuery = options.signQuery); | ||
} | ||
@@ -21,3 +22,4 @@ var signingOptions = { | ||
region: region, | ||
service: service | ||
service: service, | ||
signQuery: signQuery | ||
}; | ||
@@ -24,0 +26,0 @@ aws4_1.sign(signingOptions); |
{ | ||
"name": "aws4-axios", | ||
"version": "1.0.7", | ||
"version": "1.1.0", | ||
"description": "Axios request interceptor for signing requests with AWSv4", | ||
@@ -5,0 +5,0 @@ "author": "James Bourne", |
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
3491
35