UNPKG

n8n-nodes-orshottemplates

Version:

Orshot Templates – an n8n community node that turns text/URLs into on-brand images via the Orshot API.

29 lines 904 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.OrshotTemplatesApi = void 0; class OrshotTemplatesApi { constructor() { this.name = 'orshotTemplatesApi'; this.displayName = 'Orshot Templates API'; this.documentationUrl = 'https://orshot.com/docs'; this.properties = [ { displayName: 'API Key', name: 'apiKey', type: 'string', typeOptions: { password: true }, default: '', }, ]; this.authenticate = { type: 'generic', properties: { headers: { Authorization: 'Bearer {{$credentials.apiKey}}', }, }, }; } } exports.OrshotTemplatesApi = OrshotTemplatesApi; //# sourceMappingURL=OrshotTemplatesApi.credentials.js.map