2020-10-03 02:50:57 -07:00
import {
INodeProperties ,
} from 'n8n-workflow' ;
2021-12-03 00:44:16 -08:00
export const eventOperations : INodeProperties [ ] = [
2020-10-03 02:50:57 -07:00
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2020-10-03 02:50:57 -07:00
displayOptions : {
show : {
resource : [
'event' ,
] ,
} ,
} ,
options : [
{
name : 'Get All' ,
value : 'getAll' ,
description : 'Get all events' ,
2022-07-10 13:50:51 -07:00
action : 'Get all events' ,
2020-10-03 02:50:57 -07:00
} ,
] ,
default : 'getAll' ,
} ,
2021-12-03 00:44:16 -08:00
] ;
2020-10-03 02:50:57 -07:00
2021-12-03 00:44:16 -08:00
export const eventFields : INodeProperties [ ] = [
2020-10-03 02:50:57 -07:00
{
displayName : 'Return All' ,
name : 'returnAll' ,
type : 'boolean' ,
displayOptions : {
show : {
operation : [
'getAll' ,
] ,
resource : [
'event' ,
] ,
} ,
} ,
default : false ,
2022-05-06 14:01:25 -07:00
description : 'Whether to return all results or only up to a given limit' ,
2020-10-03 02:50:57 -07:00
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
displayOptions : {
show : {
operation : [
'getAll' ,
] ,
resource : [
'event' ,
] ,
returnAll : [
false ,
] ,
} ,
} ,
typeOptions : {
minValue : 1 ,
maxValue : 500 ,
} ,
default : 100 ,
2022-05-06 14:01:25 -07:00
description : 'Max number of results to return' ,
2020-10-03 02:50:57 -07:00
} ,
{
displayName : 'Options' ,
name : 'options' ,
type : 'collection' ,
placeholder : 'Add Option' ,
default : { } ,
displayOptions : {
show : {
operation : [
'getAll' ,
] ,
resource : [
'event' ,
] ,
} ,
} ,
options : [
{
2022-06-03 10:23:49 -07:00
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-wrong-for-dynamic-options
displayName : 'Country Code' ,
2020-10-03 02:50:57 -07:00
name : 'country_code' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getEventCountryCodes' ,
} ,
default : '' ,
2022-07-14 13:05:11 -07:00
description : 'Country code of event. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-10-03 02:50:57 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'From Date' ,
2020-10-03 02:50:57 -07:00
name : 'from_date' ,
type : 'dateTime' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Lists events after this date' ,
2020-10-03 02:50:57 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'To Date' ,
2020-10-03 02:50:57 -07:00
name : 'to_date' ,
type : 'dateTime' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Lists events before this date' ,
2020-10-03 02:50:57 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Type Name or ID' ,
2020-10-03 02:50:57 -07:00
name : 'type' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getEventTypes' ,
} ,
default : '' ,
2022-07-14 13:05:11 -07:00
description : 'Type of event. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2020-10-03 02:50:57 -07:00
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Upcoming Events Only' ,
2020-10-03 02:50:57 -07:00
name : 'upcoming_events_only' ,
type : 'boolean' ,
default : true ,
2022-06-20 07:54:01 -07:00
description : 'Whether to list only upcoming events' ,
2020-10-03 02:50:57 -07:00
} ,
] ,
} ,
2021-12-03 00:44:16 -08:00
] ;