@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.
- package/dist/index.js +1 -1
- 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
|
|