mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
6f95121fac
* 👕 Add `action` to `INodePropertyOptions` * 👕 Apply `node-param-operation-option-without-action` * ✏️ Fix add/remove phrasing * ✏️ Fix email template phrasing * ✏️ Fix add/remove phrasing * ✏️ Fix custom fields phrasing * ✏️ Fix job report phrasing * ✏️ Fix query phrasing * ✏️ Various phrasing fixes * ✏️ Fix final phrasings * ✏️ Remove `conversation` * ✏️ Fix plural
142 lines
2.9 KiB
TypeScript
142 lines
2.9 KiB
TypeScript
import {
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export const calendarOperations: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'calendar',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Availability',
|
|
value: 'availability',
|
|
description: 'If a time-slot is available in a calendar',
|
|
action: 'Get availability in a calendar',
|
|
},
|
|
],
|
|
default: 'availability',
|
|
},
|
|
];
|
|
|
|
export const calendarFields: INodeProperties[] = [
|
|
/* -------------------------------------------------------------------------- */
|
|
/* calendar:availability */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Calendar Name or ID',
|
|
name: 'calendar',
|
|
type: 'options',
|
|
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getCalendars',
|
|
},
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'calendar',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Start Time',
|
|
name: 'timeMin',
|
|
type: 'dateTime',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'availability',
|
|
],
|
|
resource: [
|
|
'calendar',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
description: 'Start of the interval',
|
|
},
|
|
{
|
|
displayName: 'End Time',
|
|
name: 'timeMax',
|
|
type: 'dateTime',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'availability',
|
|
],
|
|
resource: [
|
|
'calendar',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
description: 'End of the interval',
|
|
},
|
|
{
|
|
displayName: 'Options',
|
|
name: 'options',
|
|
type: 'collection',
|
|
placeholder: 'Add Options',
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'availability',
|
|
],
|
|
resource: [
|
|
'calendar',
|
|
],
|
|
},
|
|
},
|
|
default: {},
|
|
options: [
|
|
{
|
|
displayName: 'Output Format',
|
|
name: 'outputFormat',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Availability',
|
|
value: 'availability',
|
|
description: 'Returns if there are any events in the given time or not',
|
|
},
|
|
{
|
|
name: 'Booked Slots',
|
|
value: 'bookedSlots',
|
|
description: 'Returns the booked slots',
|
|
},
|
|
{
|
|
name: 'RAW',
|
|
value: 'raw',
|
|
description: 'Returns the RAW data from the API',
|
|
},
|
|
],
|
|
default: 'availability',
|
|
description: 'The format to return the data in',
|
|
},
|
|
{
|
|
displayName: 'Timezone Name or ID',
|
|
name: 'timezone',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getTimezones',
|
|
},
|
|
default: '',
|
|
description: 'Time zone used in the response. By default n8n timezone is used. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
|
},
|
|
],
|
|
},
|
|
];
|