n8n-nodes-thepdfmaker
Version:
n8n node for businesses looking to streamline document generation. Create professional invoices, reports, and more from your data sources.
30 lines • 1.05 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.thePDFMakerGeneratePDFApi = void 0;
const constants_1 = require("../nodes/ThePDFMaker/constants");
class thePDFMakerGeneratePDFApi {
constructor() {
this.name = 'thePDFMakerGeneratePDFApi';
this.displayName = 'The PDF Maker Generate PDF API';
this.documentationUrl = `${constants_1.DASHBOARD_URL}settings`;
this.properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
typeOptions: { password: true },
default: '',
},
];
this.authenticate = {
type: 'generic',
properties: {
headers: {
'x-api-key': '={{$credentials.apiKey}}',
},
},
};
}
}
exports.thePDFMakerGeneratePDFApi = thePDFMakerGeneratePDFApi;
//# sourceMappingURL=thePDFMakerGeneratePDFApi.credentials.js.map