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
55 lines • 1.88 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.sharedFields = void 0;
exports.sharedFields = [
{
displayName: 'Webhook URL',
name: 'webhook',
displayOptions: {
show: {
operation: ['async'],
},
},
type: 'string',
default: '',
description: 'A URL to POST the rendered file upon completion',
},
{
displayName: 'Options',
name: 'options',
type: 'collection',
default: {},
placeholder: 'Add Option',
options: [
{
displayName: 'S3 Bucket',
name: 's3_bucket',
type: 'string',
default: '',
description: 'Set this to the ID of an active S3 connection created on pdf noodle to override the default storage location',
},
{
displayName: 'S3 Key',
name: 's3_key',
type: 'string',
default: '',
description: 'Define the path (folders and filename, without extension) where your file will be saved inside your S3 bucket',
},
{
displayName: 'Has Cover Page',
name: 'hasCover',
type: 'boolean',
default: false,
description: 'Whether the PDF have a cover page, so we can hide default footers and headers',
},
{
displayName: 'Debug Mode',
name: 'debug',
type: 'boolean',
default: false,
description: 'Whether you will have access to the additional debug information, like the rendered HTML and the variables validation errors',
},
],
},
];
//# sourceMappingURL=SharedFields.js.map