@mercury-labs/nest-auth
Version:
Mercury framework auth library. It supports local auth, jwt with both bearer token and cookie, basic auth.
13 lines • 451 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.UserLoggedInEvent = void 0;
class UserLoggedInEvent {
constructor(user, isImpersonated, requestPayload, token) {
this.user = user;
this.isImpersonated = isImpersonated;
this.requestPayload = requestPayload;
this.token = token;
}
}
exports.UserLoggedInEvent = UserLoggedInEvent;
//# sourceMappingURL=user-logged-in.event.js.map