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

View File

@@ -30,7 +30,7 @@ const listAccessTokensParamsSchema = z
error: "Either resourceId or orgId must be provided, but not both"
});
const listAccessTokensSchema = z.object({
const listAccessTokensSchema = z.strictObject({
limit: z
.string()
.optional()