n8n-nodes-rd-station-crm
Version:
n8n community node for RD Station CRM: API v1 (private token) and API v2 (OAuth2) — contacts, deals, organizations, tasks, notes, pipelines, stages, products, custom fields, sources, campaigns, loss reasons, users, teams and a real webhook trigger.
33 lines • 1.81 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RD_CRM_WEBHOOK_EVENTS = void 0;
/**
* RD Station CRM v1 webhook event types.
* One webhook is registered per event. Source: developers.rdstation.com (crm-v1-webhooks).
*/
exports.RD_CRM_WEBHOOK_EVENTS = [
{ name: 'Campaign Created', value: 'crm_campaign_created' },
{ name: 'Campaign Deleted', value: 'crm_campaign_deleted' },
{ name: 'Campaign Updated', value: 'crm_campaign_updated' },
{ name: 'Contact Created', value: 'crm_contact_created' },
{ name: 'Contact Deleted', value: 'crm_contact_deleted' },
{ name: 'Contact Updated', value: 'crm_contact_updated' },
{ name: 'Deal Created', value: 'crm_deal_created' },
{ name: 'Deal Deleted', value: 'crm_deal_deleted' },
{ name: 'Deal Updated', value: 'crm_deal_updated' },
{ name: 'Loss Reason Created', value: 'crm_lost_reason_created' },
{ name: 'Loss Reason Deleted', value: 'crm_lost_reason_deleted' },
{ name: 'Loss Reason Updated', value: 'crm_lost_reason_updated' },
{ name: 'Organization Created', value: 'crm_organization_created' },
{ name: 'Organization Deleted', value: 'crm_organization_deleted' },
{ name: 'Organization Updated', value: 'crm_organization_updated' },
{ name: 'Product Created', value: 'crm_product_created' },
{ name: 'Product Deleted', value: 'crm_product_deleted' },
{ name: 'Product Updated', value: 'crm_product_updated' },
{ name: 'Source Created', value: 'crm_source_created' },
{ name: 'Source Deleted', value: 'crm_source_deleted' },
{ name: 'Source Updated', value: 'crm_source_updated' },
{ name: 'Task Created', value: 'crm_task_created' },
{ name: 'Task Updated', value: 'crm_task_updated' },
];
//# sourceMappingURL=constants.js.map