
- 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.
77 lines
2.2 KiB
TypeScript
77 lines
2.2 KiB
TypeScript
export interface LiteralObject {
|
|
[key: string]: any;
|
|
}
|
|
/**
|
|
* Interface defining a cache store. Implement this interface to create a custom
|
|
* cache store.
|
|
*
|
|
* @publicApi
|
|
*/
|
|
export interface CacheStore {
|
|
/**
|
|
* Create a key/value pair in the cache.
|
|
*
|
|
* @param key cache key
|
|
* @param value cache value
|
|
*/
|
|
set<T>(key: string, value: T, options?: CacheStoreSetOptions<T> | number): Promise<void> | void;
|
|
/**
|
|
* Retrieve a key/value pair from the cache.
|
|
*
|
|
* @param key cache key
|
|
*/
|
|
get<T>(key: string): Promise<T | undefined> | T | undefined;
|
|
/**
|
|
* Destroy a key/value pair from the cache.
|
|
*
|
|
* @param key cache key
|
|
*/
|
|
del?(key: string): void | Promise<void>;
|
|
}
|
|
export interface CacheStoreSetOptions<T> {
|
|
/**
|
|
* Time to live - amount of time in seconds that a response is cached before it
|
|
* is deleted. Defaults based on your cache manager settings.
|
|
*/
|
|
ttl?: ((value: T) => number) | number;
|
|
}
|
|
/**
|
|
* Interface defining a factory to create a cache store.
|
|
*
|
|
* @publicApi
|
|
*/
|
|
export type CacheStoreFactory = {
|
|
/**
|
|
* Return a configured cache store.
|
|
*
|
|
* @param args Cache manager options received from `CacheModule.register()`
|
|
* or `CacheModule.registerAsync()`
|
|
*/
|
|
create(args: LiteralObject): CacheStore;
|
|
} | ((args: LiteralObject) => CacheStore | Promise<CacheStore>);
|
|
/**
|
|
* Interface defining Cache Manager configuration options.
|
|
*
|
|
* @publicApi
|
|
*/
|
|
export interface CacheManagerOptions {
|
|
/**
|
|
* Cache storage manager. Default is `'memory'` (in-memory store). See
|
|
* [Different stores](https://docs.nestjs.com/techniques/caching#different-stores)
|
|
* for more info.
|
|
*/
|
|
store?: string | CacheStoreFactory | CacheStore;
|
|
/**
|
|
* Time to live - amount of time that a response is cached before it
|
|
* is deleted. Subsequent request will call through the route handler and refresh
|
|
* the cache. Defaults to 5 seconds. In `cache-manager@^4` this value is in seconds.
|
|
* In `cache-manager@^5` this value is in milliseconds.
|
|
*/
|
|
ttl?: number;
|
|
/**
|
|
* Maximum number of responses to store in the cache. Defaults to 100.
|
|
*/
|
|
max?: number;
|
|
isCacheableValue?: (value: any) => boolean;
|
|
}
|