editia-core
Version:
Core services and utilities for Editia applications - Authentication, Monetization, Video Generation Types, and Database Management
14 lines • 932 B
JavaScript
;
/**
* Authentication Middleware - Main Export
*
* This file exports all authentication-related middleware.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.createAuthMiddleware = exports.optionalAuth = exports.requireProAccess = exports.authenticateUser = void 0;
var authenticate_1 = require("./authenticate");
Object.defineProperty(exports, "authenticateUser", { enumerable: true, get: function () { return authenticate_1.authenticateUser; } });
Object.defineProperty(exports, "requireProAccess", { enumerable: true, get: function () { return authenticate_1.requireProAccess; } });
Object.defineProperty(exports, "optionalAuth", { enumerable: true, get: function () { return authenticate_1.optionalAuth; } });
Object.defineProperty(exports, "createAuthMiddleware", { enumerable: true, get: function () { return authenticate_1.createAuthMiddleware; } });
//# sourceMappingURL=index.js.map