@aws-sdk/client-cognito-sync 3.121.0 → 3.127.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 +8 -0
- package/dist-cjs/protocols/Aws_restJson1.js +25 -33
- package/dist-es/protocols/Aws_restJson1.js +18 -26
- package/package.json +26 -26
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.127.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.126.0...v3.127.0) (2022-07-11)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-cognito-sync
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.121.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.120.0...v3.121.0) (2022-06-30)
|
|
7
15
|
|
|
8
16
|
|
|
@@ -415,8 +415,8 @@ const serializeAws_restJson1RegisterDeviceCommand = async (input, context) => {
|
|
|
415
415
|
}
|
|
416
416
|
let body;
|
|
417
417
|
body = JSON.stringify({
|
|
418
|
-
...(input.Platform
|
|
419
|
-
...(input.Token
|
|
418
|
+
...(input.Platform != null && { Platform: input.Platform }),
|
|
419
|
+
...(input.Token != null && { Token: input.Token }),
|
|
420
420
|
});
|
|
421
421
|
return new protocol_http_1.HttpRequest({
|
|
422
422
|
protocol,
|
|
@@ -447,8 +447,7 @@ const serializeAws_restJson1SetCognitoEventsCommand = async (input, context) =>
|
|
|
447
447
|
}
|
|
448
448
|
let body;
|
|
449
449
|
body = JSON.stringify({
|
|
450
|
-
...(input.Events
|
|
451
|
-
input.Events !== null && { Events: serializeAws_restJson1Events(input.Events, context) }),
|
|
450
|
+
...(input.Events != null && { Events: serializeAws_restJson1Events(input.Events, context) }),
|
|
452
451
|
});
|
|
453
452
|
return new protocol_http_1.HttpRequest({
|
|
454
453
|
protocol,
|
|
@@ -480,12 +479,10 @@ const serializeAws_restJson1SetIdentityPoolConfigurationCommand = async (input,
|
|
|
480
479
|
}
|
|
481
480
|
let body;
|
|
482
481
|
body = JSON.stringify({
|
|
483
|
-
...(input.CognitoStreams
|
|
484
|
-
input.CognitoStreams !== null && {
|
|
482
|
+
...(input.CognitoStreams != null && {
|
|
485
483
|
CognitoStreams: serializeAws_restJson1CognitoStreams(input.CognitoStreams, context),
|
|
486
484
|
}),
|
|
487
|
-
...(input.PushSync
|
|
488
|
-
input.PushSync !== null && { PushSync: serializeAws_restJson1PushSync(input.PushSync, context) }),
|
|
485
|
+
...(input.PushSync != null && { PushSync: serializeAws_restJson1PushSync(input.PushSync, context) }),
|
|
489
486
|
});
|
|
490
487
|
return new protocol_http_1.HttpRequest({
|
|
491
488
|
protocol,
|
|
@@ -652,13 +649,11 @@ const serializeAws_restJson1UpdateRecordsCommand = async (input, context) => {
|
|
|
652
649
|
}
|
|
653
650
|
let body;
|
|
654
651
|
body = JSON.stringify({
|
|
655
|
-
...(input.DeviceId
|
|
656
|
-
...(input.RecordPatches
|
|
657
|
-
input.RecordPatches !== null && {
|
|
652
|
+
...(input.DeviceId != null && { DeviceId: input.DeviceId }),
|
|
653
|
+
...(input.RecordPatches != null && {
|
|
658
654
|
RecordPatches: serializeAws_restJson1RecordPatchList(input.RecordPatches, context),
|
|
659
655
|
}),
|
|
660
|
-
...(input.SyncSessionToken
|
|
661
|
-
input.SyncSessionToken !== null && { SyncSessionToken: input.SyncSessionToken }),
|
|
656
|
+
...(input.SyncSessionToken != null && { SyncSessionToken: input.SyncSessionToken }),
|
|
662
657
|
});
|
|
663
658
|
return new protocol_http_1.HttpRequest({
|
|
664
659
|
protocol,
|
|
@@ -1779,10 +1774,9 @@ const serializeAws_restJson1ApplicationArnList = (input, context) => {
|
|
|
1779
1774
|
};
|
|
1780
1775
|
const serializeAws_restJson1CognitoStreams = (input, context) => {
|
|
1781
1776
|
return {
|
|
1782
|
-
...(input.RoleArn
|
|
1783
|
-
...(input.StreamName
|
|
1784
|
-
...(input.StreamingStatus
|
|
1785
|
-
input.StreamingStatus !== null && { StreamingStatus: input.StreamingStatus }),
|
|
1777
|
+
...(input.RoleArn != null && { RoleArn: input.RoleArn }),
|
|
1778
|
+
...(input.StreamName != null && { StreamName: input.StreamName }),
|
|
1779
|
+
...(input.StreamingStatus != null && { StreamingStatus: input.StreamingStatus }),
|
|
1786
1780
|
};
|
|
1787
1781
|
};
|
|
1788
1782
|
const serializeAws_restJson1Events = (input, context) => {
|
|
@@ -1798,23 +1792,21 @@ const serializeAws_restJson1Events = (input, context) => {
|
|
|
1798
1792
|
};
|
|
1799
1793
|
const serializeAws_restJson1PushSync = (input, context) => {
|
|
1800
1794
|
return {
|
|
1801
|
-
...(input.ApplicationArns
|
|
1802
|
-
input.ApplicationArns !== null && {
|
|
1795
|
+
...(input.ApplicationArns != null && {
|
|
1803
1796
|
ApplicationArns: serializeAws_restJson1ApplicationArnList(input.ApplicationArns, context),
|
|
1804
1797
|
}),
|
|
1805
|
-
...(input.RoleArn
|
|
1798
|
+
...(input.RoleArn != null && { RoleArn: input.RoleArn }),
|
|
1806
1799
|
};
|
|
1807
1800
|
};
|
|
1808
1801
|
const serializeAws_restJson1RecordPatch = (input, context) => {
|
|
1809
1802
|
return {
|
|
1810
|
-
...(input.DeviceLastModifiedDate
|
|
1811
|
-
input.DeviceLastModifiedDate !== null && {
|
|
1803
|
+
...(input.DeviceLastModifiedDate != null && {
|
|
1812
1804
|
DeviceLastModifiedDate: Math.round(input.DeviceLastModifiedDate.getTime() / 1000),
|
|
1813
1805
|
}),
|
|
1814
|
-
...(input.Key
|
|
1815
|
-
...(input.Op
|
|
1816
|
-
...(input.SyncCount
|
|
1817
|
-
...(input.Value
|
|
1806
|
+
...(input.Key != null && { Key: input.Key }),
|
|
1807
|
+
...(input.Op != null && { Op: input.Op }),
|
|
1808
|
+
...(input.SyncCount != null && { SyncCount: input.SyncCount }),
|
|
1809
|
+
...(input.Value != null && { Value: input.Value }),
|
|
1818
1810
|
};
|
|
1819
1811
|
};
|
|
1820
1812
|
const serializeAws_restJson1RecordPatchList = (input, context) => {
|
|
@@ -1847,14 +1839,14 @@ const deserializeAws_restJson1CognitoStreams = (output, context) => {
|
|
|
1847
1839
|
};
|
|
1848
1840
|
const deserializeAws_restJson1Dataset = (output, context) => {
|
|
1849
1841
|
return {
|
|
1850
|
-
CreationDate: output.CreationDate
|
|
1842
|
+
CreationDate: output.CreationDate != null
|
|
1851
1843
|
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.CreationDate)))
|
|
1852
1844
|
: undefined,
|
|
1853
1845
|
DataStorage: (0, smithy_client_1.expectLong)(output.DataStorage),
|
|
1854
1846
|
DatasetName: (0, smithy_client_1.expectString)(output.DatasetName),
|
|
1855
1847
|
IdentityId: (0, smithy_client_1.expectString)(output.IdentityId),
|
|
1856
1848
|
LastModifiedBy: (0, smithy_client_1.expectString)(output.LastModifiedBy),
|
|
1857
|
-
LastModifiedDate: output.LastModifiedDate
|
|
1849
|
+
LastModifiedDate: output.LastModifiedDate != null
|
|
1858
1850
|
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.LastModifiedDate)))
|
|
1859
1851
|
: undefined,
|
|
1860
1852
|
NumRecords: (0, smithy_client_1.expectLong)(output.NumRecords),
|
|
@@ -1886,7 +1878,7 @@ const deserializeAws_restJson1IdentityPoolUsage = (output, context) => {
|
|
|
1886
1878
|
return {
|
|
1887
1879
|
DataStorage: (0, smithy_client_1.expectLong)(output.DataStorage),
|
|
1888
1880
|
IdentityPoolId: (0, smithy_client_1.expectString)(output.IdentityPoolId),
|
|
1889
|
-
LastModifiedDate: output.LastModifiedDate
|
|
1881
|
+
LastModifiedDate: output.LastModifiedDate != null
|
|
1890
1882
|
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.LastModifiedDate)))
|
|
1891
1883
|
: undefined,
|
|
1892
1884
|
SyncSessionsCount: (0, smithy_client_1.expectLong)(output.SyncSessionsCount),
|
|
@@ -1909,7 +1901,7 @@ const deserializeAws_restJson1IdentityUsage = (output, context) => {
|
|
|
1909
1901
|
DatasetCount: (0, smithy_client_1.expectInt32)(output.DatasetCount),
|
|
1910
1902
|
IdentityId: (0, smithy_client_1.expectString)(output.IdentityId),
|
|
1911
1903
|
IdentityPoolId: (0, smithy_client_1.expectString)(output.IdentityPoolId),
|
|
1912
|
-
LastModifiedDate: output.LastModifiedDate
|
|
1904
|
+
LastModifiedDate: output.LastModifiedDate != null
|
|
1913
1905
|
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.LastModifiedDate)))
|
|
1914
1906
|
: undefined,
|
|
1915
1907
|
};
|
|
@@ -1927,7 +1919,7 @@ const deserializeAws_restJson1MergedDatasetNameList = (output, context) => {
|
|
|
1927
1919
|
};
|
|
1928
1920
|
const deserializeAws_restJson1PushSync = (output, context) => {
|
|
1929
1921
|
return {
|
|
1930
|
-
ApplicationArns: output.ApplicationArns
|
|
1922
|
+
ApplicationArns: output.ApplicationArns != null
|
|
1931
1923
|
? deserializeAws_restJson1ApplicationArnList(output.ApplicationArns, context)
|
|
1932
1924
|
: undefined,
|
|
1933
1925
|
RoleArn: (0, smithy_client_1.expectString)(output.RoleArn),
|
|
@@ -1935,12 +1927,12 @@ const deserializeAws_restJson1PushSync = (output, context) => {
|
|
|
1935
1927
|
};
|
|
1936
1928
|
const deserializeAws_restJson1_Record = (output, context) => {
|
|
1937
1929
|
return {
|
|
1938
|
-
DeviceLastModifiedDate: output.DeviceLastModifiedDate
|
|
1930
|
+
DeviceLastModifiedDate: output.DeviceLastModifiedDate != null
|
|
1939
1931
|
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.DeviceLastModifiedDate)))
|
|
1940
1932
|
: undefined,
|
|
1941
1933
|
Key: (0, smithy_client_1.expectString)(output.Key),
|
|
1942
1934
|
LastModifiedBy: (0, smithy_client_1.expectString)(output.LastModifiedBy),
|
|
1943
|
-
LastModifiedDate: output.LastModifiedDate
|
|
1935
|
+
LastModifiedDate: output.LastModifiedDate != null
|
|
1944
1936
|
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.LastModifiedDate)))
|
|
1945
1937
|
: undefined,
|
|
1946
1938
|
SyncCount: (0, smithy_client_1.expectLong)(output.SyncCount),
|
|
@@ -460,7 +460,7 @@ export var serializeAws_restJson1RegisterDeviceCommand = function (input, contex
|
|
|
460
460
|
else {
|
|
461
461
|
throw new Error("No value provided for input HTTP label: IdentityId.");
|
|
462
462
|
}
|
|
463
|
-
body = JSON.stringify(__assign(__assign({}, (input.Platform
|
|
463
|
+
body = JSON.stringify(__assign(__assign({}, (input.Platform != null && { Platform: input.Platform })), (input.Token != null && { Token: input.Token })));
|
|
464
464
|
return [2, new __HttpRequest({
|
|
465
465
|
protocol: protocol,
|
|
466
466
|
hostname: hostname,
|
|
@@ -494,8 +494,7 @@ export var serializeAws_restJson1SetCognitoEventsCommand = function (input, cont
|
|
|
494
494
|
else {
|
|
495
495
|
throw new Error("No value provided for input HTTP label: IdentityPoolId.");
|
|
496
496
|
}
|
|
497
|
-
body = JSON.stringify(__assign({}, (input.Events
|
|
498
|
-
input.Events !== null && { Events: serializeAws_restJson1Events(input.Events, context) })));
|
|
497
|
+
body = JSON.stringify(__assign({}, (input.Events != null && { Events: serializeAws_restJson1Events(input.Events, context) })));
|
|
499
498
|
return [2, new __HttpRequest({
|
|
500
499
|
protocol: protocol,
|
|
501
500
|
hostname: hostname,
|
|
@@ -530,11 +529,9 @@ export var serializeAws_restJson1SetIdentityPoolConfigurationCommand = function
|
|
|
530
529
|
else {
|
|
531
530
|
throw new Error("No value provided for input HTTP label: IdentityPoolId.");
|
|
532
531
|
}
|
|
533
|
-
body = JSON.stringify(__assign(__assign({}, (input.CognitoStreams
|
|
534
|
-
input.CognitoStreams !== null && {
|
|
532
|
+
body = JSON.stringify(__assign(__assign({}, (input.CognitoStreams != null && {
|
|
535
533
|
CognitoStreams: serializeAws_restJson1CognitoStreams(input.CognitoStreams, context),
|
|
536
|
-
})), (input.PushSync
|
|
537
|
-
input.PushSync !== null && { PushSync: serializeAws_restJson1PushSync(input.PushSync, context) })));
|
|
534
|
+
})), (input.PushSync != null && { PushSync: serializeAws_restJson1PushSync(input.PushSync, context) })));
|
|
538
535
|
return [2, new __HttpRequest({
|
|
539
536
|
protocol: protocol,
|
|
540
537
|
hostname: hostname,
|
|
@@ -711,11 +708,9 @@ export var serializeAws_restJson1UpdateRecordsCommand = function (input, context
|
|
|
711
708
|
else {
|
|
712
709
|
throw new Error("No value provided for input HTTP label: DatasetName.");
|
|
713
710
|
}
|
|
714
|
-
body = JSON.stringify(__assign(__assign(__assign({}, (input.DeviceId
|
|
715
|
-
input.RecordPatches !== null && {
|
|
711
|
+
body = JSON.stringify(__assign(__assign(__assign({}, (input.DeviceId != null && { DeviceId: input.DeviceId })), (input.RecordPatches != null && {
|
|
716
712
|
RecordPatches: serializeAws_restJson1RecordPatchList(input.RecordPatches, context),
|
|
717
|
-
})), (input.SyncSessionToken
|
|
718
|
-
input.SyncSessionToken !== null && { SyncSessionToken: input.SyncSessionToken })));
|
|
713
|
+
})), (input.SyncSessionToken != null && { SyncSessionToken: input.SyncSessionToken })));
|
|
719
714
|
return [2, new __HttpRequest({
|
|
720
715
|
protocol: protocol,
|
|
721
716
|
hostname: hostname,
|
|
@@ -2226,8 +2221,7 @@ var serializeAws_restJson1ApplicationArnList = function (input, context) {
|
|
|
2226
2221
|
});
|
|
2227
2222
|
};
|
|
2228
2223
|
var serializeAws_restJson1CognitoStreams = function (input, context) {
|
|
2229
|
-
return __assign(__assign(__assign({}, (input.RoleArn
|
|
2230
|
-
input.StreamingStatus !== null && { StreamingStatus: input.StreamingStatus }));
|
|
2224
|
+
return __assign(__assign(__assign({}, (input.RoleArn != null && { RoleArn: input.RoleArn })), (input.StreamName != null && { StreamName: input.StreamName })), (input.StreamingStatus != null && { StreamingStatus: input.StreamingStatus }));
|
|
2231
2225
|
};
|
|
2232
2226
|
var serializeAws_restJson1Events = function (input, context) {
|
|
2233
2227
|
return Object.entries(input).reduce(function (acc, _a) {
|
|
@@ -2240,16 +2234,14 @@ var serializeAws_restJson1Events = function (input, context) {
|
|
|
2240
2234
|
}, {});
|
|
2241
2235
|
};
|
|
2242
2236
|
var serializeAws_restJson1PushSync = function (input, context) {
|
|
2243
|
-
return __assign(__assign({}, (input.ApplicationArns
|
|
2244
|
-
input.ApplicationArns !== null && {
|
|
2237
|
+
return __assign(__assign({}, (input.ApplicationArns != null && {
|
|
2245
2238
|
ApplicationArns: serializeAws_restJson1ApplicationArnList(input.ApplicationArns, context),
|
|
2246
|
-
})), (input.RoleArn
|
|
2239
|
+
})), (input.RoleArn != null && { RoleArn: input.RoleArn }));
|
|
2247
2240
|
};
|
|
2248
2241
|
var serializeAws_restJson1RecordPatch = function (input, context) {
|
|
2249
|
-
return __assign(__assign(__assign(__assign(__assign({}, (input.DeviceLastModifiedDate
|
|
2250
|
-
input.DeviceLastModifiedDate !== null && {
|
|
2242
|
+
return __assign(__assign(__assign(__assign(__assign({}, (input.DeviceLastModifiedDate != null && {
|
|
2251
2243
|
DeviceLastModifiedDate: Math.round(input.DeviceLastModifiedDate.getTime() / 1000),
|
|
2252
|
-
})), (input.Key
|
|
2244
|
+
})), (input.Key != null && { Key: input.Key })), (input.Op != null && { Op: input.Op })), (input.SyncCount != null && { SyncCount: input.SyncCount })), (input.Value != null && { Value: input.Value }));
|
|
2253
2245
|
};
|
|
2254
2246
|
var serializeAws_restJson1RecordPatchList = function (input, context) {
|
|
2255
2247
|
return input
|
|
@@ -2281,14 +2273,14 @@ var deserializeAws_restJson1CognitoStreams = function (output, context) {
|
|
|
2281
2273
|
};
|
|
2282
2274
|
var deserializeAws_restJson1Dataset = function (output, context) {
|
|
2283
2275
|
return {
|
|
2284
|
-
CreationDate: output.CreationDate
|
|
2276
|
+
CreationDate: output.CreationDate != null
|
|
2285
2277
|
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.CreationDate)))
|
|
2286
2278
|
: undefined,
|
|
2287
2279
|
DataStorage: __expectLong(output.DataStorage),
|
|
2288
2280
|
DatasetName: __expectString(output.DatasetName),
|
|
2289
2281
|
IdentityId: __expectString(output.IdentityId),
|
|
2290
2282
|
LastModifiedBy: __expectString(output.LastModifiedBy),
|
|
2291
|
-
LastModifiedDate: output.LastModifiedDate
|
|
2283
|
+
LastModifiedDate: output.LastModifiedDate != null
|
|
2292
2284
|
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.LastModifiedDate)))
|
|
2293
2285
|
: undefined,
|
|
2294
2286
|
NumRecords: __expectLong(output.NumRecords),
|
|
@@ -2319,7 +2311,7 @@ var deserializeAws_restJson1IdentityPoolUsage = function (output, context) {
|
|
|
2319
2311
|
return {
|
|
2320
2312
|
DataStorage: __expectLong(output.DataStorage),
|
|
2321
2313
|
IdentityPoolId: __expectString(output.IdentityPoolId),
|
|
2322
|
-
LastModifiedDate: output.LastModifiedDate
|
|
2314
|
+
LastModifiedDate: output.LastModifiedDate != null
|
|
2323
2315
|
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.LastModifiedDate)))
|
|
2324
2316
|
: undefined,
|
|
2325
2317
|
SyncSessionsCount: __expectLong(output.SyncSessionsCount),
|
|
@@ -2342,7 +2334,7 @@ var deserializeAws_restJson1IdentityUsage = function (output, context) {
|
|
|
2342
2334
|
DatasetCount: __expectInt32(output.DatasetCount),
|
|
2343
2335
|
IdentityId: __expectString(output.IdentityId),
|
|
2344
2336
|
IdentityPoolId: __expectString(output.IdentityPoolId),
|
|
2345
|
-
LastModifiedDate: output.LastModifiedDate
|
|
2337
|
+
LastModifiedDate: output.LastModifiedDate != null
|
|
2346
2338
|
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.LastModifiedDate)))
|
|
2347
2339
|
: undefined,
|
|
2348
2340
|
};
|
|
@@ -2360,7 +2352,7 @@ var deserializeAws_restJson1MergedDatasetNameList = function (output, context) {
|
|
|
2360
2352
|
};
|
|
2361
2353
|
var deserializeAws_restJson1PushSync = function (output, context) {
|
|
2362
2354
|
return {
|
|
2363
|
-
ApplicationArns: output.ApplicationArns
|
|
2355
|
+
ApplicationArns: output.ApplicationArns != null
|
|
2364
2356
|
? deserializeAws_restJson1ApplicationArnList(output.ApplicationArns, context)
|
|
2365
2357
|
: undefined,
|
|
2366
2358
|
RoleArn: __expectString(output.RoleArn),
|
|
@@ -2368,12 +2360,12 @@ var deserializeAws_restJson1PushSync = function (output, context) {
|
|
|
2368
2360
|
};
|
|
2369
2361
|
var deserializeAws_restJson1_Record = function (output, context) {
|
|
2370
2362
|
return {
|
|
2371
|
-
DeviceLastModifiedDate: output.DeviceLastModifiedDate
|
|
2363
|
+
DeviceLastModifiedDate: output.DeviceLastModifiedDate != null
|
|
2372
2364
|
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.DeviceLastModifiedDate)))
|
|
2373
2365
|
: undefined,
|
|
2374
2366
|
Key: __expectString(output.Key),
|
|
2375
2367
|
LastModifiedBy: __expectString(output.LastModifiedBy),
|
|
2376
|
-
LastModifiedDate: output.LastModifiedDate
|
|
2368
|
+
LastModifiedDate: output.LastModifiedDate != null
|
|
2377
2369
|
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.LastModifiedDate)))
|
|
2378
2370
|
: undefined,
|
|
2379
2371
|
SyncCount: __expectLong(output.SyncCount),
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cognito-sync",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cognito Sync Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.127.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,35 +18,35 @@
|
|
|
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.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
31
|
-
"@aws-sdk/middleware-retry": "3.
|
|
32
|
-
"@aws-sdk/middleware-serde": "3.
|
|
33
|
-
"@aws-sdk/middleware-signing": "3.
|
|
34
|
-
"@aws-sdk/middleware-stack": "3.
|
|
35
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
36
|
-
"@aws-sdk/node-config-provider": "3.
|
|
37
|
-
"@aws-sdk/node-http-handler": "3.
|
|
38
|
-
"@aws-sdk/protocol-http": "3.
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
40
|
-
"@aws-sdk/types": "3.
|
|
41
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.127.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.127.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.127.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.127.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.127.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.127.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.127.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.127.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.127.0",
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.127.0",
|
|
32
|
+
"@aws-sdk/middleware-serde": "3.127.0",
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.127.0",
|
|
34
|
+
"@aws-sdk/middleware-stack": "3.127.0",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.127.0",
|
|
36
|
+
"@aws-sdk/node-config-provider": "3.127.0",
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.127.0",
|
|
38
|
+
"@aws-sdk/protocol-http": "3.127.0",
|
|
39
|
+
"@aws-sdk/smithy-client": "3.127.0",
|
|
40
|
+
"@aws-sdk/types": "3.127.0",
|
|
41
|
+
"@aws-sdk/url-parser": "3.127.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.127.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.127.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
51
51
|
"@aws-sdk/util-utf8-node": "3.109.0",
|
|
52
52
|
"tslib": "^2.3.1"
|