Skip to content

Commit 48ddd48

Browse files
mrashed-devSubash PradhanSubashPradhan
authored
Scheduler API support (#589)
* add config models * add booking models * add comments to the config * changes * add config resource * add sessions resource * add the ability to send a payload with a DELETE * add support for booking endpoints * add scheduler endpoints to nylas entrypoint * lint * Add test case for configuration resources * Fix code formatting for prettier * Fix sessions endpoint * Add test cases for session endpoint * Add test cases for session endpoint * Fix bookings endpoint * Add test cases for booking endpoint, fix types for startTime and endTime on bookingRequest * Fix formatting --------- Co-authored-by: Subash Pradhan <subash.p@macbook-pro.home> Co-authored-by: Subash Pradhan <subash.webdeveloper@gmail.com>
1 parent f00ace7 commit 48ddd48

File tree

12 files changed

+1291
-1
lines changed

12 files changed

+1291
-1
lines changed

src/models/events.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ type ReminderMethod = 'email' | 'popup' | 'sound' | 'display';
371371
/**
372372
* Type representing the different conferencing objects.
373373
*/
374-
type Conferencing = Details | Autocreate;
374+
export type Conferencing = Details | Autocreate;
375375

376376
/**
377377
* Type representing the different objects representing time and duration for events.

src/models/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ export * from './listQueryParams.js';
1717
export * from './messages.js';
1818
export * from './redirectUri.js';
1919
export * from './response.js';
20+
export * from './scheduler.js';
2021
export * from './smartCompose.js';
2122
export * from './threads.js';
2223
export * from './webhooks.js';

0 commit comments

Comments
 (0)