@fre4x/arxiv 1.0.54 → 1.0.57
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 +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -32473,7 +32473,8 @@ config(en_default());
|
|
|
32473
32473
|
var zod_default = external_exports;
|
|
32474
32474
|
|
|
32475
32475
|
// ../packages/shared/dist/pagination.js
|
|
32476
|
-
var
|
|
32476
|
+
var zodCompat = zod_exports;
|
|
32477
|
+
var z2 = zodCompat.z ?? zodCompat.default?.z ?? zodCompat.default ?? zodCompat;
|
|
32477
32478
|
var paginationSchema = z2.object({
|
|
32478
32479
|
limit: z2.number().int().min(1).max(100).default(20).describe("Maximum results to return (1\u2013100, default 20)"),
|
|
32479
32480
|
offset: z2.number().int().min(0).default(0).describe("Number of results to skip for pagination (default 0)")
|