@kalutskii/foundation 0.7.18 → 0.7.19

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
@@ -467,7 +467,7 @@ var zodPaginationSchema = z3.object({
467
467
  * Positive maximum number of records returned in a single result page.
468
468
  * String values are coerced to support validation of URL query input.
469
469
  */
470
- limit: z3.coerce.number().int().positive().default(10)
470
+ limit: z3.coerce.number().int().positive().max(256).default(10)
471
471
  });
472
472
  var zodPaginationShape = zodPaginationSchema.shape;
473
473
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kalutskii/foundation",
3
- "version": "0.7.18",
3
+ "version": "0.7.19",
4
4
  "description": "Typescript collection of most common utilities, schemas and functions among private projects.",
5
5
  "license": "MIT",
6
6
  "type": "module",