Enforce strick query params

Fixes #3313
This commit is contained in:
Owen
2026-06-23 12:22:47 -04:00
parent ce3c2f7583
commit f48a4f7bc0
18 changed files with 18 additions and 18 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ const listOrgsParamsSchema = z.object({
userId: z.string()
});
const listOrgsSchema = z.object({
const listOrgsSchema = z.strictObject({
limit: z
.string()
.optional()