@pipedream/offorte
Version:
Pipedream Offorte Components
117 lines (114 loc) • 1.96 kB
JavaScript
export const STATUS_OPTIONS = [
{
label: "Edit",
value: "edit",
},
{
label: "Open",
value: "open",
},
{
label: "Won",
value: "won",
},
{
label: "Lost",
value: "lost",
},
{
label: "Closed",
value: "closed",
},
];
export const SEND_METHOD_OPTIONS = [
{
label: "Offorte",
value: "offorte",
},
{
label: "Self",
value: "self",
},
];
export const EVENTS_OPTIONS = [
{
label: "Contact Created",
value: "contact_created",
},
{
label: "Contact Updated",
value: "contact_updated",
},
{
label: "Contact Deleted",
value: "contact_deleted",
},
{
label: "Contact Person Created",
value: "contact_person_created",
},
{
label: "Contact Person Updated",
value: "contact_person_updated",
},
{
label: "Contact Person Deleted",
value: "contact_person_deleted",
},
{
label: "Proposal Created",
value: "proposal_created",
},
{
label: "Proposal Details Updated",
value: "proposal_details_updated",
},
{
label: "Proposal Deleted",
value: "proposal_deleted",
},
{
label: "Proposal Send",
value: "proposal_send",
},
{
label: "Proposal Won",
value: "proposal_won",
},
{
label: "Proposal Lost",
value: "proposal_lost",
},
{
label: "Proposal Viewed",
value: "proposal_viewed",
},
{
label: "Proposal Comment Received",
value: "proposal_comment_received",
},
{
label: "Product Directory Created",
value: "product_directory_created",
},
{
label: "Product Directory Updated",
value: "product_directory_updated",
},
{
label: "Product Directory Deleted",
value: "product_directory_deleted",
},
{
label: "Product Created",
value: "product_created",
},
{
label: "Product Updated",
value: "product_updated",
},
{
label: "Product Deleted",
value: "product_deleted",
},
];