This repository has been archived by the owner on May 18, 2020. It is now read-only.
Releases: jasonjoh/node-outlook
Releases · jasonjoh/node-outlook
Added replyToMessage and replyToAllMessage functions
- New methods to reply or reply all to a message
- Bug fixes to
syncEvents
(here and here)
Added syncEvents and getMessageAttachments
Bump version Bumping package version for update on NPM
Added getUser method
Added base.getUser
to enable getting information about a user via the /Me
endpoint.
Also added the mail.syncMessages
method which isn't fully tested yet.
Expanded API
- Fleshed out the mail, calendar, and contact APIs to include basic CRUD for the
Message
,Event
, andContact
entities. - Added a reference page (generated with jsdoc-to-markdown). Check the reference/node-outlook.md file for details on the new methods.
- Added a per-call user parameter.
Removed console.log calls from Cordova library
Some console.log calls were left in to echo the API requests and responses to the console. Removed those.
Added more event API calls
- getEvent
- updateEvent
- deleteEvent
Corrected Prefer header bug fix
Previous attempt at fix had treated the value like an object rather than an array.
Minor bug fixes
- Fixed bug with
Prefer
header that caused it to overwrite other values - Changed default API version to 1.0
Added base implementations of calendar and contacts namespaces
- Added base implementations of calendar and contacts namespaces
- Added ability to set a preferred time zone for calendar API
- Updated README to recommend usage of new interface and deprecation of
old. - Updated version to 1.1.0
Added X-AnchorMaillbox support
Added ability to set the X-AnchorMailbox header to the user's email to optimize performance of API calls. This requires modifying your getAccessToken function to pass an object instead of just the string access token.