@xube/kit-aws-schema 0.0.84 → 0.0.86

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 CHANGED
@@ -1,3 +1,4 @@
1
+ export * from "./schema/table/constants";
1
2
  export * from "./schema/table/fields";
2
3
  export * from "./schema/table/item";
3
4
  export * from "./schema/table/keys";
package/dist/index.js CHANGED
@@ -14,6 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./schema/table/constants"), exports);
17
18
  __exportStar(require("./schema/table/fields"), exports);
18
19
  __exportStar(require("./schema/table/item"), exports);
19
20
  __exportStar(require("./schema/table/keys"), exports);
@@ -0,0 +1,2 @@
1
+ export declare const MAX_NUMBER_BATCH_WRITES = 25;
2
+ export declare const MAX_NUMBER_BATCH_GETS = 100;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MAX_NUMBER_BATCH_GETS = exports.MAX_NUMBER_BATCH_WRITES = void 0;
4
+ exports.MAX_NUMBER_BATCH_WRITES = 25;
5
+ exports.MAX_NUMBER_BATCH_GETS = 100;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xube/kit-aws-schema",
3
- "version": "0.0.84",
3
+ "version": "0.0.86",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -18,10 +18,10 @@
18
18
  "homepage": "https://github.com/XubeLtd/dev-kit#readme",
19
19
  "devDependencies": {
20
20
  "@types/aws-lambda": "^8.10.119",
21
- "@xube/kit-build": "^0.0.84"
21
+ "@xube/kit-build": "^0.0.86"
22
22
  },
23
23
  "dependencies": {
24
- "@xube/kit-schema": "^0.0.84",
24
+ "@xube/kit-schema": "^0.0.86",
25
25
  "zod": "^3.22.4"
26
26
  }
27
27
  }
package/src/index.ts CHANGED
@@ -1,3 +1,4 @@
1
+ export * from "./schema/table/constants";
1
2
  export * from "./schema/table/fields";
2
3
  export * from "./schema/table/item";
3
4
  export * from "./schema/table/keys";
@@ -0,0 +1,3 @@
1
+
2
+ export const MAX_NUMBER_BATCH_WRITES = 25;
3
+ export const MAX_NUMBER_BATCH_GETS = 100;