@optifye/dashboard-core 6.9.0 → 6.9.1
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 +25 -27
- package/dist/index.d.mts +175 -12
- package/dist/index.d.ts +175 -12
- package/dist/index.js +1660 -841
- package/dist/index.mjs +1654 -843
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -537,6 +537,9 @@ body {
|
|
|
537
537
|
.right-2 {
|
|
538
538
|
right: 0.5rem;
|
|
539
539
|
}
|
|
540
|
+
.right-20 {
|
|
541
|
+
right: 5rem;
|
|
542
|
+
}
|
|
540
543
|
.right-3 {
|
|
541
544
|
right: 0.75rem;
|
|
542
545
|
}
|
|
@@ -603,9 +606,6 @@ body {
|
|
|
603
606
|
.z-50 {
|
|
604
607
|
z-index: 50;
|
|
605
608
|
}
|
|
606
|
-
.z-\[10000\] {
|
|
607
|
-
z-index: 10000;
|
|
608
|
-
}
|
|
609
609
|
.z-\[100\] {
|
|
610
610
|
z-index: 100;
|
|
611
611
|
}
|
|
@@ -1043,6 +1043,9 @@ body {
|
|
|
1043
1043
|
.max-h-64 {
|
|
1044
1044
|
max-height: 16rem;
|
|
1045
1045
|
}
|
|
1046
|
+
.max-h-80 {
|
|
1047
|
+
max-height: 20rem;
|
|
1048
|
+
}
|
|
1046
1049
|
.max-h-\[--radix-select-content-available-height\] {
|
|
1047
1050
|
max-height: var(--radix-select-content-available-height);
|
|
1048
1051
|
}
|
|
@@ -1256,6 +1259,9 @@ body {
|
|
|
1256
1259
|
.w-px {
|
|
1257
1260
|
width: 1px;
|
|
1258
1261
|
}
|
|
1262
|
+
.w-screen {
|
|
1263
|
+
width: 100vw;
|
|
1264
|
+
}
|
|
1259
1265
|
.min-w-0 {
|
|
1260
1266
|
min-width: 0px;
|
|
1261
1267
|
}
|
|
@@ -1482,6 +1488,19 @@ body {
|
|
|
1482
1488
|
.animate-bounce {
|
|
1483
1489
|
animation: bounce 1s infinite;
|
|
1484
1490
|
}
|
|
1491
|
+
@keyframes float {
|
|
1492
|
+
0%, 100% {
|
|
1493
|
+
transform: translateY(0px);
|
|
1494
|
+
box-shadow: 0 4px 12px rgba(7, 141, 219, 0.4), 0 0 20px rgba(7, 141, 219, 0.2);
|
|
1495
|
+
}
|
|
1496
|
+
50% {
|
|
1497
|
+
transform: translateY(-8px);
|
|
1498
|
+
box-shadow: 0 8px 16px rgba(7, 141, 219, 0.5), 0 0 24px rgba(7, 141, 219, 0.3);
|
|
1499
|
+
}
|
|
1500
|
+
}
|
|
1501
|
+
.animate-float {
|
|
1502
|
+
animation: float 3s ease-in-out infinite;
|
|
1503
|
+
}
|
|
1485
1504
|
@keyframes ping {
|
|
1486
1505
|
75%, 100% {
|
|
1487
1506
|
transform: scale(2);
|
|
@@ -1741,9 +1760,6 @@ body {
|
|
|
1741
1760
|
.overflow-hidden {
|
|
1742
1761
|
overflow: hidden;
|
|
1743
1762
|
}
|
|
1744
|
-
.overflow-visible {
|
|
1745
|
-
overflow: visible;
|
|
1746
|
-
}
|
|
1747
1763
|
.overflow-x-auto {
|
|
1748
1764
|
overflow-x: auto;
|
|
1749
1765
|
}
|
|
@@ -4161,6 +4177,9 @@ input[type=range]:active::-moz-range-thumb {
|
|
|
4161
4177
|
--tw-bg-opacity: 1;
|
|
4162
4178
|
background-color: rgb(255 251 235 / var(--tw-bg-opacity, 1));
|
|
4163
4179
|
}
|
|
4180
|
+
.hover\:bg-black\/80:hover {
|
|
4181
|
+
background-color: rgb(0 0 0 / 0.8);
|
|
4182
|
+
}
|
|
4164
4183
|
.hover\:bg-blue-100:hover {
|
|
4165
4184
|
--tw-bg-opacity: 1;
|
|
4166
4185
|
background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
|
|
@@ -4847,9 +4866,6 @@ input[type=range]:active::-moz-range-thumb {
|
|
|
4847
4866
|
.sm\:h-1\.5 {
|
|
4848
4867
|
height: 0.375rem;
|
|
4849
4868
|
}
|
|
4850
|
-
.sm\:h-10 {
|
|
4851
|
-
height: 2.5rem;
|
|
4852
|
-
}
|
|
4853
4869
|
.sm\:h-12 {
|
|
4854
4870
|
height: 3rem;
|
|
4855
4871
|
}
|
|
@@ -4862,9 +4878,6 @@ input[type=range]:active::-moz-range-thumb {
|
|
|
4862
4878
|
.sm\:h-2\.5 {
|
|
4863
4879
|
height: 0.625rem;
|
|
4864
4880
|
}
|
|
4865
|
-
.sm\:h-20 {
|
|
4866
|
-
height: 5rem;
|
|
4867
|
-
}
|
|
4868
4881
|
.sm\:h-3 {
|
|
4869
4882
|
height: 0.75rem;
|
|
4870
4883
|
}
|
|
@@ -4907,9 +4920,6 @@ input[type=range]:active::-moz-range-thumb {
|
|
|
4907
4920
|
.sm\:w-1\.5 {
|
|
4908
4921
|
width: 0.375rem;
|
|
4909
4922
|
}
|
|
4910
|
-
.sm\:w-10 {
|
|
4911
|
-
width: 2.5rem;
|
|
4912
|
-
}
|
|
4913
4923
|
.sm\:w-12 {
|
|
4914
4924
|
width: 3rem;
|
|
4915
4925
|
}
|
|
@@ -5319,15 +5329,9 @@ input[type=range]:active::-moz-range-thumb {
|
|
|
5319
5329
|
.md\:hidden {
|
|
5320
5330
|
display: none;
|
|
5321
5331
|
}
|
|
5322
|
-
.md\:h-12 {
|
|
5323
|
-
height: 3rem;
|
|
5324
|
-
}
|
|
5325
5332
|
.md\:h-2 {
|
|
5326
5333
|
height: 0.5rem;
|
|
5327
5334
|
}
|
|
5328
|
-
.md\:h-24 {
|
|
5329
|
-
height: 6rem;
|
|
5330
|
-
}
|
|
5331
5335
|
.md\:h-7 {
|
|
5332
5336
|
height: 1.75rem;
|
|
5333
5337
|
}
|
|
@@ -5346,15 +5350,9 @@ input[type=range]:active::-moz-range-thumb {
|
|
|
5346
5350
|
.md\:min-h-\[400px\] {
|
|
5347
5351
|
min-height: 400px;
|
|
5348
5352
|
}
|
|
5349
|
-
.md\:w-12 {
|
|
5350
|
-
width: 3rem;
|
|
5351
|
-
}
|
|
5352
5353
|
.md\:w-2 {
|
|
5353
5354
|
width: 0.5rem;
|
|
5354
5355
|
}
|
|
5355
|
-
.md\:w-24 {
|
|
5356
|
-
width: 6rem;
|
|
5357
|
-
}
|
|
5358
5356
|
.md\:w-40 {
|
|
5359
5357
|
width: 10rem;
|
|
5360
5358
|
}
|
package/dist/index.d.mts
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
|
+
* as "Xs ago", "Xm Ys ago", etc. and updates the display every second for accuracy.
|
|
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., "30s 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: "45s ago" or "5m 30s 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,6 +3685,29 @@ interface UseFormatNumberResult {
|
|
|
3627
3685
|
*/
|
|
3628
3686
|
declare const useFormatNumber: () => UseFormatNumberResult;
|
|
3629
3687
|
|
|
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
|
+
|
|
3630
3711
|
type UserRole = 'owner' | 'plant_head' | 'supervisor';
|
|
3631
3712
|
interface AccessControlReturn {
|
|
3632
3713
|
userRole: UserRole | null;
|
|
@@ -4068,7 +4149,7 @@ interface PermissionsResponse {
|
|
|
4068
4149
|
declare class AuthService {
|
|
4069
4150
|
private static backendUrl;
|
|
4070
4151
|
/**
|
|
4071
|
-
* Fetch enriched user session from backend
|
|
4152
|
+
* Fetch enriched user session from backend with 5-minute timeout
|
|
4072
4153
|
* This is your SINGLE call to get ALL auth data
|
|
4073
4154
|
*
|
|
4074
4155
|
* @param accessToken - JWT token from Supabase
|
|
@@ -4076,7 +4157,7 @@ declare class AuthService {
|
|
|
4076
4157
|
*/
|
|
4077
4158
|
static getSession(accessToken: string): Promise<EnrichedUser>;
|
|
4078
4159
|
/**
|
|
4079
|
-
* Quick validation check without full profile fetch
|
|
4160
|
+
* Quick validation check without full profile fetch with timeout
|
|
4080
4161
|
* Use this for lightweight auth checks
|
|
4081
4162
|
*
|
|
4082
4163
|
* @param accessToken - JWT token from Supabase
|
|
@@ -4084,7 +4165,7 @@ declare class AuthService {
|
|
|
4084
4165
|
*/
|
|
4085
4166
|
static validateSession(accessToken: string): Promise<boolean>;
|
|
4086
4167
|
/**
|
|
4087
|
-
* Get just permissions (lightweight call)
|
|
4168
|
+
* Get just permissions (lightweight call) with timeout
|
|
4088
4169
|
* Faster than full session fetch
|
|
4089
4170
|
*
|
|
4090
4171
|
* @param accessToken - JWT token from Supabase
|
|
@@ -4837,6 +4918,27 @@ declare const getCompanyMetricsTableName: (companyId: string | undefined, prefix
|
|
|
4837
4918
|
*/
|
|
4838
4919
|
declare const getMetricsTablePrefix: (companyId?: string) => string;
|
|
4839
4920
|
|
|
4921
|
+
/**
|
|
4922
|
+
* Format a timestamp as relative time with detailed precision
|
|
4923
|
+
* Shows seconds, minutes, hours, or days ago
|
|
4924
|
+
*
|
|
4925
|
+
* @param timestamp - Date object or ISO string timestamp
|
|
4926
|
+
* @returns Formatted relative time string (e.g., "30s ago", "5m 30s ago", "2h ago", "3d ago")
|
|
4927
|
+
*
|
|
4928
|
+
* @example
|
|
4929
|
+
* formatRelativeTime(new Date()) // "0s ago"
|
|
4930
|
+
* formatRelativeTime("2024-01-01T12:00:00Z") // "5m 30s ago"
|
|
4931
|
+
*/
|
|
4932
|
+
declare function formatRelativeTime(timestamp: string | Date | null | undefined): string;
|
|
4933
|
+
/**
|
|
4934
|
+
* Get milliseconds until next update for a given timestamp
|
|
4935
|
+
* Used to schedule the next UI update for optimal performance
|
|
4936
|
+
*
|
|
4937
|
+
* @param timestamp - Date object or ISO string timestamp
|
|
4938
|
+
* @returns Milliseconds until next meaningful time change
|
|
4939
|
+
*/
|
|
4940
|
+
declare function getNextUpdateInterval(timestamp: string | Date | null | undefined): number;
|
|
4941
|
+
|
|
4840
4942
|
declare function cn(...inputs: ClassValue[]): string;
|
|
4841
4943
|
|
|
4842
4944
|
interface WorkspaceUrlMapping {
|
|
@@ -5389,8 +5491,6 @@ interface BreakNotificationPopupProps {
|
|
|
5389
5491
|
className?: string;
|
|
5390
5492
|
/** Line names mapping for display */
|
|
5391
5493
|
lineNames?: Record<string, string>;
|
|
5392
|
-
/** Path to Axel's profile image */
|
|
5393
|
-
axelImagePath?: string;
|
|
5394
5494
|
}
|
|
5395
5495
|
/**
|
|
5396
5496
|
* Break notification popup component
|
|
@@ -5440,8 +5540,6 @@ interface AxelNotificationPopupProps {
|
|
|
5440
5540
|
onDismiss?: () => void;
|
|
5441
5541
|
/** Optional class name for custom styling */
|
|
5442
5542
|
className?: string;
|
|
5443
|
-
/** Path to Axel's profile image */
|
|
5444
|
-
axelImagePath?: string;
|
|
5445
5543
|
}
|
|
5446
5544
|
/**
|
|
5447
5545
|
* Axel AI Agent notification popup component
|
|
@@ -5617,6 +5715,24 @@ interface DetailedHealthStatusProps extends HealthStatusIndicatorProps {
|
|
|
5617
5715
|
}
|
|
5618
5716
|
declare const DetailedHealthStatus: React__default.FC<DetailedHealthStatusProps>;
|
|
5619
5717
|
|
|
5718
|
+
interface LogoProps {
|
|
5719
|
+
className?: string;
|
|
5720
|
+
alt?: string;
|
|
5721
|
+
}
|
|
5722
|
+
declare const Logo: React__default.FC<LogoProps>;
|
|
5723
|
+
|
|
5724
|
+
interface AxelOrbProps {
|
|
5725
|
+
className?: string;
|
|
5726
|
+
size?: 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
5727
|
+
animate?: boolean;
|
|
5728
|
+
}
|
|
5729
|
+
/**
|
|
5730
|
+
* AxelOrb - A gradient orb component that represents Axel AI
|
|
5731
|
+
* Features a linear gradient from dark blue at the bottom to light blue at the top
|
|
5732
|
+
* Optional floating animation for a more dynamic feel
|
|
5733
|
+
*/
|
|
5734
|
+
declare const AxelOrb: React__default.FC<AxelOrbProps>;
|
|
5735
|
+
|
|
5620
5736
|
interface LinePdfExportButtonProps {
|
|
5621
5737
|
/** The DOM element or a selector string for the element to capture. */
|
|
5622
5738
|
targetElement: HTMLElement | string;
|
|
@@ -6548,6 +6664,8 @@ interface LoadingPageProps {
|
|
|
6548
6664
|
message?: string;
|
|
6549
6665
|
subMessage?: string;
|
|
6550
6666
|
className?: string;
|
|
6667
|
+
onTimeout?: () => void;
|
|
6668
|
+
timeoutMs?: number;
|
|
6551
6669
|
}
|
|
6552
6670
|
declare const LoadingPage: React__default.FC<LoadingPageProps>;
|
|
6553
6671
|
|
|
@@ -6597,13 +6715,42 @@ interface OptifyeLogoLoaderProps {
|
|
|
6597
6715
|
* An enterprise-grade, minimal loader that shows a pulsing Optifye logo.
|
|
6598
6716
|
*
|
|
6599
6717
|
* 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.
|
|
6718
|
+
* uses the Logo component which imports the logo from the assets directory
|
|
6719
|
+
* (`optifye-logo.png`).
|
|
6604
6720
|
*/
|
|
6605
6721
|
declare const OptifyeLogoLoader: React__default.FC<OptifyeLogoLoaderProps>;
|
|
6606
6722
|
|
|
6723
|
+
/**
|
|
6724
|
+
* Silent Error Boundary
|
|
6725
|
+
*
|
|
6726
|
+
* Catches all React render errors silently and provides minimal fallback UI.
|
|
6727
|
+
* Errors are logged to console only - users never see technical error messages.
|
|
6728
|
+
*
|
|
6729
|
+
* Key features:
|
|
6730
|
+
* - Logs errors to console with full context
|
|
6731
|
+
* - Shows minimal "loading-like" fallback (not scary error messages)
|
|
6732
|
+
* - Provides subtle recovery option
|
|
6733
|
+
* - Tracks errors for analytics
|
|
6734
|
+
* - Only logout as last resort
|
|
6735
|
+
*/
|
|
6736
|
+
|
|
6737
|
+
interface SilentErrorBoundaryProps {
|
|
6738
|
+
children: React__default.ReactNode;
|
|
6739
|
+
}
|
|
6740
|
+
interface SilentErrorBoundaryState {
|
|
6741
|
+
hasError: boolean;
|
|
6742
|
+
errorCount: number;
|
|
6743
|
+
lastError: Error | null;
|
|
6744
|
+
errorInfo: React__default.ErrorInfo | null;
|
|
6745
|
+
}
|
|
6746
|
+
declare class SilentErrorBoundary extends React__default.Component<SilentErrorBoundaryProps, SilentErrorBoundaryState> {
|
|
6747
|
+
constructor(props: SilentErrorBoundaryProps);
|
|
6748
|
+
static getDerivedStateFromError(error: Error): Partial<SilentErrorBoundaryState>;
|
|
6749
|
+
componentDidCatch(error: Error, errorInfo: React__default.ErrorInfo): void;
|
|
6750
|
+
handleClearAndReload: () => void;
|
|
6751
|
+
render(): React__default.ReactNode;
|
|
6752
|
+
}
|
|
6753
|
+
|
|
6607
6754
|
interface VideoPlayerRef {
|
|
6608
6755
|
/** The Video.js player instance */
|
|
6609
6756
|
player: Player | null;
|
|
@@ -6670,6 +6817,8 @@ interface VideoPlayerProps {
|
|
|
6670
6817
|
onLoadedData?: (player: Player) => void;
|
|
6671
6818
|
onSeeking?: (player: Player) => void;
|
|
6672
6819
|
onSeeked?: (player: Player) => void;
|
|
6820
|
+
/** Optional click handler for the video container (for YouTube-style click-to-play/pause) */
|
|
6821
|
+
onClick?: () => void;
|
|
6673
6822
|
}
|
|
6674
6823
|
/**
|
|
6675
6824
|
* Production-ready Video.js React component with HLS support
|
|
@@ -6703,6 +6852,20 @@ interface CroppedVideoPlayerProps extends VideoPlayerProps {
|
|
|
6703
6852
|
*/
|
|
6704
6853
|
declare const CroppedVideoPlayer: React__default.ForwardRefExoticComponent<CroppedVideoPlayerProps & React__default.RefAttributes<VideoPlayerRef>>;
|
|
6705
6854
|
|
|
6855
|
+
interface PlayPauseIndicatorProps {
|
|
6856
|
+
/** Whether to show the indicator */
|
|
6857
|
+
show: boolean;
|
|
6858
|
+
/** Whether the video is playing (true) or paused (false) */
|
|
6859
|
+
isPlaying: boolean;
|
|
6860
|
+
/** Duration in ms for the indicator to fade out (default: 600ms) */
|
|
6861
|
+
duration?: number;
|
|
6862
|
+
}
|
|
6863
|
+
/**
|
|
6864
|
+
* YouTube-style play/pause visual indicator that appears and fades out
|
|
6865
|
+
* when the user clicks to play or pause the video
|
|
6866
|
+
*/
|
|
6867
|
+
declare const PlayPauseIndicator: React__default.FC<PlayPauseIndicatorProps>;
|
|
6868
|
+
|
|
6706
6869
|
interface BackButtonProps {
|
|
6707
6870
|
/**
|
|
6708
6871
|
* Click handler for the back button
|
|
@@ -7565,4 +7728,4 @@ interface ThreadSidebarProps {
|
|
|
7565
7728
|
}
|
|
7566
7729
|
declare const ThreadSidebar: React__default.FC<ThreadSidebarProps>;
|
|
7567
7730
|
|
|
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 };
|
|
7731
|
+
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 };
|