used zod codemod

This commit is contained in:
Lokowitz
2025-11-16 14:18:17 +00:00
parent 000904eb31
commit 7db99a7dd5
191 changed files with 764 additions and 1232 deletions

View File

@@ -9,12 +9,10 @@ import { supporterKey } from "@server/db";
import { db } from "@server/db";
import config from "@server/lib/config";
const validateSupporterKeySchema = z
.object({
const validateSupporterKeySchema = z.strictObject({
githubUsername: z.string().nonempty(),
key: z.string().nonempty()
})
.strict();
});
export type ValidateSupporterKeyResponse = {
valid: boolean;