fase(17): licensing module with RSA validation
This commit is contained in:
20
dist/modules/licensing/index.js
vendored
Normal file
20
dist/modules/licensing/index.js
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.LicensingController = exports.requireFeature = exports.RSALicenseValidator = exports.LicenseService = exports.ENTERPRISE_FEATURES = exports.PRO_FEATURES = exports.FREE_FEATURES = exports.FeatureEntitlement = exports.LicensePlan = exports.License = void 0;
|
||||
var License_1 = require("./domain/entities/License");
|
||||
Object.defineProperty(exports, "License", { enumerable: true, get: function () { return License_1.License; } });
|
||||
var LicensePlan_1 = require("./domain/value-objects/LicensePlan");
|
||||
Object.defineProperty(exports, "LicensePlan", { enumerable: true, get: function () { return LicensePlan_1.LicensePlan; } });
|
||||
var FeatureEntitlement_1 = require("./domain/value-objects/FeatureEntitlement");
|
||||
Object.defineProperty(exports, "FeatureEntitlement", { enumerable: true, get: function () { return FeatureEntitlement_1.FeatureEntitlement; } });
|
||||
Object.defineProperty(exports, "FREE_FEATURES", { enumerable: true, get: function () { return FeatureEntitlement_1.FREE_FEATURES; } });
|
||||
Object.defineProperty(exports, "PRO_FEATURES", { enumerable: true, get: function () { return FeatureEntitlement_1.PRO_FEATURES; } });
|
||||
Object.defineProperty(exports, "ENTERPRISE_FEATURES", { enumerable: true, get: function () { return FeatureEntitlement_1.ENTERPRISE_FEATURES; } });
|
||||
var LicenseService_1 = require("./application/LicenseService");
|
||||
Object.defineProperty(exports, "LicenseService", { enumerable: true, get: function () { return LicenseService_1.LicenseService; } });
|
||||
var RSALicenseValidator_1 = require("./infrastructure/validators/RSALicenseValidator");
|
||||
Object.defineProperty(exports, "RSALicenseValidator", { enumerable: true, get: function () { return RSALicenseValidator_1.RSALicenseValidator; } });
|
||||
var FeatureGateMiddleware_1 = require("./infrastructure/middleware/FeatureGateMiddleware");
|
||||
Object.defineProperty(exports, "requireFeature", { enumerable: true, get: function () { return FeatureGateMiddleware_1.requireFeature; } });
|
||||
var LicensingController_1 = require("./infrastructure/http/LicensingController");
|
||||
Object.defineProperty(exports, "LicensingController", { enumerable: true, get: function () { return LicensingController_1.LicensingController; } });
|
||||
Reference in New Issue
Block a user