export enum TenderStatus { ACTIVE = "active", EXPIRED = "expired", CANCELLED = "cancelled", AWARDED = "awarded", DRAFT = "draft", } export enum AdminStatus { ACTIVE = "active", INACTIVE = "inactive", SUSPENDED = "suspended", } export enum NotificationChannels { EMAIL = "email", PUSH = "push", } export enum NotificationPriorities { LOW = "low", MEDIUM = "medium", IMPORTANT = "important", } export enum NotificationTargetGroups { ALL_USERS = "all_users", SPECIFIC_USERS = "specific_users", ALL_ROLE = "all_role", SPECIFIC_ROLE = "specific_role", ALL_COMPANIES = "all_companies", SPECIFIC_COMPANY = "specific_company", ALL_CUSTOMERS = "all_customers", SPECIFIC_CUSTOMER = "specific_customer", } export enum NotificationTypes { INFO = "info", WARNING = "warning", ALERT = "alert", REJECT = "reject", } export enum AdminRoles { ADMIN = "admin", ANALYST = "analyst", } export enum CustomerStatus { ACTIVE = "active", INACTIVE = "inactive", SUSPENDED = "suspended", } export enum CustomerType { INDIVIDUAL = "individual", COMPANY = "company", GOVERNMENT = "government", } export const Currencies = [ { label: "USD", value: "USD" }, { label: "EUR", value: "EUR" }, { label: "GBP", value: "GBP" }, { label: "JPY", value: "JPY" }, { label: "CAD", value: "CAD" }, { label: "AUD", value: "AUD" }, { label: "CHF", value: "CHF" }, { label: "CNY", value: "CNY" }, { label: "INR", value: "INR" }, { label: "BRL", value: "BRL" }, ]; export enum INQUIRY_STATUS { PENDING = "pending", REVIEWED = "reviewed", APPROVED = "approved", REJECTED = "rejected", }