Added OAuth2 support

This commit is contained in:
ricardo
2020-05-30 15:09:04 -04:00
parent f1f09d4a03
commit bf02ae4f57
17 changed files with 305 additions and 156 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;
}