UNPKG

n8n-nodes-pdforge

Version:

Pdforge Automate PDF Generation in minutes using AI.Create custom PDF templates in seconds using our AI Agents, fine tune the design with our no-code builder and automate the PDF delivery with our native pdforge node inside n8n. No code or design experien

35 lines 1.22 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.templateFields = void 0; exports.templateFields = [ { displayName: 'Template Name or ID', name: 'templateId', type: 'options', typeOptions: { loadOptionsMethod: 'getTemplates', }, displayOptions: { show: { resource: ['pdf', 'image'], }, }, required: true, default: '', description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.', }, { displayName: 'Variables', name: 'variables', type: 'json', displayOptions: { show: { resource: ['pdf', 'image'], }, }, default: '{}', description: 'To see the variables in your template, access pdforge interface and click on the template you want to use', placeholder: '{ "variable_name": "variable_value" }', }, ]; //# sourceMappingURL=TemplateFields.js.map