@aws-sdk/client-notifications 3.721.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.
@@ -17,6 +17,7 @@ const EndpointParameters_1 = require("./endpoint/EndpointParameters");
17
17
  const runtimeConfig_1 = require("./runtimeConfig");
18
18
  const runtimeExtensions_1 = require("./runtimeExtensions");
19
19
  class NotificationsClient extends smithy_client_1.Client {
20
+ config;
20
21
  constructor(...[configuration]) {
21
22
  const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {});
22
23
  const _config_1 = (0, EndpointParameters_1.resolveClientEndpointParameters)(_config_0);
@@ -3,14 +3,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.TextPartType = exports.SchemaVersion = exports.NotificationType = exports.MediaElementType = exports.LocaleCode = exports.EventStatus = exports.NotificationHubStatus = exports.NotificationConfigurationStatus = exports.EventRuleStatus = exports.ValidationException = exports.ValidationExceptionReason = exports.ThrottlingException = exports.ServiceQuotaExceededException = exports.ResourceNotFoundException = exports.InternalServerException = exports.ConflictException = exports.AggregationEventType = exports.AggregationDuration = exports.AccessDeniedException = void 0;
4
4
  const NotificationsServiceException_1 = require("./NotificationsServiceException");
5
5
  class AccessDeniedException extends NotificationsServiceException_1.NotificationsServiceException {
6
+ name = "AccessDeniedException";
7
+ $fault = "client";
6
8
  constructor(opts) {
7
9
  super({
8
10
  name: "AccessDeniedException",
9
11
  $fault: "client",
10
12
  ...opts,
11
13
  });
12
- this.name = "AccessDeniedException";
13
- this.$fault = "client";
14
14
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
15
15
  }
16
16
  }
@@ -26,56 +26,62 @@ exports.AggregationEventType = {
26
26
  NONE: "NONE",
27
27
  };
28
28
  class ConflictException extends NotificationsServiceException_1.NotificationsServiceException {
29
+ name = "ConflictException";
30
+ $fault = "client";
31
+ resourceId;
29
32
  constructor(opts) {
30
33
  super({
31
34
  name: "ConflictException",
32
35
  $fault: "client",
33
36
  ...opts,
34
37
  });
35
- this.name = "ConflictException";
36
- this.$fault = "client";
37
38
  Object.setPrototypeOf(this, ConflictException.prototype);
38
39
  this.resourceId = opts.resourceId;
39
40
  }
40
41
  }
41
42
  exports.ConflictException = ConflictException;
42
43
  class InternalServerException extends NotificationsServiceException_1.NotificationsServiceException {
44
+ name = "InternalServerException";
45
+ $fault = "server";
46
+ $retryable = {};
43
47
  constructor(opts) {
44
48
  super({
45
49
  name: "InternalServerException",
46
50
  $fault: "server",
47
51
  ...opts,
48
52
  });
49
- this.name = "InternalServerException";
50
- this.$fault = "server";
51
- this.$retryable = {};
52
53
  Object.setPrototypeOf(this, InternalServerException.prototype);
53
54
  }
54
55
  }
55
56
  exports.InternalServerException = InternalServerException;
56
57
  class ResourceNotFoundException extends NotificationsServiceException_1.NotificationsServiceException {
58
+ name = "ResourceNotFoundException";
59
+ $fault = "client";
60
+ resourceId;
57
61
  constructor(opts) {
58
62
  super({
59
63
  name: "ResourceNotFoundException",
60
64
  $fault: "client",
61
65
  ...opts,
62
66
  });
63
- this.name = "ResourceNotFoundException";
64
- this.$fault = "client";
65
67
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
66
68
  this.resourceId = opts.resourceId;
67
69
  }
68
70
  }
69
71
  exports.ResourceNotFoundException = ResourceNotFoundException;
70
72
  class ServiceQuotaExceededException extends NotificationsServiceException_1.NotificationsServiceException {
73
+ name = "ServiceQuotaExceededException";
74
+ $fault = "client";
75
+ resourceType;
76
+ resourceId;
77
+ serviceCode;
78
+ quotaCode;
71
79
  constructor(opts) {
72
80
  super({
73
81
  name: "ServiceQuotaExceededException",
74
82
  $fault: "client",
75
83
  ...opts,
76
84
  });
77
- this.name = "ServiceQuotaExceededException";
78
- this.$fault = "client";
79
85
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
80
86
  this.resourceType = opts.resourceType;
81
87
  this.resourceId = opts.resourceId;
@@ -85,17 +91,20 @@ class ServiceQuotaExceededException extends NotificationsServiceException_1.Noti
85
91
  }
86
92
  exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
87
93
  class ThrottlingException extends NotificationsServiceException_1.NotificationsServiceException {
94
+ name = "ThrottlingException";
95
+ $fault = "client";
96
+ $retryable = {
97
+ throttling: true,
98
+ };
99
+ serviceCode;
100
+ quotaCode;
101
+ retryAfterSeconds;
88
102
  constructor(opts) {
89
103
  super({
90
104
  name: "ThrottlingException",
91
105
  $fault: "client",
92
106
  ...opts,
93
107
  });
94
- this.name = "ThrottlingException";
95
- this.$fault = "client";
96
- this.$retryable = {
97
- throttling: true,
98
- };
99
108
  Object.setPrototypeOf(this, ThrottlingException.prototype);
100
109
  this.serviceCode = opts.serviceCode;
101
110
  this.quotaCode = opts.quotaCode;
@@ -108,14 +117,16 @@ exports.ValidationExceptionReason = {
108
117
  OTHER: "other",
109
118
  };
110
119
  class ValidationException extends NotificationsServiceException_1.NotificationsServiceException {
120
+ name = "ValidationException";
121
+ $fault = "client";
122
+ reason;
123
+ fieldList;
111
124
  constructor(opts) {
112
125
  super({
113
126
  name: "ValidationException",
114
127
  $fault: "client",
115
128
  ...opts,
116
129
  });
117
- this.name = "ValidationException";
118
- this.$fault = "client";
119
130
  Object.setPrototypeOf(this, ValidationException.prototype);
120
131
  this.reason = opts.reason;
121
132
  this.fieldList = opts.fieldList;
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
14
14
  import { resolveRuntimeExtensions } from "./runtimeExtensions";
15
15
  export { __Client };
16
16
  export class NotificationsClient 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,13 @@
1
1
  import { NotificationsServiceException as __BaseException } from "./NotificationsServiceException";
2
2
  export class AccessDeniedException extends __BaseException {
3
+ name = "AccessDeniedException";
4
+ $fault = "client";
3
5
  constructor(opts) {
4
6
  super({
5
7
  name: "AccessDeniedException",
6
8
  $fault: "client",
7
9
  ...opts,
8
10
  });
9
- this.name = "AccessDeniedException";
10
- this.$fault = "client";
11
11
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
12
12
  }
13
13
  }
@@ -22,53 +22,59 @@ export const AggregationEventType = {
22
22
  NONE: "NONE",
23
23
  };
24
24
  export class ConflictException extends __BaseException {
25
+ name = "ConflictException";
26
+ $fault = "client";
27
+ resourceId;
25
28
  constructor(opts) {
26
29
  super({
27
30
  name: "ConflictException",
28
31
  $fault: "client",
29
32
  ...opts,
30
33
  });
31
- this.name = "ConflictException";
32
- this.$fault = "client";
33
34
  Object.setPrototypeOf(this, ConflictException.prototype);
34
35
  this.resourceId = opts.resourceId;
35
36
  }
36
37
  }
37
38
  export class InternalServerException extends __BaseException {
39
+ name = "InternalServerException";
40
+ $fault = "server";
41
+ $retryable = {};
38
42
  constructor(opts) {
39
43
  super({
40
44
  name: "InternalServerException",
41
45
  $fault: "server",
42
46
  ...opts,
43
47
  });
44
- this.name = "InternalServerException";
45
- this.$fault = "server";
46
- this.$retryable = {};
47
48
  Object.setPrototypeOf(this, InternalServerException.prototype);
48
49
  }
49
50
  }
50
51
  export class ResourceNotFoundException extends __BaseException {
52
+ name = "ResourceNotFoundException";
53
+ $fault = "client";
54
+ resourceId;
51
55
  constructor(opts) {
52
56
  super({
53
57
  name: "ResourceNotFoundException",
54
58
  $fault: "client",
55
59
  ...opts,
56
60
  });
57
- this.name = "ResourceNotFoundException";
58
- this.$fault = "client";
59
61
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
60
62
  this.resourceId = opts.resourceId;
61
63
  }
62
64
  }
63
65
  export class ServiceQuotaExceededException extends __BaseException {
66
+ name = "ServiceQuotaExceededException";
67
+ $fault = "client";
68
+ resourceType;
69
+ resourceId;
70
+ serviceCode;
71
+ quotaCode;
64
72
  constructor(opts) {
65
73
  super({
66
74
  name: "ServiceQuotaExceededException",
67
75
  $fault: "client",
68
76
  ...opts,
69
77
  });
70
- this.name = "ServiceQuotaExceededException";
71
- this.$fault = "client";
72
78
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
73
79
  this.resourceType = opts.resourceType;
74
80
  this.resourceId = opts.resourceId;
@@ -77,17 +83,20 @@ export class ServiceQuotaExceededException extends __BaseException {
77
83
  }
78
84
  }
79
85
  export class ThrottlingException extends __BaseException {
86
+ name = "ThrottlingException";
87
+ $fault = "client";
88
+ $retryable = {
89
+ throttling: true,
90
+ };
91
+ serviceCode;
92
+ quotaCode;
93
+ retryAfterSeconds;
80
94
  constructor(opts) {
81
95
  super({
82
96
  name: "ThrottlingException",
83
97
  $fault: "client",
84
98
  ...opts,
85
99
  });
86
- this.name = "ThrottlingException";
87
- this.$fault = "client";
88
- this.$retryable = {
89
- throttling: true,
90
- };
91
100
  Object.setPrototypeOf(this, ThrottlingException.prototype);
92
101
  this.serviceCode = opts.serviceCode;
93
102
  this.quotaCode = opts.quotaCode;
@@ -99,14 +108,16 @@ export const ValidationExceptionReason = {
99
108
  OTHER: "other",
100
109
  };
101
110
  export class ValidationException extends __BaseException {
111
+ name = "ValidationException";
112
+ $fault = "client";
113
+ reason;
114
+ fieldList;
102
115
  constructor(opts) {
103
116
  super({
104
117
  name: "ValidationException",
105
118
  $fault: "client",
106
119
  ...opts,
107
120
  });
108
- this.name = "ValidationException";
109
- this.$fault = "client";
110
121
  Object.setPrototypeOf(this, ValidationException.prototype);
111
122
  this.reason = opts.reason;
112
123
  this.fieldList = opts.fieldList;
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: NotificationsClientConfig) => {
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: NotificationsClientConfig) => {
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: NotificationsClientConfig) => {
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: NotificationsClientConfig) => {
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: NotificationsClientConfig) => {
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: NotificationsClientConfig) => {
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: NotificationsClientConfig) => {
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: NotificationsClientConfig) => {
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-notifications",
3
3
  "description": "AWS SDK for JavaScript Notifications Client for Node.js, Browser and React Native",
4
- "version": "3.721.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": "tsc -p tsconfig.cjs.json",
@@ -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.721.0",
24
- "@aws-sdk/client-sts": "3.721.0",
25
- "@aws-sdk/core": "3.716.0",
26
- "@aws-sdk/credential-provider-node": "3.721.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.721.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.721.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": {