UNPKG

@pipedream/clientify

Version:

Pipedream Clientify Components

93 lines (90 loc) 1.16 kB
export const PHONE_TYPE_OPTIONS = [ { label: "Main", value: 1, }, { label: "Mobile", value: 2, }, { label: "Work", value: 3, }, { label: "Home", value: 4, }, { label: "Fax", value: 5, }, { label: "Other", value: 6, }, ]; export const STATUS_OPTIONS = [ { label: "Visitor", value: "visitor", }, { label: "Not Qualified Lead", value: "not-qualified-lead", }, { label: "Cold Lead", value: "cold-lead", }, { label: "Warm Lead", value: "warm-lead", }, { label: "Hot Lead", value: "hot-lead", }, { label: "Lost Lead", value: "lost-lead", }, { label: "In Deal", value: "in-deal", }, { label: "Customer", value: "client", }, { label: "Lost Customer", value: "lost-client", }, { label: "Other", value: "other", }, ]; export const ADDRESS_TYPE_OPTIONS = [ { label: "Work", value: 1, }, { label: "Home", value: 2, }, { label: "Billing", value: 3, }, { label: "Other", value: 4, }, { label: "Main", value: 5, }, ];