@aws-sdk/types 3.222.0 → 3.226.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.
@@ -343,6 +343,13 @@ export interface HandlerExecutionContext {
343
343
  * Set at the same time as endpointV2.
344
344
  */
345
345
  authSchemes?: AuthScheme[];
346
+ /**
347
+ * Used by DynamoDbDocumentClient.
348
+ */
349
+ dynamoDbDocumentClientOptions?: Partial<{
350
+ overrideInputFilterSensitiveLog(...args: any[]): string | void;
351
+ overrideOutputFilterSensitiveLog(...args: any[]): string | void;
352
+ }>;
346
353
  [key: string]: any;
347
354
  }
348
355
  export interface Pluggable<Input extends object, Output extends object> {
@@ -202,6 +202,10 @@ export interface HandlerExecutionContext {
202
202
  userAgent?: UserAgent;
203
203
  endpointV2?: EndpointV2;
204
204
  authSchemes?: AuthScheme[];
205
+ dynamoDbDocumentClientOptions?: Partial<{
206
+ overrideInputFilterSensitiveLog(...args: any[]): string | void;
207
+ overrideOutputFilterSensitiveLog(...args: any[]): string | void;
208
+ }>;
205
209
  [key: string]: any;
206
210
  }
207
211
  export interface Pluggable<Input extends object, Output extends object> {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/types",
3
- "version": "3.222.0",
3
+ "version": "3.226.0",
4
4
  "main": "./dist-cjs/index.js",
5
5
  "module": "./dist-es/index.js",
6
6
  "types": "./dist-types/index.d.ts",
@@ -39,6 +39,9 @@
39
39
  "url": "https://github.com/aws/aws-sdk-js-v3.git",
40
40
  "directory": "packages/types"
41
41
  },
42
+ "dependencies": {
43
+ "tslib": "^2.3.1"
44
+ },
42
45
  "devDependencies": {
43
46
  "@tsconfig/recommended": "1.0.1",
44
47
  "concurrently": "7.0.0",