lbx-jwt
Version:
Provides JWT authentication for loopback applications. Includes storing roles inside tokens and handling refreshing. Built-in reuse detection.
41 lines • 1.54 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AuthenticatorAssertionResponse = void 0;
const tslib_1 = require("tslib");
/* eslint-disable jsdoc/require-jsdoc */
const repository_1 = require("@loopback/repository");
let AuthenticatorAssertionResponse = class AuthenticatorAssertionResponse {
};
exports.AuthenticatorAssertionResponse = AuthenticatorAssertionResponse;
tslib_1.__decorate([
(0, repository_1.property)({
type: 'string',
required: true
}),
tslib_1.__metadata("design:type", String)
], AuthenticatorAssertionResponse.prototype, "clientDataJSON", void 0);
tslib_1.__decorate([
(0, repository_1.property)({
type: 'string',
required: true
}),
tslib_1.__metadata("design:type", String)
], AuthenticatorAssertionResponse.prototype, "authenticatorData", void 0);
tslib_1.__decorate([
(0, repository_1.property)({
type: 'string',
required: true
}),
tslib_1.__metadata("design:type", String)
], AuthenticatorAssertionResponse.prototype, "signature", void 0);
tslib_1.__decorate([
(0, repository_1.property)({
type: 'string',
required: false
}),
tslib_1.__metadata("design:type", String)
], AuthenticatorAssertionResponse.prototype, "userHandle", void 0);
exports.AuthenticatorAssertionResponse = AuthenticatorAssertionResponse = tslib_1.__decorate([
(0, repository_1.model)()
], AuthenticatorAssertionResponse);
//# sourceMappingURL=authenticator-assertion-response.model.js.map