You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-3Lines changed: 12 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,8 +16,10 @@ You can now use this in Ionic, Cordova, Browser based process (where CORS is dis
16
16
* Almost all methods in ExchangeService class is comple with respect to c# counterpart ([based on commit#31951f4 ](https://github.com/OfficeDev/ews-managed-api/commit/31951f456519786e41232fa9ff6a3ab20b56cac3)
17
17
* some method skipped as they are not for client side code or are diaognostic methods.
18
18
* Roadmap to 1.0 Beta:
19
-
*~ReWrite XHR/Request and Promise see #94~ done
20
-
*~Rewrite Autodiscover code with fresh Promise approach, this code was my work in very beginning and poorly written, strategy and TypeScript features improved over time which this code isnt taking any advantage of.~
19
+
*~~ReWrite XHR/Request and Promise see #94~~ done
20
+
*~~Rewrite Autodiscover code with fresh Promise approach, this code was my work in very beginning and poorly written, strategy and TypeScript features improved over time which this code isn't taking any advantage of.~~ done
21
+
* use `async/await` and move to `@ewsjs/*` namespace
22
+
* chain `@ewsjs/xhr` to wrap all exports from `@ewsjs/ews`
21
23
* Add jsdoc comment to remaining exported class
22
24
* Roadmap to 1.0
23
25
* fix bugs from Beta
@@ -38,8 +40,15 @@ You can now use this in Ionic, Cordova, Browser based process (where CORS is dis
* new/fix: #324 Autodiscover is back again, improved and supports DNS fallback using Autodiscover SRV records
45
+
* new: #320 Allow access to `HttpResponseHeaders`, you can use `<ExchangeService Instance>.HttpResponseHeaders` to get fresh header from last call to ews service.
46
+
* you can also add a delegate (callback) for `<ExchangeService Instance>.OnResponseHeadersCaptured` which is called after each call to service and when headers are returned.
47
+
48
+
***Breaking Changes**: `<ExchangeService>.HttpHeaders` is now Disctionary instance, compatible with c# disctionary. you can no longer do `service.HttpHeaders[<header>] = value`. do this instead `service.HttpHeaders.Add("header", "value"); `
49
+
50
+
* fix: #322 you can now delete tasks properly
51
+
43
52
44
53
[See older change in CHANGELOG.md](./CHANGELOG.md)
0 commit comments