postgresdk 0.15.4 → 0.15.5
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/cli.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -2869,7 +2869,7 @@ const columnEnum = z.enum([${columnNames}]);
|
|
|
2869
2869
|
const listSchema = z.object({
|
|
2870
2870
|
where: z.any().optional(),
|
|
2871
2871
|
include: z.any().optional(),
|
|
2872
|
-
limit: z.number().int().positive().max(
|
|
2872
|
+
limit: z.number().int().positive().max(1000).optional(),
|
|
2873
2873
|
offset: z.number().int().min(0).optional(),
|
|
2874
2874
|
orderBy: z.union([columnEnum, z.array(columnEnum)]).optional(),
|
|
2875
2875
|
order: z.union([z.enum(["asc", "desc"]), z.array(z.enum(["asc", "desc"]))]).optional()
|
package/dist/index.js
CHANGED
|
@@ -2046,7 +2046,7 @@ const columnEnum = z.enum([${columnNames}]);
|
|
|
2046
2046
|
const listSchema = z.object({
|
|
2047
2047
|
where: z.any().optional(),
|
|
2048
2048
|
include: z.any().optional(),
|
|
2049
|
-
limit: z.number().int().positive().max(
|
|
2049
|
+
limit: z.number().int().positive().max(1000).optional(),
|
|
2050
2050
|
offset: z.number().int().min(0).optional(),
|
|
2051
2051
|
orderBy: z.union([columnEnum, z.array(columnEnum)]).optional(),
|
|
2052
2052
|
order: z.union([z.enum(["asc", "desc"]), z.array(z.enum(["asc", "desc"]))]).optional()
|