@aws-sdk/client-kinesis-video-media 3.297.0 → 3.298.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.
@@ -30,7 +30,7 @@ class GetMediaCommand extends smithy_client_1.Command {
30
30
  logger,
31
31
  clientName,
32
32
  commandName,
33
- inputFilterSensitiveLog: models_0_1.GetMediaInputFilterSensitiveLog,
33
+ inputFilterSensitiveLog: (_) => _,
34
34
  outputFilterSensitiveLog: models_0_1.GetMediaOutputFilterSensitiveLog,
35
35
  };
36
36
  const { requestHandler } = configuration;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetMediaOutputFilterSensitiveLog = exports.GetMediaInputFilterSensitiveLog = exports.StartSelectorFilterSensitiveLog = exports.ResourceNotFoundException = exports.NotAuthorizedException = exports.InvalidEndpointException = exports.InvalidArgumentException = exports.StartSelectorType = exports.ConnectionLimitExceededException = exports.ClientLimitExceededException = void 0;
3
+ exports.GetMediaOutputFilterSensitiveLog = exports.ResourceNotFoundException = exports.NotAuthorizedException = exports.InvalidEndpointException = exports.InvalidArgumentException = exports.StartSelectorType = exports.ConnectionLimitExceededException = exports.ClientLimitExceededException = void 0;
4
4
  const KinesisVideoMediaServiceException_1 = require("./KinesisVideoMediaServiceException");
5
5
  class ClientLimitExceededException extends KinesisVideoMediaServiceException_1.KinesisVideoMediaServiceException {
6
6
  constructor(opts) {
@@ -95,14 +95,6 @@ class ResourceNotFoundException extends KinesisVideoMediaServiceException_1.Kine
95
95
  }
96
96
  }
97
97
  exports.ResourceNotFoundException = ResourceNotFoundException;
98
- const StartSelectorFilterSensitiveLog = (obj) => ({
99
- ...obj,
100
- });
101
- exports.StartSelectorFilterSensitiveLog = StartSelectorFilterSensitiveLog;
102
- const GetMediaInputFilterSensitiveLog = (obj) => ({
103
- ...obj,
104
- });
105
- exports.GetMediaInputFilterSensitiveLog = GetMediaInputFilterSensitiveLog;
106
98
  const GetMediaOutputFilterSensitiveLog = (obj) => ({
107
99
  ...obj,
108
100
  });
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { GetMediaInputFilterSensitiveLog, GetMediaOutputFilterSensitiveLog, } from "../models/models_0";
4
+ import { GetMediaOutputFilterSensitiveLog } from "../models/models_0";
5
5
  import { deserializeAws_restJson1GetMediaCommand, serializeAws_restJson1GetMediaCommand, } from "../protocols/Aws_restJson1";
6
6
  export class GetMediaCommand extends $Command {
7
7
  static getEndpointParameterInstructions() {
@@ -27,7 +27,7 @@ export class GetMediaCommand extends $Command {
27
27
  logger,
28
28
  clientName,
29
29
  commandName,
30
- inputFilterSensitiveLog: GetMediaInputFilterSensitiveLog,
30
+ inputFilterSensitiveLog: (_) => _,
31
31
  outputFilterSensitiveLog: GetMediaOutputFilterSensitiveLog,
32
32
  };
33
33
  const { requestHandler } = configuration;
@@ -86,12 +86,6 @@ export class ResourceNotFoundException extends __BaseException {
86
86
  this.Message = opts.Message;
87
87
  }
88
88
  }
89
- export const StartSelectorFilterSensitiveLog = (obj) => ({
90
- ...obj,
91
- });
92
- export const GetMediaInputFilterSensitiveLog = (obj) => ({
93
- ...obj,
94
- });
95
89
  export const GetMediaOutputFilterSensitiveLog = (obj) => ({
96
90
  ...obj,
97
91
  });
@@ -268,14 +268,6 @@ export declare class ResourceNotFoundException extends __BaseException {
268
268
  */
269
269
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
270
270
  }
271
- /**
272
- * @internal
273
- */
274
- export declare const StartSelectorFilterSensitiveLog: (obj: StartSelector) => any;
275
- /**
276
- * @internal
277
- */
278
- export declare const GetMediaInputFilterSensitiveLog: (obj: GetMediaInput) => any;
279
271
  /**
280
272
  * @internal
281
273
  */
@@ -75,12 +75,6 @@ export declare class ResourceNotFoundException extends __BaseException {
75
75
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
76
76
  );
77
77
  }
78
- export declare const StartSelectorFilterSensitiveLog: (
79
- obj: StartSelector
80
- ) => any;
81
- export declare const GetMediaInputFilterSensitiveLog: (
82
- obj: GetMediaInput
83
- ) => any;
84
78
  export declare const GetMediaOutputFilterSensitiveLog: (
85
79
  obj: GetMediaOutput
86
80
  ) => any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-kinesis-video-media",
3
3
  "description": "AWS SDK for JavaScript Kinesis Video Media Client for Node.js, Browser and React Native",
4
- "version": "3.297.0",
4
+ "version": "3.298.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -11,6 +11,7 @@
11
11
  "build:types": "tsc -p tsconfig.types.json",
12
12
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
13
13
  "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
14
+ "extract:docs": "api-extractor run --local",
14
15
  "generate:client": "node ../../scripts/generate-clients/single-service --solo kinesis-video-media"
15
16
  },
16
17
  "main": "./dist-cjs/index.js",
@@ -20,9 +21,9 @@
20
21
  "dependencies": {
21
22
  "@aws-crypto/sha256-browser": "3.0.0",
22
23
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.297.0",
24
+ "@aws-sdk/client-sts": "3.298.0",
24
25
  "@aws-sdk/config-resolver": "3.296.0",
25
- "@aws-sdk/credential-provider-node": "3.297.0",
26
+ "@aws-sdk/credential-provider-node": "3.298.0",
26
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
27
28
  "@aws-sdk/hash-node": "3.296.0",
28
29
  "@aws-sdk/invalid-dependency": "3.296.0",