@aws-sdk/client-dax 3.245.0 → 3.252.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.
|
@@ -1558,12 +1558,12 @@ const serializeAws_json1_1DescribeDefaultParametersRequest = (input, context) =>
|
|
|
1558
1558
|
const serializeAws_json1_1DescribeEventsRequest = (input, context) => {
|
|
1559
1559
|
return {
|
|
1560
1560
|
...(input.Duration != null && { Duration: input.Duration }),
|
|
1561
|
-
...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000) }),
|
|
1561
|
+
...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000).toString() }),
|
|
1562
1562
|
...(input.MaxResults != null && { MaxResults: input.MaxResults }),
|
|
1563
1563
|
...(input.NextToken != null && { NextToken: input.NextToken }),
|
|
1564
1564
|
...(input.SourceName != null && { SourceName: input.SourceName }),
|
|
1565
1565
|
...(input.SourceType != null && { SourceType: input.SourceType }),
|
|
1566
|
-
...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000) }),
|
|
1566
|
+
...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000).toString() }),
|
|
1567
1567
|
};
|
|
1568
1568
|
};
|
|
1569
1569
|
const serializeAws_json1_1DescribeParameterGroupsRequest = (input, context) => {
|
|
@@ -1513,12 +1513,12 @@ const serializeAws_json1_1DescribeDefaultParametersRequest = (input, context) =>
|
|
|
1513
1513
|
const serializeAws_json1_1DescribeEventsRequest = (input, context) => {
|
|
1514
1514
|
return {
|
|
1515
1515
|
...(input.Duration != null && { Duration: input.Duration }),
|
|
1516
|
-
...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000) }),
|
|
1516
|
+
...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000).toString() }),
|
|
1517
1517
|
...(input.MaxResults != null && { MaxResults: input.MaxResults }),
|
|
1518
1518
|
...(input.NextToken != null && { NextToken: input.NextToken }),
|
|
1519
1519
|
...(input.SourceName != null && { SourceName: input.SourceName }),
|
|
1520
1520
|
...(input.SourceType != null && { SourceType: input.SourceType }),
|
|
1521
|
-
...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000) }),
|
|
1521
|
+
...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000).toString() }),
|
|
1522
1522
|
};
|
|
1523
1523
|
};
|
|
1524
1524
|
const serializeAws_json1_1DescribeParameterGroupsRequest = (input, context) => {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-dax",
|
|
3
3
|
"description": "AWS SDK for JavaScript Dax Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.252.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",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"build:types": "tsc -p tsconfig.types.json",
|
|
12
12
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
13
13
|
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
|
|
14
|
-
"generate:client": "
|
|
14
|
+
"generate:client": "node ../../scripts/generate-clients/single-service --solo dax"
|
|
15
15
|
},
|
|
16
16
|
"main": "./dist-cjs/index.js",
|
|
17
17
|
"types": "./dist-types/index.d.ts",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.252.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.234.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.252.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.226.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.226.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.226.0",
|