aws-sdk 2.1108.0 → 2.1111.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 +19 -1
- package/README.md +1 -1
- package/apis/apigateway-2015-07-09.paginators.json +5 -0
- package/apis/docdb-2014-10-31.min.json +10 -2
- package/apis/eventbridge-2015-10-07.min.json +262 -19
- package/apis/kendra-2019-02-03.min.json +99 -55
- package/apis/lambda-2015-03-31.min.json +401 -153
- package/apis/lambda-2015-03-31.paginators.json +6 -0
- package/apis/mediaconvert-2017-08-29.min.json +83 -74
- package/apis/mediapackage-vod-2018-11-07.min.json +16 -13
- package/apis/panorama-2019-07-24.min.json +14 -12
- package/apis/personalize-2018-05-22.min.json +150 -42
- package/apis/wafv2-2019-07-29.min.json +5 -1
- package/clients/configservice.d.ts +5 -5
- package/clients/docdb.d.ts +56 -40
- package/clients/eventbridge.d.ts +380 -7
- package/clients/kendra.d.ts +74 -15
- package/clients/lambda.d.ts +263 -0
- package/clients/mediaconvert.d.ts +17 -2
- package/clients/mediapackagevod.d.ts +5 -0
- package/clients/panorama.d.ts +13 -4
- package/clients/personalize.d.ts +144 -22
- package/clients/pi.d.ts +26 -26
- package/clients/sagemaker.d.ts +1 -1
- package/clients/wafv2.d.ts +10 -2
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +12 -12
- package/dist/aws-sdk.js +565 -198
- package/dist/aws-sdk.min.js +92 -92
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,25 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.1111.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.1111.0
|
|
6
|
+
* feature: MediaConvert: AWS Elemental MediaConvert SDK has added support for the pass-through of WebVTT styling to WebVTT outputs, pass-through of KLV metadata to supported formats, and improved filter support for processing 444/RGB content.
|
|
7
|
+
* feature: MediaPackageVod: This release adds ScteMarkersSource as an available field for Dash Packaging Configurations. When set to MANIFEST, MediaPackage will source the SCTE-35 markers from the manifest. When set to SEGMENTS, MediaPackage will source the SCTE-35 markers from the segments.
|
|
8
|
+
* feature: WAFV2: Add a new CurrentDefaultVersion field to ListAvailableManagedRuleGroupVersions API response; add a new VersioningSupported boolean to each ManagedRuleGroup returned from ListAvailableManagedRuleGroups API response.
|
|
9
|
+
|
|
10
|
+
## 2.1110.0
|
|
11
|
+
* feature: APIGateway: ApiGateway CLI command get-usage now includes usagePlanId, startDate, and endDate fields in the output to match documentation.
|
|
12
|
+
* feature: DocDB: Added support to enable/disable performance insights when creating or modifying db instances
|
|
13
|
+
* feature: EventBridge: Adds new EventBridge Endpoint resources for disaster recovery, multi-region failover, and cross-region replication capabilities to help you build resilient event-driven applications.
|
|
14
|
+
* feature: Personalize: This release provides tagging support in AWS Personalize.
|
|
15
|
+
* feature: SageMaker: Amazon Sagemaker Notebook Instances now supports G5 instance types
|
|
16
|
+
|
|
17
|
+
## 2.1109.0
|
|
18
|
+
* feature: ConfigService: Add resourceType enums for AWS::EMR::SecurityConfiguration and AWS::SageMaker::CodeRepository
|
|
19
|
+
* feature: Kendra: Amazon Kendra now provides a data source connector for Box. For more information, see https://docs.aws.amazon.com/kendra/latest/dg/data-source-box.html
|
|
20
|
+
* feature: Lambda: This release adds new APIs for creating and managing Lambda Function URLs and adds a new FunctionUrlAuthType parameter to the AddPermission API. Customers can use Function URLs to create built-in HTTPS endpoints on their functions.
|
|
21
|
+
* feature: Panorama: Added Brand field to device listings.
|
|
22
|
+
|
|
5
23
|
## 2.1108.0
|
|
6
24
|
* feature: DataSync: AWS DataSync now supports Amazon FSx for OpenZFS locations.
|
|
7
25
|
* feature: FSx: Provide customers more visibility into file system status by adding new "Misconfigured Unavailable" status for Amazon FSx for Windows File Server.
|
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
|
|
|
29
29
|
To use the SDK in the browser, simply add the following script tag to your
|
|
30
30
|
HTML pages:
|
|
31
31
|
|
|
32
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
|
32
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1111.0.min.js"></script>
|
|
33
33
|
|
|
34
34
|
You can also build a custom browser SDK with your specified set of AWS services.
|
|
35
35
|
This can allow you to reduce the SDK's size, specify different API versions of
|
|
@@ -263,7 +263,11 @@
|
|
|
263
263
|
"DBClusterIdentifier": {},
|
|
264
264
|
"PromotionTier": {
|
|
265
265
|
"type": "integer"
|
|
266
|
-
}
|
|
266
|
+
},
|
|
267
|
+
"EnablePerformanceInsights": {
|
|
268
|
+
"type": "boolean"
|
|
269
|
+
},
|
|
270
|
+
"PerformanceInsightsKMSKeyId": {}
|
|
267
271
|
}
|
|
268
272
|
},
|
|
269
273
|
"output": {
|
|
@@ -1233,7 +1237,11 @@
|
|
|
1233
1237
|
"CACertificateIdentifier": {},
|
|
1234
1238
|
"PromotionTier": {
|
|
1235
1239
|
"type": "integer"
|
|
1236
|
-
}
|
|
1240
|
+
},
|
|
1241
|
+
"EnablePerformanceInsights": {
|
|
1242
|
+
"type": "boolean"
|
|
1243
|
+
},
|
|
1244
|
+
"PerformanceInsightsKMSKeyId": {}
|
|
1237
1245
|
}
|
|
1238
1246
|
},
|
|
1239
1247
|
"output": {
|
|
@@ -189,6 +189,48 @@
|
|
|
189
189
|
}
|
|
190
190
|
}
|
|
191
191
|
},
|
|
192
|
+
"CreateEndpoint": {
|
|
193
|
+
"input": {
|
|
194
|
+
"type": "structure",
|
|
195
|
+
"required": [
|
|
196
|
+
"Name",
|
|
197
|
+
"RoutingConfig",
|
|
198
|
+
"EventBuses"
|
|
199
|
+
],
|
|
200
|
+
"members": {
|
|
201
|
+
"Name": {},
|
|
202
|
+
"Description": {},
|
|
203
|
+
"RoutingConfig": {
|
|
204
|
+
"shape": "S1n"
|
|
205
|
+
},
|
|
206
|
+
"ReplicationConfig": {
|
|
207
|
+
"shape": "S1t"
|
|
208
|
+
},
|
|
209
|
+
"EventBuses": {
|
|
210
|
+
"shape": "S1v"
|
|
211
|
+
},
|
|
212
|
+
"RoleArn": {}
|
|
213
|
+
}
|
|
214
|
+
},
|
|
215
|
+
"output": {
|
|
216
|
+
"type": "structure",
|
|
217
|
+
"members": {
|
|
218
|
+
"Name": {},
|
|
219
|
+
"Arn": {},
|
|
220
|
+
"RoutingConfig": {
|
|
221
|
+
"shape": "S1n"
|
|
222
|
+
},
|
|
223
|
+
"ReplicationConfig": {
|
|
224
|
+
"shape": "S1t"
|
|
225
|
+
},
|
|
226
|
+
"EventBuses": {
|
|
227
|
+
"shape": "S1v"
|
|
228
|
+
},
|
|
229
|
+
"RoleArn": {},
|
|
230
|
+
"State": {}
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
},
|
|
192
234
|
"CreateEventBus": {
|
|
193
235
|
"input": {
|
|
194
236
|
"type": "structure",
|
|
@@ -199,7 +241,7 @@
|
|
|
199
241
|
"Name": {},
|
|
200
242
|
"EventSourceName": {},
|
|
201
243
|
"Tags": {
|
|
202
|
-
"shape": "
|
|
244
|
+
"shape": "S24"
|
|
203
245
|
}
|
|
204
246
|
}
|
|
205
247
|
},
|
|
@@ -324,6 +366,21 @@
|
|
|
324
366
|
}
|
|
325
367
|
}
|
|
326
368
|
},
|
|
369
|
+
"DeleteEndpoint": {
|
|
370
|
+
"input": {
|
|
371
|
+
"type": "structure",
|
|
372
|
+
"required": [
|
|
373
|
+
"Name"
|
|
374
|
+
],
|
|
375
|
+
"members": {
|
|
376
|
+
"Name": {}
|
|
377
|
+
}
|
|
378
|
+
},
|
|
379
|
+
"output": {
|
|
380
|
+
"type": "structure",
|
|
381
|
+
"members": {}
|
|
382
|
+
}
|
|
383
|
+
},
|
|
327
384
|
"DeleteEventBus": {
|
|
328
385
|
"input": {
|
|
329
386
|
"type": "structure",
|
|
@@ -498,6 +555,46 @@
|
|
|
498
555
|
}
|
|
499
556
|
}
|
|
500
557
|
},
|
|
558
|
+
"DescribeEndpoint": {
|
|
559
|
+
"input": {
|
|
560
|
+
"type": "structure",
|
|
561
|
+
"required": [
|
|
562
|
+
"Name"
|
|
563
|
+
],
|
|
564
|
+
"members": {
|
|
565
|
+
"Name": {},
|
|
566
|
+
"HomeRegion": {}
|
|
567
|
+
}
|
|
568
|
+
},
|
|
569
|
+
"output": {
|
|
570
|
+
"type": "structure",
|
|
571
|
+
"members": {
|
|
572
|
+
"Name": {},
|
|
573
|
+
"Description": {},
|
|
574
|
+
"Arn": {},
|
|
575
|
+
"RoutingConfig": {
|
|
576
|
+
"shape": "S1n"
|
|
577
|
+
},
|
|
578
|
+
"ReplicationConfig": {
|
|
579
|
+
"shape": "S1t"
|
|
580
|
+
},
|
|
581
|
+
"EventBuses": {
|
|
582
|
+
"shape": "S1v"
|
|
583
|
+
},
|
|
584
|
+
"RoleArn": {},
|
|
585
|
+
"EndpointId": {},
|
|
586
|
+
"EndpointUrl": {},
|
|
587
|
+
"State": {},
|
|
588
|
+
"StateReason": {},
|
|
589
|
+
"CreationTime": {
|
|
590
|
+
"type": "timestamp"
|
|
591
|
+
},
|
|
592
|
+
"LastModifiedTime": {
|
|
593
|
+
"type": "timestamp"
|
|
594
|
+
}
|
|
595
|
+
}
|
|
596
|
+
}
|
|
597
|
+
},
|
|
501
598
|
"DescribeEventBus": {
|
|
502
599
|
"input": {
|
|
503
600
|
"type": "structure",
|
|
@@ -578,7 +675,7 @@
|
|
|
578
675
|
"StateReason": {},
|
|
579
676
|
"EventSourceArn": {},
|
|
580
677
|
"Destination": {
|
|
581
|
-
"shape": "
|
|
678
|
+
"shape": "S3m"
|
|
582
679
|
},
|
|
583
680
|
"EventStartTime": {
|
|
584
681
|
"type": "timestamp"
|
|
@@ -776,6 +873,56 @@
|
|
|
776
873
|
}
|
|
777
874
|
}
|
|
778
875
|
},
|
|
876
|
+
"ListEndpoints": {
|
|
877
|
+
"input": {
|
|
878
|
+
"type": "structure",
|
|
879
|
+
"members": {
|
|
880
|
+
"NamePrefix": {},
|
|
881
|
+
"HomeRegion": {},
|
|
882
|
+
"NextToken": {},
|
|
883
|
+
"MaxResults": {
|
|
884
|
+
"type": "integer"
|
|
885
|
+
}
|
|
886
|
+
}
|
|
887
|
+
},
|
|
888
|
+
"output": {
|
|
889
|
+
"type": "structure",
|
|
890
|
+
"members": {
|
|
891
|
+
"Endpoints": {
|
|
892
|
+
"type": "list",
|
|
893
|
+
"member": {
|
|
894
|
+
"type": "structure",
|
|
895
|
+
"members": {
|
|
896
|
+
"Name": {},
|
|
897
|
+
"Description": {},
|
|
898
|
+
"Arn": {},
|
|
899
|
+
"RoutingConfig": {
|
|
900
|
+
"shape": "S1n"
|
|
901
|
+
},
|
|
902
|
+
"ReplicationConfig": {
|
|
903
|
+
"shape": "S1t"
|
|
904
|
+
},
|
|
905
|
+
"EventBuses": {
|
|
906
|
+
"shape": "S1v"
|
|
907
|
+
},
|
|
908
|
+
"RoleArn": {},
|
|
909
|
+
"EndpointId": {},
|
|
910
|
+
"EndpointUrl": {},
|
|
911
|
+
"State": {},
|
|
912
|
+
"StateReason": {},
|
|
913
|
+
"CreationTime": {
|
|
914
|
+
"type": "timestamp"
|
|
915
|
+
},
|
|
916
|
+
"LastModifiedTime": {
|
|
917
|
+
"type": "timestamp"
|
|
918
|
+
}
|
|
919
|
+
}
|
|
920
|
+
}
|
|
921
|
+
},
|
|
922
|
+
"NextToken": {}
|
|
923
|
+
}
|
|
924
|
+
}
|
|
925
|
+
},
|
|
779
926
|
"ListEventBuses": {
|
|
780
927
|
"input": {
|
|
781
928
|
"type": "structure",
|
|
@@ -1032,7 +1179,7 @@
|
|
|
1032
1179
|
"type": "structure",
|
|
1033
1180
|
"members": {
|
|
1034
1181
|
"Tags": {
|
|
1035
|
-
"shape": "
|
|
1182
|
+
"shape": "S24"
|
|
1036
1183
|
}
|
|
1037
1184
|
}
|
|
1038
1185
|
}
|
|
@@ -1056,7 +1203,7 @@
|
|
|
1056
1203
|
"type": "structure",
|
|
1057
1204
|
"members": {
|
|
1058
1205
|
"Targets": {
|
|
1059
|
-
"shape": "
|
|
1206
|
+
"shape": "S5f"
|
|
1060
1207
|
},
|
|
1061
1208
|
"NextToken": {}
|
|
1062
1209
|
}
|
|
@@ -1079,7 +1226,7 @@
|
|
|
1079
1226
|
},
|
|
1080
1227
|
"Source": {},
|
|
1081
1228
|
"Resources": {
|
|
1082
|
-
"shape": "
|
|
1229
|
+
"shape": "S7d"
|
|
1083
1230
|
},
|
|
1084
1231
|
"DetailType": {},
|
|
1085
1232
|
"Detail": {},
|
|
@@ -1087,7 +1234,8 @@
|
|
|
1087
1234
|
"TraceHeader": {}
|
|
1088
1235
|
}
|
|
1089
1236
|
}
|
|
1090
|
-
}
|
|
1237
|
+
},
|
|
1238
|
+
"EndpointId": {}
|
|
1091
1239
|
}
|
|
1092
1240
|
},
|
|
1093
1241
|
"output": {
|
|
@@ -1127,7 +1275,7 @@
|
|
|
1127
1275
|
},
|
|
1128
1276
|
"Source": {},
|
|
1129
1277
|
"Resources": {
|
|
1130
|
-
"shape": "
|
|
1278
|
+
"shape": "S7d"
|
|
1131
1279
|
},
|
|
1132
1280
|
"DetailType": {},
|
|
1133
1281
|
"Detail": {}
|
|
@@ -1195,7 +1343,7 @@
|
|
|
1195
1343
|
"Description": {},
|
|
1196
1344
|
"RoleArn": {},
|
|
1197
1345
|
"Tags": {
|
|
1198
|
-
"shape": "
|
|
1346
|
+
"shape": "S24"
|
|
1199
1347
|
},
|
|
1200
1348
|
"EventBusName": {}
|
|
1201
1349
|
}
|
|
@@ -1218,7 +1366,7 @@
|
|
|
1218
1366
|
"Rule": {},
|
|
1219
1367
|
"EventBusName": {},
|
|
1220
1368
|
"Targets": {
|
|
1221
|
-
"shape": "
|
|
1369
|
+
"shape": "S5f"
|
|
1222
1370
|
}
|
|
1223
1371
|
}
|
|
1224
1372
|
},
|
|
@@ -1314,7 +1462,7 @@
|
|
|
1314
1462
|
"type": "timestamp"
|
|
1315
1463
|
},
|
|
1316
1464
|
"Destination": {
|
|
1317
|
-
"shape": "
|
|
1465
|
+
"shape": "S3m"
|
|
1318
1466
|
}
|
|
1319
1467
|
}
|
|
1320
1468
|
},
|
|
@@ -1340,7 +1488,7 @@
|
|
|
1340
1488
|
"members": {
|
|
1341
1489
|
"ResourceARN": {},
|
|
1342
1490
|
"Tags": {
|
|
1343
|
-
"shape": "
|
|
1491
|
+
"shape": "S24"
|
|
1344
1492
|
}
|
|
1345
1493
|
}
|
|
1346
1494
|
},
|
|
@@ -1515,6 +1663,48 @@
|
|
|
1515
1663
|
}
|
|
1516
1664
|
}
|
|
1517
1665
|
}
|
|
1666
|
+
},
|
|
1667
|
+
"UpdateEndpoint": {
|
|
1668
|
+
"input": {
|
|
1669
|
+
"type": "structure",
|
|
1670
|
+
"required": [
|
|
1671
|
+
"Name"
|
|
1672
|
+
],
|
|
1673
|
+
"members": {
|
|
1674
|
+
"Name": {},
|
|
1675
|
+
"Description": {},
|
|
1676
|
+
"RoutingConfig": {
|
|
1677
|
+
"shape": "S1n"
|
|
1678
|
+
},
|
|
1679
|
+
"ReplicationConfig": {
|
|
1680
|
+
"shape": "S1t"
|
|
1681
|
+
},
|
|
1682
|
+
"EventBuses": {
|
|
1683
|
+
"shape": "S1v"
|
|
1684
|
+
},
|
|
1685
|
+
"RoleArn": {}
|
|
1686
|
+
}
|
|
1687
|
+
},
|
|
1688
|
+
"output": {
|
|
1689
|
+
"type": "structure",
|
|
1690
|
+
"members": {
|
|
1691
|
+
"Name": {},
|
|
1692
|
+
"Arn": {},
|
|
1693
|
+
"RoutingConfig": {
|
|
1694
|
+
"shape": "S1n"
|
|
1695
|
+
},
|
|
1696
|
+
"ReplicationConfig": {
|
|
1697
|
+
"shape": "S1t"
|
|
1698
|
+
},
|
|
1699
|
+
"EventBuses": {
|
|
1700
|
+
"shape": "S1v"
|
|
1701
|
+
},
|
|
1702
|
+
"RoleArn": {},
|
|
1703
|
+
"EndpointId": {},
|
|
1704
|
+
"EndpointUrl": {},
|
|
1705
|
+
"State": {}
|
|
1706
|
+
}
|
|
1707
|
+
}
|
|
1518
1708
|
}
|
|
1519
1709
|
},
|
|
1520
1710
|
"shapes": {
|
|
@@ -1562,7 +1752,60 @@
|
|
|
1562
1752
|
}
|
|
1563
1753
|
}
|
|
1564
1754
|
},
|
|
1565
|
-
"
|
|
1755
|
+
"S1n": {
|
|
1756
|
+
"type": "structure",
|
|
1757
|
+
"required": [
|
|
1758
|
+
"FailoverConfig"
|
|
1759
|
+
],
|
|
1760
|
+
"members": {
|
|
1761
|
+
"FailoverConfig": {
|
|
1762
|
+
"type": "structure",
|
|
1763
|
+
"required": [
|
|
1764
|
+
"Primary",
|
|
1765
|
+
"Secondary"
|
|
1766
|
+
],
|
|
1767
|
+
"members": {
|
|
1768
|
+
"Primary": {
|
|
1769
|
+
"type": "structure",
|
|
1770
|
+
"required": [
|
|
1771
|
+
"HealthCheck"
|
|
1772
|
+
],
|
|
1773
|
+
"members": {
|
|
1774
|
+
"HealthCheck": {}
|
|
1775
|
+
}
|
|
1776
|
+
},
|
|
1777
|
+
"Secondary": {
|
|
1778
|
+
"type": "structure",
|
|
1779
|
+
"required": [
|
|
1780
|
+
"Route"
|
|
1781
|
+
],
|
|
1782
|
+
"members": {
|
|
1783
|
+
"Route": {}
|
|
1784
|
+
}
|
|
1785
|
+
}
|
|
1786
|
+
}
|
|
1787
|
+
}
|
|
1788
|
+
}
|
|
1789
|
+
},
|
|
1790
|
+
"S1t": {
|
|
1791
|
+
"type": "structure",
|
|
1792
|
+
"members": {
|
|
1793
|
+
"State": {}
|
|
1794
|
+
}
|
|
1795
|
+
},
|
|
1796
|
+
"S1v": {
|
|
1797
|
+
"type": "list",
|
|
1798
|
+
"member": {
|
|
1799
|
+
"type": "structure",
|
|
1800
|
+
"required": [
|
|
1801
|
+
"EventBusArn"
|
|
1802
|
+
],
|
|
1803
|
+
"members": {
|
|
1804
|
+
"EventBusArn": {}
|
|
1805
|
+
}
|
|
1806
|
+
}
|
|
1807
|
+
},
|
|
1808
|
+
"S24": {
|
|
1566
1809
|
"type": "list",
|
|
1567
1810
|
"member": {
|
|
1568
1811
|
"type": "structure",
|
|
@@ -1576,7 +1819,7 @@
|
|
|
1576
1819
|
}
|
|
1577
1820
|
}
|
|
1578
1821
|
},
|
|
1579
|
-
"
|
|
1822
|
+
"S3m": {
|
|
1580
1823
|
"type": "structure",
|
|
1581
1824
|
"required": [
|
|
1582
1825
|
"Arn"
|
|
@@ -1589,7 +1832,7 @@
|
|
|
1589
1832
|
}
|
|
1590
1833
|
}
|
|
1591
1834
|
},
|
|
1592
|
-
"
|
|
1835
|
+
"S5f": {
|
|
1593
1836
|
"type": "list",
|
|
1594
1837
|
"member": {
|
|
1595
1838
|
"type": "structure",
|
|
@@ -1672,10 +1915,10 @@
|
|
|
1672
1915
|
],
|
|
1673
1916
|
"members": {
|
|
1674
1917
|
"Subnets": {
|
|
1675
|
-
"shape": "
|
|
1918
|
+
"shape": "S61"
|
|
1676
1919
|
},
|
|
1677
1920
|
"SecurityGroups": {
|
|
1678
|
-
"shape": "
|
|
1921
|
+
"shape": "S61"
|
|
1679
1922
|
},
|
|
1680
1923
|
"AssignPublicIp": {}
|
|
1681
1924
|
}
|
|
@@ -1731,7 +1974,7 @@
|
|
|
1731
1974
|
"PropagateTags": {},
|
|
1732
1975
|
"ReferenceId": {},
|
|
1733
1976
|
"Tags": {
|
|
1734
|
-
"shape": "
|
|
1977
|
+
"shape": "S24"
|
|
1735
1978
|
}
|
|
1736
1979
|
}
|
|
1737
1980
|
},
|
|
@@ -1843,11 +2086,11 @@
|
|
|
1843
2086
|
}
|
|
1844
2087
|
}
|
|
1845
2088
|
},
|
|
1846
|
-
"
|
|
2089
|
+
"S61": {
|
|
1847
2090
|
"type": "list",
|
|
1848
2091
|
"member": {}
|
|
1849
2092
|
},
|
|
1850
|
-
"
|
|
2093
|
+
"S7d": {
|
|
1851
2094
|
"type": "list",
|
|
1852
2095
|
"member": {}
|
|
1853
2096
|
}
|