Skip to content

Commit d91a3a9

Browse files
authored
fix: update event status type to use 'maybe' instead of 'tentative' (#641)
The event status type in the Event interface was incorrectly using 'tentative' instead of 'maybe' as one of its possible values. This change updates the type to match the API documentation. Changes: - Update Status type to use 'maybe' instead of 'tentative' - Update CHANGELOG.md Fixes #626
1 parent e4771d7 commit d91a3a9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Changelog
22

33
### Unreleased
4+
* Fix event status type to use 'maybe' instead of 'tentative' in Event interface to match API documentation
45
* Add support for 'zoom' as a provider type in Auth module
5-
* Fixed Add missing `/cancel` suffix in Notetaker API endpoint
6-
6+
* Fix Add missing `/cancel` suffix in Notetaker API endpoint
77

88
### 7.9.0 / 2025-04-30
99
* Add support for Notetaker API endpoints

src/models/events.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ export interface ListImportEventQueryParams extends ListQueryParams {
396396
/**
397397
* Enum representing the status of an event.
398398
*/
399-
type Status = 'confirmed' | 'tentative' | 'cancelled';
399+
type Status = 'confirmed' | 'maybe' | 'cancelled';
400400

401401
/**
402402
* Enum representing the status of an RSVP response.

0 commit comments

Comments
 (0)