@aws-sdk/client-kinesis-video-signaling 3.529.1 → 3.535.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.
@@ -17,10 +17,10 @@ export interface KinesisVideoSignaling {
17
17
  sendAlexaOfferToMaster(args: SendAlexaOfferToMasterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendAlexaOfferToMasterCommandOutput) => void): void;
18
18
  }
19
19
  /**
20
- * @public
21
20
  * <p>Kinesis Video Streams Signaling Service is a intermediate service that establishes a
22
21
  * communication channel for discovering peers, transmitting offers and answers in order to
23
22
  * establish peer-to-peer connection in webRTC technology.</p>
23
+ * @public
24
24
  */
25
25
  export declare class KinesisVideoSignaling extends KinesisVideoSignalingClient implements KinesisVideoSignaling {
26
26
  }
@@ -153,10 +153,10 @@ export type KinesisVideoSignalingClientResolvedConfigType = __SmithyResolvedConf
153
153
  export interface KinesisVideoSignalingClientResolvedConfig extends KinesisVideoSignalingClientResolvedConfigType {
154
154
  }
155
155
  /**
156
- * @public
157
156
  * <p>Kinesis Video Streams Signaling Service is a intermediate service that establishes a
158
157
  * communication channel for discovering peers, transmitting offers and answers in order to
159
158
  * establish peer-to-peer connection in webRTC technology.</p>
159
+ * @public
160
160
  */
161
161
  export declare class KinesisVideoSignalingClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, KinesisVideoSignalingClientResolvedConfig> {
162
162
  /**
@@ -22,10 +22,10 @@ export interface GetIceServerConfigCommandOutput extends GetIceServerConfigRespo
22
22
  }
23
23
  declare const GetIceServerConfigCommand_base: {
24
24
  new (input: GetIceServerConfigCommandInput): import("@smithy/smithy-client").CommandImpl<GetIceServerConfigCommandInput, GetIceServerConfigCommandOutput, KinesisVideoSignalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetIceServerConfigCommandInput): import("@smithy/smithy-client").CommandImpl<GetIceServerConfigCommandInput, GetIceServerConfigCommandOutput, KinesisVideoSignalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Gets the Interactive Connectivity Establishment (ICE) server configuration
30
30
  * information, including URIs, username, and password which can be used to configure the
31
31
  * WebRTC connection. The ICE component uses this configuration information to setup the
@@ -99,6 +99,7 @@ declare const GetIceServerConfigCommand_base: {
99
99
  * @throws {@link KinesisVideoSignalingServiceException}
100
100
  * <p>Base exception class for all service exceptions from KinesisVideoSignaling service.</p>
101
101
  *
102
+ * @public
102
103
  */
103
104
  export declare class GetIceServerConfigCommand extends GetIceServerConfigCommand_base {
104
105
  }
@@ -22,10 +22,10 @@ export interface SendAlexaOfferToMasterCommandOutput extends SendAlexaOfferToMas
22
22
  }
23
23
  declare const SendAlexaOfferToMasterCommand_base: {
24
24
  new (input: SendAlexaOfferToMasterCommandInput): import("@smithy/smithy-client").CommandImpl<SendAlexaOfferToMasterCommandInput, SendAlexaOfferToMasterCommandOutput, KinesisVideoSignalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: SendAlexaOfferToMasterCommandInput): import("@smithy/smithy-client").CommandImpl<SendAlexaOfferToMasterCommandInput, SendAlexaOfferToMasterCommandOutput, KinesisVideoSignalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>This API allows you to connect WebRTC-enabled devices with Alexa display devices. When
30
30
  * invoked, it sends the Alexa Session Description Protocol (SDP) offer to the master peer.
31
31
  * The offer is delivered as soon as the master is connected to the specified signaling
