@aws-sdk/client-lex-models-v2 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 { BuildBotLocaleCommandInput, BuildBotLocaleCommandOutput } from "./commands/BuildBotLocaleCommand";
10
10
  import { CreateBotAliasCommandInput, CreateBotAliasCommandOutput } from "./commands/CreateBotAliasCommand";
11
11
  import { CreateBotCommandInput, CreateBotCommandOutput } from "./commands/CreateBotCommand";
@@ -94,7 +94,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
94
94
  * A function that can calculate the length of a request body.
95
95
  * @internal
96
96
  */
97
- bodyLengthChecker?: (body: any) => number | undefined;
97
+ bodyLengthChecker?: __BodyLengthCalculator;
98
98
  /**
99
99
  * A function that converts a stream into an array of bytes.
100
100
  * @internal
@@ -4,3 +4,4 @@ export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
6
  export * from "./waiters";
7
+ export { LexModelsV2ServiceException } from "./models/LexModelsV2ServiceException";
@@ -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 LexModelsV2 service.
4
+ */
5
+ export declare class LexModelsV2ServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { LexModelsV2ServiceException as __BaseException } from "./LexModelsV2ServiceException";
2
3
  export declare enum AudioRecognitionStrategy {
3
4
  UseSlotValuesAsCustomVocabulary = "UseSlotValuesAsCustomVocabulary"
4
5
  }
