@astral/validations 3.0.0-beta.0 → 3.0.0-beta.1

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/README.md CHANGED
@@ -759,7 +759,9 @@ const validate = deepPartial(
759
759
 
760
760
  // undefined
761
761
  validate({
762
- info: [{ }],
762
+ info: {
763
+ permissions: [{}]
764
+ },
763
765
  });
764
766
  ```
765
767
 
package/date/index.d.ts CHANGED
@@ -1 +1,2 @@
1
+ export * from './constants';
1
2
  export * from './date';
package/date/index.js CHANGED
@@ -1 +1,2 @@
1
+ export * from './constants';
1
2
  export * from './date';
package/index.d.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  export { object, OBJECT_TYPE_ERROR_INFO, type Schema, type SchemaValue, } from './object';
2
2
  export { optional } from './optional';
3
3
  export { string, STRING_TYPE_ERROR_INFO } from './string';
4
+ export { date, INVALID_DATE_ERROR_INFO, DATE_TYPE_ERROR_INFO } from './date';
4
5
  export { number, NAN_NUMBER_ERROR_INFO, NUMBER_TYPE_ERROR_INFO, INFINITY_NUMBER_ERROR_INFO, } from './number';
5
6
  export { boolean, BOOLEAN_TYPE_ERROR_INFO } from './boolean';
6
7
  export { array, ARRAY_TYPE_ERROR_INFO } from './array';
package/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export { object, OBJECT_TYPE_ERROR_INFO, } from './object';
2
2
  export { optional } from './optional';
3
3
  export { string, STRING_TYPE_ERROR_INFO } from './string';
4
+ export { date, INVALID_DATE_ERROR_INFO, DATE_TYPE_ERROR_INFO } from './date';
4
5
  export { number, NAN_NUMBER_ERROR_INFO, NUMBER_TYPE_ERROR_INFO, INFINITY_NUMBER_ERROR_INFO, } from './number';
5
6
  export { boolean, BOOLEAN_TYPE_ERROR_INFO } from './boolean';
6
7
  export { array, ARRAY_TYPE_ERROR_INFO } from './array';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@astral/validations",
3
- "version": "3.0.0-beta.0",
3
+ "version": "3.0.0-beta.1",
4
4
  "browser": "./index.js",
5
5
  "main": "./index.js",
6
6
  "dependencies": {