@kalutskii/foundation 0.7.24 → 0.7.25

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
@@ -909,7 +909,7 @@ const zodPaginationSchema = z$1.object({
909
909
  * Zero-based number of records skipped before collecting a result page.
910
910
  * String values are coerced to support validation of URL query input.
911
911
  */
912
- offset: z$1.coerce.number().int().nonnegative().default(0),
912
+ offset: z$1.coerce.number().int().nonnegative().max(1048576).default(0),
913
913
  /**
914
914
  * Positive maximum number of records returned in a single result page.
915
915
  * String values are coerced to support validation of URL query input.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kalutskii/foundation",
3
- "version": "0.7.24",
3
+ "version": "0.7.25",
4
4
  "description": "Typescript collection of most common utilities, schemas and functions among private projects.",
5
5
  "license": "MIT",
6
6
  "repository": {