Files
calendar/packages/trpc/server/routers/viewer/admin/resendPurchaseCompleteEmail.schema.ts
T
sean-brydonandGitHub aaf5958b7d feat: adds admin billing section (#26747)
* feat: adds admin billing section

* use loading prop

* add log on resend error

* add error log in billing portal
2026-01-13 10:34:52 +00:00

8 lines
229 B
TypeScript

import { z } from "zod";
export const ZResendPurchaseCompleteEmailSchema = z.object({
billingEmail: z.string().email(),
});
export type TResendPurchaseCompleteEmailSchema = z.infer<typeof ZResendPurchaseCompleteEmailSchema>;