mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
74 lines
1.3 KiB
TypeScript
74 lines
1.3 KiB
TypeScript
|
import {
|
||
|
INodeProperties,
|
||
|
} from 'n8n-workflow';
|
||
|
|
||
|
export const eventOperations = [
|
||
|
{
|
||
|
displayName: 'Operation',
|
||
|
name: 'operation',
|
||
|
type: 'options',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'event',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
options: [
|
||
|
{
|
||
|
name: 'Get',
|
||
|
value: 'get',
|
||
|
description: 'Get single event by ID',
|
||
|
},
|
||
|
],
|
||
|
default: 'get',
|
||
|
description: 'The operation to perform.',
|
||
|
},
|
||
|
] as INodeProperties[];
|
||
|
|
||
|
|
||
|
export const eventFields = [
|
||
|
|
||
|
/* -------------------------------------------------------------------------- */
|
||
|
/* event:get */
|
||
|
/* -------------------------------------------------------------------------- */
|
||
|
{
|
||
|
displayName: 'Room ID',
|
||
|
name: 'roomId',
|
||
|
type: 'string',
|
||
|
default: '',
|
||
|
placeholder: '!123abc:matrix.org',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
operation: [
|
||
|
'get',
|
||
|
],
|
||
|
resource: [
|
||
|
'event',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
required: true,
|
||
|
description: 'The room related to the event',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Event ID',
|
||
|
name: 'eventId',
|
||
|
type: 'string',
|
||
|
default: '',
|
||
|
placeholder: '$1234abcd:matrix.org',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
operation: [
|
||
|
'get',
|
||
|
],
|
||
|
resource: [
|
||
|
'event',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
required: true,
|
||
|
description: 'The room related to the event',
|
||
|
},
|
||
|
] as INodeProperties[];
|