We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9dbad06 + 8a86e6d commit fe5a781Copy full SHA for fe5a781
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@shelf/dynamodb-query-optimized",
3
- "version": "4.0.0",
+ "version": "4.0.1",
4
"description": "2x faster DynamoDB queries when you need to query 2+ MB of data",
5
"license": "MIT",
6
"author": {
src/index.performance.test.ts
@@ -24,7 +24,7 @@ beforeAll(async () => {
24
});
25
26
afterAll(async () => {
27
- await deleteMany({TableName: TABLE_NAME, Keys: insertedKeys});
+ await deleteMany({TableName: TABLE_NAME, Keys: insertedKeys as any});
28
29
30
describe('query performance', () => {
0 commit comments