@@ -1102,56 +1103,74 @@ export declare namespace BuildBotLocaleResponse {
1102
1103
  * the resource is in a conflicting state. For example, deleting a bot
1103
1104
  * that is in the CREATING state. Try your request again. </p>
1104
1105
  */
1105
- export interface ConflictException extends __SmithyException, $MetadataBearer {
1106
- name: "ConflictException";
1107
- $fault: "client";
1108
- message?: string;
1106
+ export declare class ConflictException extends __BaseException {
1107
+ readonly name: "ConflictException";
1108
+ readonly $fault: "client";
1109
+ /**
1110
+ * @internal
1111
+ */
1112
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
1109
1113
  }
1110
1114
  /**
1111
1115
  * <p>The service encountered an unexpected condition. Try your request
1112
1116
  * again.</p>
1113
1117
  */
1114
- export interface InternalServerException extends __SmithyException, $MetadataBearer {
1115
- name: "InternalServerException";
1116
- $fault: "server";
1117
- message?: string;
1118
+ export declare class InternalServerException extends __BaseException {
1119
+ readonly name: "InternalServerException";
1120
+ readonly $fault: "server";
1121
+ /**
1122
+ * @internal
1123
+ */
1124
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
1118
1125
  }
1119
1126
  /**
1120
1127
  * <p>Your request couldn't be completed because one or more request
1121
1128
  * fields aren't valid. Check the fields in your request and try
1122
1129
  * again.</p>
1123
1130
  */
1124
- export interface PreconditionFailedException extends __SmithyException, $MetadataBearer {
1125
- name: "PreconditionFailedException";
1126
- $fault: "client";
1127
- message?: string;
1131
+ export declare class PreconditionFailedException extends __BaseException {
1132
+ readonly name: "PreconditionFailedException";
1133
+ readonly $fault: "client";
1134
+ /**
1135
+ * @internal
1136
+ */
1137
+ constructor(opts: __ExceptionOptionType<PreconditionFailedException, __BaseException>);
1128
1138
  }
1129
1139
  /**
1130
1140
  * <p>You have reached a quota for your bot. </p>
1131
1141
  */
1132
- export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
1133
- name: "ServiceQuotaExceededException";
1134
- $fault: "client";
1135
- message?: string;
1142
+ export declare class ServiceQuotaExceededException extends __BaseException {
1143
+ readonly name: "ServiceQuotaExceededException";
1144
+ readonly $fault: "client";
1145
+ /**
1146
+ * @internal
1147
+ */
1148
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
1136
1149
  }
1137
1150
  /**
1138
1151
  * <p>Your request rate is too high. Reduce the frequency of
1139
1152
  * requests.</p>
1140
1153
  */
1141
- export interface ThrottlingException extends __SmithyException, $MetadataBearer {
1142
- name: "ThrottlingException";
1143
- $fault: "client";
1154
+ export declare class ThrottlingException extends __BaseException {
1155
+ readonly name: "ThrottlingException";
1156
+ readonly $fault: "client";
1144
1157
  retryAfterSeconds?: number;
1145
- message?: string;
1158
+ /**
1159
+ * @internal
1160
+ */
1161
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
1146
1162
  }
1147
1163
  /**
1148
1164
  * <p>One of the input parameters in your request isn't valid. Check the
1149
1165
  * parameters and try your request again.</p>
1150
1166
  */
1151
- export interface ValidationException extends __SmithyException, $MetadataBearer {
1152
- name: "ValidationException";
1153
- $fault: "client";
1154
- message?: string;
1167
+ export declare class ValidationException extends __BaseException {
1168
+ readonly name: "ValidationException";
1169
+ readonly $fault: "client";
1170
+ /**
1171
+ * @internal
1172
+ */
1173
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
1155
1174
  }
1156
1175
  export declare enum BuiltInIntentSortAttribute {
1157
1176
  IntentSignature = "IntentSignature"
@@ -1894,10 +1913,13 @@ export declare namespace CreateExportResponse {
1894
1913
  * <p>You asked to describe a resource that doesn't exist. Check the
1895
1914
  * resource that you are requesting and try again.</p>
1896
1915
  */
1897
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
1898
- name: "ResourceNotFoundException";
1899
- $fault: "client";
1900
- message?: string;
1916
+ export declare class ResourceNotFoundException extends __BaseException {
1917
+ readonly name: "ResourceNotFoundException";
1918
+ readonly $fault: "client";
1919
+ /**
1920
+ * @internal
1921
+ */
1922
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
1901
1923
  }
1902
1924
  /**
1903
1925
  * <p>Settings that determine the Lambda function that Amazon Lex uses for
@@ -2942,7 +2964,7 @@ export interface CreateSlotRequest {
2942
2964
  * The slot type determines the values that can be entered into the
2943
2965
  * slot.</p>
2944
2966
  */
2945
- slotTypeId: string | undefined;
2967
+ slotTypeId?: string;
2946
2968
  /**
2947
2969
  * <p>Specifies prompts that Amazon Lex sends to the user to elicit a response
2948
2970
  * that provides the value for the slot. </p>
@@ -7841,7 +7863,7 @@ export interface UpdateSlotRequest {
7841
7863
  * <p>The unique identifier of the new slot type to associate with this
7842
7864
  * slot. </p>
7843
7865
  */
7844
- slotTypeId: string | undefined;
7866
+ slotTypeId?: string;
7845
7867
  /**
7846
7868
  * <p>A new set of prompts that Amazon Lex sends to the user to elicit a
7847
7869
  * response the provides a value for the slot.</p>
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: LexModelsV2ClientConfig) => {
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: LexModelsV2ClientConfig) => {
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: LexModelsV2ClientConfig) => {
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 { BuildBotLocaleCommandInput, BuildBotLocaleCommandOutput } from "./commands/BuildBotLocaleCommand";
10
10
  import { CreateBotAliasCommandInput, CreateBotAliasCommandOutput } from "./commands/CreateBotAliasCommand";
11
11
  import { CreateBotCommandInput, CreateBotCommandOutput } from "./commands/CreateBotCommand";
@@ -82,7 +82,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
82
82
 
83
83
  urlParser?: __UrlParser;
84
84
 
85
- bodyLengthChecker?: (body: any) => number | undefined;
85
+ bodyLengthChecker?: __BodyLengthCalculator;
86
86
 
87
87
  streamCollector?: __StreamCollector;
88
88
 
@@ -4,3 +4,4 @@ export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
6
  export * from "./waiters";
7
+ export { LexModelsV2ServiceException } from "./models/LexModelsV2ServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class LexModelsV2ServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -1,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { LexModelsV2ServiceException as __BaseException } from "./LexModelsV2ServiceException";
2
3
  export declare enum AudioRecognitionStrategy {
3
4
  UseSlotValuesAsCustomVocabulary = "UseSlotValuesAsCustomVocabulary"
4
5
  }
@@ -557,41 +558,47 @@ export declare namespace BuildBotLocaleResponse {
557
558
  const filterSensitiveLog: (obj: BuildBotLocaleResponse) => any;
558
559
  }
559
560
 
560
- export interface ConflictException extends __SmithyException, $MetadataBearer {
561
- name: "ConflictException";
562
- $fault: "client";
563
- message?: string;
561
+ export declare class ConflictException extends __BaseException {
562
+ readonly name: "ConflictException";
563
+ readonly $fault: "client";
564
+
565
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
564
566
  }
565
567
 
566
- export interface InternalServerException extends __SmithyException, $MetadataBearer {
567
- name: "InternalServerException";
568
- $fault: "server";
569
- message?: string;
568
+ export declare class InternalServerException extends __BaseException {
569
+ readonly name: "InternalServerException";
570
+ readonly $fault: "server";
571
+
572
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
570
573
  }
571
574
 
572
- export interface PreconditionFailedException extends __SmithyException, $MetadataBearer {
573
- name: "PreconditionFailedException";
574
- $fault: "client";
575
- message?: string;
575
+ export declare class PreconditionFailedException extends __BaseException {
576
+ readonly name: "PreconditionFailedException";
577
+ readonly $fault: "client";
578
+
579
+ constructor(opts: __ExceptionOptionType<PreconditionFailedException, __BaseException>);
576
580
  }
577
581
 
578
- export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
579
- name: "ServiceQuotaExceededException";
580
- $fault: "client";
581
- message?: string;
582
+ export declare class ServiceQuotaExceededException extends __BaseException {
583
+ readonly name: "ServiceQuotaExceededException";
584
+ readonly $fault: "client";
585
+
586
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
582
587
  }
583
588
 
584
- export interface ThrottlingException extends __SmithyException, $MetadataBearer {
585
- name: "ThrottlingException";
586
- $fault: "client";
589
+ export declare class ThrottlingException extends __BaseException {
590
+ readonly name: "ThrottlingException";
591
+ readonly $fault: "client";
587
592
  retryAfterSeconds?: number;
588
- message?: string;
593
+
594
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
589
595
  }
590
596
 
591
- export interface ValidationException extends __SmithyException, $MetadataBearer {
592
- name: "ValidationException";
593
- $fault: "client";
594
- message?: string;
597
+ export declare class ValidationException extends __BaseException {
598
+ readonly name: "ValidationException";
599
+ readonly $fault: "client";
600
+
601
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
595
602
  }
596
603
  export declare enum BuiltInIntentSortAttribute {
597
604
  IntentSignature = "IntentSignature"
@@ -958,10 +965,11 @@ export declare namespace CreateExportResponse {
958
965
  const filterSensitiveLog: (obj: CreateExportResponse) => any;
959
966
  }
960
967
 
961
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
962
- name: "ResourceNotFoundException";
963
- $fault: "client";
964
- message?: string;
968
+ export declare class ResourceNotFoundException extends __BaseException {
969
+ readonly name: "ResourceNotFoundException";
970
+ readonly $fault: "client";
971
+
972
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
965
973
  }
966
974
 
967
975
  export interface DialogCodeHookSettings {
@@ -1437,7 +1445,7 @@ export interface CreateSlotRequest {
1437
1445
 
1438
1446
  description?: string;
1439
1447
 
1440
- slotTypeId: string | undefined;
1448
+ slotTypeId?: string;
1441
1449
 
1442
1450
  valueElicitationSetting: SlotValueElicitationSetting | undefined;
1443
1451
 
@@ -3764,7 +3772,7 @@ export interface UpdateSlotRequest {
3764
3772
 
3765
3773
  description?: string;
3766
3774
 
3767
- slotTypeId: string | undefined;
3775
+ slotTypeId?: string;
3768
3776
 
3769
3777
  valueElicitationSetting: SlotValueElicitationSetting | undefined;
3770
3778
 
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: LexModelsV2ClientConfig) => {
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: LexModelsV2ClientConfig) => {
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: LexModelsV2ClientConfig) => {
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-lex-models-v2",
3
3
  "description": "AWS SDK for JavaScript Lex Models V2 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,37 +18,37 @@
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
- "@aws-sdk/util-waiter": "3.52.0",
51
+ "@aws-sdk/util-waiter": "3.54.1",
52
52
  "tslib": "^2.3.0"
53
53
  },
54
54
  "devDependencies": {