vtlab-generic-functions 1.0.32 → 1.0.33

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/sqs/index.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vtlab-generic-functions",
3
- "version": "1.0.32",
3
+ "version": "1.0.33",
4
4
  "scripts": {
5
5
  "test": "jest"
6
6
  },
package/sqs/index.js CHANGED
@@ -161,7 +161,7 @@ const sendSQSMessageBatch = async (messages, queueUrl, isFIFOQueue = true) => {
161
161
  Entries: entries
162
162
  });
163
163
 
164
- const response = await sqsClient.send(command);
164
+ const response = await batchSQSClient.send(command);
165
165
  results.push(response);
166
166
  }
167
167