@aws-sdk/middleware-signing 3.378.0 → 3.387.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,5 +1,8 @@
1
1
  import { SignatureV4CryptoInit, SignatureV4Init } from "@smithy/signature-v4";
2
2
  import { AuthScheme, AwsCredentialIdentity, ChecksumConstructor, HashConstructor, Logger, MemoizedProvider, Provider, RegionInfoProvider, RequestSigner } from "@smithy/types";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface AwsAuthInputConfig {
4
7
  /**
5
8
  * The credentials used to sign requests.
@@ -25,10 +28,14 @@ export interface AwsAuthInputConfig {
25
28
  /**
26
29
  * The injectable SigV4-compatible signer class constructor. If not supplied,
27
30
  * regular SignatureV4 constructor will be used.
28
- * @private
31
+ *
32
+ * @internal
29
33
  */
30
34
  signerConstructor?: new (options: SignatureV4Init & SignatureV4CryptoInit) => RequestSigner;
31
35
  }
36
+ /**
37
+ * @public
38
+ */
32
39
  export interface SigV4AuthInputConfig {
33
40
  /**
34
41
  * The credentials used to sign requests.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-signing",
3
- "version": "3.378.0",
3
+ "version": "3.387.0",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
6
6
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -10,7 +10,8 @@
10
10
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
11
11
  "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
12
12
  "test": "jest --passWithNoTests",
13
- "test:integration": "jest -c jest.config.integ.js"
13
+ "test:integration": "jest -c jest.config.integ.js",
14
+ "extract:docs": "api-extractor run --local"
14
15
  },
15
16
  "main": "./dist-cjs/index.js",
16
17
  "module": "./dist-es/index.js",
@@ -21,11 +22,11 @@
21
22
  },
22
23
  "license": "Apache-2.0",
23
24
  "dependencies": {
24
- "@aws-sdk/types": "3.378.0",
25
+ "@aws-sdk/types": "3.387.0",
25
26
  "@smithy/property-provider": "^2.0.0",
26
- "@smithy/protocol-http": "^2.0.1",
27
+ "@smithy/protocol-http": "^2.0.2",
27
28
  "@smithy/signature-v4": "^2.0.0",
28
- "@smithy/types": "^2.0.2",
29
+ "@smithy/types": "^2.1.0",
29
30
  "@smithy/util-middleware": "^2.0.0",
30
31
  "tslib": "^2.5.0"
31
32
  },