// Set custom unread count for special notificationsasync function setCustomNotification(userId, channelId, channelType, count) { try { await setUnreadCount({ uid: userId, channel_id: channelId, channel_type: channelType, unread: count }); // Update UI with custom badge updateNotificationBadge(channelId, count); // Show system notification if count > 0 if (count > 0) { showSystemNotification(`${count} new items in ${channelId}`); } } catch (error) { console.error('Failed to set custom notification:', error); }}