n8n-nodes-pdforge
Version:
pdf noodle (previously pdforge) automates PDF Generation in minutes using AI.Create custom PDF templates in seconds using our AI Agents, fine tune the design with our PDF builder and automate the PDF delivery with our native pdforge node inside n8n. No co
35 lines • 1.22 kB
JavaScript
;
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 pdf noodle interface and click on the template you want to use',
placeholder: '{ "variable_name": "variable_value" }',
},
];
//# sourceMappingURL=TemplateFields.js.map