chore: ran biome format
This commit is contained in:
@@ -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>;
|
||||
|
||||
Reference in New Issue
Block a user