@aws-sdk/client-pinpoint-email 3.52.0 → 3.54.1

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.
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
5
5
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
6
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
7
  import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
8
+ import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
9
  import { CreateConfigurationSetCommandInput, CreateConfigurationSetCommandOutput } from "./commands/CreateConfigurationSetCommand";
10
10
  import { CreateConfigurationSetEventDestinationCommandInput, CreateConfigurationSetEventDestinationCommandOutput } from "./commands/CreateConfigurationSetEventDestinationCommand";
11
11
  import { CreateDedicatedIpPoolCommandInput, CreateDedicatedIpPoolCommandOutput } from "./commands/CreateDedicatedIpPoolCommand";
@@ -70,7 +70,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
70
70
  * A function that can calculate the length of a request body.
71
71
  * @internal
72
72
  */
73
- bodyLengthChecker?: (body: any) => number | undefined;
73
+ bodyLengthChecker?: __BodyLengthCalculator;
74
74
  /**
75
75
  * A function that converts a stream into an array of bytes.
76
76
  * @internal
@@ -3,3 +3,4 @@ export * from "./PinpointEmailClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { PinpointEmailServiceException } from "./models/PinpointEmailServiceException";
@@ -0,0 +1,10 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+ /**
3
+ * Base exception class for all service exceptions from PinpointEmail service.
4
+ */
5
+ export declare class PinpointEmailServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,36 +1,49 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { PinpointEmailServiceException as __BaseException } from "./PinpointEmailServiceException";
2
3
  /**
3
4
  * <p>The message can't be sent because the account's ability to send email has been
4
5
  * permanently restricted.</p>
5
6
  */
