nylas
Version:
A NodeJS wrapper for the Nylas REST API for email, contacts, and calendar.
13 lines (12 loc) • 438 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CredentialType = void 0;
/**
* Enum representing the type of credential
*/
var CredentialType;
(function (CredentialType) {
CredentialType["ADMINCONSENT"] = "adminconsent";
CredentialType["SERVICEACCOUNT"] = "serviceaccount";
CredentialType["CONNECTOR"] = "connector";
})(CredentialType || (exports.CredentialType = CredentialType = {}));