@aws-sdk/client-iottwinmaker 3.100.0 → 3.110.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.110.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.109.0...v3.110.0) (2022-06-14)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-iottwinmaker
9
+
10
+
11
+
12
+
13
+
14
+ # [3.109.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.108.1...v3.109.0) (2022-06-13)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-iottwinmaker
17
+
18
+
19
+
20
+
21
+
22
+ # [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
23
+
24
+
25
+ ### Features
26
+
27
+ * **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))
28
+
29
+
30
+
31
+
32
+
6
33
  # [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
7
34
 
8
35
  **Note:** Version bump only for package @aws-sdk/client-iottwinmaker
@@ -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 IoTTwinMakerClient 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 IoTTwinMakerClient = (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;
@@ -22,9 +22,7 @@ export interface EntityPropertyReference {
22
22
  /**
23
23
  * <p>A mapping of external IDs to property names. External IDs uniquely identify properties from external data stores.</p>
24
24
  */
25
- externalIdProperty?: {
26
- [key: string]: string;
27
- };
25
+ externalIdProperty?: Record<string, string>;
28
26
  /**
29
27
  * <p>The ID of the entity.</p>
30
28
  */
@@ -295,9 +293,7 @@ export interface CreateSceneRequest {
295
293
  /**
296
294
  * <p>Metadata that you can use to manage the scene.</p>
297
295
  */
298
- tags?: {
299
- [key: string]: string;
300
- };
296
+ tags?: Record<string, string>;
301
297
  }
302
298
  export declare namespace CreateSceneRequest {
303
299
  /**
@@ -341,9 +337,7 @@ export interface CreateWorkspaceRequest {
341
337
  /**
342
338
  * <p>Metadata that you can use to manage the workspace</p>
343
339
  */
344
- tags?: {
345
- [key: string]: string;
346
- };
340
+ tags?: Record<string, string>;
347
341
  }
348
342
  export declare namespace CreateWorkspaceRequest {
349
343
  /**
@@ -1123,9 +1117,7 @@ export interface ListTagsForResourceResponse {
1123
1117
  /**
1124
1118
  * <p>Metadata that you can use to manage a resource.</p>
1125
1119
  */
1126
- tags?: {
1127
- [key: string]: string;
1128
- };
1120
+ tags?: Record<string, string>;
1129
1121
  /**
1130
1122
  * <p>The string that specifies the next page of results.</p>
1131
1123
  */
@@ -1208,9 +1200,7 @@ export interface TagResourceRequest {
1208
1200
  /**
1209
1201
  * <p>Metadata to add to this resource.</p>
1210
1202
  */
1211
- tags: {
1212
- [key: string]: string;
1213
- } | undefined;
1203
+ tags: Record<string, string> | undefined;
1214
1204
  }
1215
1205
  export declare namespace TagResourceRequest {
1216
1206
  /**
@@ -1432,9 +1422,7 @@ export interface DataValue {
1432
1422
  /**
1433
1423
  * <p>An object that maps strings to multiple <code>DataValue</code> objects.</p>
1434
1424
  */
1435
- mapValue?: {
1436
- [key: string]: DataValue;
1437
- };
1425
+ mapValue?: Record<string, DataValue>;
1438
1426
  /**
1439
1427
  * <p>A value that relates a component to another component.</p>
1440
1428
  */
@@ -1665,9 +1653,7 @@ export interface GetPropertyValueResponse {
1665
1653
  * <p>An object that maps strings to the properties and latest property values in the response. Each string
1666
1654
  * in the mapping must be unique to this object.</p>
1667
1655
  */
1668
- propertyValues: {
1669
- [key: string]: PropertyLatestValue;
1670
- } | undefined;
1656
+ propertyValues: Record<string, PropertyLatestValue> | undefined;
1671
1657
  }
1672
1658
  export declare namespace GetPropertyValueResponse {
1673
1659
  /**
@@ -1818,9 +1804,7 @@ export interface PropertyDefinitionRequest {
1818
1804
  * <p>A mapping that specifies configuration information about the property. Use this field to
1819
1805
  * specify information that you read from and write to an external source.</p>
1820
1806
  */
1821
- configuration?: {
1822
- [key: string]: string;
1823
- };
1807
+ configuration?: Record<string, string>;
1824
1808
  }
1825
1809
  export declare namespace PropertyDefinitionRequest {
1826
1810
  /**
@@ -1871,9 +1855,7 @@ export interface PropertyDefinitionResponse {
1871
1855
  /**
1872
1856
  * <p>A mapping that specifies configuration information about the property.</p>
1873
1857
  */
1874
- configuration?: {
1875
- [key: string]: string;
1876
- };
1858
+ configuration?: Record<string, string>;
1877
1859
  }
1878
1860
  export declare namespace PropertyDefinitionResponse {
1879
1861
  /**
@@ -1915,9 +1897,7 @@ export interface CreateComponentTypeRequest {
1915
1897
  * <p>An object that maps strings to the property definitions in the component type. Each string
1916
1898
  * in the mapping must be unique to this object.</p>
1917
1899
  */
1918
- propertyDefinitions?: {
1919
- [key: string]: PropertyDefinitionRequest;
1920
- };
1900
+ propertyDefinitions?: Record<string, PropertyDefinitionRequest>;
1921
1901
  /**
1922
1902
  * <p>Specifies the parent component type to extend.</p>
1923
1903
  */
@@ -1926,15 +1906,11 @@ export interface CreateComponentTypeRequest {
1926
1906
  * <p>An object that maps strings to the functions in the component type. Each string in the
1927
1907
  * mapping must be unique to this object.</p>
1928
1908
  */
1929
- functions?: {
1930
- [key: string]: FunctionRequest;
1931
- };
1909
+ functions?: Record<string, FunctionRequest>;
1932
1910
  /**
1933
1911
  * <p>Metadata that you can use to manage the component type.</p>
1934
1912
  */
1935
- tags?: {
1936
- [key: string]: string;
1937
- };
1913
+ tags?: Record<string, string>;
1938
1914
  }
1939
1915
  export declare namespace CreateComponentTypeRequest {
1940
1916
  /**
@@ -1964,9 +1940,7 @@ export interface GetComponentTypeResponse {
1964
1940
  * <p>An object that maps strings to the property definitions in the component type. Each string
1965
1941
  * in the mapping must be unique to this object.</p>
1966
1942
  */
1967
- propertyDefinitions?: {
1968
- [key: string]: PropertyDefinitionResponse;
1969
- };
1943
+ propertyDefinitions?: Record<string, PropertyDefinitionResponse>;
1970
1944
  /**
1971
1945
  * <p>The name of the parent component type that this component type extends.</p>
1972
1946
  */
@@ -1975,9 +1949,7 @@ export interface GetComponentTypeResponse {
1975
1949
  * <p>An object that maps strings to the functions in the component type. Each string
1976
1950
  * in the mapping must be unique to this object.</p>
1977
1951
  */
1978
- functions?: {
1979
- [key: string]: FunctionResponse;
1980
- };
1952
+ functions?: Record<string, FunctionResponse>;
1981
1953
  /**
1982
1954
  * <p>The date and time when the component type was created.</p>
1983
1955
  */
@@ -2032,9 +2004,7 @@ export interface UpdateComponentTypeRequest {
2032
2004
  * <p>An object that maps strings to the property definitions in the component type. Each string
2033
2005
  * in the mapping must be unique to this object.</p>
2034
2006
  */
2035
- propertyDefinitions?: {
2036
- [key: string]: PropertyDefinitionRequest;
2037
- };
2007
+ propertyDefinitions?: Record<string, PropertyDefinitionRequest>;
2038
2008
  /**
2039
2009
  * <p>Specifies the component type that this component type extends.</p>
2040
2010
  */
@@ -2043,9 +2013,7 @@ export interface UpdateComponentTypeRequest {
2043
2013
  * <p>An object that maps strings to the functions in the component type. Each string
2044
2014
  * in the mapping must be unique to this object.</p>
2045
2015
  */
2046
- functions?: {
2047
- [key: string]: FunctionRequest;
2048
- };
2016
+ functions?: Record<string, FunctionRequest>;
2049
2017
  }
2050
2018
  export declare namespace UpdateComponentTypeRequest {
2051
2019
  /**
@@ -2111,9 +2079,7 @@ export interface ComponentRequest {
2111
2079
  * <p>An object that maps strings to the properties to set in the component type. Each string
2112
2080
  * in the mapping must be unique to this object.</p>
2113
2081
  */
2114
- properties?: {
2115
- [key: string]: PropertyRequest;
2116
- };
2082
+ properties?: Record<string, PropertyRequest>;
2117
2083
  }
2118
2084
  export declare namespace ComponentRequest {
2119
2085
  /**
@@ -2149,9 +2115,7 @@ export interface ComponentResponse {
2149
2115
  * <p>An object that maps strings to the properties to set in the component type. Each string
2150
2116
  * in the mapping must be unique to this object.</p>
2151
2117
  */
2152
- properties?: {
2153
- [key: string]: PropertyResponse;
2154
- };
2118
+ properties?: Record<string, PropertyResponse>;
2155
2119
  }
2156
2120
  export declare namespace ComponentResponse {
2157
2121
  /**
@@ -2179,9 +2143,7 @@ export interface ComponentUpdateRequest {
2179
2143
  * <p>An object that maps strings to the properties to set in the component type update. Each string
2180
2144
  * in the mapping must be unique to this object.</p>
2181
2145
  */
2182
- propertyUpdates?: {
2183
- [key: string]: PropertyRequest;
2184
- };
2146
+ propertyUpdates?: Record<string, PropertyRequest>;
2185
2147
  }
2186
2148
  export declare namespace ComponentUpdateRequest {
2187
2149
  /**
@@ -2210,9 +2172,7 @@ export interface CreateEntityRequest {
2210
2172
  * <p>An object that maps strings to the components in the entity. Each string
2211
2173
  * in the mapping must be unique to this object.</p>
2212
2174
  */
2213
- components?: {
2214
- [key: string]: ComponentRequest;
2215
- };
2175
+ components?: Record<string, ComponentRequest>;
2216
2176
  /**
2217
2177
  * <p>The ID of the entity's parent entity.</p>
2218
2178
  */
@@ -2220,9 +2180,7 @@ export interface CreateEntityRequest {
2220
2180
  /**
2221
2181
  * <p>Metadata that you can use to manage the entity.</p>
2222
2182
  */
2223
- tags?: {
2224
- [key: string]: string;
2225
- };
2183
+ tags?: Record<string, string>;
2226
2184
  }
2227
2185
  export declare namespace CreateEntityRequest {
2228
2186
  /**
@@ -2259,9 +2217,7 @@ export interface GetEntityResponse {
2259
2217
  * <p>An object that maps strings to the components in the entity. Each string
2260
2218
  * in the mapping must be unique to this object.</p>
2261
2219
  */
2262
- components?: {
2263
- [key: string]: ComponentResponse;
2264
- };
2220
+ components?: Record<string, ComponentResponse>;
2265
2221
  /**
2266
2222
  * <p>The ID of the parent entity for this entity.</p>
2267
2223
  */
@@ -2306,9 +2262,7 @@ export interface UpdateEntityRequest {
2306
2262
  * <p>An object that maps strings to the component updates in the request. Each string
2307
2263
  * in the mapping must be unique to this object.</p>
2308
2264
  */
2309
- componentUpdates?: {
2310
- [key: string]: ComponentUpdateRequest;
2311
- };
2265
+ componentUpdates?: Record<string, ComponentUpdateRequest>;
2312
2266
  /**
2313
2267
  * <p>An object that describes the update request for a parent entity.</p>
2314
2268
  */
@@ -12,9 +12,7 @@ export interface EntityPropertyReference {
12
12
 
13
13
  componentName?: string;
14
14
 
15
- externalIdProperty?: {
16
- [key: string]: string;
17
- };
15
+ externalIdProperty?: Record<string, string>;
18
16
 
19
17
  entityId?: string;
20
18
 
@@ -185,9 +183,7 @@ export interface CreateSceneRequest {
185
183
 
186
184
  capabilities?: string[];
187
185
 
188
- tags?: {
189
- [key: string]: string;
190
- };
186
+ tags?: Record<string, string>;
191
187
  }
192
188
  export declare namespace CreateSceneRequest {
193
189
 
@@ -213,9 +209,7 @@ export interface CreateWorkspaceRequest {
213
209
 
214
210
  role: string | undefined;
215
211
 
216
- tags?: {
217
- [key: string]: string;
218
- };
212
+ tags?: Record<string, string>;
219
213
  }
220
214
  export declare namespace CreateWorkspaceRequest {
221
215
 
@@ -705,9 +699,7 @@ export declare namespace ListTagsForResourceRequest {
705
699
  }
706
700
  export interface ListTagsForResourceResponse {
707
701
 
708
- tags?: {
709
- [key: string]: string;
710
- };
702
+ tags?: Record<string, string>;
711
703
 
712
704
  nextToken?: string;
713
705
  }
@@ -756,9 +748,7 @@ export interface TagResourceRequest {
756
748
 
757
749
  resourceARN: string | undefined;
758
750
 
759
- tags: {
760
- [key: string]: string;
761
- } | undefined;
751
+ tags: Record<string, string> | undefined;
762
752
  }
763
753
  export declare namespace TagResourceRequest {
764
754
 
@@ -896,9 +886,7 @@ export interface DataValue {
896
886
 
897
887
  listValue?: DataValue[];
898
888
 
899
- mapValue?: {
900
- [key: string]: DataValue;
901
- };
889
+ mapValue?: Record<string, DataValue>;
902
890
 
903
891
  relationshipValue?: RelationshipValue;
904
892
 
@@ -998,9 +986,7 @@ export declare namespace GetPropertyValueHistoryRequest {
998
986
  }
999
987
  export interface GetPropertyValueResponse {
1000
988
 
1001
- propertyValues: {
1002
- [key: string]: PropertyLatestValue;
1003
- } | undefined;
989
+ propertyValues: Record<string, PropertyLatestValue> | undefined;
1004
990
  }
1005
991
  export declare namespace GetPropertyValueResponse {
1006
992
 
@@ -1085,9 +1071,7 @@ export interface PropertyDefinitionRequest {
1085
1071
 
1086
1072
  defaultValue?: DataValue;
1087
1073
 
1088
- configuration?: {
1089
- [key: string]: string;
1090
- };
1074
+ configuration?: Record<string, string>;
1091
1075
  }
1092
1076
  export declare namespace PropertyDefinitionRequest {
1093
1077
 
@@ -1114,9 +1098,7 @@ export interface PropertyDefinitionResponse {
1114
1098
 
1115
1099
  defaultValue?: DataValue;
1116
1100
 
1117
- configuration?: {
1118
- [key: string]: string;
1119
- };
1101
+ configuration?: Record<string, string>;
1120
1102
  }
1121
1103
  export declare namespace PropertyDefinitionResponse {
1122
1104
 
@@ -1140,19 +1122,13 @@ export interface CreateComponentTypeRequest {
1140
1122
 
1141
1123
  description?: string;
1142
1124
 
1143
- propertyDefinitions?: {
1144
- [key: string]: PropertyDefinitionRequest;
1145
- };
1125
+ propertyDefinitions?: Record<string, PropertyDefinitionRequest>;
1146
1126
 
1147
1127
  extendsFrom?: string[];
1148
1128
 
1149
- functions?: {
1150
- [key: string]: FunctionRequest;
1151
- };
1129
+ functions?: Record<string, FunctionRequest>;
1152
1130
 
1153
- tags?: {
1154
- [key: string]: string;
1155
- };
1131
+ tags?: Record<string, string>;
1156
1132
  }
1157
1133
  export declare namespace CreateComponentTypeRequest {
1158
1134
 
@@ -1168,15 +1144,11 @@ export interface GetComponentTypeResponse {
1168
1144
 
1169
1145
  description?: string;
1170
1146
 
1171
- propertyDefinitions?: {
1172
- [key: string]: PropertyDefinitionResponse;
1173
- };
1147
+ propertyDefinitions?: Record<string, PropertyDefinitionResponse>;
1174
1148
 
1175
1149
  extendsFrom?: string[];
1176
1150
 
1177
- functions?: {
1178
- [key: string]: FunctionResponse;
1179
- };
1151
+ functions?: Record<string, FunctionResponse>;
1180
1152
 
1181
1153
  creationDateTime: Date | undefined;
1182
1154
 
@@ -1204,15 +1176,11 @@ export interface UpdateComponentTypeRequest {
1204
1176
 
1205
1177
  description?: string;
1206
1178
 
1207
- propertyDefinitions?: {
1208
- [key: string]: PropertyDefinitionRequest;
1209
- };
1179
+ propertyDefinitions?: Record<string, PropertyDefinitionRequest>;
1210
1180
 
1211
1181
  extendsFrom?: string[];
1212
1182
 
1213
- functions?: {
1214
- [key: string]: FunctionRequest;
1215
- };
1183
+ functions?: Record<string, FunctionRequest>;
1216
1184
  }
1217
1185
  export declare namespace UpdateComponentTypeRequest {
1218
1186
 
@@ -1249,9 +1217,7 @@ export interface ComponentRequest {
1249
1217
 
1250
1218
  componentTypeId?: string;
1251
1219
 
1252
- properties?: {
1253
- [key: string]: PropertyRequest;
1254
- };
1220
+ properties?: Record<string, PropertyRequest>;
1255
1221
  }
1256
1222
  export declare namespace ComponentRequest {
1257
1223
 
@@ -1270,9 +1236,7 @@ export interface ComponentResponse {
1270
1236
 
1271
1237
  definedIn?: string;
1272
1238
 
1273
- properties?: {
1274
- [key: string]: PropertyResponse;
1275
- };
1239
+ properties?: Record<string, PropertyResponse>;
1276
1240
  }
1277
1241
  export declare namespace ComponentResponse {
1278
1242
 
@@ -1287,9 +1251,7 @@ export interface ComponentUpdateRequest {
1287
1251
 
1288
1252
  componentTypeId?: string;
1289
1253
 
1290
- propertyUpdates?: {
1291
- [key: string]: PropertyRequest;
1292
- };
1254
+ propertyUpdates?: Record<string, PropertyRequest>;
1293
1255
  }
1294
1256
  export declare namespace ComponentUpdateRequest {
1295
1257
 
@@ -1305,15 +1267,11 @@ export interface CreateEntityRequest {
1305
1267
 
1306
1268
  description?: string;
1307
1269
 
1308
- components?: {
1309
- [key: string]: ComponentRequest;
1310
- };
1270
+ components?: Record<string, ComponentRequest>;
1311
1271
 
1312
1272
  parentEntityId?: string;
1313
1273
 
1314
- tags?: {
1315
- [key: string]: string;
1316
- };
1274
+ tags?: Record<string, string>;
1317
1275
  }
1318
1276
  export declare namespace CreateEntityRequest {
1319
1277
 
@@ -1333,9 +1291,7 @@ export interface GetEntityResponse {
1333
1291
 
1334
1292
  description?: string;
1335
1293
 
1336
- components?: {
1337
- [key: string]: ComponentResponse;
1338
- };
1294
+ components?: Record<string, ComponentResponse>;
1339
1295
 
1340
1296
  parentEntityId: string | undefined;
1341
1297
 
@@ -1359,9 +1315,7 @@ export interface UpdateEntityRequest {
1359
1315
 
1360
1316
  description?: string;
1361
1317
 
1362
- componentUpdates?: {
1363
- [key: string]: ComponentUpdateRequest;
1364
- };
1318
+ componentUpdates?: Record<string, ComponentUpdateRequest>;
1365
1319
 
1366
1320
  parentEntityUpdate?: ParentEntityUpdateRequest;
1367
1321
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-iottwinmaker",
3
3
  "description": "AWS SDK for JavaScript Iottwinmaker Client for Node.js, Browser and React Native",
4
- "version": "3.100.0",
4
+ "version": "3.110.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.100.0",
22
- "@aws-sdk/config-resolver": "3.80.0",
23
- "@aws-sdk/credential-provider-node": "3.100.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.110.0",
22
+ "@aws-sdk/config-resolver": "3.110.0",
23
+ "@aws-sdk/credential-provider-node": "3.110.0",
24
+ "@aws-sdk/fetch-http-handler": "3.110.0",
25
+ "@aws-sdk/hash-node": "3.110.0",
26
+ "@aws-sdk/invalid-dependency": "3.110.0",
27
+ "@aws-sdk/middleware-content-length": "3.110.0",
28
+ "@aws-sdk/middleware-host-header": "3.110.0",
29
+ "@aws-sdk/middleware-logger": "3.110.0",
30
+ "@aws-sdk/middleware-recursion-detection": "3.110.0",
31
+ "@aws-sdk/middleware-retry": "3.110.0",
32
+ "@aws-sdk/middleware-serde": "3.110.0",
33
+ "@aws-sdk/middleware-signing": "3.110.0",
34
+ "@aws-sdk/middleware-stack": "3.110.0",
35
+ "@aws-sdk/middleware-user-agent": "3.110.0",
36
+ "@aws-sdk/node-config-provider": "3.110.0",
37
+ "@aws-sdk/node-http-handler": "3.110.0",
38
+ "@aws-sdk/protocol-http": "3.110.0",
39
+ "@aws-sdk/smithy-client": "3.110.0",
40
+ "@aws-sdk/types": "3.110.0",
41
+ "@aws-sdk/url-parser": "3.110.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.110.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.110.0",
48
+ "@aws-sdk/util-user-agent-browser": "3.110.0",
49
+ "@aws-sdk/util-user-agent-node": "3.110.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
  },
53
54
  "devDependencies": {