2023-01-27 03:22:44 -08:00
|
|
|
import type { INodeProperties } from 'n8n-workflow';
|
2021-09-18 13:45:57 -07:00
|
|
|
|
|
|
|
export const feedOperations: INodeProperties[] = [
|
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
resource: ['feed'],
|
2021-09-18 13:45:57 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
noDataExpression: true,
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Create',
|
|
|
|
value: 'create',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Create a feed',
|
2021-09-18 13:45:57 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Disable',
|
|
|
|
value: 'disable',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Disable a feed',
|
2021-09-18 13:45:57 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Enable',
|
|
|
|
value: 'enable',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Enable a feed',
|
2021-09-18 13:45:57 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Get',
|
|
|
|
value: 'get',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Get a feed',
|
2021-09-18 13:45:57 -07:00
|
|
|
},
|
|
|
|
{
|
2022-09-07 07:51:14 -07:00
|
|
|
name: 'Get Many',
|
2021-09-18 13:45:57 -07:00
|
|
|
value: 'getAll',
|
2022-09-08 08:10:13 -07:00
|
|
|
action: 'Get many feeds',
|
2021-09-18 13:45:57 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Update',
|
|
|
|
value: 'update',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Update a feed',
|
2021-09-18 13:45:57 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'create',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
export const feedFields: INodeProperties[] = [
|
|
|
|
// ----------------------------------------
|
|
|
|
// feed: create
|
|
|
|
// ----------------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Name',
|
|
|
|
name: 'name',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
resource: ['feed'],
|
|
|
|
operation: ['create'],
|
2021-09-18 13:45:57 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Provider',
|
|
|
|
name: 'provider',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
resource: ['feed'],
|
|
|
|
operation: ['create'],
|
2021-09-18 13:45:57 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'URL',
|
|
|
|
name: 'url',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
placeholder: 'https://example.com',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
resource: ['feed'],
|
|
|
|
operation: ['create'],
|
2021-09-18 13:45:57 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Additional Fields',
|
|
|
|
name: 'additionalFields',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
default: {},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
resource: ['feed'],
|
|
|
|
operation: ['create'],
|
2021-09-18 13:45:57 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Distribution',
|
|
|
|
name: 'distribution',
|
|
|
|
type: 'options',
|
|
|
|
default: 0,
|
|
|
|
description: 'Who will be able to see this event once published',
|
|
|
|
options: [
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
name: 'All Communities',
|
|
|
|
value: 3,
|
2021-09-18 13:45:57 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Connected Communities',
|
|
|
|
value: 2,
|
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
name: 'Inherit Event',
|
|
|
|
value: 5,
|
2021-09-18 13:45:57 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Sharing Group',
|
|
|
|
value: 4,
|
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
name: 'This Community Only',
|
|
|
|
value: 1,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Your Organization Only',
|
|
|
|
value: 0,
|
2021-09-18 13:45:57 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Rules',
|
|
|
|
name: 'json',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
description: 'Filter rules for the feed',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------------
|
|
|
|
// feed: disable
|
|
|
|
// ----------------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Feed ID',
|
|
|
|
name: 'feedId',
|
|
|
|
description: 'UUID or numeric ID of the feed',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
resource: ['feed'],
|
|
|
|
operation: ['disable'],
|
2021-09-18 13:45:57 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------------
|
|
|
|
// feed: enable
|
|
|
|
// ----------------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Feed ID',
|
|
|
|
name: 'feedId',
|
|
|
|
description: 'UUID or numeric ID of the feed',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
resource: ['feed'],
|
|
|
|
operation: ['enable'],
|
2021-09-18 13:45:57 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------------
|
|
|
|
// feed: get
|
|
|
|
// ----------------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Feed ID',
|
|
|
|
name: 'feedId',
|
|
|
|
description: 'UUID or numeric ID of the feed',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
resource: ['feed'],
|
|
|
|
operation: ['get'],
|
2021-09-18 13:45:57 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Return All',
|
|
|
|
name: 'returnAll',
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
|
|
|
description: 'Whether to return all results or only up to a given limit',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
resource: ['feed'],
|
|
|
|
operation: ['getAll'],
|
2021-09-18 13:45:57 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Limit',
|
|
|
|
name: 'limit',
|
|
|
|
type: 'number',
|
|
|
|
default: 50,
|
|
|
|
description: 'Max number of results to return',
|
|
|
|
typeOptions: {
|
|
|
|
minValue: 1,
|
|
|
|
},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
resource: ['feed'],
|
|
|
|
operation: ['getAll'],
|
|
|
|
returnAll: [false],
|
2021-09-18 13:45:57 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------------
|
|
|
|
// feed: update
|
|
|
|
// ----------------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Feed ID',
|
|
|
|
name: 'feedId',
|
|
|
|
description: 'ID of the feed to update',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
resource: ['feed'],
|
|
|
|
operation: ['update'],
|
2021-09-18 13:45:57 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Update Fields',
|
|
|
|
name: 'updateFields',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
default: {},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
resource: ['feed'],
|
|
|
|
operation: ['update'],
|
2021-09-18 13:45:57 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Distribution',
|
|
|
|
name: 'distribution',
|
|
|
|
type: 'options',
|
|
|
|
default: 0,
|
|
|
|
description: 'Who will be able to see this event once published',
|
|
|
|
options: [
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
name: 'All Communities',
|
|
|
|
value: 3,
|
2021-09-18 13:45:57 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Connected Communities',
|
|
|
|
value: 2,
|
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
name: 'Inherit Event',
|
|
|
|
value: 5,
|
2021-09-18 13:45:57 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Sharing Group',
|
|
|
|
value: 4,
|
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
name: 'This Community Only',
|
|
|
|
value: 1,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Your Organization Only',
|
|
|
|
value: 0,
|
2021-09-18 13:45:57 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Name',
|
|
|
|
name: 'name',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Provider',
|
|
|
|
name: 'provider',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Rules',
|
|
|
|
name: 'rules',
|
|
|
|
type: 'json',
|
|
|
|
default: '',
|
|
|
|
description: 'Filter rules for the feed',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'URL',
|
|
|
|
name: 'url',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
];
|