valgen 6.0.1 → 6.0.3

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/constants.js CHANGED
@@ -1,4 +1,4 @@
1
- export const version = '6.0.1';
1
+ export const version = '6.0.3';
2
2
  export const postValidation = Symbol('postValidation');
3
3
  export const preValidation = Symbol('preValidation');
4
4
  export const VALIDATE_METADATA = Symbol('VALIDATE_METADATA');
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "valgen",
3
3
  "description": "Fast runtime type validator, converter and io (encoding/decoding) library",
4
- "version": "6.0.1",
4
+ "version": "6.0.3",
5
5
  "author": "Panates",
6
6
  "license": "MIT",
7
7
  "dependencies": {
@@ -8,4 +8,5 @@ export declare function isCreditCard(options?: isCreditCard.Options): import("..
8
8
  export declare namespace isCreditCard {
9
9
  interface Options extends ValidationOptions, _IsCreditCardOptions {
10
10
  }
11
+ type Provider = _IsCreditCardOptions['provider'];
11
12
  }