31 lines
802 B
TypeScript
31 lines
802 B
TypeScript
export const MINGLAR_STATUS_INTERNAL = {
|
|
ADMIN_TO_REVIEW: "Admin To Review",
|
|
ADMIN_REJECTED: "Admin Rejected",
|
|
AM_NOT_ASSIGNED: "AM Not Assigned",
|
|
AM_TO_REVIEW: "AM To Review",
|
|
AM_REJECTED: "AM Rejected",
|
|
AM_APPROVED: "AM Approved"
|
|
}
|
|
|
|
export const MINGLAR_STATUS_DISPLAY = {
|
|
NEW: "New",
|
|
AM_NOT_ASSIGNED: "AM Not Assigned",
|
|
TO_REVIEW: "To Review",
|
|
ENHANCING: "Enhancing",
|
|
APPROVED: "Approved",
|
|
REJECTED: "Rejected",
|
|
}
|
|
|
|
export const MINGLAR_INVITATION_STATUS = {
|
|
PENDING: "Pending",
|
|
ACCEPTED: "Accepted",
|
|
REJECTED: "Rejected",
|
|
INVITED: "Invited",
|
|
}
|
|
|
|
export const HOST_SUGGESTION_TITLES = {
|
|
SETUP_PROFILE: "Setup Profile",
|
|
REVIEW_ACCOUNT: "Review Account",
|
|
ADD_PAYMENT_DETAILS: "Add Payment Details",
|
|
AGREEMENT: "Agreement"
|
|
} |