6
- export interface AccountSuspendedException extends __SmithyException, $MetadataBearer {
7
- name: "AccountSuspendedException";
8
- $fault: "client";
9
- message?: string;
7
+ export declare class AccountSuspendedException extends __BaseException {
8
+ readonly name: "AccountSuspendedException";
9
+ readonly $fault: "client";
10
+ /**
11
+ * @internal
12
+ */
13
+ constructor(opts: __ExceptionOptionType<AccountSuspendedException, __BaseException>);
10
14
  }
11
15
  /**
12
16
  * <p>The resource specified in your request already exists.</p>
13
17
  */
14
- export interface AlreadyExistsException extends __SmithyException, $MetadataBearer {
15
- name: "AlreadyExistsException";
16
- $fault: "client";
17
- message?: string;
18
+ export declare class AlreadyExistsException extends __BaseException {
19
+ readonly name: "AlreadyExistsException";
20
+ readonly $fault: "client";
21
+ /**
22
+ * @internal
23
+ */
24
+ constructor(opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>);
18
25
  }
19
26
  /**
20
27
  * <p>The input you provided is invalid.</p>
21
28
  */
22
- export interface BadRequestException extends __SmithyException, $MetadataBearer {
23
- name: "BadRequestException";
24
- $fault: "client";
25
- message?: string;
29
+ export declare class BadRequestException extends __BaseException {
30
+ readonly name: "BadRequestException";
31
+ readonly $fault: "client";
32
+ /**
33
+ * @internal
34
+ */
35
+ constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
26
36
  }
27
37
  /**
28
38
  * <p>The resource is being modified by another operation or thread.</p>
29
39
  */
30
- export interface ConcurrentModificationException extends __SmithyException, $MetadataBearer {
31
- name: "ConcurrentModificationException";
32
- $fault: "server";
33
- message?: string;
40
+ export declare class ConcurrentModificationException extends __BaseException {
41
+ readonly name: "ConcurrentModificationException";
42
+ readonly $fault: "server";
43
+ /**
44
+ * @internal
45
+ */
46
+ constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
34
47
  }
35
48
  export declare enum TlsPolicy {
36
49
  OPTIONAL = "OPTIONAL",
@@ -231,26 +244,35 @@ export declare namespace CreateConfigurationSetResponse {
231
244
  /**
232
245
  * <p>There are too many instances of the specified resource type.</p>
233
246
  */
234
- export interface LimitExceededException extends __SmithyException, $MetadataBearer {
235
- name: "LimitExceededException";
236
- $fault: "client";
237
- message?: string;
247
+ export declare class LimitExceededException extends __BaseException {
248
+ readonly name: "LimitExceededException";
249
+ readonly $fault: "client";
250
+ /**
251
+ * @internal
252
+ */
253
+ constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
238
254
  }
239
255
  /**
240
256
  * <p>The resource you attempted to access doesn't exist.</p>
241
257
  */
242
- export interface NotFoundException extends __SmithyException, $MetadataBearer {
243
- name: "NotFoundException";
244
- $fault: "client";
245
- message?: string;
258
+ export declare class NotFoundException extends __BaseException {
259
+ readonly name: "NotFoundException";
260
+ readonly $fault: "client";
261
+ /**
262
+ * @internal
263
+ */
264
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
246
265
  }
247
266
  /**
248
267
  * <p>Too many requests have been made to the operation.</p>
249
268
  */
250
- export interface TooManyRequestsException extends __SmithyException, $MetadataBearer {
251
- name: "TooManyRequestsException";
252
- $fault: "client";
253
- message?: string;
269
+ export declare class TooManyRequestsException extends __BaseException {
270
+ readonly name: "TooManyRequestsException";
271
+ readonly $fault: "client";
272
+ /**
273
+ * @internal
274
+ */
275
+ constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
254
276
  }
255
277
  export declare enum DimensionValueSource {
256
278
  EMAIL_HEADER = "EMAIL_HEADER",
@@ -753,27 +775,36 @@ export declare namespace CreateDeliverabilityTestReportResponse {
753
775
  /**
754
776
  * <p>The message can't be sent because the sending domain isn't verified.</p>
755
777
  */
756
- export interface MailFromDomainNotVerifiedException extends __SmithyException, $MetadataBearer {
757
- name: "MailFromDomainNotVerifiedException";
758
- $fault: "client";
759
- message?: string;
778
+ export declare class MailFromDomainNotVerifiedException extends __BaseException {
779
+ readonly name: "MailFromDomainNotVerifiedException";
780
+ readonly $fault: "client";
781
+ /**
782
+ * @internal
783
+ */
784
+ constructor(opts: __ExceptionOptionType<MailFromDomainNotVerifiedException, __BaseException>);
760
785
  }
761
786
  /**
762
787
  * <p>The message can't be sent because it contains invalid content.</p>
763
788
  */
764
- export interface MessageRejected extends __SmithyException, $MetadataBearer {
765
- name: "MessageRejected";
766
- $fault: "client";
767
- message?: string;
789
+ export declare class MessageRejected extends __BaseException {
790
+ readonly name: "MessageRejected";
791
+ readonly $fault: "client";
792
+ /**
793
+ * @internal
794
+ */
795
+ constructor(opts: __ExceptionOptionType<MessageRejected, __BaseException>);
768
796
  }
769
797
  /**
770
798
  * <p>The message can't be sent because the account's ability to send email is currently
771
799
  * paused.</p>
772
800
  */
773
- export interface SendingPausedException extends __SmithyException, $MetadataBearer {
774
- name: "SendingPausedException";
775
- $fault: "client";
776
- message?: string;
801
+ export declare class SendingPausedException extends __BaseException {
802
+ readonly name: "SendingPausedException";
803
+ readonly $fault: "client";
804
+ /**
805
+ * @internal
806
+ */
807
+ constructor(opts: __ExceptionOptionType<SendingPausedException, __BaseException>);
777
808
  }
778
809
  /**
779
810
  * <p>A request to begin the verification process for an email identity (an email address or
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: PinpointEmailClientConfig) => {
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
9
  base64Decoder: import("@aws-sdk/types").Decoder;
10
10
  base64Encoder: import("@aws-sdk/types").Encoder;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
13
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
14
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: PinpointEmailClientConfig) => {
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
9
  base64Decoder: import("@aws-sdk/types").Decoder;
10
10
  base64Encoder: import("@aws-sdk/types").Encoder;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
13
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
14
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: PinpointEmailClientConfig) => {
8
8
  requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
9
9
  apiVersion: string;
10
10
  urlParser: import("@aws-sdk/types").UrlParser;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  streamCollector: import("@aws-sdk/types").StreamCollector;
13
13
  base64Decoder: import("@aws-sdk/types").Decoder;
14
14
  base64Encoder: import("@aws-sdk/types").Encoder;
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
5
5
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
6
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
7
  import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
8
+ import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
9
  import { CreateConfigurationSetCommandInput, CreateConfigurationSetCommandOutput } from "./commands/CreateConfigurationSetCommand";
10
10
  import { CreateConfigurationSetEventDestinationCommandInput, CreateConfigurationSetEventDestinationCommandOutput } from "./commands/CreateConfigurationSetEventDestinationCommand";
11
11
  import { CreateDedicatedIpPoolCommandInput, CreateDedicatedIpPoolCommandOutput } from "./commands/CreateDedicatedIpPoolCommand";
@@ -58,7 +58,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
58
58
 
59
59
  urlParser?: __UrlParser;
60
60
 
61
- bodyLengthChecker?: (body: any) => number | undefined;
61
+ bodyLengthChecker?: __BodyLengthCalculator;
62
62
 
63
63
  streamCollector?: __StreamCollector;
64
64
 
@@ -3,3 +3,4 @@ export * from "./PinpointEmailClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { PinpointEmailServiceException } from "./models/PinpointEmailServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class PinpointEmailServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -1,27 +1,32 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { PinpointEmailServiceException as __BaseException } from "./PinpointEmailServiceException";
2
3
 
3
- export interface AccountSuspendedException extends __SmithyException, $MetadataBearer {
4
- name: "AccountSuspendedException";
5
- $fault: "client";
6
- message?: string;
4
+ export declare class AccountSuspendedException extends __BaseException {
5
+ readonly name: "AccountSuspendedException";
6
+ readonly $fault: "client";
7
+
8
+ constructor(opts: __ExceptionOptionType<AccountSuspendedException, __BaseException>);
7
9
  }
8
10
 
9
- export interface AlreadyExistsException extends __SmithyException, $MetadataBearer {
10
- name: "AlreadyExistsException";
11
- $fault: "client";
12
- message?: string;
11
+ export declare class AlreadyExistsException extends __BaseException {
12
+ readonly name: "AlreadyExistsException";
13
+ readonly $fault: "client";
14
+
15
+ constructor(opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>);
13
16
  }
14
17
 
15
- export interface BadRequestException extends __SmithyException, $MetadataBearer {
16
- name: "BadRequestException";
17
- $fault: "client";
18
- message?: string;
18
+ export declare class BadRequestException extends __BaseException {
19
+ readonly name: "BadRequestException";
20
+ readonly $fault: "client";
21
+
22
+ constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
19
23
  }
20
24
 
21
- export interface ConcurrentModificationException extends __SmithyException, $MetadataBearer {
22
- name: "ConcurrentModificationException";
23
- $fault: "server";
24
- message?: string;
25
+ export declare class ConcurrentModificationException extends __BaseException {
26
+ readonly name: "ConcurrentModificationException";
27
+ readonly $fault: "server";
28
+
29
+ constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
25
30
  }
26
31
  export declare enum TlsPolicy {
27
32
  OPTIONAL = "OPTIONAL",
@@ -105,22 +110,25 @@ export declare namespace CreateConfigurationSetResponse {
105
110
  const filterSensitiveLog: (obj: CreateConfigurationSetResponse) => any;
106
111
  }
107
112
 
108
- export interface LimitExceededException extends __SmithyException, $MetadataBearer {
109
- name: "LimitExceededException";
110
- $fault: "client";
111
- message?: string;
113
+ export declare class LimitExceededException extends __BaseException {
114
+ readonly name: "LimitExceededException";
115
+ readonly $fault: "client";
116
+
117
+ constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
112
118
  }
113
119
 
114
- export interface NotFoundException extends __SmithyException, $MetadataBearer {
115
- name: "NotFoundException";
116
- $fault: "client";
117
- message?: string;
120
+ export declare class NotFoundException extends __BaseException {
121
+ readonly name: "NotFoundException";
122
+ readonly $fault: "client";
123
+
124
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
118
125
  }
119
126
 
120
- export interface TooManyRequestsException extends __SmithyException, $MetadataBearer {
121
- name: "TooManyRequestsException";
122
- $fault: "client";
123
- message?: string;
127
+ export declare class TooManyRequestsException extends __BaseException {
128
+ readonly name: "TooManyRequestsException";
129
+ readonly $fault: "client";
130
+
131
+ constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
124
132
  }
125
133
  export declare enum DimensionValueSource {
126
134
  EMAIL_HEADER = "EMAIL_HEADER",
@@ -341,22 +349,25 @@ export declare namespace CreateDeliverabilityTestReportResponse {
341
349
  const filterSensitiveLog: (obj: CreateDeliverabilityTestReportResponse) => any;
342
350
  }
343
351
 
344
- export interface MailFromDomainNotVerifiedException extends __SmithyException, $MetadataBearer {
345
- name: "MailFromDomainNotVerifiedException";
346
- $fault: "client";
347
- message?: string;
352
+ export declare class MailFromDomainNotVerifiedException extends __BaseException {
353
+ readonly name: "MailFromDomainNotVerifiedException";
354
+ readonly $fault: "client";
355
+
356
+ constructor(opts: __ExceptionOptionType<MailFromDomainNotVerifiedException, __BaseException>);
348
357
  }
349
358
 
350
- export interface MessageRejected extends __SmithyException, $MetadataBearer {
351
- name: "MessageRejected";
352
- $fault: "client";
353
- message?: string;
359
+ export declare class MessageRejected extends __BaseException {
360
+ readonly name: "MessageRejected";
361
+ readonly $fault: "client";
362
+
363
+ constructor(opts: __ExceptionOptionType<MessageRejected, __BaseException>);
354
364
  }
355
365
 
356
- export interface SendingPausedException extends __SmithyException, $MetadataBearer {
357
- name: "SendingPausedException";
358
- $fault: "client";
359
- message?: string;
366
+ export declare class SendingPausedException extends __BaseException {
367
+ readonly name: "SendingPausedException";
368
+ readonly $fault: "client";
369
+
370
+ constructor(opts: __ExceptionOptionType<SendingPausedException, __BaseException>);
360
371
  }
361
372
 
362
373
  export interface CreateEmailIdentityRequest {
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: PinpointEmailClientConfig) => {
6
6
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
7
  base64Decoder: import("@aws-sdk/types").Decoder;
8
8
  base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
12
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: PinpointEmailClientConfig) => {
6
6
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
7
  base64Decoder: import("@aws-sdk/types").Decoder;
8
8
  base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
12
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: PinpointEmailClientConfig) => {
6
6
  requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
7
7
  apiVersion: string;
8
8
  urlParser: import("@aws-sdk/types").UrlParser;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  streamCollector: import("@aws-sdk/types").StreamCollector;
11
11
  base64Decoder: import("@aws-sdk/types").Decoder;
12
12
  base64Encoder: import("@aws-sdk/types").Encoder;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-pinpoint-email",
3
3
  "description": "AWS SDK for JavaScript Pinpoint Email Client for Node.js, Browser and React Native",
4
- "version": "3.52.0",
4
+ "version": "3.54.1",
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",
@@ -18,34 +18,34 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.52.0",
22
- "@aws-sdk/config-resolver": "3.52.0",
23
- "@aws-sdk/credential-provider-node": "3.52.0",
24
- "@aws-sdk/fetch-http-handler": "3.52.0",
25
- "@aws-sdk/hash-node": "3.52.0",
26
- "@aws-sdk/invalid-dependency": "3.52.0",
27
- "@aws-sdk/middleware-content-length": "3.52.0",
28
- "@aws-sdk/middleware-host-header": "3.52.0",
29
- "@aws-sdk/middleware-logger": "3.52.0",
30
- "@aws-sdk/middleware-retry": "3.52.0",
31
- "@aws-sdk/middleware-serde": "3.52.0",
32
- "@aws-sdk/middleware-signing": "3.52.0",
33
- "@aws-sdk/middleware-stack": "3.52.0",
34
- "@aws-sdk/middleware-user-agent": "3.52.0",
35
- "@aws-sdk/node-config-provider": "3.52.0",
36
- "@aws-sdk/node-http-handler": "3.52.0",
37
- "@aws-sdk/protocol-http": "3.52.0",
38
- "@aws-sdk/smithy-client": "3.52.0",
39
- "@aws-sdk/types": "3.52.0",
40
- "@aws-sdk/url-parser": "3.52.0",
21
+ "@aws-sdk/client-sts": "3.54.1",
22
+ "@aws-sdk/config-resolver": "3.54.1",
23
+ "@aws-sdk/credential-provider-node": "3.54.1",
24
+ "@aws-sdk/fetch-http-handler": "3.54.1",
25
+ "@aws-sdk/hash-node": "3.54.1",
26
+ "@aws-sdk/invalid-dependency": "3.54.1",
27
+ "@aws-sdk/middleware-content-length": "3.54.1",
28
+ "@aws-sdk/middleware-host-header": "3.54.1",
29
+ "@aws-sdk/middleware-logger": "3.54.1",
30
+ "@aws-sdk/middleware-retry": "3.54.1",
31
+ "@aws-sdk/middleware-serde": "3.54.1",
32
+ "@aws-sdk/middleware-signing": "3.54.1",
33
+ "@aws-sdk/middleware-stack": "3.54.1",
34
+ "@aws-sdk/middleware-user-agent": "3.54.1",
35
+ "@aws-sdk/node-config-provider": "3.54.1",
36
+ "@aws-sdk/node-http-handler": "3.54.1",
37
+ "@aws-sdk/protocol-http": "3.54.1",
38
+ "@aws-sdk/smithy-client": "3.54.1",
39
+ "@aws-sdk/types": "3.54.1",
40
+ "@aws-sdk/url-parser": "3.54.1",
41
41
  "@aws-sdk/util-base64-browser": "3.52.0",
42
42
  "@aws-sdk/util-base64-node": "3.52.0",
43
- "@aws-sdk/util-body-length-browser": "3.52.0",
44
- "@aws-sdk/util-body-length-node": "3.52.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.52.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.52.0",
47
- "@aws-sdk/util-user-agent-browser": "3.52.0",
48
- "@aws-sdk/util-user-agent-node": "3.52.0",
43
+ "@aws-sdk/util-body-length-browser": "3.54.0",
44
+ "@aws-sdk/util-body-length-node": "3.54.0",
45
+ "@aws-sdk/util-defaults-mode-browser": "3.54.1",
46
+ "@aws-sdk/util-defaults-mode-node": "3.54.1",
47
+ "@aws-sdk/util-user-agent-browser": "3.54.1",
48
+ "@aws-sdk/util-user-agent-node": "3.54.1",
49
49
  "@aws-sdk/util-utf8-browser": "3.52.0",
50
50
  "@aws-sdk/util-utf8-node": "3.52.0",
51
51
  "tslib": "^2.3.0"