@smithy/signature-v4 5.4.0 → 5.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import type { Int64 as IInt64, MessageHeaders } from "@smithy/types";
|
|
2
2
|
/**
|
|
3
|
-
* @internal
|
|
4
3
|
* TODO: duplicated from @smithy/eventstream-codec to break large dependency.
|
|
5
4
|
* TODO: This should be moved to its own deduped submodule in @smithy/core when submodules are implemented.
|
|
5
|
+
*
|
|
6
|
+
* @internal
|
|
6
7
|
*/
|
|
7
8
|
export declare class HeaderFormatter {
|
|
8
9
|
format(headers: MessageHeaders): Uint8Array;
|
|
@@ -12,12 +12,11 @@ export type OptionalSigV4aSigner = {
|
|
|
12
12
|
new (options: any): RequestSigner;
|
|
13
13
|
};
|
|
14
14
|
/**
|
|
15
|
-
* @public
|
|
16
|
-
*
|
|
17
15
|
* \@smithy/signature-v4a will install the constructor in this
|
|
18
16
|
* container if it's installed.
|
|
19
|
-
*
|
|
20
17
|
* This avoids a runtime-require being interpreted statically by bundlers.
|
|
18
|
+
*
|
|
19
|
+
* @public
|
|
21
20
|
*/
|
|
22
21
|
export declare const signatureV4aContainer: {
|
|
23
22
|
SignatureV4a: null | OptionalSigV4aSigner;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smithy/signature-v4",
|
|
3
|
-
"version": "5.4.
|
|
3
|
+
"version": "5.4.1",
|
|
4
4
|
"description": "A standalone implementation of the AWS Signature V4 request signing algorithm",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"license": "Apache-2.0",
|
|
26
26
|
"sideEffects": false,
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@smithy/core": "^3.24.
|
|
28
|
+
"@smithy/core": "^3.24.1",
|
|
29
29
|
"@smithy/types": "^4.14.1",
|
|
30
30
|
"tslib": "^2.6.2"
|
|
31
31
|
},
|