@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.
17 lines (16 loc) • 818 B
TypeScript
export * from './services/auth/microsoft-auth.service';
export * from './services/calendar/calendar.service';
export * from './services/email/email.service';
export * from './microsoft-outlook.module';
export * from './interfaces/outlook/token-response.interface';
export * from './interfaces/config/outlook-config.interface';
export * from './enums/permission-scope.enum';
export * from './enums/event-types.enum';
export * from './constants';
export * from './controllers/calendar.controller';
export * from './controllers/microsoft-auth.controller';
export * from './controllers/email.controller';
export * from './dto/outlook-webhook-notification.dto';
export * from './entities/outlook-webhook-subscription.entity';
export * from './repositories/outlook-webhook-subscription.repository';
export * from './types';