@anatine/zod-mock
Advanced tools
Comparing version 3.8.4 to 3.9.0
@@ -5,2 +5,9 @@ # Changelog | ||
## [3.9.0](https://github.com/anatine/zod-plugins/compare/zod-mock-3.8.4...zod-mock-3.9.0) (2023-02-27) | ||
### Features | ||
* **zod-mock:** mock strings with explicit length ([c0f7670](https://github.com/anatine/zod-plugins/commit/c0f767083984d5555dfda6a5c0689eb5b8485e18)) | ||
### [3.8.4](https://github.com/anatine/zod-plugins/compare/zod-mock-3.8.3...zod-mock-3.8.4) (2023-02-21) | ||
@@ -7,0 +14,0 @@ |
{ | ||
"name": "@anatine/zod-mock", | ||
"version": "3.8.4", | ||
"version": "3.9.0", | ||
"description": "Zod auto-mock object generator using Faker at @faker-js/faker", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -100,2 +100,6 @@ "use strict"; | ||
break; | ||
case 'length': | ||
stringOptions.min = item.value; | ||
stringOptions.max = item.value; | ||
break; | ||
} | ||
@@ -102,0 +106,0 @@ }); |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
47053
477