@factorearth/recordmiddleware-dataaccesslayer 0.0.1-alpha.13 → 0.0.1-alpha.15
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/index.d.ts +5 -0
- package/dist/index.js +5 -0
- package/dist/index.js.map +1 -1
- package/package.json +6 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
export * from "./getItem";
|
|
2
|
+
export * from "./deleteItem";
|
|
3
|
+
export * from "./batchDeleteItems";
|
|
4
|
+
export * from "./batchPutItems";
|
|
5
|
+
export * from "./chunkBatch";
|
|
6
|
+
export * from "./aws-services";
|
|
2
7
|
export declare const MAX_ITEMS_BATCH_OPERATIONS = 25;
|
|
3
8
|
export interface BatchDeleteInput {
|
|
4
9
|
id: string;
|
package/dist/index.js
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
1
|
export * from "./getItem";
|
|
2
|
+
export * from "./deleteItem";
|
|
3
|
+
export * from "./batchDeleteItems";
|
|
4
|
+
export * from "./batchPutItems";
|
|
5
|
+
export * from "./chunkBatch";
|
|
6
|
+
export * from "./aws-services";
|
|
2
7
|
export const MAX_ITEMS_BATCH_OPERATIONS = 25;
|
|
3
8
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../lib/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../lib/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAA;AAE9B,MAAM,CAAC,MAAM,0BAA0B,GAAG,EAAE,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@factorearth/recordmiddleware-dataaccesslayer",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.15",
|
|
4
4
|
"description": "A module for accessing dynamdb efficiently",
|
|
5
5
|
"author": "madtrx <marlin.makori@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/FactorEarth/RecordMiddleware#readme",
|
|
@@ -21,6 +21,10 @@
|
|
|
21
21
|
"bugs": {
|
|
22
22
|
"url": "https://github.com/FactorEarth/RecordMiddleware/issues"
|
|
23
23
|
},
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"@aws-sdk/client-dynamodb": "^3.585.0",
|
|
26
|
+
"@aws-sdk/lib-dynamodb": "^3.585.0"
|
|
27
|
+
},
|
|
24
28
|
"devDependencies": {
|
|
25
29
|
"@types/node": "^20.12.13"
|
|
26
30
|
},
|
|
@@ -28,5 +32,5 @@
|
|
|
28
32
|
"access": "public",
|
|
29
33
|
"registry": "https://registry.npmjs.org/"
|
|
30
34
|
},
|
|
31
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "6d3f39b46f1c7a3da7b184ff2ed564483e370579"
|
|
32
36
|
}
|