@memberjunction/actions-bizapps-crm
Version:
CRM system integration actions for MemberJunction
48 lines • 2.31 kB
JavaScript
;
/**
* HubSpot CRM Actions
*
* This module exports all HubSpot CRM-related actions for contact and company management
*/
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __exportStar = (this && this.__exportStar) || function(m, exports) {
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
};
Object.defineProperty(exports, "__esModule", { value: true });
// Contact Actions
__exportStar(require("./create-contact.action"), exports);
__exportStar(require("./update-contact.action"), exports);
__exportStar(require("./get-contact.action"), exports);
__exportStar(require("./search-contacts.action"), exports);
__exportStar(require("./delete-contact.action"), exports);
__exportStar(require("./merge-contacts.action"), exports);
// Company Actions
__exportStar(require("./create-company.action"), exports);
__exportStar(require("./update-company.action"), exports);
__exportStar(require("./get-company.action"), exports);
__exportStar(require("./search-companies.action"), exports);
__exportStar(require("./associate-contact-to-company.action"), exports);
// Deal Actions
__exportStar(require("./create-deal.action"), exports);
__exportStar(require("./update-deal.action"), exports);
__exportStar(require("./get-deal.action"), exports);
__exportStar(require("./search-deals.action"), exports);
__exportStar(require("./get-deals-by-contact.action"), exports);
__exportStar(require("./get-deals-by-company.action"), exports);
// Activity Management Actions
__exportStar(require("./log-activity.action"), exports);
__exportStar(require("./create-task.action"), exports);
__exportStar(require("./update-task.action"), exports);
__exportStar(require("./get-activities-by-contact.action"), exports);
__exportStar(require("./get-upcoming-tasks.action"), exports);
//# sourceMappingURL=index.js.map