
* [CAL-770] add new integration architecture revamp * Type fixes * Type fixes * [CAL-770] Remove tsconfig.tsbuildinfo * [CAL-770] add integration test * Improve google calendar test integration * Remove console.log * Change response any to void in the deleteEvent method * Remove unnecesary const * Add tsconfig.tsbuildinfo to the .gitignore * Remove process env variables as const Co-authored-by: Edward Fernández <edwardfernandez@Edwards-Mac-mini.local> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> Co-authored-by: zomars <zomars@me.com> Co-authored-by: Edward Fernandez <edward.fernandez@rappi.com>
10 lines
279 B
TypeScript
10 lines
279 B
TypeScript
export const CALDAV_CALENDAR_TYPE = "caldav";
|
|
|
|
export const APPLE_CALENDAR_URL = "https://caldav.icloud.com";
|
|
|
|
export const CALENDAR_INTEGRATIONS_TYPES = {
|
|
apple: "apple_calendar",
|
|
caldav: "caldav_calendar",
|
|
google: "google_calendar",
|
|
office365: "office365_calendar",
|
|
};
|