@aspan-corporation/ac-shared 1.2.27 → 1.2.28

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.
@@ -37,12 +37,12 @@ export class DynamoDBService {
37
37
  return !!result.Item;
38
38
  }
39
39
  async scanCommand(scanCommandInput) {
40
- return await this.client.send(new ScanCommand(scanCommandInput));
40
+ return await this.documentClient.send(new ScanCommand(scanCommandInput));
41
41
  }
42
42
  async batchWriteCommand(batchWriteCommandInput) {
43
- return await this.client.send(new BatchWriteCommand(batchWriteCommandInput));
43
+ return await this.documentClient.send(new BatchWriteCommand(batchWriteCommandInput));
44
44
  }
45
45
  async batchGetCommand(batchGetCommandInput) {
46
- return await this.client.send(new BatchGetCommand(batchGetCommandInput));
46
+ return await this.documentClient.send(new BatchGetCommand(batchGetCommandInput));
47
47
  }
48
48
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aspan-corporation/ac-shared",
3
- "version": "1.2.27",
3
+ "version": "1.2.28",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "exports": {