@aws-sdk/client-service-quotas 3.716.0 → 3.723.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.
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
14
14
  import { resolveRuntimeExtensions } from "./runtimeExtensions";
15
15
  export { __Client };
16
16
  export class ServiceQuotasClient extends __Client {
17
+ config;
17
18
  constructor(...[configuration]) {
18
19
  const _config_0 = __getRuntimeConfig(configuration || {});
19
20
  const _config_1 = resolveClientEndpointParameters(_config_0);
@@ -1,13 +1,14 @@
1
1
  import { ServiceQuotasServiceException as __BaseException } from "./ServiceQuotasServiceException";
2
2
  export class AccessDeniedException extends __BaseException {
3
+ name = "AccessDeniedException";
4
+ $fault = "client";
5
+ Message;
3
6
  constructor(opts) {
4
7
  super({
5
8
  name: "AccessDeniedException",
6
9
  $fault: "client",
7
10
  ...opts,
8
11
  });
9
- this.name = "AccessDeniedException";
10
- this.$fault = "client";
11
12
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
12
13
  this.Message = opts.Message;
13
14
  }
@@ -18,131 +19,141 @@ export const AppliedLevelEnum = {
18
19
  RESOURCE: "RESOURCE",
19
20
  };
20
21
  export class AWSServiceAccessNotEnabledException extends __BaseException {
22
+ name = "AWSServiceAccessNotEnabledException";
23
+ $fault = "client";
24
+ Message;
21
25
  constructor(opts) {
22
26
  super({
23
27
  name: "AWSServiceAccessNotEnabledException",
24
28
  $fault: "client",
25
29
  ...opts,
26
30
  });
27
- this.name = "AWSServiceAccessNotEnabledException";
28
- this.$fault = "client";
29
31
  Object.setPrototypeOf(this, AWSServiceAccessNotEnabledException.prototype);
30
32
  this.Message = opts.Message;
31
33
  }
32
34
  }
33
35
  export class DependencyAccessDeniedException extends __BaseException {
36
+ name = "DependencyAccessDeniedException";
37
+ $fault = "client";
38
+ Message;
34
39
  constructor(opts) {
35
40
  super({
36
41
  name: "DependencyAccessDeniedException",
37
42
  $fault: "client",
38
43
  ...opts,
39
44
  });
40
- this.name = "DependencyAccessDeniedException";
41
- this.$fault = "client";
42
45
  Object.setPrototypeOf(this, DependencyAccessDeniedException.prototype);
43
46
  this.Message = opts.Message;
44
47
  }
45
48
  }
46
49
  export class NoAvailableOrganizationException extends __BaseException {
50
+ name = "NoAvailableOrganizationException";
51
+ $fault = "client";
52
+ Message;
47
53
  constructor(opts) {
48
54
  super({
49
55
  name: "NoAvailableOrganizationException",
50
56
  $fault: "client",
51
57
  ...opts,
52
58
  });
53
- this.name = "NoAvailableOrganizationException";
54
- this.$fault = "client";
55
59
  Object.setPrototypeOf(this, NoAvailableOrganizationException.prototype);
56
60
  this.Message = opts.Message;
57
61
  }
58
62
  }
59
63
  export class OrganizationNotInAllFeaturesModeException extends __BaseException {
64
+ name = "OrganizationNotInAllFeaturesModeException";
65
+ $fault = "client";
66
+ Message;
60
67
  constructor(opts) {
61
68
  super({
62
69
  name: "OrganizationNotInAllFeaturesModeException",
63
70
  $fault: "client",
64
71
  ...opts,
65
72
  });
66
- this.name = "OrganizationNotInAllFeaturesModeException";
67
- this.$fault = "client";
68
73
  Object.setPrototypeOf(this, OrganizationNotInAllFeaturesModeException.prototype);
69
74
  this.Message = opts.Message;
70
75
  }
71
76
  }
72
77
  export class ServiceException extends __BaseException {
78
+ name = "ServiceException";
79
+ $fault = "server";
80
+ Message;
73
81
  constructor(opts) {
74
82
  super({
75
83
  name: "ServiceException",
76
84
  $fault: "server",
77
85
  ...opts,
78
86
  });
79
- this.name = "ServiceException";
80
- this.$fault = "server";
81
87
  Object.setPrototypeOf(this, ServiceException.prototype);
82
88
  this.Message = opts.Message;
83
89
  }
84
90
  }
85
91
  export class TemplatesNotAvailableInRegionException extends __BaseException {
92
+ name = "TemplatesNotAvailableInRegionException";
93
+ $fault = "client";
94
+ Message;
86
95
  constructor(opts) {
87
96
  super({
88
97
  name: "TemplatesNotAvailableInRegionException",
89
98
  $fault: "client",
90
99
  ...opts,
91
100
  });
92
- this.name = "TemplatesNotAvailableInRegionException";
93
- this.$fault = "client";
94
101
  Object.setPrototypeOf(this, TemplatesNotAvailableInRegionException.prototype);
95
102
  this.Message = opts.Message;
96
103
  }
97
104
  }
98
105
  export class TooManyRequestsException extends __BaseException {
106
+ name = "TooManyRequestsException";
107
+ $fault = "client";
108
+ Message;
99
109
  constructor(opts) {
100
110
  super({
101
111
  name: "TooManyRequestsException",
102
112
  $fault: "client",
103
113
  ...opts,
104
114
  });
105
- this.name = "TooManyRequestsException";
106
- this.$fault = "client";
107
115
  Object.setPrototypeOf(this, TooManyRequestsException.prototype);
108
116
  this.Message = opts.Message;
109
117
  }
110
118
  }
111
119
  export class IllegalArgumentException extends __BaseException {
120
+ name = "IllegalArgumentException";
121
+ $fault = "client";
122
+ Message;
112
123
  constructor(opts) {
113
124
  super({
114
125
  name: "IllegalArgumentException",
115
126
  $fault: "client",
116
127
  ...opts,
117
128
  });
118
- this.name = "IllegalArgumentException";
119
- this.$fault = "client";
120
129
  Object.setPrototypeOf(this, IllegalArgumentException.prototype);
121
130
  this.Message = opts.Message;
122
131
  }
123
132
  }
124
133
  export class NoSuchResourceException extends __BaseException {
134
+ name = "NoSuchResourceException";
135
+ $fault = "client";
136
+ Message;
125
137
  constructor(opts) {
126
138
  super({
127
139
  name: "NoSuchResourceException",
128
140
  $fault: "client",
129
141
  ...opts,
130
142
  });
131
- this.name = "NoSuchResourceException";
132
- this.$fault = "client";
133
143
  Object.setPrototypeOf(this, NoSuchResourceException.prototype);
134
144
  this.Message = opts.Message;
135
145
  }
136
146
  }
137
147
  export class ServiceQuotaTemplateNotInUseException extends __BaseException {
148
+ name = "ServiceQuotaTemplateNotInUseException";
149
+ $fault = "client";
150
+ Message;
138
151
  constructor(opts) {
139
152
  super({
140
153
  name: "ServiceQuotaTemplateNotInUseException",
141
154
  $fault: "client",
142
155
  ...opts,
143
156
  });
144
- this.name = "ServiceQuotaTemplateNotInUseException";
145
- this.$fault = "client";
146
157
  Object.setPrototypeOf(this, ServiceQuotaTemplateNotInUseException.prototype);
147
158
  this.Message = opts.Message;
148
159
  }
@@ -180,79 +191,85 @@ export const RequestStatus = {
180
191
  PENDING: "PENDING",
181
192
  };
182
193
  export class InvalidPaginationTokenException extends __BaseException {
194
+ name = "InvalidPaginationTokenException";
195
+ $fault = "client";
196
+ Message;
183
197
  constructor(opts) {
184
198
  super({
185
199
  name: "InvalidPaginationTokenException",
186
200
  $fault: "client",
187
201
  ...opts,
188
202
  });
189
- this.name = "InvalidPaginationTokenException";
190
- this.$fault = "client";
191
203
  Object.setPrototypeOf(this, InvalidPaginationTokenException.prototype);
192
204
  this.Message = opts.Message;
193
205
  }
194
206
  }
195
207
  export class InvalidResourceStateException extends __BaseException {
208
+ name = "InvalidResourceStateException";
209
+ $fault = "client";
210
+ Message;
196
211
  constructor(opts) {
197
212
  super({
198
213
  name: "InvalidResourceStateException",
199
214
  $fault: "client",
200
215
  ...opts,
201
216
  });
202
- this.name = "InvalidResourceStateException";
203
- this.$fault = "client";
204
217
  Object.setPrototypeOf(this, InvalidResourceStateException.prototype);
205
218
  this.Message = opts.Message;
206
219
  }
207
220
  }
208
221
  export class QuotaExceededException extends __BaseException {
222
+ name = "QuotaExceededException";
223
+ $fault = "client";
224
+ Message;
209
225
  constructor(opts) {
210
226
  super({
211
227
  name: "QuotaExceededException",
212
228
  $fault: "client",
213
229
  ...opts,
214
230
  });
215
- this.name = "QuotaExceededException";
216
- this.$fault = "client";
217
231
  Object.setPrototypeOf(this, QuotaExceededException.prototype);
218
232
  this.Message = opts.Message;
219
233
  }
220
234
  }
221
235
  export class ResourceAlreadyExistsException extends __BaseException {
236
+ name = "ResourceAlreadyExistsException";
237
+ $fault = "client";
238
+ Message;
222
239
  constructor(opts) {
223
240
  super({
224
241
  name: "ResourceAlreadyExistsException",
225
242
  $fault: "client",
226
243
  ...opts,
227
244
  });
228
- this.name = "ResourceAlreadyExistsException";
229
- this.$fault = "client";
230
245
  Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
231
246
  this.Message = opts.Message;
232
247
  }
233
248
  }
234
249
  export class TagPolicyViolationException extends __BaseException {
250
+ name = "TagPolicyViolationException";
251
+ $fault = "client";
252
+ Message;
235
253
  constructor(opts) {
236
254
  super({
237
255
  name: "TagPolicyViolationException",
238
256
  $fault: "client",
239
257
  ...opts,
240
258
  });
241
- this.name = "TagPolicyViolationException";
242
- this.$fault = "client";
243
259
  Object.setPrototypeOf(this, TagPolicyViolationException.prototype);
244
260
  this.Message = opts.Message;
245
261
  }
246
262
  }
247
263
  export class TooManyTagsException extends __BaseException {
264
+ name = "TooManyTagsException";
265
+ $fault = "client";
266
+ Message;
248
267
  constructor(opts) {
249
268
  super({
250
269
  name: "TooManyTagsException",
251
270
  $fault: "client",
252
271
  ...opts,
253
272
  });
254
- this.name = "TooManyTagsException";
255
- this.$fault = "client";
256
273
  Object.setPrototypeOf(this, TooManyTagsException.prototype);
257
274
  this.Message = opts.Message;
258
275
  }
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: ServiceQuotasClientConfig) => {
7
7
  runtime: string;
8
8
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
10
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
11
11
  defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
12
12
  maxAttempts: number | import("@smithy/types").Provider<number>;
13
13
  region: string | import("@smithy/types").Provider<any>;
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: ServiceQuotasClientConfig) => {
7
7
  runtime: string;
8
8
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>;
10
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
11
11
  defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
12
12
  maxAttempts: number | import("@smithy/types").Provider<number>;
13
13
  region: string | import("@smithy/types").Provider<string>;
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: ServiceQuotasClientConfig) => {
22
22
  region: string | import("@smithy/types").Provider<any>;
23
23
  profile?: string | undefined;
24
24
  defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
25
- credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
25
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
26
26
  maxAttempts: number | import("@smithy/types").Provider<number>;
27
27
  retryMode: string | import("@smithy/types").Provider<string>;
28
28
  logger: import("@smithy/types").Logger;
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: ServiceQuotasClientConfig) => {
31
31
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
32
32
  userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
33
33
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
34
- endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
34
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
35
35
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
36
36
  logger?: import("@smithy/types").Logger | undefined;
37
37
  }) => import("@smithy/types").EndpointV2;
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: ServiceQuotasClientConfig) => {
6
6
  import("@smithy/smithy-client").ResolvedDefaultsMode
7
7
  >;
8
8
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
- credentialDefaultProvider: (
10
- input: any
11
- ) => import("@smithy/types").AwsCredentialIdentityProvider;
9
+ credentialDefaultProvider:
10
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
11
+ | ((
12
+ _: unknown
13
+ ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
12
14
  defaultUserAgentProvider: (
13
15
  config?:
14
16
  | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: ServiceQuotasClientConfig) => {
6
6
  import("@smithy/smithy-client").ResolvedDefaultsMode
7
7
  >;
8
8
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
- credentialDefaultProvider: (
10
- init?:
11
- | import("@aws-sdk/credential-provider-node").DefaultProviderInit
12
- | undefined
13
- ) => import("@smithy/types").MemoizedProvider<
14
- import("@smithy/types").AwsCredentialIdentity
15
- >;
9
+ credentialDefaultProvider:
10
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
11
+ | ((
12
+ init?:
13
+ | import("@aws-sdk/credential-provider-node").DefaultProviderInit
14
+ | undefined
15
+ ) => import("@smithy/types").MemoizedProvider<
16
+ import("@smithy/types").AwsCredentialIdentity
17
+ >);
16
18
  defaultUserAgentProvider: (
17
19
  config?:
18
20
  | import("@aws-sdk/util-user-agent-node").PreviouslyResolved
@@ -28,9 +28,11 @@ export declare const getRuntimeConfig: (config: ServiceQuotasClientConfig) => {
28
28
  | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
29
29
  | undefined
30
30
  ) => Promise<import("@smithy/types").UserAgent>;
31
- credentialDefaultProvider: (
32
- input: any
33
- ) => import("@smithy/types").AwsCredentialIdentityProvider;
31
+ credentialDefaultProvider:
32
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
33
+ | ((
34
+ _: unknown
35
+ ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
34
36
  maxAttempts: number | import("@smithy/types").Provider<number>;
35
37
  retryMode: string | import("@smithy/types").Provider<string>;
36
38
  logger: import("@smithy/types").Logger;
@@ -50,11 +52,21 @@ export declare const getRuntimeConfig: (config: ServiceQuotasClientConfig) => {
50
52
  | import("@smithy/types").RetryStrategyV2
51
53
  | undefined;
52
54
  endpoint?:
53
- | string
54
- | import("@smithy/types").Endpoint
55
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
56
- | import("@smithy/types").EndpointV2
57
- | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
55
+ | ((
56
+ | string
57
+ | import("@smithy/types").Endpoint
58
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
59
+ | import("@smithy/types").EndpointV2
60
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
61
+ ) &
62
+ (
63
+ | string
64
+ | import("@smithy/types").Provider<string>
65
+ | import("@smithy/types").Endpoint
66
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
67
+ | import("@smithy/types").EndpointV2
68
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
69
+ ))
58
70
  | undefined;
59
71
  endpointProvider: (
60
72
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-service-quotas",
3
3
  "description": "AWS SDK for JavaScript Service Quotas Client for Node.js, Browser and React Native",
4
- "version": "3.716.0",
4
+ "version": "3.723.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-service-quotas",
@@ -20,56 +20,56 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.716.0",
24
- "@aws-sdk/client-sts": "3.716.0",
25
- "@aws-sdk/core": "3.716.0",
26
- "@aws-sdk/credential-provider-node": "3.716.0",
27
- "@aws-sdk/middleware-host-header": "3.714.0",
28
- "@aws-sdk/middleware-logger": "3.714.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.714.0",
30
- "@aws-sdk/middleware-user-agent": "3.716.0",
31
- "@aws-sdk/region-config-resolver": "3.714.0",
32
- "@aws-sdk/types": "3.714.0",
33
- "@aws-sdk/util-endpoints": "3.714.0",
34
- "@aws-sdk/util-user-agent-browser": "3.714.0",
35
- "@aws-sdk/util-user-agent-node": "3.716.0",
36
- "@smithy/config-resolver": "^3.0.13",
37
- "@smithy/core": "^2.5.5",
38
- "@smithy/fetch-http-handler": "^4.1.2",
39
- "@smithy/hash-node": "^3.0.11",
40
- "@smithy/invalid-dependency": "^3.0.11",
41
- "@smithy/middleware-content-length": "^3.0.13",
42
- "@smithy/middleware-endpoint": "^3.2.6",
43
- "@smithy/middleware-retry": "^3.0.31",
44
- "@smithy/middleware-serde": "^3.0.11",
45
- "@smithy/middleware-stack": "^3.0.11",
46
- "@smithy/node-config-provider": "^3.1.12",
47
- "@smithy/node-http-handler": "^3.3.2",
48
- "@smithy/protocol-http": "^4.1.8",
49
- "@smithy/smithy-client": "^3.5.1",
50
- "@smithy/types": "^3.7.2",
51
- "@smithy/url-parser": "^3.0.11",
52
- "@smithy/util-base64": "^3.0.0",
53
- "@smithy/util-body-length-browser": "^3.0.0",
54
- "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.31",
56
- "@smithy/util-defaults-mode-node": "^3.0.31",
57
- "@smithy/util-endpoints": "^2.1.7",
58
- "@smithy/util-middleware": "^3.0.11",
59
- "@smithy/util-retry": "^3.0.11",
60
- "@smithy/util-utf8": "^3.0.0",
23
+ "@aws-sdk/client-sso-oidc": "3.723.0",
24
+ "@aws-sdk/client-sts": "3.723.0",
25
+ "@aws-sdk/core": "3.723.0",
26
+ "@aws-sdk/credential-provider-node": "3.723.0",
27
+ "@aws-sdk/middleware-host-header": "3.723.0",
28
+ "@aws-sdk/middleware-logger": "3.723.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.723.0",
30
+ "@aws-sdk/middleware-user-agent": "3.723.0",
31
+ "@aws-sdk/region-config-resolver": "3.723.0",
32
+ "@aws-sdk/types": "3.723.0",
33
+ "@aws-sdk/util-endpoints": "3.723.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.723.0",
35
+ "@aws-sdk/util-user-agent-node": "3.723.0",
36
+ "@smithy/config-resolver": "^4.0.0",
37
+ "@smithy/core": "^3.0.0",
38
+ "@smithy/fetch-http-handler": "^5.0.0",
39
+ "@smithy/hash-node": "^4.0.0",
40
+ "@smithy/invalid-dependency": "^4.0.0",
41
+ "@smithy/middleware-content-length": "^4.0.0",
42
+ "@smithy/middleware-endpoint": "^4.0.0",
43
+ "@smithy/middleware-retry": "^4.0.0",
44
+ "@smithy/middleware-serde": "^4.0.0",
45
+ "@smithy/middleware-stack": "^4.0.0",
46
+ "@smithy/node-config-provider": "^4.0.0",
47
+ "@smithy/node-http-handler": "^4.0.0",
48
+ "@smithy/protocol-http": "^5.0.0",
49
+ "@smithy/smithy-client": "^4.0.0",
50
+ "@smithy/types": "^4.0.0",
51
+ "@smithy/url-parser": "^4.0.0",
52
+ "@smithy/util-base64": "^4.0.0",
53
+ "@smithy/util-body-length-browser": "^4.0.0",
54
+ "@smithy/util-body-length-node": "^4.0.0",
55
+ "@smithy/util-defaults-mode-browser": "^4.0.0",
56
+ "@smithy/util-defaults-mode-node": "^4.0.0",
57
+ "@smithy/util-endpoints": "^3.0.0",
58
+ "@smithy/util-middleware": "^4.0.0",
59
+ "@smithy/util-retry": "^4.0.0",
60
+ "@smithy/util-utf8": "^4.0.0",
61
61
  "tslib": "^2.6.2"
62
62
  },
63
63
  "devDependencies": {
64
- "@tsconfig/node16": "16.1.3",
65
- "@types/node": "^16.18.96",
64
+ "@tsconfig/node18": "18.2.4",
65
+ "@types/node": "^18.19.69",
66
66
  "concurrently": "7.0.0",
67
67
  "downlevel-dts": "0.10.1",
68
68
  "rimraf": "3.0.2",
69
- "typescript": "~4.9.5"
69
+ "typescript": "~5.2.2"
70
70
  },
71
71
  "engines": {
72
- "node": ">=16.0.0"
72
+ "node": ">=18.0.0"
73
73
  },
74
74
  "typesVersions": {
75
75
  "<4.0": {