n8n-nodes-semble
Version: 
n8n community node for Semble practice management system - automate bookings, patients, and product/service catalog management
38 lines (37 loc) • 1.61 kB
JavaScript
;
/**
 * @fileoverview Entry point for n8n-nodes-semble package
 * @description This module exports all node types and credentials for the Semble n8n integration
 * @author Mike Hatcher
 * @website https://progenious.com
 * @namespace N8nNodesSemble.Main
 */
Object.defineProperty(exports, "__esModule", { value: true });
exports.SembleTrigger = exports.Semble = exports.SembleApi = void 0;
/**
 * @namespace N8nNodesSemble.Credentials
 * @description Authentication and credential types for Semble API
 */
/**
 * @namespace N8nNodesSemble.Nodes
 * @description Main node implementations for Semble operations
 */
/**
 * @namespace N8nNodesSemble.Triggers
 * @description Trigger node implementations for Semble events
 */
/**
 * @namespace N8nNodesSemble.Descriptions
 * @description UI property definitions for node operations and fields
 */
/**
 * @namespace N8nNodesSemble.Utils
 * @description Utility functions for API communication and rate limiting
 */
// Re-export all node types and credentials
var SembleApi_credentials_1 = require("./credentials/SembleApi.credentials");
Object.defineProperty(exports, "SembleApi", { enumerable: true, get: function () { return SembleApi_credentials_1.SembleApi; } });
var Semble_node_1 = require("./nodes/Semble/Semble.node");
Object.defineProperty(exports, "Semble", { enumerable: true, get: function () { return Semble_node_1.Semble; } });
var SembleTrigger_node_1 = require("./nodes/Semble/SembleTrigger.node");
Object.defineProperty(exports, "SembleTrigger", { enumerable: true, get: function () { return SembleTrigger_node_1.SembleTrigger; } });