
- Complete NestJS TypeScript implementation with WebSocket support - Direct messaging (DM) and group chat functionality - End-to-end encryption with AES encryption and key pairs - Media file support (images, videos, audio, documents) up to 100MB - Push notifications with Firebase Cloud Messaging integration - Mention alerts and real-time typing indicators - User authentication with JWT and Passport - SQLite database with TypeORM entities and relationships - Comprehensive API documentation with Swagger/OpenAPI - File upload handling with secure access control - Online/offline status tracking and presence management - Message editing, deletion, and reply functionality - Notification management with automatic cleanup - Health check endpoint for monitoring - CORS configuration for cross-origin requests - Environment-based configuration management - Structured for Flutter SDK integration Features implemented: ✅ Real-time messaging with Socket.IO ✅ User registration and authentication ✅ Direct messages and group chats ✅ Media file uploads and management ✅ End-to-end encryption ✅ Push notifications ✅ Mention alerts ✅ Typing indicators ✅ Message read receipts ✅ Online status tracking ✅ File access control ✅ Comprehensive API documentation Ready for Flutter SDK development and production deployment.
26 lines
1.6 KiB
JavaScript
26 lines
1.6 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const tslib_1 = require("tslib");
|
|
tslib_1.__exportStar(require("./bad-request.exception"), exports);
|
|
tslib_1.__exportStar(require("./http.exception"), exports);
|
|
tslib_1.__exportStar(require("./unauthorized.exception"), exports);
|
|
tslib_1.__exportStar(require("./method-not-allowed.exception"), exports);
|
|
tslib_1.__exportStar(require("./not-found.exception"), exports);
|
|
tslib_1.__exportStar(require("./forbidden.exception"), exports);
|
|
tslib_1.__exportStar(require("./not-acceptable.exception"), exports);
|
|
tslib_1.__exportStar(require("./request-timeout.exception"), exports);
|
|
tslib_1.__exportStar(require("./conflict.exception"), exports);
|
|
tslib_1.__exportStar(require("./gone.exception"), exports);
|
|
tslib_1.__exportStar(require("./payload-too-large.exception"), exports);
|
|
tslib_1.__exportStar(require("./unsupported-media-type.exception"), exports);
|
|
tslib_1.__exportStar(require("./unprocessable-entity.exception"), exports);
|
|
tslib_1.__exportStar(require("./internal-server-error.exception"), exports);
|
|
tslib_1.__exportStar(require("./not-implemented.exception"), exports);
|
|
tslib_1.__exportStar(require("./http-version-not-supported.exception"), exports);
|
|
tslib_1.__exportStar(require("./bad-gateway.exception"), exports);
|
|
tslib_1.__exportStar(require("./service-unavailable.exception"), exports);
|
|
tslib_1.__exportStar(require("./gateway-timeout.exception"), exports);
|
|
tslib_1.__exportStar(require("./im-a-teapot.exception"), exports);
|
|
tslib_1.__exportStar(require("./precondition-failed.exception"), exports);
|
|
tslib_1.__exportStar(require("./misdirected.exception"), exports);
|