@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.
11 lines (10 loc) • 560 B
TypeScript
import { Response, Request } from 'express';
import { CalendarService } from '../services/calendar/calendar.service';
import { OutlookWebhookNotificationDto } from '../dto/outlook-webhook-notification.dto';
export declare class CalendarController {
private readonly calendarService;
private readonly logger;
constructor(calendarService: CalendarService);
handleCalendarWebhook(validationToken: string, notificationBody: OutlookWebhookNotificationDto, req: Request, res: Response): Promise<void>;
private processCalendarNotificationBatch;
}