@aws-sdk/client-route-53-domains 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.
@@ -1964,7 +1964,9 @@ const serializeAws_json1_1ListOperationsRequest = (input, context) => {
1964
1964
  ...(input.SortBy != null && { SortBy: input.SortBy }),
1965
1965
  ...(input.SortOrder != null && { SortOrder: input.SortOrder }),
1966
1966
  ...(input.Status != null && { Status: serializeAws_json1_1OperationStatusList(input.Status, context) }),
1967
- ...(input.SubmittedSince != null && { SubmittedSince: Math.round(input.SubmittedSince.getTime() / 1000) }),
1967
+ ...(input.SubmittedSince != null && {
1968
+ SubmittedSince: Math.round(input.SubmittedSince.getTime() / 1000).toString(),
1969
+ }),
1968
1970
  ...(input.Type != null && { Type: serializeAws_json1_1OperationTypeList(input.Type, context) }),
1969
1971
  };
1970
1972
  };
@@ -2151,10 +2153,10 @@ const serializeAws_json1_1Values = (input, context) => {
2151
2153
  };
2152
2154
  const serializeAws_json1_1ViewBillingRequest = (input, context) => {
2153
2155
  return {
2154
- ...(input.End != null && { End: Math.round(input.End.getTime() / 1000) }),
2156
+ ...(input.End != null && { End: Math.round(input.End.getTime() / 1000).toString() }),
2155
2157
  ...(input.Marker != null && { Marker: input.Marker }),
2156
2158
  ...(input.MaxItems != null && { MaxItems: input.MaxItems }),
2157
- ...(input.Start != null && { Start: Math.round(input.Start.getTime() / 1000) }),
2159
+ ...(input.Start != null && { Start: Math.round(input.Start.getTime() / 1000).toString() }),
2158
2160
  };
2159
2161
  };
2160
2162
  const deserializeAws_json1_1AcceptDomainTransferFromAnotherAwsAccountResponse = (output, context) => {
@@ -1892,7 +1892,9 @@ const serializeAws_json1_1ListOperationsRequest = (input, context) => {
1892
1892
  ...(input.SortBy != null && { SortBy: input.SortBy }),
1893
1893
  ...(input.SortOrder != null && { SortOrder: input.SortOrder }),
1894
1894
  ...(input.Status != null && { Status: serializeAws_json1_1OperationStatusList(input.Status, context) }),
1895
- ...(input.SubmittedSince != null && { SubmittedSince: Math.round(input.SubmittedSince.getTime() / 1000) }),
1895
+ ...(input.SubmittedSince != null && {
1896
+ SubmittedSince: Math.round(input.SubmittedSince.getTime() / 1000).toString(),
1897
+ }),
1896
1898
  ...(input.Type != null && { Type: serializeAws_json1_1OperationTypeList(input.Type, context) }),
1897
1899
  };
1898
1900
  };
@@ -2079,10 +2081,10 @@ const serializeAws_json1_1Values = (input, context) => {
2079
2081
  };
2080
2082
  const serializeAws_json1_1ViewBillingRequest = (input, context) => {
2081
2083
  return {
2082
- ...(input.End != null && { End: Math.round(input.End.getTime() / 1000) }),
2084
+ ...(input.End != null && { End: Math.round(input.End.getTime() / 1000).toString() }),
2083
2085
  ...(input.Marker != null && { Marker: input.Marker }),
2084
2086
  ...(input.MaxItems != null && { MaxItems: input.MaxItems }),
2085
- ...(input.Start != null && { Start: Math.round(input.Start.getTime() / 1000) }),
2087
+ ...(input.Start != null && { Start: Math.round(input.Start.getTime() / 1000).toString() }),
2086
2088
  };
2087
2089
  };
2088
2090
  const deserializeAws_json1_1AcceptDomainTransferFromAnotherAwsAccountResponse = (output, context) => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-route-53-domains",
3
3
  "description": "AWS SDK for JavaScript Route 53 Domains Client for Node.js, Browser and React Native",
4
- "version": "3.245.0",
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": "(cd ../../ && yarn generate-clients -g ./codegen/sdk-codegen/aws-models/route-53-domains.json --keepFiles)"
14
+ "generate:client": "node ../../scripts/generate-clients/single-service --solo route-53-domains"
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.245.0",
23
+ "@aws-sdk/client-sts": "3.252.0",
24
24
  "@aws-sdk/config-resolver": "3.234.0",
25
- "@aws-sdk/credential-provider-node": "3.245.0",
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",