chore: ran biome format

This commit is contained in:
John Yeo
2025-09-22 14:45:25 +01:00
parent db19928cea
commit da2693567c
1358 changed files with 112670 additions and 112585 deletions

View File

@@ -1,14 +1,14 @@
import z from "zod";
export const CusReferralResponseSchema = z.object({
program_id: z.string(),
customer: z.object({
id: z.string(),
name: z.string().nullish(),
email: z.string().nullish(),
}),
reward_applied: z.boolean(),
created_at: z.number(),
program_id: z.string(),
customer: z.object({
id: z.string(),
name: z.string().nullish(),
email: z.string().nullish(),
}),
reward_applied: z.boolean(),
created_at: z.number(),
});
export type CusReferralResponse = z.infer<typeof CusReferralResponseSchema>;