2023-01-27 03:22:44 -08:00
|
|
|
import type { INodeProperties } from 'n8n-workflow';
|
2020-10-12 01:05:16 -07:00
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const eventOperations: INodeProperties[] = [
|
2020-10-12 01:05:16 -07:00
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
2022-05-20 14:47:24 -07:00
|
|
|
noDataExpression: true,
|
2020-10-12 01:05:16 -07:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
resource: ['event'],
|
2020-10-12 01:05:16 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Get',
|
|
|
|
value: 'get',
|
|
|
|
description: 'Get single event by ID',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Get an event by ID',
|
2020-10-12 01:05:16 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'get',
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|
2020-10-12 01:05:16 -07:00
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const eventFields: INodeProperties[] = [
|
2020-10-12 01:05:16 -07:00
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* event:get */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
|
|
|
displayName: 'Room ID',
|
|
|
|
name: 'roomId',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
placeholder: '!123abc:matrix.org',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
operation: ['get'],
|
|
|
|
resource: ['event'],
|
2020-10-12 01:05:16 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
description: 'The room related to the event',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Event ID',
|
|
|
|
name: 'eventId',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
placeholder: '$1234abcd:matrix.org',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
operation: ['get'],
|
|
|
|
resource: ['event'],
|
2020-10-12 01:05:16 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
required: true,
|
|
|
|
description: 'The room related to the event',
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|