ews-javascript-api
ews-javascript-api copied to clipboard
EWS API for TypeScript/JavaScript - ported from OfficeDev/ews-managed-api - node, cordova, meteor, Ionic, Electron, Outlook Add-Ins
https://www.typescriptlang.org/docs/release-notes/typescript-2.0.html some nullable type casting can be fixed with this.
one example is Mail app or Outlook apps where web app needs to download javascript files every time. outlook apps can use ews-javascript-api repo in a way to generate soap...
or implement ServiceObjectInfo static `CreateEwsObjectFromXmlElementName` Improvement needed for: - [ ] `SyncResponse.ReadElementsFromXmlJsObject` - [ ] `ServiceObjectInfo.IsFolderType` - needs to be removed
workaround to be removed when #51 is closed.
TypeScript marks this as error when override only one of the function signature from base class.
Bumps [moment-timezone](https://github.com/moment/moment-timezone) from 0.5.34 to 0.5.35. Changelog Sourced from moment-timezone's changelog. 0.5.35 2022-08-23 Fix command injection in data pipeline https://github.com/moment/moment-timezone/security/advisories/GHSA-56x4-j7p9-fcf9 Fix cleartext transmission of sensitive information https://github.com/moment/moment-timezone/security/advisories/GHSA-v78c-4p63-2j6c Thanks to the...
`for (var s in this.Settings)` will iterate over all the prototype members of an array - this probably doesn't matter unless you've done `Array.prototype.whatever = () => {}` - but...
Our customer has Exchange Server installed on-prem, ntlm auth. When we do requests to EWS we get an error: Invalid message signature: Basic realm="mail.domain.com". Any ideas what could be a...
I need to load attachments by their IDs. ```js const attachmentId = ... // getting an attachment id somehow exch.GetAttachment(attachmentId).then((res) => { // expecting to get here }) ``` This...