UNPKG

n8n-nodes-content-validation

Version:
24 lines 1.03 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ContentValidation = void 0; const n8n_workflow_1 = require("n8n-workflow"); const ContentValidationV1_node_1 = require("./v1/ContentValidationV1.node"); class ContentValidation extends n8n_workflow_1.VersionedNodeType { constructor() { const baseDescription = { displayName: 'Content Validation', name: 'contentValidation', icon: 'file:ContentValidation.svg', group: ['transform'], subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}', description: 'Validates user-provided content: HTML syntax, spoken language, and more', defaultVersion: 1, }; const nodeVersions = { 1: new ContentValidationV1_node_1.ContentValidationV1(baseDescription), }; super(nodeVersions, baseDescription); } } exports.ContentValidation = ContentValidation; //# sourceMappingURL=ContentValidation.node.js.map