@aws-sdk/client-lex-models-v2 3.95.0 → 3.105.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,33 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
7
+
8
+
9
+ ### Features
10
+
11
+ * **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
12
+
13
+
14
+
15
+
16
+
17
+ # [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
18
+
19
+ **Note:** Version bump only for package @aws-sdk/client-lex-models-v2
20
+
21
+
22
+
23
+
24
+
25
+ # [3.99.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.98.0...v3.99.0) (2022-05-25)
26
+
27
+ **Note:** Version bump only for package @aws-sdk/client-lex-models-v2
28
+
29
+
30
+
31
+
32
+
6
33
  # [3.95.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.94.0...v3.95.0) (2022-05-19)
7
34
 
8
35
  **Note:** Version bump only for package @aws-sdk/client-lex-models-v2
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
5
5
  const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
6
6
  const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
7
7
  const middleware_logger_1 = require("@aws-sdk/middleware-logger");
8
+ const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
8
9
  const middleware_retry_1 = require("@aws-sdk/middleware-retry");
9
10
  const middleware_signing_1 = require("@aws-sdk/middleware-signing");
10
11
  const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
@@ -25,6 +26,7 @@ class LexModelsV2Client extends smithy_client_1.Client {
25
26
  this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
26
27
  this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
27
28
  this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
29
+ this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
28
30
  this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
29
31
  this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
30
32
  }
@@ -17,8 +17,10 @@ const util_utf8_node_1 = require("@aws-sdk/util-utf8-node");
17
17
  const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
18
18
  const smithy_client_1 = require("@aws-sdk/smithy-client");
19
19
  const util_defaults_mode_node_1 = require("@aws-sdk/util-defaults-mode-node");
