import { INodeProperties, } from 'n8n-workflow'; export const eventOperations = [ { displayName: 'Operation', name: 'operation', type: 'options', displayOptions: { show: { resource: [ 'event', ], }, }, options: [ { name: 'Create', value: 'create', description: 'Add a event to calendar', }, { name: 'Delete', value: 'delete', description: 'Delete an event', }, { name: 'Get', value: 'get', description: 'Retrieve an event', }, { name: 'Get All', value: 'getAll', description: 'Retrieve all events from a calendar', }, { name: 'Update', value: 'update', description: 'Update an event', }, ], default: 'create', description: 'The operation to perform.', }, ] as INodeProperties[]; export const eventFields = [ /* -------------------------------------------------------------------------- */ /* event:getAll */ /* -------------------------------------------------------------------------- */ { displayName: 'Calendar ID', name: 'calendar', type: 'options', typeOptions: { loadOptionsMethod: 'getCalendars', }, required: true, displayOptions: { show: { resource: [ 'event', ], }, }, default: '', }, /* -------------------------------------------------------------------------- */ /* event:create */ /* -------------------------------------------------------------------------- */ { displayName: 'Start', name: 'start', type: 'dateTime', required: true, displayOptions: { show: { operation: [ 'create', ], resource: [ 'event', ], }, }, default: '', description: 'Start time of the event.', }, { displayName: 'End', name: 'end', type: 'dateTime', required: true, displayOptions: { show: { operation: [ 'create', ], resource: [ 'event', ], }, }, default: '', description: 'End time of the event.', }, { displayName: 'Use Default Reminders', name: 'useDefaultReminders', type: 'boolean', displayOptions: { show: { operation: [ 'create', ], resource: [ 'event', ], }, }, default: true, }, { displayName: 'Additional Fields', name: 'additionalFields', type: 'collection', placeholder: 'Add Field', default: {}, displayOptions: { show: { operation: [ 'create', ], resource: [ 'event', ], }, }, options: [ { displayName: 'All Day', name: 'allday', type: 'boolean', options: [ { name: 'Yes', value: 'yes', }, { name: 'No', value: 'no', }, ], default: 'no', description: 'Wheater the event is all day or not', }, { displayName: 'Attendees', name: 'attendees', type: 'string', typeOptions: { multipleValues: true, multipleValueButtonText: 'Add Attendee', }, default: '', description: 'The attendees of the event. Multiple ones can be separated by comma.', }, { displayName: 'Color', name: 'color', type: 'options', typeOptions: { loadOptionsMethod: 'getColors', }, default: '', description: 'The color of the event.', }, { displayName: 'Conference Data', name: 'conferenceDataUi', placeholder: 'Add Conference', type: 'fixedCollection', typeOptions: { multipleValues: false, }, default: {}, options: [ { displayName: 'Conference Link', name: 'conferenceDataValues', values: [ { displayName: 'Type', name: 'conferenceSolution', type: 'options', typeOptions: { loadOptionsMethod: 'getConferenceSolutations', loadOptionsDependsOn: [ 'calendar', ], }, default: '', }, ], }, ], description: 'Creates a conference link (Hangouts, Meet etc) and attachs it to the event', }, { displayName: 'Description', name: 'description', type: 'string', typeOptions: { alwaysOpenEditWindow: true, }, default: '', }, { displayName: 'Guests Can Invite Others', name: 'guestsCanInviteOthers', type: 'boolean', default: true, description: 'Whether attendees other than the organizer can invite others to the event', }, { displayName: 'Guests Can Modify', name: 'guestsCanModify', type: 'boolean', default: false, description: 'Whether attendees other than the organizer can modify the event', }, { displayName: 'Guests Can See Other Guests', name: 'guestsCanSeeOtherGuests', type: 'boolean', default: true, description: `Whether attendees other than the organizer can see who the event's attendees are.`, }, { displayName: 'ID', name: 'id', type: 'string', default: '', description: 'Opaque identifier of the event', }, { displayName: 'Location', name: 'location', type: 'string', default: '', description: 'Geographic location of the event as free-form text.', }, { displayName: 'Max Attendees', name: 'maxAttendees', type: 'number', default: 0, description: `The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned`, }, { displayName: 'Repeat Frecuency', name: 'repeatFrecuency', type: 'options', options: [ { name: 'Daily', value: 'Daily', }, { name: 'Weekly', value: 'weekly', }, { name: 'Monthly', value: 'monthly', }, { name: 'Yearly', value: 'yearly', }, ], default: '', }, { displayName: 'Repeat Until', name: 'repeatUntil', type: 'dateTime', default: '', }, { displayName: 'Repeat How Many Times?', name: 'repeatHowManyTimes', type: 'number', typeOptions: { minValue: 1, }, default: 1, }, { displayName: 'RRULE', name: 'rrule', type: 'string', default: '', description: 'Recurrence rule. When set, the parameters Repeat Frecuency, Repeat How Many Times and Repeat Until are ignored.', }, { displayName: 'Send Updates', name: 'sendUpdates', type: 'options', options: [ { name: 'All', value: 'all', description: 'Notifications are sent to all guests', }, { name: 'External Only', value: 'externalOnly', description: 'Notifications are sent to non-Google Calendar guests only', }, { name: 'None', value: 'none', description: 'No notifications are sent. This value should only be used for migration use case', }, ], description: 'Whether to send notifications about the creation of the new event', default: '', }, { displayName: 'Summary', name: 'summary', type: 'string', default: '', description: 'Title of the event.', }, { displayName: 'Show Me As', name: 'showMeAs', type: 'options', options: [ { name: 'Available', value: 'transparent', description: 'The event does not block time on the calendar', }, { name: 'Busy', value: 'opaque', description: ' The event does block time on the calendar.', }, ], default: 'opaque', description: 'Whether the event blocks time on the calendar', }, { displayName: 'Timezone', name: 'timezone', type: 'options', typeOptions: { loadOptionsMethod: 'getTimezones', }, default: '', description: 'The timezone the event will have set. By default events are schedule on timezone set in n8n.', }, { displayName: 'Visibility', name: 'visibility', type: 'options', options: [ { name: 'Confidential', value: 'confidential', description: 'The event is private. This value is provided for compatibility reasons.', }, { name: 'Default', value: 'default', description: 'Uses the default visibility for events on the calendar.', }, { name: 'Private', value: 'private', description: 'The event is private and only event attendees may view event details.', }, { name: 'Public', value: 'public', description: 'The event is public and event details are visible to all readers of the calendar.', }, ], default: 'default', description: 'Visibility of the event.', }, ], }, { displayName: 'Reminders', name: 'remindersUi', type: 'fixedCollection', default: '', placeholder: 'Add Reminder', typeOptions: { multipleValues: true, }, required: false, displayOptions: { show: { resource: [ 'event', ], operation: [ 'create', ], useDefaultReminders: [ false, ], }, }, options: [ { name: 'remindersValues', displayName: 'Reminder', values: [ { displayName: 'Method', name: 'method', type: 'options', options: [ { name: 'Email', value: 'email', }, { name: 'Popup', value: 'popup', }, ], default: '', }, { displayName: 'Minutes Before', name: 'minutes', type: 'number', typeOptions: { minValue: 0, maxValue: 40320, }, default: 0, }, ], }, ], description: `If the event doesn't use the default reminders, this lists the reminders specific to the event`, }, /* -------------------------------------------------------------------------- */ /* event:delete */ /* -------------------------------------------------------------------------- */ { displayName: 'Event ID', name: 'eventId', type: 'string', required: true, displayOptions: { show: { operation: [ 'delete', ], resource: [ 'event', ], }, }, default: '', }, { displayName: 'Options', name: 'options', type: 'collection', placeholder: 'Add Options', default: {}, displayOptions: { show: { operation: [ 'delete', ], resource: [ 'event', ], }, }, options: [ { displayName: 'Send Updates', name: 'sendUpdates', type: 'options', options: [ { name: 'All', value: 'all', description: 'Notifications are sent to all guests', }, { name: 'External Only', value: 'externalOnly', description: 'Notifications are sent to non-Google Calendar guests only', }, { name: 'None', value: 'none', description: 'No notifications are sent. This value should only be used for migration use case', }, ], description: 'Whether to send notifications about the creation of the new event', default: '', }, ], }, /* -------------------------------------------------------------------------- */ /* event:get */ /* -------------------------------------------------------------------------- */ { displayName: 'Event ID', name: 'eventId', type: 'string', required: true, displayOptions: { show: { operation: [ 'get', ], resource: [ 'event', ], }, }, default: '', }, { displayName: 'Options', name: 'options', type: 'collection', placeholder: 'Add Options', default: {}, displayOptions: { show: { operation: [ 'get', ], resource: [ 'event', ], }, }, options: [ { displayName: 'Max Attendees', name: 'maxAttendees', type: 'number', default: 0, description: `The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned`, }, { displayName: 'Timezone', name: 'timeZone', type: 'options', typeOptions: { loadOptionsMethod: 'getTimezones', }, default: '', description: `Time zone used in the response. The default is the time zone of the calendar.`, }, ], }, /* -------------------------------------------------------------------------- */ /* event:getAll */ /* -------------------------------------------------------------------------- */ { displayName: 'Return All', name: 'returnAll', type: 'boolean', displayOptions: { show: { operation: [ 'getAll', ], resource: [ 'event', ], }, }, default: false, description: 'If all results should be returned or only up to a given limit.', }, { displayName: 'Limit', name: 'limit', type: 'number', displayOptions: { show: { operation: [ 'getAll', ], resource: [ 'event', ], returnAll: [ false, ], }, }, typeOptions: { minValue: 1, maxValue: 500, }, default: 100, description: 'How many results to return.', }, { displayName: 'Options', name: 'options', type: 'collection', placeholder: 'Add Option', default: {}, displayOptions: { show: { operation: [ 'getAll', ], resource: [ 'event', ], }, }, options: [ { displayName: 'iCalUID', name: 'iCalUID', type: 'string', default: '', description: 'Specifies event ID in the iCalendar format to be included in the response', }, { displayName: 'Max Attendees', name: 'maxAttendees', type: 'number', default: 0, description: `The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned`, }, { displayName: 'Order By', name: 'orderBy', type: 'options', options: [ { name: 'Start Time', value: 'startTime', description: 'Order by the start date/time (ascending). This is only available when querying single events (i.e. the parameter singleEvents is True)', }, { name: 'Updated', value: 'updated', description: 'Order by last modification time (ascending).', }, ], default: '', description: 'The order of the events returned in the result.', }, { displayName: 'Query', name: 'query', type: 'string', default: '', description: 'Free text search terms to find events that match these terms in any field, except for extended properties.', }, { displayName: 'Show Deleted', name: 'showDeleted', type: 'boolean', default: false, description: 'Whether to include deleted events (with status equals "cancelled") in the result.', }, { displayName: 'Show Hidden Invitations', name: 'showHiddenInvitations', type: 'boolean', default: false, description: 'Whether to include hidden invitations in the result.', }, { displayName: 'Single Events', name: 'singleEvents', type: 'boolean', default: false, description: `Whether to expand recurring events into instances and only return single one-off events and instances of recurring events, but not the underlying recurring events themselves.`, }, { displayName: 'End Time', name: 'timeMax', type: 'dateTime', default: '', description: `Upper bound (exclusive) for an event's start time to filter by`, }, { displayName: 'Start Time', name: 'timeMin', type: 'dateTime', default: '', description: `Lower bound (exclusive) for an event's end time to filter by`, }, { displayName: 'Timezone', name: 'timeZone', type: 'options', typeOptions: { loadOptionsMethod: 'getTimezones', }, default: '', description: `Time zone used in the response. The default is the time zone of the calendar.`, }, { displayName: 'Updated Min', name: 'updatedMin', type: 'dateTime', default: '', description: `Lower bound for an event's last modification time (as a RFC3339 timestamp) to filter by. When specified, entries deleted since this time will always be included regardless of showDeleted`, }, ], }, /* -------------------------------------------------------------------------- */ /* event:update */ /* -------------------------------------------------------------------------- */ { displayName: 'Event ID', name: 'eventId', type: 'string', required: true, displayOptions: { show: { operation: [ 'update', ], resource: [ 'event', ], }, }, default: '', }, { displayName: 'Use Default Reminders', name: 'useDefaultReminders', type: 'boolean', displayOptions: { show: { operation: [ 'update', ], resource: [ 'event', ], }, }, default: true, }, { displayName: 'Update Fields', name: 'updateFields', type: 'collection', placeholder: 'Add Field', default: {}, displayOptions: { show: { operation: [ 'update', ], resource: [ 'event', ], }, }, options: [ { displayName: 'All Day', name: 'allday', type: 'boolean', options: [ { name: 'Yes', value: 'yes', }, { name: 'No', value: 'no', }, ], default: 'no', description: 'Wheater the event is all day or not', }, { displayName: 'Attendees', name: 'attendees', type: 'string', typeOptions: { multipleValues: true, multipleValueButtonText: 'Add Attendee', }, default: '', description: 'The attendees of the event. Multiple ones can be separated by comma.', }, { displayName: 'Color', name: 'color', type: 'options', typeOptions: { loadOptionsMethod: 'getColors', }, default: '', description: 'The color of the event.', }, { displayName: 'Description', name: 'description', type: 'string', typeOptions: { alwaysOpenEditWindow: true, }, default: '', }, { displayName: 'End', name: 'end', type: 'dateTime', default: '', description: 'End time of the event.', }, { displayName: 'Guests Can Invite Others', name: 'guestsCanInviteOthers', type: 'boolean', default: true, description: 'Whether attendees other than the organizer can invite others to the event', }, { displayName: 'Guests Can Modify', name: 'guestsCanModify', type: 'boolean', default: false, description: 'Whether attendees other than the organizer can modify the event', }, { displayName: 'Guests Can See Other Guests', name: 'guestsCanSeeOtherGuests', type: 'boolean', default: true, description: `Whether attendees other than the organizer can see who the event's attendees are.`, }, { displayName: 'ID', name: 'id', type: 'string', default: '', description: 'Opaque identifier of the event', }, { displayName: 'Location', name: 'location', type: 'string', default: '', description: 'Geographic location of the event as free-form text.', }, { displayName: 'Max Attendees', name: 'maxAttendees', type: 'number', default: 0, description: `The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned`, }, { displayName: 'Repeat Frecuency', name: 'repeatFrecuency', type: 'options', options: [ { name: 'Daily', value: 'Daily', }, { name: 'Weekly', value: 'weekly', }, { name: 'Monthly', value: 'monthly', }, { name: 'Yearly', value: 'yearly', }, ], default: '', }, { displayName: 'Repeat Until', name: 'repeatUntil', type: 'dateTime', default: '', }, { displayName: 'Repeat How Many Times?', name: 'repeatHowManyTimes', type: 'number', typeOptions: { minValue: 1, }, default: 1, }, { displayName: 'RRULE', name: 'rrule', type: 'string', default: '', description: 'Recurrence rule. When set, the parameters Repeat Frecuency, Repeat How Many Times and Repeat Until are ignored.', }, { displayName: 'Start', name: 'start', type: 'dateTime', default: '', description: 'Start time of the event.', }, { displayName: 'Send Updates', name: 'sendUpdates', type: 'options', options: [ { name: 'All', value: 'all', description: ' Notifications are sent to all guests', }, { name: 'External Only', value: 'externalOnly', description: 'Notifications are sent to non-Google Calendar guests only', }, { name: 'None', value: 'none', description: 'No notifications are sent. This value should only be used for migration use case', }, ], description: 'Whether to send notifications about the creation of the new event', default: '', }, { displayName: 'Summary', name: 'summary', type: 'string', default: '', description: 'Title of the event.', }, { displayName: 'Show Me As', name: 'showMeAs', type: 'options', options: [ { name: 'Available', value: 'transparent', description: 'The event does not block time on the calendar', }, { name: 'Busy', value: 'opaque', description: ' The event does block time on the calendar.', }, ], default: 'opaque', description: 'Whether the event blocks time on the calendar', }, { displayName: 'Timezone', name: 'timezone', type: 'options', typeOptions: { loadOptionsMethod: 'getTimezones', }, default: '', description: 'The timezone the event will have set. By default events are schedule on n8n timezone', }, { displayName: 'Visibility', name: 'visibility', type: 'options', options: [ { name: 'Confidential', value: 'confidential', description: 'The event is private. This value is provided for compatibility reasons.', }, { name: 'Default', value: 'default', description: 'Uses the default visibility for events on the calendar.', }, { name: 'Public', value: 'public', description: 'The event is public and event details are visible to all readers of the calendar.', }, { name: 'Private', value: 'private', description: 'The event is private and only event attendees may view event details.', }, ], default: 'default', description: 'Visibility of the event.', }, ], }, { displayName: 'Reminders', name: 'remindersUi', type: 'fixedCollection', default: '', placeholder: 'Add Reminder', typeOptions: { multipleValues: true, }, required: false, displayOptions: { show: { resource: [ 'event', ], operation: [ 'update', ], useDefaultReminders: [ false, ], }, }, options: [ { name: 'remindersValues', displayName: 'Reminder', values: [ { displayName: 'Method', name: 'method', type: 'options', options: [ { name: 'Email', value: 'email', }, { name: 'Popup', value: 'popup', }, ], default: '', }, { displayName: 'Minutes Before', name: 'minutes', type: 'number', typeOptions: { minValue: 0, maxValue: 40320, }, default: 0, }, ], }, ], description: `If the event doesn't use the default reminders, this lists the reminders specific to the event`, }, ] as INodeProperties[];