Google Calendar Integration

done

 Google Calendar Integration
This commit is contained in:
ricardo
2020-03-13 21:22:36 -04:00
parent 24670cb7ee
commit eb1640c67e
8 changed files with 1661 additions and 5 deletions

View File

@@ -0,0 +1,26 @@
import { IDataObject } from "n8n-workflow";
export interface IReminder {
useDefault?: boolean;
overrides?: IDataObject[];
}
export interface IEvent {
attendees?: IDataObject[];
colorId?: string;
description?: string;
end?: IDataObject;
guestsCanInviteOthers?: boolean;
guestsCanModify?: boolean;
guestsCanSeeOtherGuests?: boolean;
id?: string;
location?: string;
maxAttendees?: number;
recurrence?: string[];
reminders?: IReminder;
sendUpdates?: string;
start?: IDataObject;
summary?: string;
transparency?: string;
visibility?: string;
}