@aws-sdk/client-route-53 3.958.0 → 3.962.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/dist-cjs/index.js CHANGED
@@ -4276,10 +4276,10 @@ const paginateListQueryLoggingConfigs = core.createPaginator(Route53Client, List
4276
4276
  const checkState = async (client, input) => {
4277
4277
  let reason;
4278
4278
  try {
4279
- const result = await client.send(new GetChangeCommand(input));
4279
+ let result = await client.send(new GetChangeCommand(input));
4280
4280
  reason = result;
4281
4281
  try {
4282
- let returnComparator = () => {
4282
+ const returnComparator = () => {
4283
4283
  return result.ChangeInfo.Status;
4284
4284
  };
4285
4285
  if (returnComparator() === "INSYNC") {
@@ -3,10 +3,10 @@ import { GetChangeCommand } from "../commands/GetChangeCommand";
3
3
  const checkState = async (client, input) => {
4
4
  let reason;
5
5
  try {
6
- const result = await client.send(new GetChangeCommand(input));
6
+ let result = await client.send(new GetChangeCommand(input));
7
7
  reason = result;
8
8
  try {
9
- let returnComparator = () => {
9
+ const returnComparator = () => {
10
10
  return result.ChangeInfo.Status;
11
11
  };
12
12
  if (returnComparator() === "INSYNC") {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-route-53",
3
3
  "description": "AWS SDK for JavaScript Route 53 Client for Node.js, Browser and React Native",
4
- "version": "3.958.0",
4
+ "version": "3.962.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-route-53",
@@ -24,7 +24,7 @@
24
24
  "@aws-crypto/sha256-browser": "5.2.0",
25
25
  "@aws-crypto/sha256-js": "5.2.0",
26
26
  "@aws-sdk/core": "3.957.0",
27
- "@aws-sdk/credential-provider-node": "3.958.0",
27
+ "@aws-sdk/credential-provider-node": "3.962.0",
28
28
  "@aws-sdk/middleware-host-header": "3.957.0",
29
29
  "@aws-sdk/middleware-logger": "3.957.0",
30
30
  "@aws-sdk/middleware-recursion-detection": "3.957.0",