@checkfirst/nestjs-outlook 5.3.2 → 5.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,3 +2,19 @@ export type { Event, Calendar, ItemBody, DateTimeTimeZone, Attendee, EmailAddres
2
2
  export interface EventWithTransactionId extends Event {
3
3
  transactionId?: string;
4
4
  }
5
+ export interface BatchRequest {
6
+ id: string;
7
+ method: string;
8
+ url: string;
9
+ }
10
+ export interface BatchResponse<T = unknown> {
11
+ id: string;
12
+ status: number;
13
+ body: T;
14
+ }
15
+ export interface BatchRequestPayload {
16
+ requests: BatchRequest[];
17
+ }
18
+ export interface BatchResponsePayload<T = unknown> {
19
+ responses: BatchResponse<T>[];
20
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkfirst/nestjs-outlook",
3
- "version": "5.3.2",
3
+ "version": "5.4.0",
4
4
  "description": "An opinionated NestJS module for Microsoft Outlook integration that provides easy access to Microsoft Graph API for emails, calendars, and more.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",