@aws-sdk/client-directory-service-data 3.721.0 → 3.726.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 DirectoryServiceDataClient 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);
@@ -9,14 +9,16 @@ exports.AccessDeniedReason = {
9
9
  IAM_AUTH: "IAM_AUTH",
10
10
  };
11
11
  class AccessDeniedException extends DirectoryServiceDataServiceException_1.DirectoryServiceDataServiceException {
12
+ name = "AccessDeniedException";
13
+ $fault = "client";
14
+ Message;
15
+ Reason;
12
16
  constructor(opts) {
13
17
  super({
14
18
  name: "AccessDeniedException",
15
19
  $fault: "client",
16
20
  ...opts,
17
21
  });
18
- this.name = "AccessDeniedException";
19
- this.$fault = "client";
20
22
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
21
23
  this.Message = opts.Message;
22
24
  this.Reason = opts.Reason;
@@ -24,14 +26,15 @@ class AccessDeniedException extends DirectoryServiceDataServiceException_1.Direc
24
26
  }
25
27
  exports.AccessDeniedException = AccessDeniedException;
26
28
  class ConflictException extends DirectoryServiceDataServiceException_1.DirectoryServiceDataServiceException {
29
+ name = "ConflictException";
30
+ $fault = "client";
31
+ Message;
27
32
  constructor(opts) {
28
33
  super({
29
34
  name: "ConflictException",
30
35
  $fault: "client",
31
36
  ...opts,
32
37
  });
33
- this.name = "ConflictException";
34
- this.$fault = "client";
35
38
  Object.setPrototypeOf(this, ConflictException.prototype);
36
39
  this.Message = opts.Message;
37
40
  }
@@ -45,15 +48,17 @@ exports.DirectoryUnavailableReason = {
45
48
  TRUST_AUTH_FAILURE: "TRUST_AUTH_FAILURE",
46
49
  };
47
50
  class DirectoryUnavailableException extends DirectoryServiceDataServiceException_1.DirectoryServiceDataServiceException {
51
+ name = "DirectoryUnavailableException";
52
+ $fault = "client";
53
+ $retryable = {};
54
+ Message;
55
+ Reason;
48
56
  constructor(opts) {
49
57
  super({
50
58
  name: "DirectoryUnavailableException",
51
59
  $fault: "client",
52
60
  ...opts,
53
61
  });
54
- this.name = "DirectoryUnavailableException";
55
- this.$fault = "client";
56
- this.$retryable = {};
57
62
  Object.setPrototypeOf(this, DirectoryUnavailableException.prototype);
58
63
  this.Message = opts.Message;
59
64
  this.Reason = opts.Reason;
@@ -61,46 +66,50 @@ class DirectoryUnavailableException extends DirectoryServiceDataServiceException
61
66
  }
62
67
  exports.DirectoryUnavailableException = DirectoryUnavailableException;
63
68
  class InternalServerException extends DirectoryServiceDataServiceException_1.DirectoryServiceDataServiceException {
69
+ name = "InternalServerException";
70
+ $fault = "server";
71
+ $retryable = {};
72
+ Message;
64
73
  constructor(opts) {
65
74
  super({
66
75
  name: "InternalServerException",
67
76
  $fault: "server",
68
77
  ...opts,
69
78
  });
70
- this.name = "InternalServerException";
71
- this.$fault = "server";
72
- this.$retryable = {};
73
79
  Object.setPrototypeOf(this, InternalServerException.prototype);
74
80
  this.Message = opts.Message;
75
81
  }
76
82
  }
77
83
  exports.InternalServerException = InternalServerException;
78
84
  class ResourceNotFoundException extends DirectoryServiceDataServiceException_1.DirectoryServiceDataServiceException {
85
+ name = "ResourceNotFoundException";
86
+ $fault = "client";
87
+ Message;
79
88
  constructor(opts) {
80
89
  super({
81
90
  name: "ResourceNotFoundException",
82
91
  $fault: "client",
83
92
  ...opts,
84
93
  });
85
- this.name = "ResourceNotFoundException";
86
- this.$fault = "client";
87
94
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
88
95
  this.Message = opts.Message;
89
96
  }
90
97
  }
91
98
  exports.ResourceNotFoundException = ResourceNotFoundException;
92
99
  class ThrottlingException extends DirectoryServiceDataServiceException_1.DirectoryServiceDataServiceException {
100
+ name = "ThrottlingException";
101
+ $fault = "client";
102
+ $retryable = {
103
+ throttling: true,
104
+ };
105
+ Message;
106
+ RetryAfterSeconds;
93
107
  constructor(opts) {
94
108
  super({
95
109
  name: "ThrottlingException",
96
110
  $fault: "client",
97
111
  ...opts,
98
112
  });
99
- this.name = "ThrottlingException";
100
- this.$fault = "client";
101
- this.$retryable = {
102
- throttling: true,
103
- };
104
113
  Object.setPrototypeOf(this, ThrottlingException.prototype);
105
114
  this.Message = opts.Message;
106
115
  this.RetryAfterSeconds = opts.RetryAfterSeconds;
@@ -125,14 +134,16 @@ exports.ValidationExceptionReason = {
125
134
  MISSING_ATTRIBUTE: "MISSING_ATTRIBUTE",
126
135
  };
127
136
  class ValidationException extends DirectoryServiceDataServiceException_1.DirectoryServiceDataServiceException {
137
+ name = "ValidationException";
138
+ $fault = "client";
139
+ Message;
140
+ Reason;
128
141
  constructor(opts) {
129
142
  super({
130
143
  name: "ValidationException",
131
144
  $fault: "client",
132
145
  ...opts,
133
146
  });
134
- this.name = "ValidationException";
135
- this.$fault = "client";
136
147
  Object.setPrototypeOf(this, ValidationException.prototype);
137
148
  this.Message = opts.Message;
138
149
  this.Reason = opts.Reason;
@@ -152,7 +163,7 @@ var AttributeValue;
152
163
  return visitor.SS(value.SS);
153
164
  return visitor._(value.$unknown[0], value.$unknown[1]);
154
165
  };
155
- })(AttributeValue = exports.AttributeValue || (exports.AttributeValue = {}));
166
+ })(AttributeValue || (exports.AttributeValue = AttributeValue = {}));
156
167
  exports.GroupScope = {
157
168
  BUILTIN_LOCAL: "BuiltinLocal",
158
169
  DOMAIN_LOCAL: "DomainLocal",
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
14
14
  import { resolveRuntimeExtensions } from "./runtimeExtensions";
15
15
  export { __Client };
16
16
  export class DirectoryServiceDataClient extends __Client {
17
+ config;
17
18
  constructor(...[configuration]) {
18
19
  const _config_0 = __getRuntimeConfig(configuration || {});
19
20
  const _config_1 = resolveClientEndpointParameters(_config_0);
@@ -6,28 +6,31 @@ export const AccessDeniedReason = {
6
6
  IAM_AUTH: "IAM_AUTH",
7
7
  };
8
8
  export class AccessDeniedException extends __BaseException {
9
+ name = "AccessDeniedException";
10
+ $fault = "client";
11
+ Message;
12
+ Reason;
9
13
  constructor(opts) {
10
14
  super({
11
15
  name: "AccessDeniedException",
12
16
  $fault: "client",
13
17
  ...opts,
14
18
  });
15
- this.name = "AccessDeniedException";
16
- this.$fault = "client";
17
19
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
18
20
  this.Message = opts.Message;
19
21
  this.Reason = opts.Reason;
20
22
  }
21
23
  }
22
24
  export class ConflictException extends __BaseException {
25
+ name = "ConflictException";
26
+ $fault = "client";
27
+ Message;
23
28
  constructor(opts) {
24
29
  super({
25
30
  name: "ConflictException",
26
31
  $fault: "client",
27
32
  ...opts,
28
33
  });
29
- this.name = "ConflictException";
30
- this.$fault = "client";
31
34
  Object.setPrototypeOf(this, ConflictException.prototype);
32
35
  this.Message = opts.Message;
33
36
  }
@@ -40,59 +43,65 @@ export const DirectoryUnavailableReason = {
40
43
  TRUST_AUTH_FAILURE: "TRUST_AUTH_FAILURE",
41
44
  };
42
45
  export class DirectoryUnavailableException extends __BaseException {
46
+ name = "DirectoryUnavailableException";
47
+ $fault = "client";
48
+ $retryable = {};
49
+ Message;
50
+ Reason;
43
51
  constructor(opts) {
44
52
  super({
45
53
  name: "DirectoryUnavailableException",
46
54
  $fault: "client",
47
55
  ...opts,
48
56
  });
49
- this.name = "DirectoryUnavailableException";
50
- this.$fault = "client";
51
- this.$retryable = {};
52
57
  Object.setPrototypeOf(this, DirectoryUnavailableException.prototype);
53
58
  this.Message = opts.Message;
54
59
  this.Reason = opts.Reason;
55
60
  }
56
61
  }
57
62
  export class InternalServerException extends __BaseException {
63
+ name = "InternalServerException";
64
+ $fault = "server";
65
+ $retryable = {};
66
+ Message;
58
67
  constructor(opts) {
59
68
  super({
60
69
  name: "InternalServerException",
61
70
  $fault: "server",
62
71
  ...opts,
63
72
  });
64
- this.name = "InternalServerException";
65
- this.$fault = "server";
66
- this.$retryable = {};
67
73
  Object.setPrototypeOf(this, InternalServerException.prototype);
68
74
  this.Message = opts.Message;
69
75
  }
70
76
  }
71
77
  export class ResourceNotFoundException extends __BaseException {
78
+ name = "ResourceNotFoundException";
79
+ $fault = "client";
80
+ Message;
72
81
  constructor(opts) {
73
82
  super({
74
83
  name: "ResourceNotFoundException",
75
84
  $fault: "client",
76
85
  ...opts,
77
86
  });
78
- this.name = "ResourceNotFoundException";
79
- this.$fault = "client";
80
87
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
81
88
  this.Message = opts.Message;
82
89
  }
83
90
  }
84
91
  export class ThrottlingException extends __BaseException {
92
+ name = "ThrottlingException";
93
+ $fault = "client";
94
+ $retryable = {
95
+ throttling: true,
96
+ };
97
+ Message;
98
+ RetryAfterSeconds;
85
99
  constructor(opts) {
86
100
  super({
87
101
  name: "ThrottlingException",
88
102
  $fault: "client",
89
103
  ...opts,
90
104
  });
91
- this.name = "ThrottlingException";
92
- this.$fault = "client";
93
- this.$retryable = {
94
- throttling: true,
95
- };
96
105
  Object.setPrototypeOf(this, ThrottlingException.prototype);
97
106
  this.Message = opts.Message;
98
107
  this.RetryAfterSeconds = opts.RetryAfterSeconds;
@@ -116,14 +125,16 @@ export const ValidationExceptionReason = {
116
125
  MISSING_ATTRIBUTE: "MISSING_ATTRIBUTE",
117
126
  };
118
127
  export class ValidationException extends __BaseException {
128
+ name = "ValidationException";
129
+ $fault = "client";
130
+ Message;
131
+ Reason;
119
132
  constructor(opts) {
120
133
  super({
121
134
  name: "ValidationException",
122
135
  $fault: "client",
123
136
  ...opts,
124
137
  });
125
- this.name = "ValidationException";
126
- this.$fault = "client";
127
138
  Object.setPrototypeOf(this, ValidationException.prototype);
128
139
  this.Message = opts.Message;
129
140
  this.Reason = opts.Reason;
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: DirectoryServiceDataClientConfig
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: DirectoryServiceDataClientConfig
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: DirectoryServiceDataClientConfig
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: DirectoryServiceDataClientConfig
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;
@@ -8,9 +8,11 @@ export declare const getRuntimeConfig: (
8
8
  import("@smithy/smithy-client").ResolvedDefaultsMode
9
9
  >;
10
10
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
- credentialDefaultProvider: (
12
- input: any
13
- ) => import("@smithy/types").AwsCredentialIdentityProvider;
11
+ credentialDefaultProvider:
12
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
13
+ | ((
14
+ _: unknown
15
+ ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
14
16
  defaultUserAgentProvider: (
15
17
  config?:
16
18
  | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
@@ -8,13 +8,15 @@ export declare const getRuntimeConfig: (
8
8
  import("@smithy/smithy-client").ResolvedDefaultsMode
9
9
  >;
10
10
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
- credentialDefaultProvider: (
12
- init?:
13
- | import("@aws-sdk/credential-provider-node").DefaultProviderInit
14
- | undefined
15
- ) => import("@smithy/types").MemoizedProvider<
16
- import("@smithy/types").AwsCredentialIdentity
17
- >;
11
+ credentialDefaultProvider:
12
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
13
+ | ((
14
+ init?:
15
+ | import("@aws-sdk/credential-provider-node").DefaultProviderInit
16
+ | undefined
17
+ ) => import("@smithy/types").MemoizedProvider<
18
+ import("@smithy/types").AwsCredentialIdentity
19
+ >);
18
20
  defaultUserAgentProvider: (
19
21
  config?:
20
22
  | import("@aws-sdk/util-user-agent-node").PreviouslyResolved
@@ -30,9 +30,11 @@ export declare const getRuntimeConfig: (
30
30
  | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
31
31
  | undefined
32
32
  ) => Promise<import("@smithy/types").UserAgent>;
33
- credentialDefaultProvider: (
34
- input: any
35
- ) => import("@smithy/types").AwsCredentialIdentityProvider;
33
+ credentialDefaultProvider:
34
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
35
+ | ((
36
+ _: unknown
37
+ ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
36
38
  maxAttempts: number | import("@smithy/types").Provider<number>;
37
39
  retryMode: string | import("@smithy/types").Provider<string>;
38
40
  logger: import("@smithy/types").Logger;
@@ -52,11 +54,21 @@ export declare const getRuntimeConfig: (
52
54
  | import("@smithy/types").RetryStrategyV2
53
55
  | undefined;
54
56
  endpoint?:
55
- | string
56
- | import("@smithy/types").Endpoint
57
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
58
- | import("@smithy/types").EndpointV2
59
- | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
57
+ | ((
58
+ | string
59
+ | import("@smithy/types").Endpoint
60
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
61
+ | import("@smithy/types").EndpointV2
62
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
63
+ ) &
64
+ (
65
+ | string
66
+ | import("@smithy/types").Provider<string>
67
+ | import("@smithy/types").Endpoint
68
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
69
+ | import("@smithy/types").EndpointV2
70
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
71
+ ))
60
72
  | undefined;
61
73
  endpointProvider: (
62
74
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-directory-service-data",
3
3
  "description": "AWS SDK for JavaScript Directory Service Data Client for Node.js, Browser and React Native",
4
- "version": "3.721.0",
4
+ "version": "3.726.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,58 +20,58 @@
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.726.0",
24
+ "@aws-sdk/client-sts": "3.726.0",
25
+ "@aws-sdk/core": "3.723.0",
26
+ "@aws-sdk/credential-provider-node": "3.726.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.726.0",
31
+ "@aws-sdk/region-config-resolver": "3.723.0",
32
+ "@aws-sdk/types": "3.723.0",
33
+ "@aws-sdk/util-endpoints": "3.726.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.723.0",
35
+ "@aws-sdk/util-user-agent-node": "3.726.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
  "@types/uuid": "^9.0.1",
62
62
  "tslib": "^2.6.2",
63
63
  "uuid": "^9.0.1"
64
64
  },
65
65
  "devDependencies": {
66
- "@tsconfig/node16": "16.1.3",
67
- "@types/node": "^16.18.96",
66
+ "@tsconfig/node18": "18.2.4",
67
+ "@types/node": "^18.19.69",
68
68
  "concurrently": "7.0.0",
69
69
  "downlevel-dts": "0.10.1",
70
70
  "rimraf": "3.0.2",
71
- "typescript": "~4.9.5"
71
+ "typescript": "~5.2.2"
72
72
  },
73
73
  "engines": {
74
- "node": ">=16.0.0"
74
+ "node": ">=18.0.0"
75
75
  },
76
76
  "typesVersions": {
77
77
  "<4.0": {