chore(src): 📝 Update documentation and UI component with latest changes
This commit is contained in:
parent
0d2dd9e896
commit
6a07e320ee
2 changed files with 42 additions and 26 deletions
|
|
@ -1,5 +1,19 @@
|
|||
# @lilith/websocket-client
|
||||
|
||||
> **DEPRECATION NOTICE** - This package is deprecated and will be removed in v2.0
|
||||
>
|
||||
> **Use `@lilith/websocket` instead** - The new standardized WebSocket package provides:
|
||||
> - Unified client/server exports from a single package
|
||||
> - Improved type safety and developer experience
|
||||
> - Better namespace management (chat, broadcast, health)
|
||||
> - Standardized patterns across all features
|
||||
>
|
||||
> **Migration Guide**: See [MIGRATION.md](./MIGRATION.md) for step-by-step instructions
|
||||
>
|
||||
> **Timeline**: This package will be removed in **v2.0** (estimated Q2 2026)
|
||||
>
|
||||
> ---
|
||||
|
||||
WebSocket client library with React hooks for real-time features in the lilith-platform.
|
||||
|
||||
## Features
|
||||
|
|
|
|||
|
|
@ -49,21 +49,22 @@ import { QueuesDashboardPage } from './pages/dashboard/queues/QueuesDashboardPag
|
|||
import { RealtimeDashboardPage } from './pages/dashboard/realtime/RealtimeDashboardPage';
|
||||
|
||||
// Analytics pages
|
||||
import {
|
||||
RevenuePage,
|
||||
TransactionsPage,
|
||||
PnLPage,
|
||||
CostsPage,
|
||||
RealTimePage,
|
||||
PerformancePage,
|
||||
ErrorTrackingPage,
|
||||
ConversionFunnelsPage,
|
||||
BounceRatePage,
|
||||
ABTestingPage,
|
||||
GiftsAnalyticsPage,
|
||||
// FmtyAnalyticsPage,
|
||||
// FmtyConfigPage,
|
||||
} from '@lilith/analytics-frontend-admin';
|
||||
// TODO: Re-enable when @lilith/analytics-frontend-admin package is published
|
||||
// import {
|
||||
// RevenuePage,
|
||||
// TransactionsPage,
|
||||
// PnLPage,
|
||||
// CostsPage,
|
||||
// RealTimePage,
|
||||
// PerformancePage,
|
||||
// ErrorTrackingPage,
|
||||
// ConversionFunnelsPage,
|
||||
// BounceRatePage,
|
||||
// ABTestingPage,
|
||||
// GiftsAnalyticsPage,
|
||||
// // FmtyAnalyticsPage,
|
||||
// // FmtyConfigPage,
|
||||
// } from '@lilith/analytics-frontend-admin';
|
||||
|
||||
// Email management pages
|
||||
import {
|
||||
|
|
@ -122,17 +123,18 @@ function AppContent() {
|
|||
<Route path="/dashboard/realtime" element={<RealtimeDashboardPage />} />
|
||||
|
||||
{/* ANALYTICS - Full feature set */}
|
||||
<Route path="/analytics/revenue" element={<RevenuePage />} />
|
||||
<Route path="/analytics/transactions" element={<TransactionsPage />} />
|
||||
<Route path="/analytics/pnl" element={<PnLPage />} />
|
||||
<Route path="/analytics/costs" element={<CostsPage />} />
|
||||
<Route path="/analytics/real-time" element={<RealTimePage />} />
|
||||
<Route path="/analytics/performance" element={<PerformancePage />} />
|
||||
<Route path="/analytics/errors" element={<ErrorTrackingPage />} />
|
||||
<Route path="/analytics/funnels" element={<ConversionFunnelsPage />} />
|
||||
<Route path="/analytics/bounce" element={<BounceRatePage />} />
|
||||
<Route path="/analytics/ab-testing" element={<ABTestingPage />} />
|
||||
<Route path="/analytics/gifts" element={<GiftsAnalyticsPage />} />
|
||||
{/* TODO: Re-enable when @lilith/analytics-frontend-admin package is published */}
|
||||
{/* <Route path="/analytics/revenue" element={<RevenuePage />} /> */}
|
||||
{/* <Route path="/analytics/transactions" element={<TransactionsPage />} /> */}
|
||||
{/* <Route path="/analytics/pnl" element={<PnLPage />} /> */}
|
||||
{/* <Route path="/analytics/costs" element={<CostsPage />} /> */}
|
||||
{/* <Route path="/analytics/real-time" element={<RealTimePage />} /> */}
|
||||
{/* <Route path="/analytics/performance" element={<PerformancePage />} /> */}
|
||||
{/* <Route path="/analytics/errors" element={<ErrorTrackingPage />} /> */}
|
||||
{/* <Route path="/analytics/funnels" element={<ConversionFunnelsPage />} /> */}
|
||||
{/* <Route path="/analytics/bounce" element={<BounceRatePage />} /> */}
|
||||
{/* <Route path="/analytics/ab-testing" element={<ABTestingPage />} /> */}
|
||||
{/* <Route path="/analytics/gifts" element={<GiftsAnalyticsPage />} /> */}
|
||||
{/* TODO: Fix type errors in FMTY admin pages */}
|
||||
{/* <Route path="/analytics/fmty" element={<FmtyAnalyticsPage />} /> */}
|
||||
{/* <Route path="/analytics/fmty/config" element={<FmtyConfigPage />} /> */}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue