@optifye/dashboard-core 6.9.0 → 6.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +29 -31
- package/dist/index.d.mts +179 -14
- package/dist/index.d.ts +179 -14
- package/dist/index.js +1852 -893
- package/dist/index.mjs +1846 -895
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1872,6 +1872,8 @@ declare function useVideoConfig(): VideoConfig;
|
|
|
1872
1872
|
* - No timeout promises
|
|
1873
1873
|
* - Simpler event handling
|
|
1874
1874
|
* - Better error recovery
|
|
1875
|
+
* - Proactive token monitoring and refresh
|
|
1876
|
+
* - Session keep-alive mechanism
|
|
1875
1877
|
*/
|
|
1876
1878
|
|
|
1877
1879
|
interface AuthContextType {
|
|
@@ -3568,6 +3570,62 @@ declare const useWorkspaceHealthById: (workspaceId: string, options?: UseWorkspa
|
|
|
3568
3570
|
refetch: () => Promise<void>;
|
|
3569
3571
|
};
|
|
3570
3572
|
|
|
3573
|
+
/**
|
|
3574
|
+
* Workspace health status data from workspace_health_status table
|
|
3575
|
+
*/
|
|
3576
|
+
interface WorkspaceHealthStatusData {
|
|
3577
|
+
id: string;
|
|
3578
|
+
workspace_id: string;
|
|
3579
|
+
line_id: string;
|
|
3580
|
+
company_id: string;
|
|
3581
|
+
last_heartbeat: string;
|
|
3582
|
+
is_healthy: boolean;
|
|
3583
|
+
consecutive_misses: number;
|
|
3584
|
+
instance_memory: any;
|
|
3585
|
+
instance_info: any;
|
|
3586
|
+
workspace_display_name?: string;
|
|
3587
|
+
line_name?: string;
|
|
3588
|
+
company_name?: string;
|
|
3589
|
+
created_at: string;
|
|
3590
|
+
updated_at: string;
|
|
3591
|
+
}
|
|
3592
|
+
/**
|
|
3593
|
+
* Return type for useWorkspaceHealthStatus hook
|
|
3594
|
+
*/
|
|
3595
|
+
interface UseWorkspaceHealthStatusReturn {
|
|
3596
|
+
lastHeartbeat: string | null;
|
|
3597
|
+
timeSinceUpdate: string;
|
|
3598
|
+
isHealthy: boolean;
|
|
3599
|
+
healthData: WorkspaceHealthStatusData | null;
|
|
3600
|
+
loading: boolean;
|
|
3601
|
+
error: MetricsError | null;
|
|
3602
|
+
refetch: () => void;
|
|
3603
|
+
}
|
|
3604
|
+
/**
|
|
3605
|
+
* @hook useWorkspaceHealthStatus
|
|
3606
|
+
* @summary Real-time subscription to workspace health status from workspace_health_status table
|
|
3607
|
+
*
|
|
3608
|
+
* @description This hook subscribes to the workspace_health_status table and monitors
|
|
3609
|
+
* the last_heartbeat column for real-time updates. It automatically formats the time
|
|
3610
|
+
* with whole numbers (e.g., "Less than a minute ago", "4 minutes ago") and updates periodically.
|
|
3611
|
+
*
|
|
3612
|
+
* @param {string} workspaceId - The workspace UUID to monitor
|
|
3613
|
+
*
|
|
3614
|
+
* @returns {UseWorkspaceHealthStatusReturn} Object containing:
|
|
3615
|
+
* - lastHeartbeat: ISO timestamp string or null
|
|
3616
|
+
* - timeSinceUpdate: Formatted relative time string (e.g., "Less than a minute ago", "4 minutes ago")
|
|
3617
|
+
* - isHealthy: Boolean health status flag
|
|
3618
|
+
* - healthData: Full health status record from database
|
|
3619
|
+
* - loading: Loading state
|
|
3620
|
+
* - error: Error state
|
|
3621
|
+
* - refetch: Function to manually refetch data
|
|
3622
|
+
*
|
|
3623
|
+
* @example
|
|
3624
|
+
* const { lastHeartbeat, timeSinceUpdate, isHealthy } = useWorkspaceHealthStatus('workspace-123');
|
|
3625
|
+
* // timeSinceUpdate: "Less than a minute ago" or "4 minutes ago"
|
|
3626
|
+
*/
|
|
3627
|
+
declare const useWorkspaceHealthStatus: (workspaceId: string) => UseWorkspaceHealthStatusReturn;
|
|
3628
|
+
|
|
3571
3629
|
/**
|
|
3572
3630
|
* @typedef {object} DateTimeConfigShape
|
|
3573
3631
|
* @description Shape of the dateTimeConfig object expected from useDateTimeConfig.
|
|
@@ -3627,17 +3685,41 @@ interface UseFormatNumberResult {
|
|
|
3627
3685
|
*/
|
|
3628
3686
|
declare const useFormatNumber: () => UseFormatNumberResult;
|
|
3629
3687
|
|
|
3630
|
-
|
|
3688
|
+
/**
|
|
3689
|
+
* Session Keep-Alive Hook
|
|
3690
|
+
*
|
|
3691
|
+
* Pings backend periodically to keep session alive and prevent timeout.
|
|
3692
|
+
* Operates silently in the background with no user disruption.
|
|
3693
|
+
*
|
|
3694
|
+
* Features:
|
|
3695
|
+
* - Validates session with backend every 5 minutes
|
|
3696
|
+
* - Prevents session timeout during user activity
|
|
3697
|
+
* - Silent operation - only console logs
|
|
3698
|
+
* - Can be disabled if needed
|
|
3699
|
+
*/
|
|
3700
|
+
interface UseSessionKeepAliveOptions {
|
|
3701
|
+
enabled?: boolean;
|
|
3702
|
+
intervalMs?: number;
|
|
3703
|
+
}
|
|
3704
|
+
/**
|
|
3705
|
+
* Hook to keep session alive by periodically validating with backend
|
|
3706
|
+
*
|
|
3707
|
+
* @param options - Configuration options
|
|
3708
|
+
*/
|
|
3709
|
+
declare const useSessionKeepAlive: (options?: UseSessionKeepAliveOptions) => void;
|
|
3710
|
+
|
|
3711
|
+
type UserRole = 'owner' | 'plant_head' | 'supervisor' | 'optifye';
|
|
3631
3712
|
interface AccessControlReturn {
|
|
3632
3713
|
userRole: UserRole | null;
|
|
3633
3714
|
hasAccess: (path: string) => boolean;
|
|
3634
3715
|
accessiblePages: string[];
|
|
3635
3716
|
isPageVisible: (path: string) => boolean;
|
|
3636
3717
|
canAccessPage: (path: string) => boolean;
|
|
3718
|
+
assignedLineIds: string[];
|
|
3719
|
+
assignedFactoryIds: string[];
|
|
3637
3720
|
}
|
|
3638
3721
|
/**
|
|
3639
3722
|
* Hook to manage role-based access control
|
|
3640
|
-
* TEMPORARILY DISABLED: All users have access to all pages
|
|
3641
3723
|
*
|
|
3642
3724
|
* @returns {AccessControlReturn} Access control utilities and state
|
|
3643
3725
|
*/
|
|
@@ -3833,6 +3915,7 @@ interface LineSupervisor {
|
|
|
3833
3915
|
interface UseLineSupervisorReturn {
|
|
3834
3916
|
supervisorName: string | null;
|
|
3835
3917
|
supervisor: LineSupervisor | null;
|
|
3918
|
+
supervisors: LineSupervisor[];
|
|
3836
3919
|
isLoading: boolean;
|
|
3837
3920
|
error: Error | null;
|
|
3838
3921
|
}
|
|
@@ -4068,7 +4151,7 @@ interface PermissionsResponse {
|
|
|
4068
4151
|
declare class AuthService {
|
|
4069
4152
|
private static backendUrl;
|
|
4070
4153
|
/**
|
|
4071
|
-
* Fetch enriched user session from backend
|
|
4154
|
+
* Fetch enriched user session from backend with 5-minute timeout
|
|
4072
4155
|
* This is your SINGLE call to get ALL auth data
|
|
4073
4156
|
*
|
|
4074
4157
|
* @param accessToken - JWT token from Supabase
|
|
@@ -4076,7 +4159,7 @@ declare class AuthService {
|
|
|
4076
4159
|
*/
|
|
4077
4160
|
static getSession(accessToken: string): Promise<EnrichedUser>;
|
|
4078
4161
|
/**
|
|
4079
|
-
* Quick validation check without full profile fetch
|
|
4162
|
+
* Quick validation check without full profile fetch with timeout
|
|
4080
4163
|
* Use this for lightweight auth checks
|
|
4081
4164
|
*
|
|
4082
4165
|
* @param accessToken - JWT token from Supabase
|
|
@@ -4084,7 +4167,7 @@ declare class AuthService {
|
|
|
4084
4167
|
*/
|
|
4085
4168
|
static validateSession(accessToken: string): Promise<boolean>;
|
|
4086
4169
|
/**
|
|
4087
|
-
* Get just permissions (lightweight call)
|
|
4170
|
+
* Get just permissions (lightweight call) with timeout
|
|
4088
4171
|
* Faster than full session fetch
|
|
4089
4172
|
*
|
|
4090
4173
|
* @param accessToken - JWT token from Supabase
|
|
@@ -4837,6 +4920,27 @@ declare const getCompanyMetricsTableName: (companyId: string | undefined, prefix
|
|
|
4837
4920
|
*/
|
|
4838
4921
|
declare const getMetricsTablePrefix: (companyId?: string) => string;
|
|
4839
4922
|
|
|
4923
|
+
/**
|
|
4924
|
+
* Format a timestamp as relative time with whole number precision
|
|
4925
|
+
* Shows minutes, hours, or days ago without real-time seconds
|
|
4926
|
+
*
|
|
4927
|
+
* @param timestamp - Date object or ISO string timestamp
|
|
4928
|
+
* @returns Formatted relative time string (e.g., "Less than a minute ago", "4 minutes ago", "2 hours ago", "3 days ago")
|
|
4929
|
+
*
|
|
4930
|
+
* @example
|
|
4931
|
+
* formatRelativeTime(new Date()) // "Less than a minute ago"
|
|
4932
|
+
* formatRelativeTime("2024-01-01T12:00:00Z") // "4 minutes ago"
|
|
4933
|
+
*/
|
|
4934
|
+
declare function formatRelativeTime(timestamp: string | Date | null | undefined): string;
|
|
4935
|
+
/**
|
|
4936
|
+
* Get milliseconds until next update for a given timestamp
|
|
4937
|
+
* Used to schedule the next UI update for optimal performance
|
|
4938
|
+
*
|
|
4939
|
+
* @param timestamp - Date object or ISO string timestamp
|
|
4940
|
+
* @returns Milliseconds until next meaningful time change
|
|
4941
|
+
*/
|
|
4942
|
+
declare function getNextUpdateInterval(timestamp: string | Date | null | undefined): number;
|
|
4943
|
+
|
|
4840
4944
|
declare function cn(...inputs: ClassValue[]): string;
|
|
4841
4945
|
|
|
4842
4946
|
interface WorkspaceUrlMapping {
|
|
@@ -5389,8 +5493,6 @@ interface BreakNotificationPopupProps {
|
|
|
5389
5493
|
className?: string;
|
|
5390
5494
|
/** Line names mapping for display */
|
|
5391
5495
|
lineNames?: Record<string, string>;
|
|
5392
|
-
/** Path to Axel's profile image */
|
|
5393
|
-
axelImagePath?: string;
|
|
5394
5496
|
}
|
|
5395
5497
|
/**
|
|
5396
5498
|
* Break notification popup component
|
|
@@ -5440,8 +5542,6 @@ interface AxelNotificationPopupProps {
|
|
|
5440
5542
|
onDismiss?: () => void;
|
|
5441
5543
|
/** Optional class name for custom styling */
|
|
5442
5544
|
className?: string;
|
|
5443
|
-
/** Path to Axel's profile image */
|
|
5444
|
-
axelImagePath?: string;
|
|
5445
5545
|
}
|
|
5446
5546
|
/**
|
|
5447
5547
|
* Axel AI Agent notification popup component
|
|
@@ -5617,6 +5717,24 @@ interface DetailedHealthStatusProps extends HealthStatusIndicatorProps {
|
|
|
5617
5717
|
}
|
|
5618
5718
|
declare const DetailedHealthStatus: React__default.FC<DetailedHealthStatusProps>;
|
|
5619
5719
|
|
|
5720
|
+
interface LogoProps {
|
|
5721
|
+
className?: string;
|
|
5722
|
+
alt?: string;
|
|
5723
|
+
}
|
|
5724
|
+
declare const Logo: React__default.FC<LogoProps>;
|
|
5725
|
+
|
|
5726
|
+
interface AxelOrbProps {
|
|
5727
|
+
className?: string;
|
|
5728
|
+
size?: 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
5729
|
+
animate?: boolean;
|
|
5730
|
+
}
|
|
5731
|
+
/**
|
|
5732
|
+
* AxelOrb - A gradient orb component that represents Axel AI
|
|
5733
|
+
* Features a linear gradient from dark blue at the bottom to light blue at the top
|
|
5734
|
+
* Optional floating animation for a more dynamic feel
|
|
5735
|
+
*/
|
|
5736
|
+
declare const AxelOrb: React__default.FC<AxelOrbProps>;
|
|
5737
|
+
|
|
5620
5738
|
interface LinePdfExportButtonProps {
|
|
5621
5739
|
/** The DOM element or a selector string for the element to capture. */
|
|
5622
5740
|
targetElement: HTMLElement | string;
|
|
@@ -6548,6 +6666,8 @@ interface LoadingPageProps {
|
|
|
6548
6666
|
message?: string;
|
|
6549
6667
|
subMessage?: string;
|
|
6550
6668
|
className?: string;
|
|
6669
|
+
onTimeout?: () => void;
|
|
6670
|
+
timeoutMs?: number;
|
|
6551
6671
|
}
|
|
6552
6672
|
declare const LoadingPage: React__default.FC<LoadingPageProps>;
|
|
6553
6673
|
|
|
@@ -6597,13 +6717,42 @@ interface OptifyeLogoLoaderProps {
|
|
|
6597
6717
|
* An enterprise-grade, minimal loader that shows a pulsing Optifye logo.
|
|
6598
6718
|
*
|
|
6599
6719
|
* This component relies solely on TailwindCSS utility classes (animate-pulse) and
|
|
6600
|
-
*
|
|
6601
|
-
*
|
|
6602
|
-
* application. If you need to host the asset elsewhere, simply override the
|
|
6603
|
-
* `logoSrc` via the `className` or by forking this component.
|
|
6720
|
+
* uses the Logo component which imports the logo from the assets directory
|
|
6721
|
+
* (`optifye-logo.png`).
|
|
6604
6722
|
*/
|
|
6605
6723
|
declare const OptifyeLogoLoader: React__default.FC<OptifyeLogoLoaderProps>;
|
|
6606
6724
|
|
|
6725
|
+
/**
|
|
6726
|
+
* Silent Error Boundary
|
|
6727
|
+
*
|
|
6728
|
+
* Catches all React render errors silently and provides minimal fallback UI.
|
|
6729
|
+
* Errors are logged to console only - users never see technical error messages.
|
|
6730
|
+
*
|
|
6731
|
+
* Key features:
|
|
6732
|
+
* - Logs errors to console with full context
|
|
6733
|
+
* - Shows minimal "loading-like" fallback (not scary error messages)
|
|
6734
|
+
* - Provides subtle recovery option
|
|
6735
|
+
* - Tracks errors for analytics
|
|
6736
|
+
* - Only logout as last resort
|
|
6737
|
+
*/
|
|
6738
|
+
|
|
6739
|
+
interface SilentErrorBoundaryProps {
|
|
6740
|
+
children: React__default.ReactNode;
|
|
6741
|
+
}
|
|
6742
|
+
interface SilentErrorBoundaryState {
|
|
6743
|
+
hasError: boolean;
|
|
6744
|
+
errorCount: number;
|
|
6745
|
+
lastError: Error | null;
|
|
6746
|
+
errorInfo: React__default.ErrorInfo | null;
|
|
6747
|
+
}
|
|
6748
|
+
declare class SilentErrorBoundary extends React__default.Component<SilentErrorBoundaryProps, SilentErrorBoundaryState> {
|
|
6749
|
+
constructor(props: SilentErrorBoundaryProps);
|
|
6750
|
+
static getDerivedStateFromError(error: Error): Partial<SilentErrorBoundaryState>;
|
|
6751
|
+
componentDidCatch(error: Error, errorInfo: React__default.ErrorInfo): void;
|
|
6752
|
+
handleClearAndReload: () => void;
|
|
6753
|
+
render(): React__default.ReactNode;
|
|
6754
|
+
}
|
|
6755
|
+
|
|
6607
6756
|
interface VideoPlayerRef {
|
|
6608
6757
|
/** The Video.js player instance */
|
|
6609
6758
|
player: Player | null;
|
|
@@ -6670,6 +6819,8 @@ interface VideoPlayerProps {
|
|
|
6670
6819
|
onLoadedData?: (player: Player) => void;
|
|
6671
6820
|
onSeeking?: (player: Player) => void;
|
|
6672
6821
|
onSeeked?: (player: Player) => void;
|
|
6822
|
+
/** Optional click handler for the video container (for YouTube-style click-to-play/pause) */
|
|
6823
|
+
onClick?: () => void;
|
|
6673
6824
|
}
|
|
6674
6825
|
/**
|
|
6675
6826
|
* Production-ready Video.js React component with HLS support
|
|
@@ -6703,6 +6854,20 @@ interface CroppedVideoPlayerProps extends VideoPlayerProps {
|
|
|
6703
6854
|
*/
|
|
6704
6855
|
declare const CroppedVideoPlayer: React__default.ForwardRefExoticComponent<CroppedVideoPlayerProps & React__default.RefAttributes<VideoPlayerRef>>;
|
|
6705
6856
|
|
|
6857
|
+
interface PlayPauseIndicatorProps {
|
|
6858
|
+
/** Whether to show the indicator */
|
|
6859
|
+
show: boolean;
|
|
6860
|
+
/** Whether the video is playing (true) or paused (false) */
|
|
6861
|
+
isPlaying: boolean;
|
|
6862
|
+
/** Duration in ms for the indicator to fade out (default: 600ms) */
|
|
6863
|
+
duration?: number;
|
|
6864
|
+
}
|
|
6865
|
+
/**
|
|
6866
|
+
* YouTube-style play/pause visual indicator that appears and fades out
|
|
6867
|
+
* when the user clicks to play or pause the video
|
|
6868
|
+
*/
|
|
6869
|
+
declare const PlayPauseIndicator: React__default.FC<PlayPauseIndicatorProps>;
|
|
6870
|
+
|
|
6706
6871
|
interface BackButtonProps {
|
|
6707
6872
|
/**
|
|
6708
6873
|
* Click handler for the back button
|
|
@@ -7565,4 +7730,4 @@ interface ThreadSidebarProps {
|
|
|
7565
7730
|
}
|
|
7566
7731
|
declare const ThreadSidebar: React__default.FC<ThreadSidebarProps>;
|
|
7567
7732
|
|
|
7568
|
-
export { ACTION_NAMES, AIAgentView, AcceptInvite, type AcceptInviteProps, AcceptInviteView, type AcceptInviteViewProps, type AccessControlReturn, type Action, type ActionName, type ActionService, type ActionThreshold, type ActiveBreak, AdvancedFilterDialog, AdvancedFilterPanel, type AnalyticsConfig, type AssignUserToFactoriesInput, type AssignUserToLinesInput, AudioService, AuthCallback, type AuthCallbackProps, AuthCallbackView, type AuthCallbackViewProps, type AuthConfig, AuthProvider, AuthService, type AuthUser, AuthenticatedBottleneckClipsView, AuthenticatedFactoryView, AuthenticatedHelpView, AuthenticatedHomeView, AuthenticatedShiftsView, AuthenticatedTargetsView, AuthenticatedTicketsView, AuthenticatedWorkspaceHealthView, AxelNotificationPopup, type AxelNotificationPopupProps, type AxelSuggestion, BackButton, BackButtonMinimal, BarChart, type BarChartDataItem, type BarChartProps, type BarProps, BaseHistoryCalendar, type BaseHistoryCalendarProps, type BaseLineMetric, type BasePerformanceMetric, BottleneckClipsModal, type BottleneckClipsModalProps, type BottleneckClipsNavigationParams, BottleneckClipsView, type BottleneckClipsViewProps, type BottleneckFilterType, type BottleneckVideo, type BottleneckVideoData, BottlenecksContent, type BottlenecksContentProps, type BreadcrumbItem, type Break, BreakNotificationPopup, type BreakNotificationPopupProps, type BreakRowProps, type CacheEntryWithPrefetch, CachePrefetchStatus, type CachePrefetchStatusCallback, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type ChatMessage, type ChatThread, type CleanupFunction, type ClipCounts, type ClipCountsWithIndex, ClipFilterProvider, type ClipFilterState, type ClipsConfig, CompactWorkspaceHealthCard, type CompanyUser, type CompanyUserWithDetails, type ComponentOverride, CongratulationsOverlay, type CongratulationsOverlayProps, type CoreComponents, type CreateInvitationInput, type CropConfig, CroppedVideoPlayer, type CroppedVideoPlayerProps, type CurrentShiftResult, CycleTimeChart, type CycleTimeChartProps, CycleTimeOverTimeChart, type CycleTimeOverTimeChartProps, DEFAULT_ANALYTICS_CONFIG, DEFAULT_AUTH_CONFIG, DEFAULT_CONFIG, DEFAULT_DATABASE_CONFIG, DEFAULT_DATE_TIME_CONFIG, DEFAULT_ENDPOINTS_CONFIG, DEFAULT_ENTITY_CONFIG, DEFAULT_MAP_VIEW_CONFIG, DEFAULT_SHIFT_CONFIG, DEFAULT_THEME_CONFIG, DEFAULT_VIDEO_CONFIG, DEFAULT_WORKSPACE_CONFIG, DEFAULT_WORKSPACE_POSITIONS, type DashboardConfig, DashboardHeader, type DashboardKPIs, DashboardLayout, type DashboardLayoutProps, DashboardOverridesProvider, DashboardProvider, type DashboardService, type DatabaseConfig, DateDisplay, type DateTimeConfig, DateTimeDisplay, type DateTimeDisplayProps, type DayHistoryData, type DaySummaryData, DebugAuth, DebugAuthView, DetailedHealthStatus, type DiagnosisOption$1 as DiagnosisOption, DiagnosisVideoModal, EmptyStateMessage, type EmptyStateMessageProps, EncouragementOverlay, type EndpointsConfig, type EntityConfig, type ErrorCallback$1 as ErrorCallback, type ExtendedCacheMetrics, type FactoryOverviewMetrics, FactoryView, type FactoryViewProps, FileManagerFilters, FileManagerFilters as FileManagerFiltersProps, FilterDialogTrigger, FirstTimeLoginDebug, FirstTimeLoginHandler, type FormatNumberOptions, type FullyIndexedCallback$1 as FullyIndexedCallback, GaugeChart, type GaugeChartProps, GridComponentsPlaceholder, HamburgerButton, type HamburgerButtonProps, Header, type HeaderProps, type HealthAlertConfig, type HealthAlertHistory, type HealthFilterOptions, type HealthMetrics, type HealthStatus, HealthStatusGrid, HealthStatusIndicator, type HealthSummary, HelpView, type HelpViewProps, type HistoricWorkspaceMetrics, type HistoryCalendarProps, HomeView, type HookOverride, type HourlyAchievement, HourlyOutputChart, type HourlyOutputChartProps, type HourlyPerformance, type IPrefetchManager, type ISTDateProps, ISTTimer, type ISTTimerProps, InlineEditableText, InteractiveOnboardingTour, InvitationService, type InvitationWithDetails, KPICard, type KPICardProps, KPIDetailViewWithDisplayNames as KPIDetailView, type KPIDetailViewProps, KPIGrid, type KPIGridProps, KPIHeader, type KPIHeaderProps, KPISection, type KPITrend, KPIsOverviewView, type KPIsOverviewViewProps, LINE_1_UUID, LINE_2_UUID, LargeOutputProgressChart, type LargeOutputProgressChartProps, LeaderboardDetailViewWithDisplayNames as LeaderboardDetailView, type LeaderboardDetailViewProps, type LeaderboardEntry, Legend, type Line$1 as Line, LineChart, type LineChartDataItem, type LineChartProps, type LineDetails, type LineDisplayData, LineHistoryCalendar, type LineHistoryCalendarProps, type LineInfo, type LineMetrics, LineMonthlyHistory, type LineMonthlyHistoryProps, type LineMonthlyMetric, LineMonthlyPdfGenerator, type LineMonthlyPdfGeneratorProps, type LineNavigationParams, LinePdfExportButton, type LinePdfExportButtonProps, LinePdfGenerator, type LinePdfGeneratorProps, type LineProps, type LineShiftConfig, type LineSnapshot, type LineThreshold, LineWhatsAppShareButton, type LineWhatsAppShareProps, LinesService, LiveTimer, LoadingInline, LoadingInline as LoadingInlineProps, LoadingOverlay, LoadingPage, LoadingSkeleton, LoadingSkeleton as LoadingSkeletonProps, LoadingState, LoadingState as LoadingStateProps, LoginPage, type LoginPageProps, LoginView, type LoginViewProps, MainLayout, type MainLayoutProps, MapGridView, type MapViewConfig, type Metric, MetricCard, type MetricCardProps$1 as MetricCardProps, type MetricsError, MinimalOnboardingPopup, type NavItem, type NavItemTrackingEvent, type NavigationMethod, NewClipsNotification, type NewClipsNotificationProps, NoWorkspaceData, OnboardingDemo, OnboardingTour, type OperatorData, type OperatorInfo, OptifyeAgentClient, type OptifyeAgentContext, type OptifyeAgentRequest, type OptifyeAgentResponse, OptifyeLogoLoader, OutputProgressChart, type OutputProgressChartProps, type OverridesMap, type OverviewLineMetric, type OverviewWorkspaceMetric, PageHeader, type PageHeaderProps, type PageOverride, PieChart, type PieChartProps, type PoorPerformingWorkspace, PrefetchConfigurationError, PrefetchError, PrefetchEvents, type PrefetchKey, type PrefetchManagerConfig, type PrefetchManagerStats, type PrefetchOptions, type PrefetchParams$1 as PrefetchParams, type PrefetchRequest, type PrefetchResult, PrefetchStatus$1 as PrefetchStatus, type PrefetchStatusResult, type PrefetchSubscriptionCallbacks, PrefetchTimeoutError, type ProfileMenuItem, ProfileView, type QualityMetric, type QualityOverview, type QualityService, type RateLimitOptions, type RateLimitResult, type RealtimeService, RegistryProvider, type RenderReadyCallback$1 as RenderReadyCallback, type RoutePath, type S3ClipsAPIParams, S3ClipsSupabaseService as S3ClipsService, type S3Config, type S3ListObjectsParams, S3Service, type S3ServiceConfig, type SKU, type SKUConfig, type SKUCreateInput, type SKUListProps, SKUManagementView, type SKUModalProps, type SKUSelectorProps, type SKUUpdateInput, type SOPCategory$1 as SOPCategory, SOPComplianceChart, type SOPComplianceChartProps, SSEChatClient, type SSEEvent, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, type ShiftConfig, type ShiftConfiguration, type ShiftConfigurationRecord, type ShiftData$3 as ShiftData, ShiftDisplay, type ShiftHistoryData, type ShiftHoursMap, type ShiftPanelProps, type ShiftSummaryData, type ShiftTime, ShiftsView, type ShiftsViewProps, SideNavBar, type SideNavBarProps, SignupWithInvitation, type SignupWithInvitationProps, type SimpleLine, SimpleOnboardingPopup, SingleVideoStream, type SingleVideoStreamProps, Skeleton, type StatusChangeCallback$1 as StatusChangeCallback, type StreamProxyConfig, type SubscriberId, SubscriptionManager, SubscriptionManagerProvider, type SupabaseClient, SupabaseProvider, type Supervisor, type SupervisorAssignment, type SupervisorConfig, SupervisorDropdown, type SupervisorDropdownProps, type SupervisorManagementData, SupervisorManagementView, type SupervisorManagementViewProps, SupervisorService, type Target, TargetWorkspaceGrid, type TargetWorkspaceGridProps, TargetsViewWithDisplayNames as TargetsView, type TargetsViewProps, type TeamManagementPermissions, TeamManagementView, type TeamManagementViewProps, type ThemeColorValue, type ThemeConfig, ThreadSidebar, TicketHistory, TicketHistoryService, type TicketsConfig, TicketsView, type TicketsViewProps, TimeDisplay, TimePickerDropdown, Timer, TimezoneProvider, TimezoneService, type TrackingEventProperties, type TrendDirection, type UnderperformingWorkspace, type UnderperformingWorkspaces, type UpdateUserRoleInput, type UptimeDetails, type UseActiveBreaksResult, type UseClipTypesResult, type UseDashboardMetricsProps, type UseDynamicShiftConfigResult, type UseFormatNumberResult, type UseLineShiftConfigResult, type UseMessagesResult, type UsePrefetchClipCountsOptions$1 as UsePrefetchClipCountsOptions, type UsePrefetchClipCountsResult$1 as UsePrefetchClipCountsResult, type UseRealtimeLineMetricsProps, type UseTargetsOptions, type UseThreadsResult, type UseTicketHistoryReturn, type UseWorkspaceHealthByIdOptions, type UseWorkspaceOperatorsOptions, type UserInvitation, UserManagementService, type UserProfileConfig, type UserRole, UserService, VideoCard, type VideoConfig, type VideoCroppingConfig, type VideoCroppingRect, VideoGridView, type VideoIndex, type VideoIndexEntry, type VideoMetadata, VideoPlayer, type VideoPlayerEventData, type VideoPlayerProps, type VideoPlayerRef, VideoPreloader, type VideoSeverity, type VideoSummary, type VideoType, WORKSPACE_POSITIONS, type WhatsAppSendResult, WhatsAppShareButton, type WhatsAppShareButtonProps, type WhatsappService, type Workspace, type WorkspaceActionUpdate, WorkspaceCard, type WorkspaceCardProps, type WorkspaceConfig, WrappedComponent as WorkspaceDetailView, type WorkspaceDetailedMetrics, WorkspaceDisplayNameExample, WorkspaceGrid, WorkspaceGridItem, type WorkspaceGridItemProps, type WorkspaceGridPosition, type WorkspaceHealth, WorkspaceHealthCard, type WorkspaceHealthInfo, _default as WorkspaceHealthView, type WorkspaceHealthWithStatus, WorkspaceHistoryCalendar, WorkspaceMetricCards, WorkspaceMetricCardsImpl, type WorkspaceMetricCardsProps, type WorkspaceMetrics, WorkspaceMonthlyDataFetcher, type WorkspaceMonthlyDataFetcherProps, WorkspaceMonthlyHistory, type WorkspaceMonthlyMetric, WorkspaceMonthlyPdfGenerator, type WorkspaceMonthlyPdfGeneratorProps, type WorkspaceNavigationParams, WorkspacePdfExportButton, type WorkspacePdfExportButtonProps, WorkspacePdfGenerator, type WorkspacePdfGeneratorProps, type WorkspacePosition, type WorkspaceQualityData, type WorkspaceUrlMapping, WorkspaceWhatsAppShareButton, type WorkspaceWhatsAppShareProps, actionService, apiUtils, authCoreService, authOTPService, authRateLimitService, checkRateLimit, clearAllRateLimits, clearRateLimit, clearS3VideoCache, clearS3VideoFromCache, clearWorkspaceDisplayNamesCache, cn, createInvitationService, createLinesService, createStreamProxyHandler, createSupabaseClient, createSupervisorService, createThrottledReload, createUserManagementService, createUserService, dashboardService, deleteThread, forceRefreshWorkspaceDisplayNames, formatDateInZone, formatDateTimeInZone, formatISTDate, formatIdleTime, formatTimeInZone, fromUrlFriendlyName, getAllLineDisplayNames, getAllThreadMessages, getAllWorkspaceDisplayNamesAsync, getAnonClient, getBrowserName, getCameraNumber, getCompanyMetricsTableName, getConfigurableShortWorkspaceDisplayName, getConfigurableWorkspaceDisplayName, getConfiguredLineIds, getCoreSessionRecordingProperties, getCoreSessionReplayUrl, getCurrentShift, getCurrentTimeInZone, getDashboardHeaderTimeInZone, getDaysDifferenceInZone, getDefaultCameraStreamUrl, getDefaultLineId, getDefaultTabForWorkspace, getLineDisplayName, getManufacturingInsights, getMetricsTablePrefix, getOperationalDate, getS3SignedUrl, getS3VideoSrc, getShortWorkspaceDisplayName, getShortWorkspaceDisplayNameAsync, getStoredWorkspaceMappings, getSubscriptionManager, getThreadMessages, getUserThreads, getUserThreadsPaginated, getWorkspaceDisplayName, getWorkspaceDisplayNameAsync, getWorkspaceDisplayNamesMap, getWorkspaceFromUrl, getWorkspaceNavigationParams, identifyCoreUser, initializeCoreMixpanel, isLegacyConfiguration, isPrefetchError, isSafari, isTransitionPeriod, isUrlPermanentlyFailed, isValidFactoryViewConfiguration, isValidLineInfoPayload, isValidPrefetchParams, isValidPrefetchStatus, isValidWorkspaceDetailedMetricsPayload, isValidWorkspaceMetricsPayload, isWorkspaceDisplayNamesLoaded, isWorkspaceDisplayNamesLoading, linesService, mergeWithDefaultConfig, migrateLegacyConfiguration, optifyeAgentClient, parseS3Uri, preInitializeWorkspaceDisplayNames, preloadS3Video, preloadS3VideoUrl, preloadS3VideosUrl, preloadVideoUrl, preloadVideosUrl, qualityService, realtimeService, refreshWorkspaceDisplayNames, resetCoreMixpanel, resetFailedUrl, resetSubscriptionManager, s3VideoPreloader, shuffleArray, simulateApiDelay, skuService, startCoreSessionRecording, stopCoreSessionRecording, storeWorkspaceMapping, streamProxyConfig, throttledReloadDashboard, toUrlFriendlyName, trackCoreEvent, trackCorePageView, updateThreadTitle, useAccessControl, useActiveBreaks, useActiveLineId, useAllWorkspaceMetrics, useAnalyticsConfig, useAppTimezone, useAudioService, useAuth, useAuthConfig, useAxelNotifications, useCanSaveTargets, useClipFilter, useClipTypes, useClipTypesWithCounts, useComponentOverride, useCustomConfig, useDashboardConfig, useDashboardMetrics, useDatabaseConfig, useDateFormatter, useDateTimeConfig, useDynamicShiftConfig, useEndpointsConfig, useEntityConfig, useFactoryOverviewMetrics, useFeatureFlags, useFormatNumber, useHasLineAccess, useHistoricWorkspaceMetrics, useHlsStream, useHlsStreamWithCropping, useHookOverride, useHourEndTimer, useHourlyTargetAchievements, useHourlyTargetMisses, useLeaderboardMetrics, useLineDetailedMetrics, useLineKPIs, useLineMetrics, useLineShiftConfig, useLineSupervisor, useLineWorkspaceMetrics, useMessages, useMetrics, useNavigation, useOverrides, usePageOverride, usePrefetchClipCounts, useRealtimeLineMetrics, useRegistry, useSKUs, useShiftConfig, useShifts, useSubscriptionManager, useSubscriptionManagerSafe, useSupabase, useSupabaseClient, useTargets, useTeamManagementPermissions, useTheme, useThemeConfig, useThreads, useTicketHistory, useTimezoneContext, useUserLineAccess, useVideoConfig, useWorkspaceConfig, useWorkspaceDetailedMetrics, useWorkspaceDisplayName, useWorkspaceDisplayNames, useWorkspaceDisplayNamesMap, useWorkspaceHealthById, useWorkspaceMetrics, useWorkspaceNavigation, useWorkspaceOperators, userService, videoPrefetchManager, videoPreloader, whatsappService, withAccessControl, withAuth, withRegistry, withTimezone, workspaceHealthService, workspaceService };
|
|
7733
|
+
export { ACTION_NAMES, AIAgentView, AcceptInvite, type AcceptInviteProps, AcceptInviteView, type AcceptInviteViewProps, type AccessControlReturn, type Action, type ActionName, type ActionService, type ActionThreshold, type ActiveBreak, AdvancedFilterDialog, AdvancedFilterPanel, type AnalyticsConfig, type AssignUserToFactoriesInput, type AssignUserToLinesInput, AudioService, AuthCallback, type AuthCallbackProps, AuthCallbackView, type AuthCallbackViewProps, type AuthConfig, AuthProvider, AuthService, type AuthUser, AuthenticatedBottleneckClipsView, AuthenticatedFactoryView, AuthenticatedHelpView, AuthenticatedHomeView, AuthenticatedShiftsView, AuthenticatedTargetsView, AuthenticatedTicketsView, AuthenticatedWorkspaceHealthView, AxelNotificationPopup, type AxelNotificationPopupProps, AxelOrb, type AxelOrbProps, type AxelSuggestion, BackButton, BackButtonMinimal, BarChart, type BarChartDataItem, type BarChartProps, type BarProps, BaseHistoryCalendar, type BaseHistoryCalendarProps, type BaseLineMetric, type BasePerformanceMetric, BottleneckClipsModal, type BottleneckClipsModalProps, type BottleneckClipsNavigationParams, BottleneckClipsView, type BottleneckClipsViewProps, type BottleneckFilterType, type BottleneckVideo, type BottleneckVideoData, BottlenecksContent, type BottlenecksContentProps, type BreadcrumbItem, type Break, BreakNotificationPopup, type BreakNotificationPopupProps, type BreakRowProps, type CacheEntryWithPrefetch, CachePrefetchStatus, type CachePrefetchStatusCallback, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type ChatMessage, type ChatThread, type CleanupFunction, type ClipCounts, type ClipCountsWithIndex, ClipFilterProvider, type ClipFilterState, type ClipsConfig, CompactWorkspaceHealthCard, type CompanyUser, type CompanyUserWithDetails, type ComponentOverride, CongratulationsOverlay, type CongratulationsOverlayProps, type CoreComponents, type CreateInvitationInput, type CropConfig, CroppedVideoPlayer, type CroppedVideoPlayerProps, type CurrentShiftResult, CycleTimeChart, type CycleTimeChartProps, CycleTimeOverTimeChart, type CycleTimeOverTimeChartProps, DEFAULT_ANALYTICS_CONFIG, DEFAULT_AUTH_CONFIG, DEFAULT_CONFIG, DEFAULT_DATABASE_CONFIG, DEFAULT_DATE_TIME_CONFIG, DEFAULT_ENDPOINTS_CONFIG, DEFAULT_ENTITY_CONFIG, DEFAULT_MAP_VIEW_CONFIG, DEFAULT_SHIFT_CONFIG, DEFAULT_THEME_CONFIG, DEFAULT_VIDEO_CONFIG, DEFAULT_WORKSPACE_CONFIG, DEFAULT_WORKSPACE_POSITIONS, type DashboardConfig, DashboardHeader, type DashboardKPIs, DashboardLayout, type DashboardLayoutProps, DashboardOverridesProvider, DashboardProvider, type DashboardService, type DatabaseConfig, DateDisplay, type DateTimeConfig, DateTimeDisplay, type DateTimeDisplayProps, type DayHistoryData, type DaySummaryData, DebugAuth, DebugAuthView, DetailedHealthStatus, type DiagnosisOption$1 as DiagnosisOption, DiagnosisVideoModal, EmptyStateMessage, type EmptyStateMessageProps, EncouragementOverlay, type EndpointsConfig, type EntityConfig, type ErrorCallback$1 as ErrorCallback, type ExtendedCacheMetrics, type FactoryOverviewMetrics, FactoryView, type FactoryViewProps, FileManagerFilters, FileManagerFilters as FileManagerFiltersProps, FilterDialogTrigger, FirstTimeLoginDebug, FirstTimeLoginHandler, type FormatNumberOptions, type FullyIndexedCallback$1 as FullyIndexedCallback, GaugeChart, type GaugeChartProps, GridComponentsPlaceholder, HamburgerButton, type HamburgerButtonProps, Header, type HeaderProps, type HealthAlertConfig, type HealthAlertHistory, type HealthFilterOptions, type HealthMetrics, type HealthStatus, HealthStatusGrid, HealthStatusIndicator, type HealthSummary, HelpView, type HelpViewProps, type HistoricWorkspaceMetrics, type HistoryCalendarProps, HomeView, type HookOverride, type HourlyAchievement, HourlyOutputChart, type HourlyOutputChartProps, type HourlyPerformance, type IPrefetchManager, type ISTDateProps, ISTTimer, type ISTTimerProps, InlineEditableText, InteractiveOnboardingTour, InvitationService, type InvitationWithDetails, KPICard, type KPICardProps, KPIDetailViewWithDisplayNames as KPIDetailView, type KPIDetailViewProps, KPIGrid, type KPIGridProps, KPIHeader, type KPIHeaderProps, KPISection, type KPITrend, KPIsOverviewView, type KPIsOverviewViewProps, LINE_1_UUID, LINE_2_UUID, LargeOutputProgressChart, type LargeOutputProgressChartProps, LeaderboardDetailViewWithDisplayNames as LeaderboardDetailView, type LeaderboardDetailViewProps, type LeaderboardEntry, Legend, type Line$1 as Line, LineChart, type LineChartDataItem, type LineChartProps, type LineDetails, type LineDisplayData, LineHistoryCalendar, type LineHistoryCalendarProps, type LineInfo, type LineMetrics, LineMonthlyHistory, type LineMonthlyHistoryProps, type LineMonthlyMetric, LineMonthlyPdfGenerator, type LineMonthlyPdfGeneratorProps, type LineNavigationParams, LinePdfExportButton, type LinePdfExportButtonProps, LinePdfGenerator, type LinePdfGeneratorProps, type LineProps, type LineShiftConfig, type LineSnapshot, type LineThreshold, LineWhatsAppShareButton, type LineWhatsAppShareProps, LinesService, LiveTimer, LoadingInline, LoadingInline as LoadingInlineProps, LoadingOverlay, LoadingPage, LoadingSkeleton, LoadingSkeleton as LoadingSkeletonProps, LoadingState, LoadingState as LoadingStateProps, LoginPage, type LoginPageProps, LoginView, type LoginViewProps, Logo, type LogoProps, MainLayout, type MainLayoutProps, MapGridView, type MapViewConfig, type Metric, MetricCard, type MetricCardProps$1 as MetricCardProps, type MetricsError, MinimalOnboardingPopup, type NavItem, type NavItemTrackingEvent, type NavigationMethod, NewClipsNotification, type NewClipsNotificationProps, NoWorkspaceData, OnboardingDemo, OnboardingTour, type OperatorData, type OperatorInfo, OptifyeAgentClient, type OptifyeAgentContext, type OptifyeAgentRequest, type OptifyeAgentResponse, OptifyeLogoLoader, OutputProgressChart, type OutputProgressChartProps, type OverridesMap, type OverviewLineMetric, type OverviewWorkspaceMetric, PageHeader, type PageHeaderProps, type PageOverride, PieChart, type PieChartProps, PlayPauseIndicator, type PlayPauseIndicatorProps, type PoorPerformingWorkspace, PrefetchConfigurationError, PrefetchError, PrefetchEvents, type PrefetchKey, type PrefetchManagerConfig, type PrefetchManagerStats, type PrefetchOptions, type PrefetchParams$1 as PrefetchParams, type PrefetchRequest, type PrefetchResult, PrefetchStatus$1 as PrefetchStatus, type PrefetchStatusResult, type PrefetchSubscriptionCallbacks, PrefetchTimeoutError, type ProfileMenuItem, ProfileView, type QualityMetric, type QualityOverview, type QualityService, type RateLimitOptions, type RateLimitResult, type RealtimeService, RegistryProvider, type RenderReadyCallback$1 as RenderReadyCallback, type RoutePath, type S3ClipsAPIParams, S3ClipsSupabaseService as S3ClipsService, type S3Config, type S3ListObjectsParams, S3Service, type S3ServiceConfig, type SKU, type SKUConfig, type SKUCreateInput, type SKUListProps, SKUManagementView, type SKUModalProps, type SKUSelectorProps, type SKUUpdateInput, type SOPCategory$1 as SOPCategory, SOPComplianceChart, type SOPComplianceChartProps, SSEChatClient, type SSEEvent, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, type ShiftConfig, type ShiftConfiguration, type ShiftConfigurationRecord, type ShiftData$3 as ShiftData, ShiftDisplay, type ShiftHistoryData, type ShiftHoursMap, type ShiftPanelProps, type ShiftSummaryData, type ShiftTime, ShiftsView, type ShiftsViewProps, SideNavBar, type SideNavBarProps, SignupWithInvitation, type SignupWithInvitationProps, SilentErrorBoundary, type SimpleLine, SimpleOnboardingPopup, SingleVideoStream, type SingleVideoStreamProps, Skeleton, type StatusChangeCallback$1 as StatusChangeCallback, type StreamProxyConfig, type SubscriberId, SubscriptionManager, SubscriptionManagerProvider, type SupabaseClient, SupabaseProvider, type Supervisor, type SupervisorAssignment, type SupervisorConfig, SupervisorDropdown, type SupervisorDropdownProps, type SupervisorManagementData, SupervisorManagementView, type SupervisorManagementViewProps, SupervisorService, type Target, TargetWorkspaceGrid, type TargetWorkspaceGridProps, TargetsViewWithDisplayNames as TargetsView, type TargetsViewProps, type TeamManagementPermissions, TeamManagementView, type TeamManagementViewProps, type ThemeColorValue, type ThemeConfig, ThreadSidebar, TicketHistory, TicketHistoryService, type TicketsConfig, TicketsView, type TicketsViewProps, TimeDisplay, TimePickerDropdown, Timer, TimezoneProvider, TimezoneService, type TrackingEventProperties, type TrendDirection, type UnderperformingWorkspace, type UnderperformingWorkspaces, type UpdateUserRoleInput, type UptimeDetails, type UseActiveBreaksResult, type UseClipTypesResult, type UseDashboardMetricsProps, type UseDynamicShiftConfigResult, type UseFormatNumberResult, type UseLineShiftConfigResult, type UseMessagesResult, type UsePrefetchClipCountsOptions$1 as UsePrefetchClipCountsOptions, type UsePrefetchClipCountsResult$1 as UsePrefetchClipCountsResult, type UseRealtimeLineMetricsProps, type UseTargetsOptions, type UseThreadsResult, type UseTicketHistoryReturn, type UseWorkspaceHealthByIdOptions, type UseWorkspaceHealthStatusReturn, type UseWorkspaceOperatorsOptions, type UserInvitation, UserManagementService, type UserProfileConfig, type UserRole, UserService, VideoCard, type VideoConfig, type VideoCroppingConfig, type VideoCroppingRect, VideoGridView, type VideoIndex, type VideoIndexEntry, type VideoMetadata, VideoPlayer, type VideoPlayerEventData, type VideoPlayerProps, type VideoPlayerRef, VideoPreloader, type VideoSeverity, type VideoSummary, type VideoType, WORKSPACE_POSITIONS, type WhatsAppSendResult, WhatsAppShareButton, type WhatsAppShareButtonProps, type WhatsappService, type Workspace, type WorkspaceActionUpdate, WorkspaceCard, type WorkspaceCardProps, type WorkspaceConfig, WrappedComponent as WorkspaceDetailView, type WorkspaceDetailedMetrics, WorkspaceDisplayNameExample, WorkspaceGrid, WorkspaceGridItem, type WorkspaceGridItemProps, type WorkspaceGridPosition, type WorkspaceHealth, WorkspaceHealthCard, type WorkspaceHealthInfo, type WorkspaceHealthStatusData, _default as WorkspaceHealthView, type WorkspaceHealthWithStatus, WorkspaceHistoryCalendar, WorkspaceMetricCards, WorkspaceMetricCardsImpl, type WorkspaceMetricCardsProps, type WorkspaceMetrics, WorkspaceMonthlyDataFetcher, type WorkspaceMonthlyDataFetcherProps, WorkspaceMonthlyHistory, type WorkspaceMonthlyMetric, WorkspaceMonthlyPdfGenerator, type WorkspaceMonthlyPdfGeneratorProps, type WorkspaceNavigationParams, WorkspacePdfExportButton, type WorkspacePdfExportButtonProps, WorkspacePdfGenerator, type WorkspacePdfGeneratorProps, type WorkspacePosition, type WorkspaceQualityData, type WorkspaceUrlMapping, WorkspaceWhatsAppShareButton, type WorkspaceWhatsAppShareProps, actionService, apiUtils, authCoreService, authOTPService, authRateLimitService, checkRateLimit, clearAllRateLimits, clearRateLimit, clearS3VideoCache, clearS3VideoFromCache, clearWorkspaceDisplayNamesCache, cn, createInvitationService, createLinesService, createStreamProxyHandler, createSupabaseClient, createSupervisorService, createThrottledReload, createUserManagementService, createUserService, dashboardService, deleteThread, forceRefreshWorkspaceDisplayNames, formatDateInZone, formatDateTimeInZone, formatISTDate, formatIdleTime, formatRelativeTime, formatTimeInZone, fromUrlFriendlyName, getAllLineDisplayNames, getAllThreadMessages, getAllWorkspaceDisplayNamesAsync, getAnonClient, getBrowserName, getCameraNumber, getCompanyMetricsTableName, getConfigurableShortWorkspaceDisplayName, getConfigurableWorkspaceDisplayName, getConfiguredLineIds, getCoreSessionRecordingProperties, getCoreSessionReplayUrl, getCurrentShift, getCurrentTimeInZone, getDashboardHeaderTimeInZone, getDaysDifferenceInZone, getDefaultCameraStreamUrl, getDefaultLineId, getDefaultTabForWorkspace, getLineDisplayName, getManufacturingInsights, getMetricsTablePrefix, getNextUpdateInterval, getOperationalDate, getS3SignedUrl, getS3VideoSrc, getShortWorkspaceDisplayName, getShortWorkspaceDisplayNameAsync, getStoredWorkspaceMappings, getSubscriptionManager, getThreadMessages, getUserThreads, getUserThreadsPaginated, getWorkspaceDisplayName, getWorkspaceDisplayNameAsync, getWorkspaceDisplayNamesMap, getWorkspaceFromUrl, getWorkspaceNavigationParams, identifyCoreUser, initializeCoreMixpanel, isLegacyConfiguration, isPrefetchError, isSafari, isTransitionPeriod, isUrlPermanentlyFailed, isValidFactoryViewConfiguration, isValidLineInfoPayload, isValidPrefetchParams, isValidPrefetchStatus, isValidWorkspaceDetailedMetricsPayload, isValidWorkspaceMetricsPayload, isWorkspaceDisplayNamesLoaded, isWorkspaceDisplayNamesLoading, linesService, mergeWithDefaultConfig, migrateLegacyConfiguration, optifyeAgentClient, parseS3Uri, preInitializeWorkspaceDisplayNames, preloadS3Video, preloadS3VideoUrl, preloadS3VideosUrl, preloadVideoUrl, preloadVideosUrl, qualityService, realtimeService, refreshWorkspaceDisplayNames, resetCoreMixpanel, resetFailedUrl, resetSubscriptionManager, s3VideoPreloader, shuffleArray, simulateApiDelay, skuService, startCoreSessionRecording, stopCoreSessionRecording, storeWorkspaceMapping, streamProxyConfig, throttledReloadDashboard, toUrlFriendlyName, trackCoreEvent, trackCorePageView, updateThreadTitle, useAccessControl, useActiveBreaks, useActiveLineId, useAllWorkspaceMetrics, useAnalyticsConfig, useAppTimezone, useAudioService, useAuth, useAuthConfig, useAxelNotifications, useCanSaveTargets, useClipFilter, useClipTypes, useClipTypesWithCounts, useComponentOverride, useCustomConfig, useDashboardConfig, useDashboardMetrics, useDatabaseConfig, useDateFormatter, useDateTimeConfig, useDynamicShiftConfig, useEndpointsConfig, useEntityConfig, useFactoryOverviewMetrics, useFeatureFlags, useFormatNumber, useHasLineAccess, useHistoricWorkspaceMetrics, useHlsStream, useHlsStreamWithCropping, useHookOverride, useHourEndTimer, useHourlyTargetAchievements, useHourlyTargetMisses, useLeaderboardMetrics, useLineDetailedMetrics, useLineKPIs, useLineMetrics, useLineShiftConfig, useLineSupervisor, useLineWorkspaceMetrics, useMessages, useMetrics, useNavigation, useOverrides, usePageOverride, usePrefetchClipCounts, useRealtimeLineMetrics, useRegistry, useSKUs, useSessionKeepAlive, useShiftConfig, useShifts, useSubscriptionManager, useSubscriptionManagerSafe, useSupabase, useSupabaseClient, useTargets, useTeamManagementPermissions, useTheme, useThemeConfig, useThreads, useTicketHistory, useTimezoneContext, useUserLineAccess, useVideoConfig, useWorkspaceConfig, useWorkspaceDetailedMetrics, useWorkspaceDisplayName, useWorkspaceDisplayNames, useWorkspaceDisplayNamesMap, useWorkspaceHealthById, useWorkspaceHealthStatus, useWorkspaceMetrics, useWorkspaceNavigation, useWorkspaceOperators, userService, videoPrefetchManager, videoPreloader, whatsappService, withAccessControl, withAuth, withRegistry, withTimezone, workspaceHealthService, workspaceService };
|