@checkfirst/nestjs-outlook
Version:
An opinionated NestJS module for Microsoft Outlook integration that provides easy access to Microsoft Graph API for emails, calendars, and more.
15 lines • 853 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.OutlookEventTypes = void 0;
var OutlookEventTypes;
(function (OutlookEventTypes) {
OutlookEventTypes["USER_AUTHENTICATED"] = "microsoft.auth.user.authenticated";
OutlookEventTypes["EVENT_DELETED"] = "outlook.event.deleted";
OutlookEventTypes["EVENT_CREATED"] = "outlook.event.created";
OutlookEventTypes["EVENT_UPDATED"] = "outlook.event.updated";
OutlookEventTypes["IMPORT_COMPLETED"] = "outlook.calendar.import.completed";
OutlookEventTypes["EMAIL_RECEIVED"] = "outlook.email.received";
OutlookEventTypes["EMAIL_UPDATED"] = "outlook.email.updated";
OutlookEventTypes["EMAIL_DELETED"] = "outlook.email.deleted";
})(OutlookEventTypes || (exports.OutlookEventTypes = OutlookEventTypes = {}));
//# sourceMappingURL=event-types.enum.js.map