* feat: adds admin billing section * use loading prop * add log on resend error * add error log in billing portal
8 lines
229 B
TypeScript
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>;
|