2026-04-02 21:27:09 +06:00
|
|
|
import { z } from "zod";
|
|
|
|
|
const update_profile = z.object({
|
2026-05-24 00:17:16 +06:00
|
|
|
shopName: z.string().optional(),
|
|
|
|
|
shopAddress: z.string().optional(),
|
|
|
|
|
shopPhone: z.string().optional(),
|
|
|
|
|
shopLocation: z.string().optional(),
|
|
|
|
|
shopImage: z.string().optional(),
|
|
|
|
|
shopMapLocation: z.string().optional(),
|
|
|
|
|
contactNumber: z.string().optional(),
|
|
|
|
|
shopCategory: z.string().optional(),
|
|
|
|
|
|
|
|
|
|
|
2026-04-02 21:27:09 +06:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export const profile_validations = {
|
|
|
|
|
update_profile,
|
|
|
|
|
};
|