Skip to content

Commit

Permalink
Add support for masterEventID on Events
Browse files Browse the repository at this point in the history
  • Loading branch information
Subash Pradhan committed Oct 25, 2024
1 parent 214cb58 commit 5bfdb96
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/models/events.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ListQueryParams } from './listQueryParams.js';
import { Subset } from '../utils.js';
import { NylasBaseResponse } from './response.js';
import { NylasApiErrorResponseData } from './error.js';
import { ListQueryParams } from './listQueryParams.js';
import { NylasBaseResponse } from './response.js';

/**
* Interface representing a Nylas Event object.
Expand Down Expand Up @@ -284,6 +284,10 @@ export interface ListEventQueryParams extends ListQueryParams {
* Not supported for virtual calendars.
*/
attendees?: string[];
/**
* Master event id if recurring events.
*/
masterEventId?: string;
}

/**
Expand Down

0 comments on commit 5bfdb96

Please sign in to comment.