@aws-sdk/signature-v4-crt 3.292.0 → 3.296.0
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,7 +1,7 @@
|
|
|
1
1
|
import { SignatureV4CryptoInit, SignatureV4Init } from "@aws-sdk/signature-v4";
|
|
2
2
|
import { HttpRequest, RequestPresigner, RequestPresigningArguments, RequestSigner, RequestSigningArguments } from "@aws-sdk/types";
|
|
3
3
|
import { auth as crtAuth } from "aws-crt";
|
|
4
|
-
export
|
|
4
|
+
export type AwsSigningAlgorithm = crtAuth.AwsSigningAlgorithm;
|
|
5
5
|
export interface CrtSignerV4Init extends SignatureV4Init {
|
|
6
6
|
/**
|
|
7
7
|
* The Algorithm used for the signer. Includes: SigV4, SigV4Asymmetric.
|
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
RequestSigningArguments,
|
|
8
8
|
} from "@aws-sdk/types";
|
|
9
9
|
import { auth as crtAuth } from "aws-crt";
|
|
10
|
-
export
|
|
10
|
+
export type AwsSigningAlgorithm = crtAuth.AwsSigningAlgorithm;
|
|
11
11
|
export interface CrtSignerV4Init extends SignatureV4Init {
|
|
12
12
|
signingAlgorithm?: AwsSigningAlgorithm;
|
|
13
13
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/signature-v4-crt",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.296.0",
|
|
4
4
|
"description": "A revision of AWS Signature V4 request signer based on AWS Common Runtime https://github.com/awslabs/aws-crt-nodejs",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -21,26 +21,26 @@
|
|
|
21
21
|
},
|
|
22
22
|
"license": "Apache-2.0",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@aws-sdk/is-array-buffer": "3.
|
|
25
|
-
"@aws-sdk/querystring-parser": "3.
|
|
26
|
-
"@aws-sdk/signature-v4": "3.
|
|
27
|
-
"@aws-sdk/util-hex-encoding": "3.
|
|
28
|
-
"@aws-sdk/util-middleware": "3.
|
|
29
|
-
"@aws-sdk/util-uri-escape": "3.
|
|
24
|
+
"@aws-sdk/is-array-buffer": "3.295.0",
|
|
25
|
+
"@aws-sdk/querystring-parser": "3.296.0",
|
|
26
|
+
"@aws-sdk/signature-v4": "3.296.0",
|
|
27
|
+
"@aws-sdk/util-hex-encoding": "3.295.0",
|
|
28
|
+
"@aws-sdk/util-middleware": "3.296.0",
|
|
29
|
+
"@aws-sdk/util-uri-escape": "3.295.0",
|
|
30
30
|
"aws-crt": "^1.15.9",
|
|
31
|
-
"tslib": "^2.
|
|
31
|
+
"tslib": "^2.5.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
35
|
-
"@aws-sdk/protocol-http": "3.
|
|
36
|
-
"@aws-sdk/types": "3.
|
|
37
|
-
"@aws-sdk/util-buffer-from": "3.
|
|
35
|
+
"@aws-sdk/protocol-http": "3.296.0",
|
|
36
|
+
"@aws-sdk/types": "3.296.0",
|
|
37
|
+
"@aws-sdk/util-buffer-from": "3.295.0",
|
|
38
38
|
"@tsconfig/recommended": "1.0.1",
|
|
39
39
|
"concurrently": "7.0.0",
|
|
40
40
|
"downlevel-dts": "0.10.1",
|
|
41
41
|
"rimraf": "3.0.2",
|
|
42
42
|
"typedoc": "0.23.23",
|
|
43
|
-
"typescript": "~4.
|
|
43
|
+
"typescript": "~4.9.5"
|
|
44
44
|
},
|
|
45
45
|
"engines": {
|
|
46
46
|
"node": ">=14.0.0"
|