Update:PROFILE API's and create get users api's with pagination

This commit is contained in:
sharafat
2026-05-24 00:17:16 +06:00
parent d2b320f3b1
commit 1abecc9b8f
13 changed files with 327 additions and 8 deletions
+10 -1
View File
@@ -1,6 +1,15 @@
import { z } from "zod";
const update_profile = z.object({
fullName: z.string().optional(),
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(),
});
export const profile_validations = {