@aws-sdk/client-amplifyuibuilder 3.99.0 → 3.109.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.109.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.108.1...v3.109.0) (2022-06-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-amplifyuibuilder
9
+
10
+
11
+
12
+
13
+
14
+ # [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
15
+
16
+
17
+ ### Features
18
+
19
+ * **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))
20
+
21
+
22
+
23
+
24
+
25
+ # [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
26
+
27
+ **Note:** Version bump only for package @aws-sdk/client-amplifyuibuilder
28
+
29
+
30
+
31
+
32
+
6
33
  # [3.99.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.98.0...v3.99.0) (2022-05-25)
7
34
 
8
35
  **Note:** Version bump only for package @aws-sdk/client-amplifyuibuilder
@@ -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 AmplifyUIBuilderClient 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
  }
@@ -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 AmplifyUIBuilderClient = (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;
@@ -67,19 +67,13 @@ export interface ComponentVariant {
67
67
  * <p>The combination of variants that comprise this variant. You can't specify
68
68
  * <code>tags</code> as a valid property for <code>variantValues</code>.</p>
69
69
  */
70
- variantValues?: {
71
- [key: string]: string;
72
- };
70
+ variantValues?: Record<string, string>;
73
71
  /**
74
72
  * <p>The properties of the component variant that can be overriden when customizing an instance
75
73
  * of the component. You can't specify <code>tags</code> as a valid property for
76
74
  * <code>overrides</code>.</p>
77
75
  */
78
- overrides?: {
79
- [key: string]: {
80
- [key: string]: string;
81
- };
82
- };
76
+ overrides?: Record<string, Record<string, string>>;
83
77
  }
84
78
  export declare namespace ComponentVariant {
85
79
  /**
@@ -690,9 +684,7 @@ export interface ComponentProperty {
690
684
  /**
691
685
  * <p>The information to bind the component property to form data.</p>
692
686
  */
693
- bindings?: {
694
- [key: string]: FormBindingElement;
695
- };
687
+ bindings?: Record<string, FormBindingElement>;
696
688
  /**
697
689
  * <p>An event that occurs in your app. Use this for workflow data binding.</p>
698
690
  */
@@ -785,9 +777,7 @@ export interface CreateThemeData {
785
777
  /**
786
778
  * <p>One or more key-value pairs to use when tagging the theme data.</p>
787
779
  */
788
- tags?: {
789
- [key: string]: string;
790
- };
780
+ tags?: Record<string, string>;
791
781
  }
792
782
  export declare namespace CreateThemeData {
793
783
  /**
@@ -836,9 +826,7 @@ export interface Theme {
836
826
  /**
837
827
  * <p>One or more key-value pairs to use when tagging the theme.</p>
838
828
  */
839
- tags?: {
840
- [key: string]: string;
841
- };
829
+ tags?: Record<string, string>;
842
830
  }
843
831
  export declare namespace Theme {
844
832
  /**
@@ -1087,9 +1075,7 @@ export interface ActionParameters {
1087
1075
  * in a data model. Use when the action performs an operation on an Amplify
1088
1076
  * DataStore model.</p>
1089
1077
  */
1090
- fields?: {
1091
- [key: string]: ComponentProperty;
1092
- };
1078
+ fields?: Record<string, ComponentProperty>;
1093
1079
  /**
1094
1080
  * <p>A key-value pair that specifies the state property name and its initial value.</p>
1095
1081
  */
@@ -1142,9 +1128,7 @@ export interface ComponentChild {
1142
1128
  * <p>Describes the properties of the child component. You can't specify <code>tags</code> as a
1143
1129
  * valid property for <code>properties</code>.</p>
1144
1130
  */
1145
- properties: {
1146
- [key: string]: ComponentProperty;
1147
- } | undefined;
1131
+ properties: Record<string, ComponentProperty> | undefined;
1148
1132
  /**
1149
1133
  * <p>The list of <code>ComponentChild</code> instances for this component.</p>
1150
1134
  */
@@ -1154,9 +1138,7 @@ export interface ComponentChild {
1154
1138
  * feature in Amplify Studio that allows you to bind events and actions to
1155
1139
  * components.</p>
1156
1140
  */
1157
- events?: {
1158
- [key: string]: ComponentEvent;
1159
- };
1141
+ events?: Record<string, ComponentEvent>;
1160
1142
  /**
1161
1143
  * <p>The unique ID of the child component in its original source system, such as Figma.</p>
1162
1144
  */
@@ -1205,9 +1187,7 @@ export interface Component {
1205
1187
  * <p>Describes the component's properties. You can't specify <code>tags</code> as a valid
1206
1188
  * property for <code>properties</code>.</p>
1207
1189
  */
1208
- properties: {
1209
- [key: string]: ComponentProperty;
1210
- } | undefined;
1190
+ properties: Record<string, ComponentProperty> | undefined;
1211
1191
  /**
1212
1192
  * <p>A list of the component's <code>ComponentChild</code> instances.</p>
1213
1193
  */
@@ -1222,27 +1202,19 @@ export interface Component {
1222
1202
  * component. You can't specify <code>tags</code> as a valid property for
1223
1203
  * <code>overrides</code>.</p>
1224
1204
  */
1225
- overrides: {
1226
- [key: string]: {
1227
- [key: string]: string;
1228
- };
1229
- } | undefined;
1205
+ overrides: Record<string, Record<string, string>> | undefined;
1230
1206
  /**
1231
1207
  * <p>The information to connect a component's properties to data at runtime. You can't specify
1232
1208
  * <code>tags</code> as a valid property for <code>bindingProperties</code>.</p>
1233
1209
  * <p/>
1234
1210
  */
1235
- bindingProperties: {
1236
- [key: string]: ComponentBindingPropertiesValue;
1237
- } | undefined;
1211
+ bindingProperties: Record<string, ComponentBindingPropertiesValue> | undefined;
1238
1212
  /**
1239
1213
  * <p>The data binding configuration for the component's properties. Use this for a collection
1240
1214
  * component. You can't specify <code>tags</code> as a valid property for
1241
1215
  * <code>collectionProperties</code>.</p>
1242
1216
  */
1243
- collectionProperties?: {
1244
- [key: string]: ComponentDataConfiguration;
1245
- };
1217
+ collectionProperties?: Record<string, ComponentDataConfiguration>;
1246
1218
  /**
1247
1219
  * <p>The time that the component was created.</p>
1248
1220
  */
@@ -1254,17 +1226,13 @@ export interface Component {
1254
1226
  /**
1255
1227
  * <p>One or more key-value pairs to use when tagging the component.</p>
1256
1228
  */
1257
- tags?: {
1258
- [key: string]: string;
1259
- };
1229
+ tags?: Record<string, string>;
1260
1230
  /**
1261
1231
  * <p>Describes the events that can be raised on the component. Use for the workflow feature in
1262
1232
  * Amplify Studio that allows you to bind events and actions to
1263
1233
  * components.</p>
1264
1234
  */
1265
- events?: {
1266
- [key: string]: ComponentEvent;
1267
- };
1235
+ events?: Record<string, ComponentEvent>;
1268
1236
  /**
1269
1237
  * <p>The schema version of the component when it was imported.</p>
1270
1238
  */
@@ -1296,9 +1264,7 @@ export interface CreateComponentData {
1296
1264
  /**
1297
1265
  * <p>Describes the component's properties.</p>
1298
1266
  */
1299
- properties: {
1300
- [key: string]: ComponentProperty;
1301
- } | undefined;
1267
+ properties: Record<string, ComponentProperty> | undefined;
1302
1268
  /**
1303
1269
  * <p>A list of child components that are instances of the main component.</p>
1304
1270
  */
@@ -1311,36 +1277,24 @@ export interface CreateComponentData {
1311
1277
  * <p>Describes the component properties that can be overriden to customize an instance of the
1312
1278
  * component.</p>
1313
1279
  */
1314
- overrides: {
1315
- [key: string]: {
1316
- [key: string]: string;
1317
- };
1318
- } | undefined;
1280
+ overrides: Record<string, Record<string, string>> | undefined;
1319
1281
  /**
1320
1282
  * <p>The data binding information for the component's properties.</p>
1321
1283
  */
1322
- bindingProperties: {
1323
- [key: string]: ComponentBindingPropertiesValue;
1324
- } | undefined;
1284
+ bindingProperties: Record<string, ComponentBindingPropertiesValue> | undefined;
1325
1285
  /**
1326
1286
  * <p>The data binding configuration for customizing a component's properties. Use this for a
1327
1287
  * collection component.</p>
1328
1288
  */
1329
- collectionProperties?: {
1330
- [key: string]: ComponentDataConfiguration;
1331
- };
1289
+ collectionProperties?: Record<string, ComponentDataConfiguration>;
1332
1290
  /**
1333
1291
  * <p>One or more key-value pairs to use when tagging the component data.</p>
1334
1292
  */
1335
- tags?: {
1336
- [key: string]: string;
1337
- };
1293
+ tags?: Record<string, string>;
1338
1294
  /**
1339
1295
  * <p>The event configuration for the component. Use for the workflow feature in Amplify Studio that allows you to bind events and actions to components.</p>
1340
1296
  */
1341
- events?: {
1342
- [key: string]: ComponentEvent;
1343
- };
1297
+ events?: Record<string, ComponentEvent>;
1344
1298
  /**
1345
1299
  * <p>The schema version of the component when it was imported.</p>
1346
1300
  */
@@ -1376,9 +1330,7 @@ export interface UpdateComponentData {
1376
1330
  /**
1377
1331
  * <p>Describes the component's properties.</p>
1378
1332
  */
1379
- properties?: {
1380
- [key: string]: ComponentProperty;
1381
- };
1333
+ properties?: Record<string, ComponentProperty>;
1382
1334
  /**
1383
1335
  * <p>The components that are instances of the main component.</p>
1384
1336
  */
@@ -1390,30 +1342,20 @@ export interface UpdateComponentData {
1390
1342
  /**
1391
1343
  * <p>Describes the properties that can be overriden to customize the component.</p>
1392
1344
  */
1393
- overrides?: {
1394
- [key: string]: {
1395
- [key: string]: string;
1396
- };
1397
- };
1345
+ overrides?: Record<string, Record<string, string>>;
1398
1346
  /**
1399
1347
  * <p>The data binding information for the component's properties.</p>
1400
1348
  */
1401
- bindingProperties?: {
1402
- [key: string]: ComponentBindingPropertiesValue;
1403
- };
1349
+ bindingProperties?: Record<string, ComponentBindingPropertiesValue>;
1404
1350
  /**
1405
1351
  * <p>The configuration for binding a component's properties to a data model. Use this for a
1406
1352
  * collection component.</p>
1407
1353
  */
1408
- collectionProperties?: {
1409
- [key: string]: ComponentDataConfiguration;
1410
- };
1354
+ collectionProperties?: Record<string, ComponentDataConfiguration>;
1411
1355
  /**
1412
1356
  * <p>The event configuration for the component. Use for the workflow feature in Amplify Studio that allows you to bind events and actions to components.</p>
1413
1357
  */
1414
- events?: {
1415
- [key: string]: ComponentEvent;
1416
- };
1358
+ events?: Record<string, ComponentEvent>;
1417
1359
  /**
1418
1360
  * <p>The schema version of the component when it was imported.</p>
1419
1361
  */
@@ -37,15 +37,9 @@ export declare namespace SortProperty {
37
37
 
38
38
  export interface ComponentVariant {
39
39
 
40
- variantValues?: {
41
- [key: string]: string;
42
- };
40
+ variantValues?: Record<string, string>;
43
41
 
44
- overrides?: {
45
- [key: string]: {
46
- [key: string]: string;
47
- };
48
- };
42
+ overrides?: Record<string, Record<string, string>>;
49
43
  }
50
44
  export declare namespace ComponentVariant {
51
45
 
@@ -392,9 +386,7 @@ export interface ComponentProperty {
392
386
 
393
387
  model?: string;
394
388
 
395
- bindings?: {
396
- [key: string]: FormBindingElement;
397
- };
389
+ bindings?: Record<string, FormBindingElement>;
398
390
 
399
391
  event?: string;
400
392
 
@@ -440,9 +432,7 @@ export interface CreateThemeData {
440
432
 
441
433
  overrides?: ThemeValues[];
442
434
 
443
- tags?: {
444
- [key: string]: string;
445
- };
435
+ tags?: Record<string, string>;
446
436
  }
447
437
  export declare namespace CreateThemeData {
448
438
 
@@ -467,9 +457,7 @@ export interface Theme {
467
457
 
468
458
  overrides?: ThemeValues[];
469
459
 
470
- tags?: {
471
- [key: string]: string;
472
- };
460
+ tags?: Record<string, string>;
473
461
  }
474
462
  export declare namespace Theme {
475
463
 
@@ -605,9 +593,7 @@ export interface ActionParameters {
605
593
 
606
594
  id?: ComponentProperty;
607
595
 
608
- fields?: {
609
- [key: string]: ComponentProperty;
610
- };
596
+ fields?: Record<string, ComponentProperty>;
611
597
 
612
598
  state?: MutationActionSetStateParameter;
613
599
  }
@@ -635,15 +621,11 @@ export interface ComponentChild {
635
621
 
636
622
  name: string | undefined;
637
623
 
638
- properties: {
639
- [key: string]: ComponentProperty;
640
- } | undefined;
624
+ properties: Record<string, ComponentProperty> | undefined;
641
625
 
642
626
  children?: ComponentChild[];
643
627
 
644
- events?: {
645
- [key: string]: ComponentEvent;
646
- };
628
+ events?: Record<string, ComponentEvent>;
647
629
 
648
630
  sourceId?: string;
649
631
  }
@@ -666,39 +648,25 @@ export interface Component {
666
648
 
667
649
  componentType: string | undefined;
668
650
 
669
- properties: {
670
- [key: string]: ComponentProperty;
671
- } | undefined;
651
+ properties: Record<string, ComponentProperty> | undefined;
672
652
 
673
653
  children?: ComponentChild[];
674
654
 
675
655
  variants: ComponentVariant[] | undefined;
676
656
 
677
- overrides: {
678
- [key: string]: {
679
- [key: string]: string;
680
- };
681
- } | undefined;
657
+ overrides: Record<string, Record<string, string>> | undefined;
682
658
 
683
- bindingProperties: {
684
- [key: string]: ComponentBindingPropertiesValue;
685
- } | undefined;
659
+ bindingProperties: Record<string, ComponentBindingPropertiesValue> | undefined;
686
660
 
687
- collectionProperties?: {
688
- [key: string]: ComponentDataConfiguration;
689
- };
661
+ collectionProperties?: Record<string, ComponentDataConfiguration>;
690
662
 
691
663
  createdAt: Date | undefined;
692
664
 
693
665
  modifiedAt?: Date;
694
666
 
695
- tags?: {
696
- [key: string]: string;
697
- };
667
+ tags?: Record<string, string>;
698
668
 
699
- events?: {
700
- [key: string]: ComponentEvent;
701
- };
669
+ events?: Record<string, ComponentEvent>;
702
670
 
703
671
  schemaVersion?: string;
704
672
  }
@@ -715,35 +683,21 @@ export interface CreateComponentData {
715
683
 
716
684
  componentType: string | undefined;
717
685
 
718
- properties: {
719
- [key: string]: ComponentProperty;
720
- } | undefined;
686
+ properties: Record<string, ComponentProperty> | undefined;
721
687
 
722
688
  children?: ComponentChild[];
723
689
 
724
690
  variants: ComponentVariant[] | undefined;
725
691
 
726
- overrides: {
727
- [key: string]: {
728
- [key: string]: string;
729
- };
730
- } | undefined;
692
+ overrides: Record<string, Record<string, string>> | undefined;
731
693
 
732
- bindingProperties: {
733
- [key: string]: ComponentBindingPropertiesValue;
734
- } | undefined;
694
+ bindingProperties: Record<string, ComponentBindingPropertiesValue> | undefined;
735
695
 
736
- collectionProperties?: {
737
- [key: string]: ComponentDataConfiguration;
738
- };
696
+ collectionProperties?: Record<string, ComponentDataConfiguration>;
739
697
 
740
- tags?: {
741
- [key: string]: string;
742
- };
698
+ tags?: Record<string, string>;
743
699
 
744
- events?: {
745
- [key: string]: ComponentEvent;
746
- };
700
+ events?: Record<string, ComponentEvent>;
747
701
 
748
702
  schemaVersion?: string;
749
703
  }
@@ -762,31 +716,19 @@ export interface UpdateComponentData {
762
716
 
763
717
  componentType?: string;
764
718
 
765
- properties?: {
766
- [key: string]: ComponentProperty;
767
- };
719
+ properties?: Record<string, ComponentProperty>;
768
720
 
769
721
  children?: ComponentChild[];
770
722
 
771
723
  variants?: ComponentVariant[];
772
724
 
773
- overrides?: {
774
- [key: string]: {
775
- [key: string]: string;
776
- };
777
- };
725
+ overrides?: Record<string, Record<string, string>>;
778
726
 
779
- bindingProperties?: {
780
- [key: string]: ComponentBindingPropertiesValue;
781
- };
727
+ bindingProperties?: Record<string, ComponentBindingPropertiesValue>;
782
728
 
783
- collectionProperties?: {
784
- [key: string]: ComponentDataConfiguration;
785
- };
729
+ collectionProperties?: Record<string, ComponentDataConfiguration>;
786
730
 
787
- events?: {
788
- [key: string]: ComponentEvent;
789
- };
731
+ events?: Record<string, ComponentEvent>;
790
732
 
791
733
  schemaVersion?: string;
792
734
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-amplifyuibuilder",
3
3
  "description": "AWS SDK for JavaScript Amplifyuibuilder Client for Node.js, Browser and React Native",
4
- "version": "3.99.0",
4
+ "version": "3.109.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,36 +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.99.0",
22
- "@aws-sdk/config-resolver": "3.80.0",
23
- "@aws-sdk/credential-provider-node": "3.99.0",
24
- "@aws-sdk/fetch-http-handler": "3.78.0",
25
- "@aws-sdk/hash-node": "3.78.0",
26
- "@aws-sdk/invalid-dependency": "3.78.0",
27
- "@aws-sdk/middleware-content-length": "3.78.0",
28
- "@aws-sdk/middleware-host-header": "3.78.0",
29
- "@aws-sdk/middleware-logger": "3.78.0",
30
- "@aws-sdk/middleware-retry": "3.80.0",
31
- "@aws-sdk/middleware-serde": "3.78.0",
32
- "@aws-sdk/middleware-signing": "3.78.0",
33
- "@aws-sdk/middleware-stack": "3.78.0",
34
- "@aws-sdk/middleware-user-agent": "3.78.0",
35
- "@aws-sdk/node-config-provider": "3.80.0",
36
- "@aws-sdk/node-http-handler": "3.94.0",
37
- "@aws-sdk/protocol-http": "3.78.0",
38
- "@aws-sdk/smithy-client": "3.99.0",
39
- "@aws-sdk/types": "3.78.0",
40
- "@aws-sdk/url-parser": "3.78.0",
41
- "@aws-sdk/util-base64-browser": "3.58.0",
21
+ "@aws-sdk/client-sts": "3.109.0",
22
+ "@aws-sdk/config-resolver": "3.109.0",
23
+ "@aws-sdk/credential-provider-node": "3.109.0",
24
+ "@aws-sdk/fetch-http-handler": "3.109.0",
25
+ "@aws-sdk/hash-node": "3.109.0",
26
+ "@aws-sdk/invalid-dependency": "3.109.0",
27
+ "@aws-sdk/middleware-content-length": "3.109.0",
28
+ "@aws-sdk/middleware-host-header": "3.109.0",
29
+ "@aws-sdk/middleware-logger": "3.109.0",
30
+ "@aws-sdk/middleware-recursion-detection": "3.109.0",
31
+ "@aws-sdk/middleware-retry": "3.109.0",
32
+ "@aws-sdk/middleware-serde": "3.109.0",
33
+ "@aws-sdk/middleware-signing": "3.109.0",
34
+ "@aws-sdk/middleware-stack": "3.109.0",
35
+ "@aws-sdk/middleware-user-agent": "3.109.0",
36
+ "@aws-sdk/node-config-provider": "3.109.0",
37
+ "@aws-sdk/node-http-handler": "3.109.0",
38
+ "@aws-sdk/protocol-http": "3.109.0",
39
+ "@aws-sdk/smithy-client": "3.109.0",
40
+ "@aws-sdk/types": "3.109.0",
41
+ "@aws-sdk/url-parser": "3.109.0",
42
+ "@aws-sdk/util-base64-browser": "3.109.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.99.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.99.0",
47
- "@aws-sdk/util-user-agent-browser": "3.78.0",
48
- "@aws-sdk/util-user-agent-node": "3.80.0",
49
- "@aws-sdk/util-utf8-browser": "3.55.0",
50
- "@aws-sdk/util-utf8-node": "3.55.0",
46
+ "@aws-sdk/util-defaults-mode-browser": "3.109.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.109.0",
48
+ "@aws-sdk/util-user-agent-browser": "3.109.0",
49
+ "@aws-sdk/util-user-agent-node": "3.109.0",
50
+ "@aws-sdk/util-utf8-browser": "3.109.0",
51
+ "@aws-sdk/util-utf8-node": "3.109.0",
51
52
  "tslib": "^2.3.1",
52
53
  "uuid": "^8.3.2"
53
54
  },