UNPKG

editia-core

Version:

Core services and utilities for Editia applications - Authentication, Monetization, Video Generation Types, and Database Management

49 lines 2.14 kB
"use strict"; /** * Editia Core - Main Export * * This is the main entry point for the Editia Core package. * It provides a unified interface for authentication, monetization, and feature management. */ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __exportStar = (this && this.__exportStar) || function(m, exports) { for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.PACKAGE_NAME = exports.VERSION = void 0; // ============================================================================ // CORE EXPORTS // ============================================================================ // Types and utilities __exportStar(require("./types"), exports); // Video generation types and validation __exportStar(require("./video"), exports); // React Native hooks __exportStar(require("./hooks"), exports); // Middleware __exportStar(require("./middleware"), exports); // ============================================================================ // SERVICES // ============================================================================ // Authentication services __exportStar(require("./services/auth"), exports); // Monetization services __exportStar(require("./services/monetization"), exports); // User usage services __exportStar(require("./services/user-usage"), exports); // ============================================================================ // VERSION INFO // ============================================================================ exports.VERSION = '2.1.1'; exports.PACKAGE_NAME = 'editia-core'; //# sourceMappingURL=index.js.map