Skip to content

Commit 0fa7033

Browse files
Ankcornmattzcarey
andauthored
Increase limit max value from 100 to 2000 (#295)
This matches a change in the underlying api Co-authored-by: Matt <77928207+mattzcarey@users.noreply.github.com>
1 parent 38fa777 commit 0fa7033

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/mcp-common/src/types/workers-logs.types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ export const zQueryRunRequest = z.object({
392392
.number()
393393
.int()
394394
.nonnegative()
395-
.max(100)
395+
.max(2000)
396396
.optional()
397397
.describe(
398398
'Use this limit when view is calculation and a group by is present. 10 is a sensible default'
@@ -408,7 +408,7 @@ export const zQueryRunRequest = z.object({
408408
),
409409
limit: z
410410
.number()
411-
.max(100)
411+
.max(2000)
412412
.optional()
413413
.default(5)
414414
.describe(

0 commit comments

Comments
 (0)