mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 03:12:15 +00:00
✨ Added OAuth2 support
This commit is contained in:
26
packages/nodes-base/nodes/Google/Calendar/EventInterface.ts
Normal file
26
packages/nodes-base/nodes/Google/Calendar/EventInterface.ts
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user