Add EXTENSIVE logging to useChatWebSocket hook and ChatBox component - every single step logged
WebSocket connection - use public domain kamocrm.com:8443 instead of private IP
- Use public domain with port 8443 (e.g., kamocrm.com:8443) - Public address forwards to NodePort 30843 on private IP 192.168.42.191 - Extracts base domain from...
WebSocket connection - use direct node IP via NodePort 30843 (bypasses Traefik)
- Connect directly to node IP 192.168.42.191:30843 for WebSocket - NodePort 30843 exposes MediaService port 8443 directly - Bypasses Traefik to avoid WebSocket ...
WebSocket Middleware and ServerTransport ingressRoute
- WebSocket अपग्रेड हेडर के लिए मीडिया-वेब्सकेट-अपग्रेड मिडलवेयर जोड़ा गया - HTTP / 2 को अक्षम करने के लिए मीडिया-वेबसोकेट-ट्रांसपोर्ट जोड़ा गया (WebSocket को H...
WebSocket कनेक्शन - प्रत्यक्ष बंदरगाह 8443 के बजाय ट्रेफिक प्रवेश का उपयोग करें
- मानक एचटीटीपी पोर्ट (443) पर ट्राफिक के माध्यम से कनेक्ट करने के लिए वेबसोकेट यूआरएल बदल गया - डोमेन कनेक्शन से हटाए गए पोर्ट 8443 (Traefik मार्गों बंदरगाह 80...
WebSocket live message delivery - disable ChatMessageHandler subscription, enhance logging
- Disabled ChatMessageHandler subscription to chat.session.> that was consuming messages without forwarding to WebSocket - Enhanced WebSocketConfig logging to t...
संदेश को फिर से खेलना रोकने के लिए सभी से नए लोगों से NATS डिलीवरनीति बदलें - केवल सदस्यता के बाद नए संदेश वितरित करें
Use session GUID directly as NATS consumer name - Session GUID is already unique, no need for prefix - Simplifies code and consumer naming
NATS सदस्यता में अद्वितीय उपभोक्ता नामों के लिए समर्थन जोड़ें - ओवरलोडेड सब्सक्राइब करें () विधि जो कस्टम उपभोक्ता नाम को स्वीकार करती है - कई चैट सत्रों को स्वतंत्र NATS उपभोक्ताओं को स्वतंत्र रखने की अनुमति देता है - मुद्दे को ठीक करता है जहां सभी सत्रों ने समान उपभोक्ता को साझा किया जिससे संदेश वितरण संघर्ष होता है।
Prevent self-chat and improve session creation error handling - Add validation in MemberItem to prevent opening chat with own member ID - Add backend validation in MediaController to prevent self-chat sessions - Improve error handling in ChatDock to not retry 4xx client errors
Ensure page fits viewport while preserving internal content scrollbars
Resolve vertical overflow on settings member page by removing viewport height calculations
Increase logo size and adjust welcome text layout
- Increased logo size from 200x80 to 300x120 - Positioned welcome text to start at right edge of logo - Added explicit left text alignment - Improved responsive...
Replace MUI Grid with CSS Grid for compatibility with MUI v7
- Replaced Grid component with Box using CSS Grid layout - Maintains responsive breakpoints (xs: 1, sm: 2, md: 3, lg: 4 columns) - Fixes TypeScript build error ...
Create welcome presentation page with feature cards
- Added full logo display at top left using ThemeLogo component - Created modern, polished welcome page with feature cards grid - Each feature card includes ico...
मर्ज पुल अनुरोध # 3801 लोकीमॉर्टी / स्कीप-रियलटाइम-एनीम से
ठीक करें: डेटा अपरिवर्तित होने पर वास्तविक समय चार्ट एनीमेशन छोड़ दें
Remove glitchy row animations when toggling checkboxes - Replace 'transition: all' with specific property transitions to prevent layout animations - Memoize sortedFields array to prevent unnecessary recreations - Only animate visual properties (colors, opacity) instead of layout properties
Move subStatusOptions definition after availableStatuses to fix declaration order
Move statusTabMap definition after availableStatuses to fix build error
बाजारों में कस्टम फॉर्म समर्थन जोड़ें - ऑर्डरिंग के साथ कई-से-मैनी संबंधों के लिए मार्केट कस्टमफॉर्म इकाई जोड़ें - कस्टम फॉर्म एसोसिएशनों के प्रबंधन के लिए सर्विस विधियां जोड़ें - कस्टम फॉर्म एसोसिएशनों का समर्थन करने के लिए लीडमार्केट डीटीओ को अपडेट करें - कस्टम फॉर्म एसोसिएशनों का समर्थन करने के लिए डीटीओ को अपडेट करने का अनुरोध करें - कस्टम फॉर्म एसोसिएशनों के प्रबंधन के लिए सर्विस विधियां जोड़ें
Add missing Next.js API route handlers for custom-forms
- Create /api/security/custom-forms route handler for GET and POST - Create /api/security/custom-forms/[id] route handler for GET, PUT, and DELETE - Proxy reque...
Improve form creation error handling and validation
- Filter out fields with empty fieldIds before sending to backend - Filter out empty stacks from form data - Add validation error if fieldId is invalid during d...
कस्टमफॉर्मसर्विस में शून्य जाँच और सत्यापन जोड़ें
- NullPointerException को रोकने के लिए फ़ील्ड आईडी के लिए null / empty चेक जोड़ें - स्पष्ट त्रुटि संदेशों के साथ आवश्यक फ़ील्ड (फील्ड टाइप, शीर्षक, FieldId) के ...
Add missing imports in FormEditor
- Add FIELD_TYPES_ARRAY import from fieldTypes - Add validateFieldId and normalizeFieldId imports from fieldValidation - Fixes TypeScript compilation errors
Replace Grid with CSS Grid layout in FieldTypeSelector
- Remove Grid component usage that was causing TypeScript errors - Replace with Box using CSS Grid for responsive layout - Maintains same visual layout and resp...
Fix TypeScript errors in FieldTypeSelector and remove unused imports
- Replace dynamic icon lookup with explicit icon map to avoid type assertion issues - Import all required icons directly from lucide-react - Remove unused Field...
Fix TypeScript errors in FieldConfigurationPanel
- Replace array.includes() with direct equality checks to avoid type narrowing issues - Remove unused Card import from FormEditor - Prefix unused stackIndex par...
Fix build errors in custom forms components
- Fix import error: getAllFields should be imported from utils, not fieldValidation - Fix TypeScript errors: Replace 'any' types with proper FieldType - Fix une...
जैसा कि आप शिपिंग देखते हैं?
इन अद्यतनों में से प्रत्येक स्वचालित रूप से अपने कार्यक्षेत्र में उतरता है। प्रारंभ करें और सप्ताह के बाद इसे सप्ताह के अंत में देखें।.