@aws-sdk/client-kinesis-video-signaling 3.933.0 → 3.935.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/dist-cjs/index.js CHANGED
@@ -132,9 +132,6 @@ let ClientLimitExceededException$1 = class ClientLimitExceededException extends
132
132
  this.Message = opts.Message;
133
133
  }
134
134
  };
135
- const Service = {
136
- TURN: "TURN",
137
- };
138
135
  let InvalidArgumentException$1 = class InvalidArgumentException extends KinesisVideoSignalingServiceException$1 {
139
136
  name = "InvalidArgumentException";
140
137
  $fault = "client";
@@ -374,6 +371,10 @@ class KinesisVideoSignaling extends KinesisVideoSignalingClient {
374
371
  }
375
372
  smithyClient.createAggregatedClient(commands, KinesisVideoSignaling);
376
373
 
374
+ const Service = {
375
+ TURN: "TURN",
376
+ };
377
+
377
378
  Object.defineProperty(exports, "$Command", {
378
379
  enumerable: true,
379
380
  get: function () { return smithyClient.Command; }
package/dist-es/index.js CHANGED
@@ -1,5 +1,6 @@
1
1
  export * from "./KinesisVideoSignalingClient";
2
2
  export * from "./KinesisVideoSignaling";
3
3
  export * from "./commands";
4
- export * from "./models";
4
+ export * from "./models/enums";
5
+ export * from "./models/errors";
5
6
  export { KinesisVideoSignalingServiceException } from "./models/KinesisVideoSignalingServiceException";
@@ -0,0 +1,3 @@
1
+ export const Service = {
2
+ TURN: "TURN",
3
+ };
@@ -0,0 +1,81 @@
1
+ import { KinesisVideoSignalingServiceException as __BaseException } from "./KinesisVideoSignalingServiceException";
2
+ export class ClientLimitExceededException extends __BaseException {
3
+ name = "ClientLimitExceededException";
4
+ $fault = "client";
5
+ Message;
6
+ constructor(opts) {
7
+ super({
8
+ name: "ClientLimitExceededException",
9
+ $fault: "client",
10
+ ...opts,
11
+ });
12
+ Object.setPrototypeOf(this, ClientLimitExceededException.prototype);
13
+ this.Message = opts.Message;
14
+ }
15
+ }
16
+ export class InvalidArgumentException extends __BaseException {
17
+ name = "InvalidArgumentException";
18
+ $fault = "client";
19
+ Message;
20
+ constructor(opts) {
21
+ super({
22
+ name: "InvalidArgumentException",
23
+ $fault: "client",
24
+ ...opts,
25
+ });
26
+ Object.setPrototypeOf(this, InvalidArgumentException.prototype);
27
+ this.Message = opts.Message;
28
+ }
29
+ }
30
+ export class InvalidClientException extends __BaseException {
31
+ name = "InvalidClientException";
32
+ $fault = "client";
33
+ constructor(opts) {
34
+ super({
35
+ name: "InvalidClientException",
36
+ $fault: "client",
37
+ ...opts,
38
+ });
39
+ Object.setPrototypeOf(this, InvalidClientException.prototype);
40
+ }
41
+ }
42
+ export class NotAuthorizedException extends __BaseException {
43
+ name = "NotAuthorizedException";
44
+ $fault = "client";
45
+ Message;
46
+ constructor(opts) {
47
+ super({
48
+ name: "NotAuthorizedException",
49
+ $fault: "client",
50
+ ...opts,
51
+ });
52
+ Object.setPrototypeOf(this, NotAuthorizedException.prototype);
53
+ this.Message = opts.Message;
54
+ }
55
+ }
56
+ export class ResourceNotFoundException extends __BaseException {
57
+ name = "ResourceNotFoundException";
58
+ $fault = "client";
59
+ Message;
60
+ constructor(opts) {
61
+ super({
62
+ name: "ResourceNotFoundException",
63
+ $fault: "client",
64
+ ...opts,
65
+ });
66
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
67
+ this.Message = opts.Message;
68
+ }
69
+ }
70
+ export class SessionExpiredException extends __BaseException {
71
+ name = "SessionExpiredException";
72
+ $fault = "client";
73
+ constructor(opts) {
74
+ super({
75
+ name: "SessionExpiredException",
76
+ $fault: "client",
77
+ ...opts,
78
+ });
79
+ Object.setPrototypeOf(this, SessionExpiredException.prototype);
80
+ }
81
+ }
@@ -1,84 +1 @@
1
- import { KinesisVideoSignalingServiceException as __BaseException } from "./KinesisVideoSignalingServiceException";
2
- export class ClientLimitExceededException extends __BaseException {
3
- name = "ClientLimitExceededException";
4
- $fault = "client";
5
- Message;
6
- constructor(opts) {
7
- super({
8
- name: "ClientLimitExceededException",
9
- $fault: "client",
10
- ...opts,
11
- });
12
- Object.setPrototypeOf(this, ClientLimitExceededException.prototype);
13
- this.Message = opts.Message;
14
- }
15
- }
16
- export const Service = {
17
- TURN: "TURN",
18
- };
19
- export class InvalidArgumentException extends __BaseException {
20
- name = "InvalidArgumentException";
21
- $fault = "client";
22
- Message;
23
- constructor(opts) {
24
- super({
25
- name: "InvalidArgumentException",
26
- $fault: "client",
27
- ...opts,
28
- });
29
- Object.setPrototypeOf(this, InvalidArgumentException.prototype);
30
- this.Message = opts.Message;
31
- }
32
- }
33
- export class InvalidClientException extends __BaseException {
34
- name = "InvalidClientException";
35
- $fault = "client";
36
- constructor(opts) {
37
- super({
38
- name: "InvalidClientException",
39
- $fault: "client",
40
- ...opts,
41
- });
42
- Object.setPrototypeOf(this, InvalidClientException.prototype);
43
- }
44
- }
45
- export class NotAuthorizedException extends __BaseException {
46
- name = "NotAuthorizedException";
47
- $fault = "client";
48
- Message;
49
- constructor(opts) {
50
- super({
51
- name: "NotAuthorizedException",
52
- $fault: "client",
53
- ...opts,
54
- });
55
- Object.setPrototypeOf(this, NotAuthorizedException.prototype);
56
- this.Message = opts.Message;
57
- }
58
- }
59
- export class ResourceNotFoundException extends __BaseException {
60
- name = "ResourceNotFoundException";
61
- $fault = "client";
62
- Message;
63
- constructor(opts) {
64
- super({
65
- name: "ResourceNotFoundException",
66
- $fault: "client",
67
- ...opts,
68
- });
69
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
70
- this.Message = opts.Message;
71
- }
72
- }
73
- export class SessionExpiredException extends __BaseException {
74
- name = "SessionExpiredException";
75
- $fault = "client";
76
- constructor(opts) {
77
- super({
78
- name: "SessionExpiredException",
79
- $fault: "client",
80
- ...opts,
81
- });
82
- Object.setPrototypeOf(this, SessionExpiredException.prototype);
83
- }
84
- }
1
+ export {};
@@ -31,7 +31,7 @@ const _m = "message";
31
31
  const _s = "smithy.ts.sdk.synthetic.com.amazonaws.kinesisvideosignaling";
32
32
  const n0 = "com.amazonaws.kinesisvideosignaling";
33
33
  import { TypeRegistry } from "@smithy/core/schema";
34
- import { ClientLimitExceededException as __ClientLimitExceededException, InvalidArgumentException as __InvalidArgumentException, InvalidClientException as __InvalidClientException, NotAuthorizedException as __NotAuthorizedException, ResourceNotFoundException as __ResourceNotFoundException, SessionExpiredException as __SessionExpiredException, } from "../models/index";
34
+ import { ClientLimitExceededException as __ClientLimitExceededException, InvalidArgumentException as __InvalidArgumentException, InvalidClientException as __InvalidClientException, NotAuthorizedException as __NotAuthorizedException, ResourceNotFoundException as __ResourceNotFoundException, SessionExpiredException as __SessionExpiredException, } from "../models/errors";
35
35
  import { KinesisVideoSignalingServiceException as __KinesisVideoSignalingServiceException } from "../models/KinesisVideoSignalingServiceException";
36
36
  export var ClientLimitExceededException = [
37
37
  -3,
@@ -11,5 +11,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
11
11
  export type { RuntimeExtension } from "./runtimeExtensions";
12
12
  export type { KinesisVideoSignalingExtensionConfiguration } from "./extensionConfiguration";
13
13
  export * from "./commands";
14
- export * from "./models";
14
+ export * from "./models/enums";
15
+ export * from "./models/errors";
16
+ export type * from "./models/models_0";
15
17
  export { KinesisVideoSignalingServiceException } from "./models/KinesisVideoSignalingServiceException";
@@ -0,0 +1,11 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const Service: {
6
+ readonly TURN: "TURN";
7
+ };
8
+ /**
9
+ * @public
10
+ */
11
+ export type Service = (typeof Service)[keyof typeof Service];
@@ -0,0 +1,81 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { KinesisVideoSignalingServiceException as __BaseException } from "./KinesisVideoSignalingServiceException";
3
+ /**
4
+ * <p>Your request was throttled because you have exceeded the limit of allowed client
5
+ * calls. Try making the call later.</p>
6
+ * @public
7
+ */
8
+ export declare class ClientLimitExceededException extends __BaseException {
9
+ readonly name: "ClientLimitExceededException";
10
+ readonly $fault: "client";
11
+ Message?: string | undefined;
12
+ /**
13
+ * @internal
14
+ */
15
+ constructor(opts: __ExceptionOptionType<ClientLimitExceededException, __BaseException>);
16
+ }
17
+ /**
18
+ * <p>The value for this input parameter is invalid.</p>
19
+ * @public
20
+ */
21
+ export declare class InvalidArgumentException extends __BaseException {
22
+ readonly name: "InvalidArgumentException";
23
+ readonly $fault: "client";
24
+ Message?: string | undefined;
25
+ /**
26
+ * @internal
27
+ */
28
+ constructor(opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>);
29
+ }
30
+ /**
31
+ * <p>The specified client is invalid.</p>
32
+ * @public
33
+ */
34
+ export declare class InvalidClientException extends __BaseException {
35
+ readonly name: "InvalidClientException";
36
+ readonly $fault: "client";
37
+ /**
38
+ * @internal
39
+ */
40
+ constructor(opts: __ExceptionOptionType<InvalidClientException, __BaseException>);
41
+ }
42
+ /**
43
+ * <p>The caller is not authorized to perform this operation.</p>
44
+ * @public
45
+ */
46
+ export declare class NotAuthorizedException extends __BaseException {
47
+ readonly name: "NotAuthorizedException";
48
+ readonly $fault: "client";
49
+ Message?: string | undefined;
50
+ /**
51
+ * @internal
52
+ */
53
+ constructor(opts: __ExceptionOptionType<NotAuthorizedException, __BaseException>);
54
+ }
55
+ /**
56
+ * <p>The specified resource is not found.</p>
57
+ * @public
58
+ */
59
+ export declare class ResourceNotFoundException extends __BaseException {
60
+ readonly name: "ResourceNotFoundException";
61
+ readonly $fault: "client";
62
+ Message?: string | undefined;
63
+ /**
64
+ * @internal
65
+ */
66
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
67
+ }
68
+ /**
69
+ * <p>If the client session is expired. Once the client is connected, the session is valid
70
+ * for 45 minutes. Client should reconnect to the channel to continue sending/receiving
71
+ * messages.</p>
72
+ * @public
73
+ */
74
+ export declare class SessionExpiredException extends __BaseException {
75
+ readonly name: "SessionExpiredException";
76
+ readonly $fault: "client";
77
+ /**
78
+ * @internal
79
+ */
80
+ constructor(opts: __ExceptionOptionType<SessionExpiredException, __BaseException>);
81
+ }
@@ -1,30 +1,4 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { KinesisVideoSignalingServiceException as __BaseException } from "./KinesisVideoSignalingServiceException";
3
- /**
4
- * <p>Your request was throttled because you have exceeded the limit of allowed client
5
- * calls. Try making the call later.</p>
6
- * @public
7
- */
8
- export declare class ClientLimitExceededException extends __BaseException {
9
- readonly name: "ClientLimitExceededException";
10
- readonly $fault: "client";
11
- Message?: string | undefined;
12
- /**
13
- * @internal
14
- */
15
- constructor(opts: __ExceptionOptionType<ClientLimitExceededException, __BaseException>);
16
- }
17
- /**
18
- * @public
19
- * @enum
20
- */
21
- export declare const Service: {
22
- readonly TURN: "TURN";
23
- };
24
- /**
25
- * @public
26
- */
27
- export type Service = (typeof Service)[keyof typeof Service];
1
+ import { Service } from "./enums";
28
2
  /**
29
3
  * @public
30
4
  */
@@ -90,71 +64,6 @@ export interface GetIceServerConfigResponse {
90
64
  */
91
65
  IceServerList?: IceServer[] | undefined;
92
66
  }
93
- /**
94
- * <p>The value for this input parameter is invalid.</p>
95
- * @public
96
- */
97
- export declare class InvalidArgumentException extends __BaseException {
98
- readonly name: "InvalidArgumentException";
99
- readonly $fault: "client";
100
- Message?: string | undefined;
101
- /**
102
- * @internal
103
- */
104
- constructor(opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>);
105
- }
106
- /**
107
- * <p>The specified client is invalid.</p>
108
- * @public
109
- */
110
- export declare class InvalidClientException extends __BaseException {
111
- readonly name: "InvalidClientException";
112
- readonly $fault: "client";
113
- /**
114
- * @internal
115
- */
116
- constructor(opts: __ExceptionOptionType<InvalidClientException, __BaseException>);
117
- }
118
- /**
119
- * <p>The caller is not authorized to perform this operation.</p>
120
- * @public
121
- */
122
- export declare class NotAuthorizedException extends __BaseException {
123
- readonly name: "NotAuthorizedException";
124
- readonly $fault: "client";
125
- Message?: string | undefined;
126
- /**
127
- * @internal
128
- */
129
- constructor(opts: __ExceptionOptionType<NotAuthorizedException, __BaseException>);
130
- }
131
- /**
132
- * <p>The specified resource is not found.</p>
133
- * @public
134
- */
135
- export declare class ResourceNotFoundException extends __BaseException {
136
- readonly name: "ResourceNotFoundException";
137
- readonly $fault: "client";
138
- Message?: string | undefined;
139
- /**
140
- * @internal
141
- */
142
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
143
- }
144
- /**
145
- * <p>If the client session is expired. Once the client is connected, the session is valid
146
- * for 45 minutes. Client should reconnect to the channel to continue sending/receiving
147
- * messages.</p>
148
- * @public
149
- */
150
- export declare class SessionExpiredException extends __BaseException {
151
- readonly name: "SessionExpiredException";
152
- readonly $fault: "client";
153
- /**
154
- * @internal
155
- */
156
- constructor(opts: __ExceptionOptionType<SessionExpiredException, __BaseException>);
157
- }
158
67
  /**
159
68
  * @public
160
69
  */
@@ -4,5 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
4
  export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { KinesisVideoSignalingExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
- export * from "./models";
7
+ export * from "./models/enums";
8
+ export * from "./models/errors";
9
+ export * from "./models/models_0";
8
10
  export { KinesisVideoSignalingServiceException } from "./models/KinesisVideoSignalingServiceException";
@@ -0,0 +1,4 @@
1
+ export declare const Service: {
2
+ readonly TURN: "TURN";
3
+ };
4
+ export type Service = (typeof Service)[keyof typeof Service];
@@ -0,0 +1,48 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { KinesisVideoSignalingServiceException as __BaseException } from "./KinesisVideoSignalingServiceException";
3
+ export declare class ClientLimitExceededException extends __BaseException {
4
+ readonly name: "ClientLimitExceededException";
5
+ readonly $fault: "client";
6
+ Message?: string | undefined;
7
+ constructor(
8
+ opts: __ExceptionOptionType<ClientLimitExceededException, __BaseException>
9
+ );
10
+ }
11
+ export declare class InvalidArgumentException extends __BaseException {
12
+ readonly name: "InvalidArgumentException";
13
+ readonly $fault: "client";
14
+ Message?: string | undefined;
15
+ constructor(
16
+ opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>
17
+ );
18
+ }
19
+ export declare class InvalidClientException extends __BaseException {
20
+ readonly name: "InvalidClientException";
21
+ readonly $fault: "client";
22
+ constructor(
23
+ opts: __ExceptionOptionType<InvalidClientException, __BaseException>
24
+ );
25
+ }
26
+ export declare class NotAuthorizedException extends __BaseException {
27
+ readonly name: "NotAuthorizedException";
28
+ readonly $fault: "client";
29
+ Message?: string | undefined;
30
+ constructor(
31
+ opts: __ExceptionOptionType<NotAuthorizedException, __BaseException>
32
+ );
33
+ }
34
+ export declare class ResourceNotFoundException extends __BaseException {
35
+ readonly name: "ResourceNotFoundException";
36
+ readonly $fault: "client";
37
+ Message?: string | undefined;
38
+ constructor(
39
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
40
+ );
41
+ }
42
+ export declare class SessionExpiredException extends __BaseException {
43
+ readonly name: "SessionExpiredException";
44
+ readonly $fault: "client";
45
+ constructor(
46
+ opts: __ExceptionOptionType<SessionExpiredException, __BaseException>
47
+ );
48
+ }
@@ -1,17 +1,4 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { KinesisVideoSignalingServiceException as __BaseException } from "./KinesisVideoSignalingServiceException";
3
- export declare class ClientLimitExceededException extends __BaseException {
4
- readonly name: "ClientLimitExceededException";
5
- readonly $fault: "client";
6
- Message?: string | undefined;
7
- constructor(
8
- opts: __ExceptionOptionType<ClientLimitExceededException, __BaseException>
9
- );
10
- }
11
- export declare const Service: {
12
- readonly TURN: "TURN";
13
- };
14
- export type Service = (typeof Service)[keyof typeof Service];
1
+ import { Service } from "./enums";
15
2
  export interface GetIceServerConfigRequest {
16
3
  ChannelARN: string | undefined;
17
4
  ClientId?: string | undefined;
@@ -27,44 +14,6 @@ export interface IceServer {
27
14
  export interface GetIceServerConfigResponse {
28
15
  IceServerList?: IceServer[] | undefined;
29
16
  }
30
- export declare class InvalidArgumentException extends __BaseException {
31
- readonly name: "InvalidArgumentException";
32
- readonly $fault: "client";
33
- Message?: string | undefined;
34
- constructor(
35
- opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>
36
- );
37
- }
38
- export declare class InvalidClientException extends __BaseException {
39
- readonly name: "InvalidClientException";
40
- readonly $fault: "client";
41
- constructor(
42
- opts: __ExceptionOptionType<InvalidClientException, __BaseException>
43
- );
44
- }
45
- export declare class NotAuthorizedException extends __BaseException {
46
- readonly name: "NotAuthorizedException";
47
- readonly $fault: "client";
48
- Message?: string | undefined;
49
- constructor(
50
- opts: __ExceptionOptionType<NotAuthorizedException, __BaseException>
51
- );
52
- }
53
- export declare class ResourceNotFoundException extends __BaseException {
54
- readonly name: "ResourceNotFoundException";
55
- readonly $fault: "client";
56
- Message?: string | undefined;
57
- constructor(
58
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
59
- );
60
- }
61
- export declare class SessionExpiredException extends __BaseException {
62
- readonly name: "SessionExpiredException";
63
- readonly $fault: "client";
64
- constructor(
65
- opts: __ExceptionOptionType<SessionExpiredException, __BaseException>
66
- );
67
- }
68
17
  export interface SendAlexaOfferToMasterRequest {
69
18
  ChannelARN: string | undefined;
70
19
  SenderClientId: string | undefined;
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.933.0",
4
+ "version": "3.935.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,38 +20,38 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.932.0",
24
- "@aws-sdk/credential-provider-node": "3.933.0",
23
+ "@aws-sdk/core": "3.935.0",
24
+ "@aws-sdk/credential-provider-node": "3.935.0",
25
25
  "@aws-sdk/middleware-host-header": "3.930.0",
26
26
  "@aws-sdk/middleware-logger": "3.930.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.933.0",
28
- "@aws-sdk/middleware-user-agent": "3.932.0",
28
+ "@aws-sdk/middleware-user-agent": "3.935.0",
29
29
  "@aws-sdk/region-config-resolver": "3.930.0",
30
30
  "@aws-sdk/types": "3.930.0",
31
31
  "@aws-sdk/util-endpoints": "3.930.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.930.0",
33
- "@aws-sdk/util-user-agent-node": "3.932.0",
33
+ "@aws-sdk/util-user-agent-node": "3.935.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
- "@smithy/core": "^3.18.2",
35
+ "@smithy/core": "^3.18.5",
36
36
  "@smithy/fetch-http-handler": "^5.3.6",
37
37
  "@smithy/hash-node": "^4.2.5",
38
38
  "@smithy/invalid-dependency": "^4.2.5",
39
39
  "@smithy/middleware-content-length": "^4.2.5",
40
- "@smithy/middleware-endpoint": "^4.3.9",
41
- "@smithy/middleware-retry": "^4.4.9",
42
- "@smithy/middleware-serde": "^4.2.5",
40
+ "@smithy/middleware-endpoint": "^4.3.12",
41
+ "@smithy/middleware-retry": "^4.4.12",
42
+ "@smithy/middleware-serde": "^4.2.6",
43
43
  "@smithy/middleware-stack": "^4.2.5",
44
44
  "@smithy/node-config-provider": "^4.3.5",
45
45
  "@smithy/node-http-handler": "^4.4.5",
46
46
  "@smithy/protocol-http": "^5.3.5",
47
- "@smithy/smithy-client": "^4.9.5",
47
+ "@smithy/smithy-client": "^4.9.8",
48
48
  "@smithy/types": "^4.9.0",
49
49
  "@smithy/url-parser": "^4.2.5",
50
50
  "@smithy/util-base64": "^4.3.0",
51
51
  "@smithy/util-body-length-browser": "^4.2.0",
52
52
  "@smithy/util-body-length-node": "^4.2.1",
53
- "@smithy/util-defaults-mode-browser": "^4.3.8",
54
- "@smithy/util-defaults-mode-node": "^4.2.11",
53
+ "@smithy/util-defaults-mode-browser": "^4.3.11",
54
+ "@smithy/util-defaults-mode-node": "^4.2.14",
55
55
  "@smithy/util-endpoints": "^3.2.5",
56
56
  "@smithy/util-middleware": "^4.2.5",
57
57
  "@smithy/util-retry": "^4.2.5",
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";