cal/packages/app-store/exchangecalendar/enums.ts
copoer 06d13e0f6e
feat: Added option to select the exchange server version (#7908)
* Added option to select the exchange server version

* Fixed linting issues

* Removed yarn changes

* Update packages/app-store/exchangecalendar/lib/CalendarService.ts

Co-authored-by: Joe Au-Yeung <65426560+joeauyeung@users.noreply.github.com>

* Removed requested change

---------

Co-authored-by: Joe Au-Yeung <65426560+joeauyeung@users.noreply.github.com>
Co-authored-by: Peer Richelsen <peeroke@gmail.com>
2023-04-17 10:21:14 -04:00

15 lines
275 B
TypeScript

export enum ExchangeAuthentication {
STANDARD = 0,
NTLM = 1,
}
export enum ExchangeVersion {
Exchange2007_SP1 = 0,
Exchange2010 = 1,
Exchange2010_SP1 = 2,
Exchange2010_SP2 = 3,
Exchange2013 = 4,
Exchange2013_SP1 = 5,
Exchange2015 = 6,
Exchange2016 = 7,
}