@kenniy/godeye-data-contracts
Version:
Enterprise-grade base repository architecture for GOD-EYE microservices with zero overhead and maximum code reuse
14 lines (13 loc) • 382 B
JavaScript
;
/**
* Authentication-related enums
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.UserType = void 0;
var UserType;
(function (UserType) {
UserType["CUSTOMER"] = "customer";
UserType["BUSINESS_USER"] = "business";
UserType["ADMIN"] = "admin";
UserType["AGENT"] = "agent";
})(UserType || (exports.UserType = UserType = {}));