@villedemontreal/jwt-validator
Version:
Module to validate JWT (JSON Web Tokens)
14 lines • 512 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GluuUserType = void 0;
/**
* The possible values of the "userType", in a JWT.
* Note that an empty (or non existent) "userType"
* means it is the JWT of a regular citizen.
*/
var GluuUserType;
(function (GluuUserType) {
GluuUserType["EMPLOYEE"] = "employee";
GluuUserType["SERVICE_ACCOUNT"] = "serviceAccount";
})(GluuUserType || (exports.GluuUserType = GluuUserType = {}));
//# sourceMappingURL=gluuUserType.js.map