lbx-jwt
Version:
Provides JWT authentication for loopback applications. Includes storing roles inside tokens and handling refreshing. Built-in reuse detection.
30 lines • 1.68 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AuthenticatorExtensionsAuthenticatorOutputs = void 0;
const tslib_1 = require("tslib");
//TODO: Remove
/* eslint-disable jsdoc/require-jsdoc */
const repository_1 = require("@loopback/repository");
const device_public_key_authenticator_output_model_1 = require("./device-public-key-authenticator-output.model");
const uvm_authenticator_output_model_1 = require("./uvm-authenticator-output.model");
let AuthenticatorExtensionsAuthenticatorOutputs = class AuthenticatorExtensionsAuthenticatorOutputs {
};
exports.AuthenticatorExtensionsAuthenticatorOutputs = AuthenticatorExtensionsAuthenticatorOutputs;
tslib_1.__decorate([
(0, repository_1.property)({
type: device_public_key_authenticator_output_model_1.DevicePublicKeyAuthenticatorOutput,
required: false
}),
tslib_1.__metadata("design:type", device_public_key_authenticator_output_model_1.DevicePublicKeyAuthenticatorOutput)
], AuthenticatorExtensionsAuthenticatorOutputs.prototype, "devicePubKey", void 0);
tslib_1.__decorate([
(0, repository_1.property)({
type: uvm_authenticator_output_model_1.UvmAuthenticatorOutput,
required: false
}),
tslib_1.__metadata("design:type", uvm_authenticator_output_model_1.UvmAuthenticatorOutput)
], AuthenticatorExtensionsAuthenticatorOutputs.prototype, "uvm", void 0);
exports.AuthenticatorExtensionsAuthenticatorOutputs = AuthenticatorExtensionsAuthenticatorOutputs = tslib_1.__decorate([
(0, repository_1.model)()
], AuthenticatorExtensionsAuthenticatorOutputs);
//# sourceMappingURL=authenticator-extensions-authenticator-outputs.model.js.map