@@ -73,6 +73,7 @@ declare const SendAlexaOfferToMasterCommand_base: {
73
73
  * @throws {@link KinesisVideoSignalingServiceException}
74
74
  * <p>Base exception class for all service exceptions from KinesisVideoSignaling service.</p>
75
75
  *
76
+ * @public
76
77
  */
77
78
  export declare class SendAlexaOfferToMasterCommand extends SendAlexaOfferToMasterCommand_base {
78
79
  }
@@ -1,9 +1,9 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { KinesisVideoSignalingServiceException as __BaseException } from "./KinesisVideoSignalingServiceException";
3
3
  /**
4
- * @public
5
4
  * <p>Your request was throttled because you have exceeded the limit of allowed client
6
5
  * calls. Try making the call later.</p>
6
+ * @public
7
7
  */
8
8
  export declare class ClientLimitExceededException extends __BaseException {
9
9
  readonly name: "ClientLimitExceededException";
@@ -30,53 +30,53 @@ export type Service = (typeof Service)[keyof typeof Service];
30
30
  */
31
31
  export interface GetIceServerConfigRequest {
32
32
  /**
33
- * @public
34
33
  * <p>The ARN of the signaling channel to be used for the peer-to-peer connection between
35
34
  * configured peers. </p>
35
+ * @public
36
36
  */
37
37
  ChannelARN: string | undefined;
38
38
  /**
39
- * @public
40
39
  * <p>Unique identifier for the viewer. Must be unique within the signaling channel.</p>
40
+ * @public
41
41
  */
42
42
  ClientId?: string;
43
43
  /**
44
- * @public
45
44
  * <p>Specifies the desired service. Currently, <code>TURN</code> is the only valid
46
45
  * value.</p>
46
+ * @public
47
47
  */
48
48
  Service?: Service;
49
49
  /**
50
- * @public
51
50
  * <p>An optional user ID to be associated with the credentials.</p>
51
+ * @public
52
52
  */
53
53
  Username?: string;
54
54
  }
55
55
  /**
56
- * @public
57
56
  * <p>A structure for the ICE server connection data.</p>
57
+ * @public
58
58
  */
59
59
  export interface IceServer {
60
60
  /**
61
- * @public
62
61
  * <p>An array of URIs, in the form specified in the <a href="https://tools.ietf.org/html/draft-petithuguenin-behave-turn-uris-03">I-D.petithuguenin-behave-turn-uris</a> spec. These URIs provide the different
63
62
  * addresses and/or protocols that can be used to reach the TURN server.</p>
63
+ * @public
64
64
  */
65
65
  Uris?: string[];
66
66
  /**
67
- * @public
68
67
  * <p>A username to login to the ICE server.</p>
68
+ * @public
69
69
  */
70
70
  Username?: string;
71
71
  /**
72
- * @public
73
72
  * <p>A password to login to the ICE server.</p>
73
+ * @public
74
74
  */
75
75
  Password?: string;
76
76
  /**
77
- * @public
78
77
  * <p>The period of time, in seconds, during which the username and password are
79
78
  * valid.</p>
79
+ * @public
80
80
  */
81
81
  Ttl?: number;
82
82
  }
@@ -85,14 +85,14 @@ export interface IceServer {
85
85
  */
86
86
  export interface GetIceServerConfigResponse {
87
87
  /**
88
- * @public
89
88
  * <p>The list of ICE server information objects.</p>
89
+ * @public
90
90
  */
91
91
  IceServerList?: IceServer[];
92
92
  }
93
93
  /**
94
- * @public
95
94
  * <p>The value for this input parameter is invalid.</p>
95
+ * @public
96
96
  */
97
97
  export declare class InvalidArgumentException extends __BaseException {
98
98
  readonly name: "InvalidArgumentException";
@@ -104,8 +104,8 @@ export declare class InvalidArgumentException extends __BaseException {
104
104
  constructor(opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>);
105
105
  }
106
106
  /**
107
- * @public
108
107
  * <p>The specified client is invalid.</p>
108
+ * @public
109
109
  */
110
110
  export declare class InvalidClientException extends __BaseException {
111
111
  readonly name: "InvalidClientException";
@@ -116,8 +116,8 @@ export declare class InvalidClientException extends __BaseException {
116
116
  constructor(opts: __ExceptionOptionType<InvalidClientException, __BaseException>);
117
117
  }
118
118
  /**
119
- * @public
120
119
  * <p>The caller is not authorized to perform this operation.</p>
120
+ * @public
121
121
  */
122
122
  export declare class NotAuthorizedException extends __BaseException {
123
123
  readonly name: "NotAuthorizedException";
@@ -129,8 +129,8 @@ export declare class NotAuthorizedException extends __BaseException {
129
129
  constructor(opts: __ExceptionOptionType<NotAuthorizedException, __BaseException>);
130
130
  }
131
131
  /**
132
- * @public
133
132
  * <p>The specified resource is not found.</p>
133
+ * @public
134
134
  */
135
135
  export declare class ResourceNotFoundException extends __BaseException {
136
136
  readonly name: "ResourceNotFoundException";
@@ -142,10 +142,10 @@ export declare class ResourceNotFoundException extends __BaseException {
142
142
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
143
143
  }
144
144
  /**
145
- * @public
146
145
  * <p>If the client session is expired. Once the client is connected, the session is valid
147
146
  * for 45 minutes. Client should reconnect to the channel to continue sending/receiving
148
147
  * messages.</p>
148
+ * @public
149
149
  */
150
150
  export declare class SessionExpiredException extends __BaseException {
151
151
  readonly name: "SessionExpiredException";
@@ -160,19 +160,19 @@ export declare class SessionExpiredException extends __BaseException {
160
160
  */
161
161
  export interface SendAlexaOfferToMasterRequest {
162
162
  /**
163
- * @public
164
163
  * <p>The ARN of the signaling channel by which Alexa and the master peer
165
164
  * communicate.</p>
165
+ * @public
166
166
  */
167
167
  ChannelARN: string | undefined;
168
168
  /**
169
- * @public
170
169
  * <p>The unique identifier for the sender client.</p>
170
+ * @public
171
171
  */
172
172
  SenderClientId: string | undefined;
173
173
  /**
174
- * @public
175
174
  * <p>The base64-encoded SDP offer content.</p>
175
+ * @public
176
176
  */
177
177
  MessagePayload: string | undefined;
178
178
  }
@@ -181,8 +181,8 @@ export interface SendAlexaOfferToMasterRequest {
181
181
  */
182
182
  export interface SendAlexaOfferToMasterResponse {
183
183
  /**
184
- * @public
185
184
  * <p>The base64-encoded SDP answer content.</p>
185
+ * @public
186
186
  */
187
187
  Answer?: string;
188
188
  }
@@ -20,9 +20,9 @@ export declare const getRuntimeConfig: (config: KinesisVideoSignalingClientConfi
20
20
  apiVersion: string;
21
21
  urlParser: import("@smithy/types").UrlParser;
22
22
  base64Decoder: import("@smithy/types").Decoder;
23
- base64Encoder: import("@smithy/types").Encoder;
23
+ base64Encoder: (_input: string | Uint8Array) => string;
24
24
  utf8Decoder: import("@smithy/types").Decoder;
25
- utf8Encoder: import("@smithy/types").Encoder;
25
+ utf8Encoder: (input: string | Uint8Array) => string;
26
26
  disableHostPrefix: boolean;
27
27
  serviceId: string;
28
28
  logger: import("@smithy/types").Logger;
@@ -20,9 +20,9 @@ export declare const getRuntimeConfig: (config: KinesisVideoSignalingClientConfi
20
20
  apiVersion: string;
21
21
  urlParser: import("@smithy/types").UrlParser;
22
22
  base64Decoder: import("@smithy/types").Decoder;
23
- base64Encoder: import("@smithy/types").Encoder;
23
+ base64Encoder: (_input: string | Uint8Array) => string;
24
24
  utf8Decoder: import("@smithy/types").Decoder;
25
- utf8Encoder: import("@smithy/types").Encoder;
25
+ utf8Encoder: (input: string | Uint8Array) => string;
26
26
  disableHostPrefix: boolean;
27
27
  serviceId: string;
28
28
  logger: import("@smithy/types").Logger;
@@ -11,9 +11,9 @@ export declare const getRuntimeConfig: (config: KinesisVideoSignalingClientConfi
11
11
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
12
12
  streamCollector: import("@smithy/types").StreamCollector;
13
13
  base64Decoder: import("@smithy/types").Decoder;
14
- base64Encoder: import("@smithy/types").Encoder;
14
+ base64Encoder: (_input: string | Uint8Array) => string;
15
15
  utf8Decoder: import("@smithy/types").Decoder;
16
- utf8Encoder: import("@smithy/types").Encoder;
16
+ utf8Encoder: (input: string | Uint8Array) => string;
17
17
  disableHostPrefix: boolean;
18
18
  serviceId: string;
19
19
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
@@ -5,7 +5,7 @@ import { KinesisVideoSignalingClientConfig } from "./KinesisVideoSignalingClient
5
5
  export declare const getRuntimeConfig: (config: KinesisVideoSignalingClientConfig) => {
6
6
  apiVersion: string;
7
7
  base64Decoder: import("@smithy/types").Decoder;
8
- base64Encoder: import("@smithy/types").Encoder;
8
+ base64Encoder: (_input: string | Uint8Array) => string;
9
9
  disableHostPrefix: boolean;
10
10
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
11
11
  logger?: import("@smithy/types").Logger | undefined;
@@ -17,5 +17,5 @@ export declare const getRuntimeConfig: (config: KinesisVideoSignalingClientConfi
17
17
  serviceId: string;
18
18
  urlParser: import("@smithy/types").UrlParser;
19
19
  utf8Decoder: import("@smithy/types").Decoder;
20
- utf8Encoder: import("@smithy/types").Encoder;
20
+ utf8Encoder: (input: string | Uint8Array) => string;
21
21
  };
@@ -25,6 +25,15 @@ declare const GetIceServerConfigCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: GetIceServerConfigCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetIceServerConfigCommandInput,
32
+ GetIceServerConfigCommandOutput,
33
+ KinesisVideoSignalingClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class GetIceServerConfigCommand extends GetIceServerConfigCommand_base {}
@@ -25,6 +25,15 @@ declare const SendAlexaOfferToMasterCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: SendAlexaOfferToMasterCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ SendAlexaOfferToMasterCommandInput,
32
+ SendAlexaOfferToMasterCommandOutput,
33
+ KinesisVideoSignalingClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class SendAlexaOfferToMasterCommand extends SendAlexaOfferToMasterCommand_base {}
@@ -27,9 +27,9 @@ export declare const getRuntimeConfig: (
27
27
  apiVersion: string;
28
28
  urlParser: import("@smithy/types").UrlParser;
29
29
  base64Decoder: import("@smithy/types").Decoder;
30
- base64Encoder: import("@smithy/types").Encoder;
30
+ base64Encoder: (_input: string | Uint8Array) => string;
31
31
  utf8Decoder: import("@smithy/types").Decoder;
32
- utf8Encoder: import("@smithy/types").Encoder;
32
+ utf8Encoder: (input: string | Uint8Array) => string;
33
33
  disableHostPrefix: boolean;
34
34
  serviceId: string;
35
35
  logger: import("@smithy/types").Logger;
@@ -31,9 +31,9 @@ export declare const getRuntimeConfig: (
31
31
  apiVersion: string;
32
32
  urlParser: import("@smithy/types").UrlParser;
33
33
  base64Decoder: import("@smithy/types").Decoder;
34
- base64Encoder: import("@smithy/types").Encoder;
34
+ base64Encoder: (_input: string | Uint8Array) => string;
35
35
  utf8Decoder: import("@smithy/types").Decoder;
36
- utf8Encoder: import("@smithy/types").Encoder;
36
+ utf8Encoder: (input: string | Uint8Array) => string;
37
37
  disableHostPrefix: boolean;
38
38
  serviceId: string;
39
39
  logger: import("@smithy/types").Logger;
@@ -15,9 +15,9 @@ export declare const getRuntimeConfig: (
15
15
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
16
16
  streamCollector: import("@smithy/types").StreamCollector;
17
17
  base64Decoder: import("@smithy/types").Decoder;
18
- base64Encoder: import("@smithy/types").Encoder;
18
+ base64Encoder: (_input: string | Uint8Array) => string;
19
19
  utf8Decoder: import("@smithy/types").Decoder;
20
- utf8Encoder: import("@smithy/types").Encoder;
20
+ utf8Encoder: (input: string | Uint8Array) => string;
21
21
  disableHostPrefix: boolean;
22
22
  serviceId: string;
23
23
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
@@ -4,7 +4,7 @@ export declare const getRuntimeConfig: (
4
4
  ) => {
5
5
  apiVersion: string;
6
6
  base64Decoder: import("@smithy/types").Decoder;
7
- base64Encoder: import("@smithy/types").Encoder;
7
+ base64Encoder: (_input: string | Uint8Array) => string;
8
8
  disableHostPrefix: boolean;
9
9
  endpointProvider: (
10
10
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
@@ -19,5 +19,5 @@ export declare const getRuntimeConfig: (
19
19
  serviceId: string;
20
20
  urlParser: import("@smithy/types").UrlParser;
21
21
  utf8Decoder: import("@smithy/types").Decoder;
22
- utf8Encoder: import("@smithy/types").Encoder;
22
+ utf8Encoder: (input: string | Uint8Array) => string;
23
23
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-kinesis-video-signaling",
3
3
  "description": "AWS SDK for JavaScript Kinesis Video Signaling Client for Node.js, Browser and React Native",
4
- "version": "3.529.1",
4
+ "version": "3.535.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-kinesis-video-signaling",
@@ -20,47 +20,47 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.529.1",
24
- "@aws-sdk/core": "3.529.1",
25
- "@aws-sdk/credential-provider-node": "3.529.1",
26
- "@aws-sdk/middleware-host-header": "3.523.0",
27
- "@aws-sdk/middleware-logger": "3.523.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.523.0",
29
- "@aws-sdk/middleware-user-agent": "3.525.0",
30
- "@aws-sdk/region-config-resolver": "3.525.0",
31
- "@aws-sdk/types": "3.523.0",
32
- "@aws-sdk/util-endpoints": "3.525.0",
33
- "@aws-sdk/util-user-agent-browser": "3.523.0",
34
- "@aws-sdk/util-user-agent-node": "3.525.0",
35
- "@smithy/config-resolver": "^2.1.4",
36
- "@smithy/core": "^1.3.5",
37
- "@smithy/fetch-http-handler": "^2.4.3",
38
- "@smithy/hash-node": "^2.1.3",
39
- "@smithy/invalid-dependency": "^2.1.3",
40
- "@smithy/middleware-content-length": "^2.1.3",
41
- "@smithy/middleware-endpoint": "^2.4.4",
42
- "@smithy/middleware-retry": "^2.1.4",
43
- "@smithy/middleware-serde": "^2.1.3",
44
- "@smithy/middleware-stack": "^2.1.3",
45
- "@smithy/node-config-provider": "^2.2.4",
46
- "@smithy/node-http-handler": "^2.4.1",
47
- "@smithy/protocol-http": "^3.2.1",
48
- "@smithy/smithy-client": "^2.4.2",
49
- "@smithy/types": "^2.10.1",
50
- "@smithy/url-parser": "^2.1.3",
51
- "@smithy/util-base64": "^2.1.1",
52
- "@smithy/util-body-length-browser": "^2.1.1",
53
- "@smithy/util-body-length-node": "^2.2.1",
54
- "@smithy/util-defaults-mode-browser": "^2.1.4",
55
- "@smithy/util-defaults-mode-node": "^2.2.3",
56
- "@smithy/util-endpoints": "^1.1.4",
57
- "@smithy/util-middleware": "^2.1.3",
58
- "@smithy/util-retry": "^2.1.3",
59
- "@smithy/util-utf8": "^2.1.1",
60
- "tslib": "^2.5.0"
23
+ "@aws-sdk/client-sts": "3.535.0",
24
+ "@aws-sdk/core": "3.535.0",
25
+ "@aws-sdk/credential-provider-node": "3.535.0",
26
+ "@aws-sdk/middleware-host-header": "3.535.0",
27
+ "@aws-sdk/middleware-logger": "3.535.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.535.0",
29
+ "@aws-sdk/middleware-user-agent": "3.535.0",
30
+ "@aws-sdk/region-config-resolver": "3.535.0",
31
+ "@aws-sdk/types": "3.535.0",
32
+ "@aws-sdk/util-endpoints": "3.535.0",
33
+ "@aws-sdk/util-user-agent-browser": "3.535.0",
34
+ "@aws-sdk/util-user-agent-node": "3.535.0",
35
+ "@smithy/config-resolver": "^2.2.0",
36
+ "@smithy/core": "^1.4.0",
37
+ "@smithy/fetch-http-handler": "^2.5.0",
38
+ "@smithy/hash-node": "^2.2.0",
39
+ "@smithy/invalid-dependency": "^2.2.0",
40
+ "@smithy/middleware-content-length": "^2.2.0",
41
+ "@smithy/middleware-endpoint": "^2.5.0",
42
+ "@smithy/middleware-retry": "^2.2.0",
43
+ "@smithy/middleware-serde": "^2.3.0",
44
+ "@smithy/middleware-stack": "^2.2.0",
45
+ "@smithy/node-config-provider": "^2.3.0",
46
+ "@smithy/node-http-handler": "^2.5.0",
47
+ "@smithy/protocol-http": "^3.3.0",
48
+ "@smithy/smithy-client": "^2.5.0",
49
+ "@smithy/types": "^2.12.0",
50
+ "@smithy/url-parser": "^2.2.0",
51
+ "@smithy/util-base64": "^2.3.0",
52
+ "@smithy/util-body-length-browser": "^2.2.0",
53
+ "@smithy/util-body-length-node": "^2.3.0",
54
+ "@smithy/util-defaults-mode-browser": "^2.2.0",
55
+ "@smithy/util-defaults-mode-node": "^2.3.0",
56
+ "@smithy/util-endpoints": "^1.2.0",
57
+ "@smithy/util-middleware": "^2.2.0",
58
+ "@smithy/util-retry": "^2.2.0",
59
+ "@smithy/util-utf8": "^2.3.0",
60
+ "tslib": "^2.6.2"
61
61
  },
62
62
  "devDependencies": {
63
- "@smithy/service-client-documentation-generator": "^2.1.1",
63
+ "@smithy/service-client-documentation-generator": "^2.2.0",
64
64
  "@tsconfig/node14": "1.0.3",
65
65
  "@types/node": "^14.14.31",
66
66
  "concurrently": "7.0.0",