n8n-nodes-placid
Version:
n8n node to interact with Placid API for creative generation
33 lines • 1.01 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.generalProperties = void 0;
exports.generalProperties = [
{
name: 'Visibility',
value: 'visibility',
description: 'Set the layer visibility state',
restrictedTo: [],
fieldType: 'options',
options: [
{ name: 'Visible', value: 'visible' },
{ name: 'Hidden', value: 'hidden' }
],
},
{
name: 'Link Target',
value: 'link_target',
description: 'Add a clickable link to a custom target URL when rendering a non-rastered PDF',
restrictedTo: ['pdf'],
fieldType: 'string',
placeholder: 'https://example.com',
},
{
name: 'Custom Property',
value: 'custom',
description: 'Set a custom property not listed above',
restrictedTo: [],
fieldType: 'string',
placeholder: 'Custom property value',
},
];
//# sourceMappingURL=generalProperties.js.map