UNPKG

n8n-nodes-highlevelv2

Version:

n8n community node for HighLevel v2 API integration - comprehensive CRM, marketing automation, and business management platform

23 lines 1.02 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.HighLevel = void 0; const n8n_workflow_1 = require("n8n-workflow"); const HighLevelV2_node_1 = require("./v2/HighLevelV2.node"); class HighLevel extends n8n_workflow_1.VersionedNodeType { constructor() { const baseDescription = { displayName: 'HighLevel v2', name: 'highLevelv2', icon: 'file:highLevel.svg', group: ['transform'], defaultVersion: 2, description: 'For utilizing the HighLevel API v2 by Mario Aldayuz. This is a fork of the original HighLevel node. This is a work in progress and is not yet ready for production. Submit isues here: https://github.com/marioaldayuz/n8n-highlevel/issues', }; const nodeVersions = { 2: new HighLevelV2_node_1.HighLevelV2(baseDescription), }; super(nodeVersions, baseDescription); } } exports.HighLevel = HighLevel; //# sourceMappingURL=HighLevel.node.js.map