feat: implement discord role syncing

This commit is contained in:
mrjvs
2026-08-09 19:30:25 +02:00
parent 735a723328
commit 87d2b6357b
5 changed files with 54 additions and 3 deletions

View File

@@ -64,3 +64,8 @@ export const ForgotPasswordSchema = z.object({
emailOrPassword: z.string(),
});
export type ApiAuthForgotPasswordRequest = z.infer<typeof ForgotPasswordSchema>;
export const CheckoutSchema = z.object({
priceId: z.string(),
});
export type ApiAccountCheckoutRequest = z.infer<typeof CheckoutSchema>;