refactor: increase max limit for search request schema from 50 to 100 (#1545)

This commit is contained in:
Ademílson Tonato 2025-05-13 21:40:32 +01:00 committed by GitHub
parent 505924875e
commit 06189b9646
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1142,7 +1142,7 @@ export const searchRequestSchema = z
.positive()
.finite()
.safe()
.max(50)
.max(100)
.optional()
.default(5),
tbs: z.string().optional(),