Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -803,3 +803,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed
- **BREAKING**: `DeltaStream` now also supports `view=expanded`, `exclude_types`, and `include_types`, as well as any arbitrary query string param. `Delta::startStream` now takes an object as a second argument for query string params, instead of an `exclude_types` array

### Added
- Add missing `originalStartTime` field to `Event` model for recurring event instances
5 changes: 5 additions & 0 deletions src/models/events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,11 @@ export interface Event {
* Master event id if recurring events.
*/
masterEventId?: string;
/**
* The original start time of the event, in Unix timestamp format.
* This field is present only if the event is an instance of a recurring event.
*/
originalStartTime?: number;
/**
* Notetaker meeting bot settings
*/
Expand Down
Loading