UNPKG

reveal-sdk-node

Version:

RevealBI Node.js SDK

26 lines (25 loc) 1.01 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.RVSharePointAuthenticationMethod = void 0; /** * SharePoint authentication methods */ var RVSharePointAuthenticationMethod; (function (RVSharePointAuthenticationMethod) { /** * Windows (NT) authentication */ RVSharePointAuthenticationMethod[RVSharePointAuthenticationMethod["Windows"] = 0] = "Windows"; /** * Forms based authentication */ RVSharePointAuthenticationMethod[RVSharePointAuthenticationMethod["Form"] = 1] = "Form"; /** * Office 365 authentication */ RVSharePointAuthenticationMethod[RVSharePointAuthenticationMethod["Office365"] = 2] = "Office365"; /** * Web based login authentication */ RVSharePointAuthenticationMethod[RVSharePointAuthenticationMethod["WebLogin"] = 3] = "WebLogin"; })(RVSharePointAuthenticationMethod = exports.RVSharePointAuthenticationMethod || (exports.RVSharePointAuthenticationMethod = {}));