n8n-nodes-dataforseo
Version:
DataForSEO is an SEO and marketing data provider, empowering businesses with invaluable insights via APIs and databases.
74 lines • 2.26 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SocialMediaOperations = void 0;
exports.SocialMediaOperations = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: ['social_media'],
},
},
options: [
{
name: 'Get Pinterest Data',
value: 'get-pinterest-data',
action: 'Get pinterest data',
description: 'Get data on pins made from the specified URLs',
},
{
name: 'Get Facebook Data',
value: 'get-facebook-data',
action: 'Get facebook data',
description: 'Get the number of likes a certain page received through the Facebook Like button embed',
},
{
name: 'Get Reddit Data',
value: 'get-reddit-data',
action: 'Get reddit data',
description: 'Get information for each share of the target webpage on Reddit',
},
],
default: 'get-pinterest-data',
},
{
displayName: 'Target URLs',
name: 'targets',
placeholder: 'Add target',
type: 'fixedCollection',
required: true,
default: [],
description: 'You can specify 10 targets maximum',
typeOptions: {
multipleValues: true,
},
options: [
{
name: 'values',
displayName: 'Target',
values: [
{
displayName: 'Target URL',
name: 'value',
type: 'string',
required: true,
default: ''
},
],
},
],
displayOptions: {
show: {
operation: [
'get-pinterest-data',
'get-facebook-data',
'get-reddit-data'
],
},
},
}
];
//# sourceMappingURL=social_media.js.map