Files
MinglarBackendNestJS/src/common/utils/constants/minglar.constant.ts

60 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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',
DRAFT: 'Draft',
};
export const MINGLAR_STATUS_DISPLAY = {
NEW: 'New',
AM_NOT_ASSIGNED: 'AM Not Assigned',
TO_REVIEW: 'To Review',
ENHANCING: 'Enhancing',
APPROVED: 'Approved',
REJECTED: 'Rejected',
DRAFT: 'Draft'
};
export const MINGLAR_INVITATION_STATUS = {
PENDING: 'Pending',
ACCEPTED: 'Accepted',
REJECTED: 'Rejected',
INVITED: 'Invited',
};
export const ACTIVITY_TRACK_TYPE = {
PQ: 'PQ',
ACTIVITY: 'Activity'
}
export const ACTIVITY_TRACK_STATUS = {
REJECTED_BY_AM: 'Rejected By AM',
ACCEPTED_BY_AM: 'Accepted By AM',
ENHANCING: 'Enhancing',
PQ_SUBMITTED: 'PQ Submitted'
}
// export const HOST_SUGGESTION_TITLES = {
// COMPANY_DETAILS: 'Complete Details',
// COMPANY_DOCUMENTATION: 'Company documentataion',
// COMPANY_SOCIAL_PROOF: 'Social Proof',
// ACTIVITY_INFORMATION: 'Activity Information',
// ACTIVITY_LOCATION: 'Activity Location',
// PICKUP_DROP_LOCATION: 'Pickup-Drop Location',
// NUMBER_OF_PEOPLE: 'Number of People',
// INCLUSION: 'Inclusion',
// TAX_SETUP: 'Tax Setup',
// ENERGY_LEVEL: 'Energy Level',
// ELIGIBILITY_CRITERIA: 'Eligibility Criteria',
// AMENITIES: 'Amenities',
// EXLUSIVE_NOTES: 'Exclusive Notes',
// CANCELLATION_POLICY: 'Cancellation Policy',
// DOs_AND_DONTs: 'Dos and Donts',
// TIPS_FOR_USERS: 'Tips for Users',
// SUSTAINABILITY: 'Sustainability',
// TERMS_AND_CONDITION_FOR_USER: 'Terms and Conditions for User'
// };