@xube/kit-aws-data-schema 0.0.76 → 0.0.77

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.
@@ -17,7 +17,7 @@ exports.GetDataByDateRangeRequestSchema = zod_1.z.object({
17
17
  });
18
18
  const isGetDataByDateRangeRequest = (object) => {
19
19
  try {
20
- exports.GetDataByDateRangeRequestSchema.parse(object);
20
+ exports.GetDataByDateRangeRequestSchema.passthrough().parse(object);
21
21
  return true;
22
22
  }
23
23
  catch (e) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xube/kit-aws-data-schema",
3
- "version": "0.0.76",
3
+ "version": "0.0.77",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -19,16 +19,16 @@
19
19
  "homepage": "https://github.com/XubeLtd/dev-kit#readme",
20
20
  "devDependencies": {
21
21
  "@types/node": "^20.4.7",
22
- "@xube/kit-build": "^0.0.76",
22
+ "@xube/kit-build": "^0.0.77",
23
23
  "ts-node": "^10.9.1",
24
24
  "typescript": "^5.1.6"
25
25
  },
26
26
  "dependencies": {
27
- "@xube/kit-aws-schema": "^0.0.76",
28
- "@xube/kit-constants": "^0.0.76",
29
- "@xube/kit-generator": "^0.0.76",
30
- "@xube/kit-log": "^0.0.76",
31
- "@xube/kit-schema": "^0.0.76",
27
+ "@xube/kit-aws-schema": "^0.0.77",
28
+ "@xube/kit-constants": "^0.0.77",
29
+ "@xube/kit-generator": "^0.0.77",
30
+ "@xube/kit-log": "^0.0.77",
31
+ "@xube/kit-schema": "^0.0.77",
32
32
  "zod": "^3.22.4",
33
33
  "zod-validation-error": "^2.0.0"
34
34
  }
@@ -22,7 +22,7 @@ export const isGetDataByDateRangeRequest = (
22
22
  object: unknown
23
23
  ): object is GetDataByDateRangeRequest => {
24
24
  try {
25
- GetDataByDateRangeRequestSchema.parse(object);
25
+ GetDataByDateRangeRequestSchema.passthrough().parse(object);
26
26
  return true;
27
27
  } catch (e) {
28
28
  XubeLog.getInstance().warn(