export const PAYMENT_STATUS = { PENDING: "pending", REVIEW: "review", FAILED: "failed", SUCCESS: "success", }; export type PaymentStatus = "pending" | "review" | "failed" | "success"; export const UserRoleMap = { ADMIN: "admin", AGENT: "agent", SUPERVISOR: "supervisor", ENDUSER: "enduser", }; export type UserType = "admin" | "agent" | "supervisor" | "enduser";