20
+ const smithy_client_2 = require("@aws-sdk/smithy-client");
20
21
  const getRuntimeConfig = (config) => {
21
22
  var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
23
+ (0, smithy_client_2.emitWarningIfUnsupportedVersion)(process.version);
22
24
  const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
23
25
  const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
24
26
  const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
3
3
  import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
4
4
  import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
5
5
  import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
6
+ import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
6
7
  import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
7
8
  import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
8
9
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
@@ -25,6 +26,7 @@ var LexModelsV2Client = (function (_super) {
25
26
  _this.middlewareStack.use(getContentLengthPlugin(_this.config));
26
27
  _this.middlewareStack.use(getHostHeaderPlugin(_this.config));
27
28
  _this.middlewareStack.use(getLoggerPlugin(_this.config));
29
+ _this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
28
30
  _this.middlewareStack.use(getAwsAuthPlugin(_this.config));
29
31
  _this.middlewareStack.use(getUserAgentPlugin(_this.config));
30
32
  return _this;
@@ -14,8 +14,10 @@ import { fromUtf8, toUtf8 } from "@aws-sdk/util-utf8-node";
14
14
  import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
15
15
  import { loadConfigsForDefaultMode } from "@aws-sdk/smithy-client";
16
16
  import { resolveDefaultsModeConfig } from "@aws-sdk/util-defaults-mode-node";
17
+ import { emitWarningIfUnsupportedVersion } from "@aws-sdk/smithy-client";
17
18
  export var getRuntimeConfig = function (config) {
18
19
  var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
20
+ emitWarningIfUnsupportedVersion(process.version);
19
21
  var defaultsMode = resolveDefaultsModeConfig(config);
20
22
  var defaultConfigProvider = function () { return defaultsMode().then(loadConfigsForDefaultMode); };
21
23
  var clientSharedValues = getSharedRuntimeConfig(config);
@@ -505,18 +505,14 @@ export interface BotImportSpecification {
505
505
  * update tags. To update tags, use the <code>TagResource</code>
506
506
  * operation.</p>
507
507
  */
508
- botTags?: {
509
- [key: string]: string;
510
- };
508
+ botTags?: Record<string, string>;
511
509
  /**
512
510
  * <p>A list of tags to add to the test alias for a bot. You can only add
513
511
  * tags when you import a bot. You can't use the <code>UpdateAlias</code>
514
512
  * operation to update tags. To update tags on the test alias, use the
515
513
  * <code>TagResource</code> operation.</p>
516
514
  */
517
- testBotAliasTags?: {
518
- [key: string]: string;
519
- };
515
+ testBotAliasTags?: Record<string, string>;
520
516
  }
521
517
  export declare namespace BotImportSpecification {
522
518
  /**
@@ -1400,18 +1396,14 @@ export interface CreateBotRequest {
1400
1396
  * update tags. To update tags, use the <code>TagResource</code>
1401
1397
  * operation.</p>
1402
1398
  */
1403
- botTags?: {
1404
- [key: string]: string;
1405
- };
1399
+ botTags?: Record<string, string>;
1406
1400
  /**
1407
1401
  * <p>A list of tags to add to the test alias for a bot. You can only add
1408
1402
  * tags when you create a bot. You can't use the <code>UpdateAlias</code>
1409
1403
  * operation to update tags. To update tags on the test alias, use the
1410
1404
  * <code>TagResource</code> operation.</p>
1411
1405
  */
1412
- testBotAliasTags?: {
1413
- [key: string]: string;
1414
- };
1406
+ testBotAliasTags?: Record<string, string>;
1415
1407
  }
1416
1408
  export declare namespace CreateBotRequest {
1417
1409
  /**
@@ -1460,15 +1452,11 @@ export interface CreateBotResponse {
1460
1452
  /**
1461
1453
  * <p>A list of tags associated with the bot.</p>
1462
1454
  */
1463
- botTags?: {
1464
- [key: string]: string;
1465
- };
1455
+ botTags?: Record<string, string>;
1466
1456
  /**
1467
1457
  * <p>A list of tags associated with the test alias for the bot.</p>
1468
1458
  */
1469
- testBotAliasTags?: {
1470
- [key: string]: string;
1471
- };
1459
+ testBotAliasTags?: Record<string, string>;
1472
1460
  }
1473
1461
  export declare namespace CreateBotResponse {
1474
1462
  /**
@@ -1514,9 +1502,7 @@ export interface CreateBotAliasRequest {
1514
1502
  * this parameter to specify a specific Lambda function to run different
1515
1503
  * functions in different locales.</p>
1516
1504
  */
1517
- botAliasLocaleSettings?: {
1518
- [key: string]: BotAliasLocaleSettings;
1519
- };
1505
+ botAliasLocaleSettings?: Record<string, BotAliasLocaleSettings>;
1520
1506
  /**
1521
1507
  * <p>Specifies whether Amazon Lex logs text and audio for a conversation with
1522
1508
  * the bot. When you enable conversation logs, text logs store text input,
@@ -1539,9 +1525,7 @@ export interface CreateBotAliasRequest {
1539
1525
  * operation to update the tags on a bot alias. To update tags, use the
1540
1526
  * <code>TagResource</code> operation.</p>
1541
1527
  */
1542
- tags?: {
1543
- [key: string]: string;
1544
- };
1528
+ tags?: Record<string, string>;
1545
1529
  }
1546
1530
  export declare namespace CreateBotAliasRequest {
1547
1531
  /**
@@ -1569,9 +1553,7 @@ export interface CreateBotAliasResponse {
1569
1553
  /**
1570
1554
  * <p>Configuration information for a specific locale.</p>
1571
1555
  */
1572
- botAliasLocaleSettings?: {
1573
- [key: string]: BotAliasLocaleSettings;
1574
- };
1556
+ botAliasLocaleSettings?: Record<string, BotAliasLocaleSettings>;
1575
1557
  /**
1576
1558
  * <p>The conversation log settings specified for the alias.</p>
1577
1559
  */
@@ -1601,9 +1583,7 @@ export interface CreateBotAliasResponse {
1601
1583
  /**
1602
1584
  * <p>A list of tags associated with the bot alias.</p>
1603
1585
  */
1604
- tags?: {
1605
- [key: string]: string;
1606
- };
1586
+ tags?: Record<string, string>;
1607
1587
  }
1608
1588
  export declare namespace CreateBotAliasResponse {
1609
1589
  /**
@@ -1747,9 +1727,7 @@ export interface CreateBotVersionRequest {
1747
1727
  * version for each locale. When you specify a source version, the locale
1748
1728
  * data is copied from the source version to the new version.</p>
1749
1729
  */
1750
- botVersionLocaleSpecification: {
1751
- [key: string]: BotVersionLocaleDetails;
1752
- } | undefined;
1730
+ botVersionLocaleSpecification: Record<string, BotVersionLocaleDetails> | undefined;
1753
1731
  }
1754
1732
  export declare namespace CreateBotVersionRequest {
1755
1733
  /**
@@ -1773,9 +1751,7 @@ export interface CreateBotVersionResponse {
1773
1751
  /**
1774
1752
  * <p>The source versions used for each locale in the new version.</p>
1775
1753
  */
1776
- botVersionLocaleSpecification?: {
1777
- [key: string]: BotVersionLocaleDetails;
1778
- };
1754
+ botVersionLocaleSpecification?: Record<string, BotVersionLocaleDetails>;
1779
1755
  /**
1780
1756
  * <p>When you send a request to create or update a bot, Amazon Lex sets the
1781
1757
  * status response element to <code>Creating</code>. After Amazon Lex builds
@@ -2721,11 +2697,7 @@ export interface CreateResourcePolicyStatementRequest {
2721
2697
  * SourceArn global condition key.</p>
2722
2698
  * <p>For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition.html">IAM JSON policy elements: Condition </a>.</p>
2723
2699
  */
2724
- condition?: {
2725
- [key: string]: {
2726
- [key: string]: string;
2727
- };
2728
- };
2700
+ condition?: Record<string, Record<string, string>>;
2729
2701
  /**
2730
2702
  * <p>The identifier of the revision of the policy to edit. If this
2731
2703
  * revision ID doesn't match the current revision ID, Amazon Lex throws an
@@ -4062,9 +4034,7 @@ export interface DescribeBotAliasResponse {
4062
4034
  /**
4063
4035
  * <p>The locale settings that are unique to the alias.</p>
4064
4036
  */
4065
- botAliasLocaleSettings?: {
4066
- [key: string]: BotAliasLocaleSettings;
4067
- };
4037
+ botAliasLocaleSettings?: Record<string, BotAliasLocaleSettings>;
4068
4038
  /**
4069
4039
  * <p>Specifics of how Amazon Lex logs text and audio conversations with the
4070
4040
  * bot associated with the alias.</p>
@@ -6861,9 +6831,7 @@ export interface ListTagsForResourceResponse {
6861
6831
  /**
6862
6832
  * <p>The tags associated with a resource.</p>
6863
6833
  */
6864
- tags?: {
6865
- [key: string]: string;
6866
- };
6834
+ tags?: Record<string, string>;
6867
6835
  }
6868
6836
  export declare namespace ListTagsForResourceResponse {
6869
6837
  /**
@@ -7134,9 +7102,7 @@ export interface TagResourceRequest {
7134
7102
  * <p>A list of tag keys to add to the resource. If a tag key already
7135
7103
  * exists, the existing value is replaced with the new value.</p>
7136
7104
  */
7137
- tags: {
7138
- [key: string]: string;
7139
- } | undefined;
7105
+ tags: Record<string, string> | undefined;
7140
7106
  }
7141
7107
  export declare namespace TagResourceRequest {
7142
7108
  /**
@@ -7291,9 +7257,7 @@ export interface UpdateBotAliasRequest {
7291
7257
  * <p>The new Lambda functions to use in each locale for the bot
7292
7258
  * alias.</p>
7293
7259
  */
7294
- botAliasLocaleSettings?: {
7295
- [key: string]: BotAliasLocaleSettings;
7296
- };
7260
+ botAliasLocaleSettings?: Record<string, BotAliasLocaleSettings>;
7297
7261
  /**
7298
7262
  * <p>The new settings for storing conversation logs in Amazon CloudWatch Logs and
7299
7263
  * Amazon S3 buckets.</p>
@@ -7336,9 +7300,7 @@ export interface UpdateBotAliasResponse {
7336
7300
  * <p>The updated Lambda functions to use in each locale for the bot
7337
7301
  * alias.</p>
7338
7302
  */
7339
- botAliasLocaleSettings?: {
7340
- [key: string]: BotAliasLocaleSettings;
7341
- };
7303
+ botAliasLocaleSettings?: Record<string, BotAliasLocaleSettings>;
7342
7304
  /**
7343
7305
  * <p>The updated settings for storing conversation logs in Amazon CloudWatch Logs and
7344
7306
  * Amazon S3 buckets.</p>
@@ -249,13 +249,9 @@ export interface BotImportSpecification {
249
249
 
250
250
  idleSessionTTLInSeconds?: number;
251
251
 
252
- botTags?: {
253
- [key: string]: string;
254
- };
252
+ botTags?: Record<string, string>;
255
253
 
256
- testBotAliasTags?: {
257
- [key: string]: string;
258
- };
254
+ testBotAliasTags?: Record<string, string>;
259
255
  }
260
256
  export declare namespace BotImportSpecification {
261
257
 
@@ -715,13 +711,9 @@ export interface CreateBotRequest {
715
711
 
716
712
  idleSessionTTLInSeconds: number | undefined;
717
713
 
718
- botTags?: {
719
- [key: string]: string;
720
- };
714
+ botTags?: Record<string, string>;
721
715
 
722
- testBotAliasTags?: {
723
- [key: string]: string;
724
- };
716
+ testBotAliasTags?: Record<string, string>;
725
717
  }
726
718
  export declare namespace CreateBotRequest {
727
719
 
@@ -745,13 +737,9 @@ export interface CreateBotResponse {
745
737
 
746
738
  creationDateTime?: Date;
747
739
 
748
- botTags?: {
749
- [key: string]: string;
750
- };
740
+ botTags?: Record<string, string>;
751
741
 
752
- testBotAliasTags?: {
753
- [key: string]: string;
754
- };
742
+ testBotAliasTags?: Record<string, string>;
755
743
  }
756
744
  export declare namespace CreateBotResponse {
757
745
 
@@ -774,9 +762,7 @@ export interface CreateBotAliasRequest {
774
762
 
775
763
  botVersion?: string;
776
764
 
777
- botAliasLocaleSettings?: {
778
- [key: string]: BotAliasLocaleSettings;
779
- };
765
+ botAliasLocaleSettings?: Record<string, BotAliasLocaleSettings>;
780
766
 
781
767
  conversationLogSettings?: ConversationLogSettings;
782
768
 
@@ -784,9 +770,7 @@ export interface CreateBotAliasRequest {
784
770
 
785
771
  botId: string | undefined;
786
772
 
787
- tags?: {
788
- [key: string]: string;
789
- };
773
+ tags?: Record<string, string>;
790
774
  }
791
775
  export declare namespace CreateBotAliasRequest {
792
776
 
@@ -802,9 +786,7 @@ export interface CreateBotAliasResponse {
802
786
 
803
787
  botVersion?: string;
804
788
 
805
- botAliasLocaleSettings?: {
806
- [key: string]: BotAliasLocaleSettings;
807
- };
789
+ botAliasLocaleSettings?: Record<string, BotAliasLocaleSettings>;
808
790
 
809
791
  conversationLogSettings?: ConversationLogSettings;
810
792
 
@@ -816,9 +798,7 @@ export interface CreateBotAliasResponse {
816
798
 
817
799
  creationDateTime?: Date;
818
800
 
819
- tags?: {
820
- [key: string]: string;
821
- };
801
+ tags?: Record<string, string>;
822
802
  }
823
803
  export declare namespace CreateBotAliasResponse {
824
804
 
@@ -872,9 +852,7 @@ export interface CreateBotVersionRequest {
872
852
 
873
853
  description?: string;
874
854
 
875
- botVersionLocaleSpecification: {
876
- [key: string]: BotVersionLocaleDetails;
877
- } | undefined;
855
+ botVersionLocaleSpecification: Record<string, BotVersionLocaleDetails> | undefined;
878
856
  }
879
857
  export declare namespace CreateBotVersionRequest {
880
858
 
@@ -888,9 +866,7 @@ export interface CreateBotVersionResponse {
888
866
 
889
867
  botVersion?: string;
890
868
 
891
- botVersionLocaleSpecification?: {
892
- [key: string]: BotVersionLocaleDetails;
893
- };
869
+ botVersionLocaleSpecification?: Record<string, BotVersionLocaleDetails>;
894
870
 
895
871
  botStatus?: BotStatus | string;
896
872
 
@@ -1326,11 +1302,7 @@ export interface CreateResourcePolicyStatementRequest {
1326
1302
 
1327
1303
  action: string[] | undefined;
1328
1304
 
1329
- condition?: {
1330
- [key: string]: {
1331
- [key: string]: string;
1332
- };
1333
- };
1305
+ condition?: Record<string, Record<string, string>>;
1334
1306
 
1335
1307
  expectedRevisionId?: string;
1336
1308
  }
@@ -1991,9 +1963,7 @@ export interface DescribeBotAliasResponse {
1991
1963
 
1992
1964
  botVersion?: string;
1993
1965
 
1994
- botAliasLocaleSettings?: {
1995
- [key: string]: BotAliasLocaleSettings;
1996
- };
1966
+ botAliasLocaleSettings?: Record<string, BotAliasLocaleSettings>;
1997
1967
 
1998
1968
  conversationLogSettings?: ConversationLogSettings;
1999
1969
 
@@ -3294,9 +3264,7 @@ export declare namespace ListTagsForResourceRequest {
3294
3264
  }
3295
3265
  export interface ListTagsForResourceResponse {
3296
3266
 
3297
- tags?: {
3298
- [key: string]: string;
3299
- };
3267
+ tags?: Record<string, string>;
3300
3268
  }
3301
3269
  export declare namespace ListTagsForResourceResponse {
3302
3270
 
@@ -3420,9 +3388,7 @@ export interface TagResourceRequest {
3420
3388
 
3421
3389
  resourceARN: string | undefined;
3422
3390
 
3423
- tags: {
3424
- [key: string]: string;
3425
- } | undefined;
3391
+ tags: Record<string, string> | undefined;
3426
3392
  }
3427
3393
  export declare namespace TagResourceRequest {
3428
3394
 
@@ -3502,9 +3468,7 @@ export interface UpdateBotAliasRequest {
3502
3468
 
3503
3469
  botVersion?: string;
3504
3470
 
3505
- botAliasLocaleSettings?: {
3506
- [key: string]: BotAliasLocaleSettings;
3507
- };
3471
+ botAliasLocaleSettings?: Record<string, BotAliasLocaleSettings>;
3508
3472
 
3509
3473
  conversationLogSettings?: ConversationLogSettings;
3510
3474
 
@@ -3526,9 +3490,7 @@ export interface UpdateBotAliasResponse {
3526
3490
 
3527
3491
  botVersion?: string;
3528
3492
 
3529
- botAliasLocaleSettings?: {
3530
- [key: string]: BotAliasLocaleSettings;
3531
- };
3493
+ botAliasLocaleSettings?: Record<string, BotAliasLocaleSettings>;
3532
3494
 
3533
3495
  conversationLogSettings?: ConversationLogSettings;
3534
3496
 
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.95.0",
4
+ "version": "3.105.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",
@@ -18,15 +18,16 @@
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.95.0",
21
+ "@aws-sdk/client-sts": "3.105.0",
22
22
  "@aws-sdk/config-resolver": "3.80.0",
23
- "@aws-sdk/credential-provider-node": "3.95.0",
23
+ "@aws-sdk/credential-provider-node": "3.105.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.78.0",
25
25
  "@aws-sdk/hash-node": "3.78.0",
26
26
  "@aws-sdk/invalid-dependency": "3.78.0",
27
27
  "@aws-sdk/middleware-content-length": "3.78.0",
28
28
  "@aws-sdk/middleware-host-header": "3.78.0",
29
29
  "@aws-sdk/middleware-logger": "3.78.0",
30
+ "@aws-sdk/middleware-recursion-detection": "3.105.0",
30
31
  "@aws-sdk/middleware-retry": "3.80.0",
31
32
  "@aws-sdk/middleware-serde": "3.78.0",
32
33
  "@aws-sdk/middleware-signing": "3.78.0",
@@ -35,15 +36,15 @@
35
36
  "@aws-sdk/node-config-provider": "3.80.0",
36
37
  "@aws-sdk/node-http-handler": "3.94.0",
37
38
  "@aws-sdk/protocol-http": "3.78.0",
38
- "@aws-sdk/smithy-client": "3.85.0",
39
+ "@aws-sdk/smithy-client": "3.99.0",
39
40
  "@aws-sdk/types": "3.78.0",
40
41
  "@aws-sdk/url-parser": "3.78.0",
41
42
  "@aws-sdk/util-base64-browser": "3.58.0",
42
43
  "@aws-sdk/util-base64-node": "3.55.0",
43
44
  "@aws-sdk/util-body-length-browser": "3.55.0",
44
45
  "@aws-sdk/util-body-length-node": "3.55.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.85.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.85.0",
46
+ "@aws-sdk/util-defaults-mode-browser": "3.99.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.99.0",
47
48
  "@aws-sdk/util-user-agent-browser": "3.78.0",
48
49
  "@aws-sdk/util-user-agent-node": "3.80.0",
49
50
  "@aws-sdk/util-utf8-browser": "3.55.0",