2024-01-03 03:08:16 -08:00
|
|
|
import type { IExecuteFunctions, INodeExecutionData, INodeProperties } from 'n8n-workflow';
|
|
|
|
|
|
|
|
import { updateDisplayOptions } from '@utils/utilities';
|
|
|
|
|
2024-12-19 09:46:14 -08:00
|
|
|
import * as createEvent from '../../../ICalendar/createEvent.operation';
|
|
|
|
|
2024-01-03 03:08:16 -08:00
|
|
|
export const description: INodeProperties[] = updateDisplayOptions(
|
|
|
|
{
|
|
|
|
show: {
|
|
|
|
operation: ['iCal'],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
createEvent.description,
|
|
|
|
);
|
|
|
|
|
|
|
|
export async function execute(this: IExecuteFunctions, items: INodeExecutionData[]) {
|
|
|
|
const returnData = await createEvent.execute.call(this, items);
|
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|