house-types 2.17.1 → 2.17.2

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -376,7 +376,7 @@ const parsedHouseSchema = {
376
376
  studentsOnly: z.boolean().nullable(),
377
377
  bathtub: z.boolean().nullable(),
378
378
  garden: z.boolean().nullable(),
379
- floorNumber: z.number().nullable(),
379
+ floorNumber: z.number().min(0).nullable(),
380
380
  pets: z.boolean().nullable(),
381
381
  garage: z.boolean().nullable(),
382
382
  gym: z.boolean().nullable(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "house-types",
3
- "version": "2.17.1",
3
+ "version": "2.17.2",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",