@aws-sdk/middleware-ssec 3.168.0 → 3.170.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/middleware-ssec
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
7
15
 
8
16
  **Note:** Version bump only for package @aws-sdk/middleware-ssec
@@ -1,10 +1,21 @@
1
- import { Decoder, Encoder, HashConstructor, InitializeHandlerOptions, InitializeMiddleware, Pluggable } from "@aws-sdk/types";
2
- interface PreviouslyResolved {
3
- base64Encoder: Encoder;
4
- md5: HashConstructor;
5
- utf8Decoder: Decoder;
6
- }
7
- export declare function ssecMiddleware(options: PreviouslyResolved): InitializeMiddleware<any, any>;
8
- export declare const ssecMiddlewareOptions: InitializeHandlerOptions;
9
- export declare const getSsecPlugin: (config: PreviouslyResolved) => Pluggable<any, any>;
10
- export {};
1
+ import {
2
+ Decoder,
3
+ Encoder,
4
+ HashConstructor,
5
+ InitializeHandlerOptions,
6
+ InitializeMiddleware,
7
+ Pluggable,
8
+ } from "@aws-sdk/types";
9
+ interface PreviouslyResolved {
10
+ base64Encoder: Encoder;
11
+ md5: HashConstructor;
12
+ utf8Decoder: Decoder;
13
+ }
14
+ export declare function ssecMiddleware(
15
+ options: PreviouslyResolved
16
+ ): InitializeMiddleware<any, any>;
17
+ export declare const ssecMiddlewareOptions: InitializeHandlerOptions;
18
+ export declare const getSsecPlugin: (
19
+ config: PreviouslyResolved
20
+ ) => Pluggable<any, any>;
21
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-ssec",
3
- "version": "3.168.0",
3
+ "version": "3.170.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",
@@ -20,7 +20,7 @@
20
20
  },
21
21
  "license": "Apache-2.0",
22
22
  "dependencies": {
23
- "@aws-sdk/types": "3.168.0",
23
+ "@aws-sdk/types": "3.170.0",
24
24
  "tslib": "^2.3.1"
25
25
  },
26
26
  "engines": {
@@ -45,7 +45,7 @@
45
45
  "devDependencies": {
46
46
  "@tsconfig/recommended": "1.0.1",
47
47
  "concurrently": "7.0.0",
48
- "downlevel-dts": "0.7.0",
48
+ "downlevel-dts": "0.10.1",
49
49
  "rimraf": "3.0.2",
50
50
  "typedoc": "0.19.2",
51
51
  "typescript": "~4.6.2"