UNPKG

n8n-nodes-cativa

Version:

This is an n8n community node to communicate with Cativa.

73 lines 1.91 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.postDescription = void 0; exports.postDescription = [ { displayName: 'Operation', name: 'operation', type: 'options', noDataExpression: true, displayOptions: { show: { resource: ['post'], }, }, options: [ { name: 'Comment on Post', value: 'commentOnPost', action: 'Comment on post', }, { name: 'Post on Group', value: 'postOnGroup', action: 'Post on group', }, { name: 'Post on Public Feed', value: 'postOnPublicFeed', action: 'Post on public feed', }, ], default: 'commentOnPost', }, { displayName: 'Post ID', name: 'postId', type: 'string', displayOptions: { show: { resource: ['post'], operation: ['commentOnPost'], }, }, required: true, default: '', }, { displayName: 'Content', name: 'content', type: 'string', displayOptions: { show: { resource: ['post'], operation: ['commentOnPost', 'postOnGroup', 'postOnPublicFeed'], }, }, default: '', }, { displayName: 'Group ID', name: 'groupId', type: 'string', displayOptions: { show: { resource: ['post'], operation: ['postOnGroup'], }, }, required: true, default: '', }, ]; //# sourceMappingURL=PostDescription.js.map