@optifye/dashboard-core 6.10.12 → 6.10.14
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 +162 -16
- package/dist/index.d.mts +125 -3
- package/dist/index.d.ts +125 -3
- package/dist/index.js +2511 -1080
- package/dist/index.mjs +2505 -1085
- package/global.css +12 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -840,6 +840,9 @@ interface LineMonthlyMetric {
|
|
|
840
840
|
underperforming_workspaces: number;
|
|
841
841
|
total_workspaces: number;
|
|
842
842
|
compliance_percentage?: number;
|
|
843
|
+
current_output?: number;
|
|
844
|
+
ideal_output?: number;
|
|
845
|
+
line_threshold?: number;
|
|
843
846
|
}
|
|
844
847
|
interface UnderperformingWorkspace {
|
|
845
848
|
workspace_name: string;
|
|
@@ -2679,6 +2682,16 @@ declare const useLeaderboardMetrics: (date?: string, shiftId?: number, limit?: n
|
|
|
2679
2682
|
refetch: () => Promise<void>;
|
|
2680
2683
|
};
|
|
2681
2684
|
|
|
2685
|
+
interface EfficiencyLegendUpdate {
|
|
2686
|
+
green_min: number;
|
|
2687
|
+
green_max: number;
|
|
2688
|
+
yellow_min: number;
|
|
2689
|
+
yellow_max: number;
|
|
2690
|
+
red_min: number;
|
|
2691
|
+
red_max: number;
|
|
2692
|
+
critical_threshold: number;
|
|
2693
|
+
}
|
|
2694
|
+
|
|
2682
2695
|
/**
|
|
2683
2696
|
* Props for the {@link useDashboardMetrics} hook.
|
|
2684
2697
|
*/
|
|
@@ -2700,6 +2713,9 @@ interface UseDashboardMetricsProps {
|
|
|
2700
2713
|
*/
|
|
2701
2714
|
userAccessibleLineIds?: string[];
|
|
2702
2715
|
}
|
|
2716
|
+
interface DashboardMetricsMetadata {
|
|
2717
|
+
hasFlowBuffers?: boolean;
|
|
2718
|
+
}
|
|
2703
2719
|
/**
|
|
2704
2720
|
* Custom hook to fetch and subscribe to real-time dashboard metrics.
|
|
2705
2721
|
*
|
|
@@ -2743,6 +2759,8 @@ interface UseDashboardMetricsProps {
|
|
|
2743
2759
|
declare const useDashboardMetrics: ({ onLineMetricsUpdate, lineId, userAccessibleLineIds }: UseDashboardMetricsProps) => {
|
|
2744
2760
|
workspaceMetrics: WorkspaceMetrics[];
|
|
2745
2761
|
lineMetrics: OverviewLineMetric[];
|
|
2762
|
+
efficiencyLegend: EfficiencyLegendUpdate;
|
|
2763
|
+
metadata: DashboardMetricsMetadata | undefined;
|
|
2746
2764
|
isLoading: boolean;
|
|
2747
2765
|
error: MetricsError | null;
|
|
2748
2766
|
refetch: () => Promise<void>;
|
|
@@ -4470,6 +4488,37 @@ interface UseIdleTimeReasonsResult {
|
|
|
4470
4488
|
*/
|
|
4471
4489
|
declare function useIdleTimeReasons({ workspaceId, lineId, date, shiftId, startDate, endDate, enabled, keepPreviousData, }: UseIdleTimeReasonsProps): UseIdleTimeReasonsResult;
|
|
4472
4490
|
|
|
4491
|
+
/**
|
|
4492
|
+
* Clip Classification Service
|
|
4493
|
+
* Handles fetching clip classifications from the backend API
|
|
4494
|
+
*/
|
|
4495
|
+
interface ClipClassification$1 {
|
|
4496
|
+
status: 'classified' | 'processing';
|
|
4497
|
+
label?: string;
|
|
4498
|
+
confidence?: number;
|
|
4499
|
+
}
|
|
4500
|
+
|
|
4501
|
+
interface IdleTimeClipMetadata {
|
|
4502
|
+
id: string;
|
|
4503
|
+
idle_start_time?: string;
|
|
4504
|
+
idle_end_time?: string;
|
|
4505
|
+
}
|
|
4506
|
+
interface UseIdleTimeClipClassificationsParams {
|
|
4507
|
+
workspaceId?: string;
|
|
4508
|
+
date?: string;
|
|
4509
|
+
shiftId?: number;
|
|
4510
|
+
enabled?: boolean;
|
|
4511
|
+
limit?: number;
|
|
4512
|
+
}
|
|
4513
|
+
interface UseIdleTimeClipClassificationsResult {
|
|
4514
|
+
idleClips: IdleTimeClipMetadata[];
|
|
4515
|
+
clipClassifications: Record<string, ClipClassification$1>;
|
|
4516
|
+
isLoading: boolean;
|
|
4517
|
+
error: string | null;
|
|
4518
|
+
refetch: () => Promise<void>;
|
|
4519
|
+
}
|
|
4520
|
+
declare function useIdleTimeClipClassifications({ workspaceId, date, shiftId, enabled, limit, }: UseIdleTimeClipClassificationsParams): UseIdleTimeClipClassificationsResult;
|
|
4521
|
+
|
|
4473
4522
|
/**
|
|
4474
4523
|
* useSessionTracking Hook
|
|
4475
4524
|
* Manages dashboard session lifecycle with active/passive time tracking
|
|
@@ -4699,7 +4748,7 @@ declare const dashboardService: {
|
|
|
4699
4748
|
getDetailedLineInfo(lineIdInput?: string, dateProp?: string, shiftProp?: number, providedShiftConfig?: ShiftConfig): Promise<LineInfo | null>;
|
|
4700
4749
|
getWorkspaceMonthlyData(workspaceUuid: string, month: number, year: number): Promise<WorkspaceMonthlyMetric[]>;
|
|
4701
4750
|
getLineMonthlyData(lineIdInput: string, month: number, year: number): Promise<LineMonthlyMetric[]>;
|
|
4702
|
-
getUnderperformingWorkspaces(lineIdInput: string, monthInput: number | undefined, yearInput: number | undefined, shiftIds?: number[]): Promise<UnderperformingWorkspaces>;
|
|
4751
|
+
getUnderperformingWorkspaces(lineIdInput: string, monthInput: number | undefined, yearInput: number | undefined, shiftIds?: number[], startDate?: string, endDate?: string): Promise<UnderperformingWorkspaces>;
|
|
4703
4752
|
getSopViolations(): never[];
|
|
4704
4753
|
};
|
|
4705
4754
|
type DashboardService = typeof dashboardService;
|
|
@@ -5691,6 +5740,27 @@ declare function formatTimeInZone(time: Date | string, timezone: string, formatS
|
|
|
5691
5740
|
* const timeStr = getCurrentTimeInZone('Europe/Berlin', 'HH:mm zzz'); // e.g., "18:30 CEST"
|
|
5692
5741
|
*/
|
|
5693
5742
|
declare function getCurrentTimeInZone(timezone: string, formatString?: string): string | Date;
|
|
5743
|
+
interface DateKeyRange {
|
|
5744
|
+
startKey: string;
|
|
5745
|
+
endKey: string;
|
|
5746
|
+
}
|
|
5747
|
+
interface MonthWeekRange {
|
|
5748
|
+
startKey: string;
|
|
5749
|
+
endKey: string;
|
|
5750
|
+
label: string;
|
|
5751
|
+
}
|
|
5752
|
+
declare const buildDateKey: (year: number, monthIndex: number, day: number) => string;
|
|
5753
|
+
declare const getDateKeyFromDate: (date: Date) => string;
|
|
5754
|
+
declare const parseDateKeyToDate: (dateKey: string) => Date;
|
|
5755
|
+
declare const formatDateKeyForDisplay: (dateKey: string, formatStr?: string) => string;
|
|
5756
|
+
declare const getMonthKeyBounds: (year: number, monthIndex: number) => DateKeyRange;
|
|
5757
|
+
declare const normalizeDateKeyRange: (startKey: string, endKey: string, minKey: string, maxKey: string) => DateKeyRange;
|
|
5758
|
+
declare const isFullMonthRange: (range: DateKeyRange, year: number, monthIndex: number) => boolean;
|
|
5759
|
+
declare const getMonthWeekRanges: (year: number, monthIndex: number, timezone: string, maxKey?: string) => MonthWeekRange[];
|
|
5760
|
+
declare const formatRangeLabel: (range: DateKeyRange, fullMonthLabel: string) => string;
|
|
5761
|
+
declare const filterDataByDateKeyRange: <T extends {
|
|
5762
|
+
date: Date | string;
|
|
5763
|
+
}>(data: T[], range: DateKeyRange) => T[];
|
|
5694
5764
|
|
|
5695
5765
|
/**
|
|
5696
5766
|
* Determines the current or most recent shift based on the current time and shift configuration.
|
|
@@ -6364,6 +6434,10 @@ interface HourlyOutputChartProps {
|
|
|
6364
6434
|
shiftEnd?: string;
|
|
6365
6435
|
showIdleTime?: boolean;
|
|
6366
6436
|
idleTimeHourly?: Record<string, string[]>;
|
|
6437
|
+
idleTimeClips?: IdleTimeClipMetadata[];
|
|
6438
|
+
idleTimeClipClassifications?: Record<string, ClipClassification$1>;
|
|
6439
|
+
shiftDate?: string;
|
|
6440
|
+
timezone?: string;
|
|
6367
6441
|
className?: string;
|
|
6368
6442
|
}
|
|
6369
6443
|
|
|
@@ -6767,6 +6841,10 @@ interface LineHistoryCalendarProps {
|
|
|
6767
6841
|
lineId: string;
|
|
6768
6842
|
/** Numeric shift ID (0, 1, 2, ...) - supports multi-shift */
|
|
6769
6843
|
selectedShiftId: number;
|
|
6844
|
+
/** Inclusive range start (YYYY-MM-DD) */
|
|
6845
|
+
rangeStart?: string;
|
|
6846
|
+
/** Inclusive range end (YYYY-MM-DD) */
|
|
6847
|
+
rangeEnd?: string;
|
|
6770
6848
|
/** Callback when date is selected - passes numeric shift ID */
|
|
6771
6849
|
onDateSelect?: (date: string, shiftId: number) => void;
|
|
6772
6850
|
className?: string;
|
|
@@ -6779,6 +6857,8 @@ interface PerformanceData$1 {
|
|
|
6779
6857
|
total_workspaces: number;
|
|
6780
6858
|
compliance_percentage?: number;
|
|
6781
6859
|
hasData?: boolean;
|
|
6860
|
+
output?: number;
|
|
6861
|
+
idealOutput?: number;
|
|
6782
6862
|
}
|
|
6783
6863
|
interface WorkspacePerformance$1 {
|
|
6784
6864
|
workspace_name: string;
|
|
@@ -6800,6 +6880,10 @@ interface LineMonthlyHistoryProps {
|
|
|
6800
6880
|
month: number;
|
|
6801
6881
|
year: number;
|
|
6802
6882
|
monthlyData: LineDayData$1[];
|
|
6883
|
+
analysisData?: LineDayData$1[];
|
|
6884
|
+
rangeStart: string;
|
|
6885
|
+
rangeEnd: string;
|
|
6886
|
+
timezone: string;
|
|
6803
6887
|
/** Underperforming workspaces keyed by shift_id (0, 1, 2, ...) */
|
|
6804
6888
|
underperformingWorkspaces: Record<number, WorkspacePerformance$1[]>;
|
|
6805
6889
|
lineId: string;
|
|
@@ -6807,6 +6891,7 @@ interface LineMonthlyHistoryProps {
|
|
|
6807
6891
|
selectedShiftId?: number;
|
|
6808
6892
|
/** Callback when shift is changed - passes numeric shift ID */
|
|
6809
6893
|
onShiftChange?: (shiftId: number) => void;
|
|
6894
|
+
onRangeChange?: (range: DateKeyRange) => void;
|
|
6810
6895
|
/** Available shifts for the selector (fetched from DB) */
|
|
6811
6896
|
availableShifts?: Array<{
|
|
6812
6897
|
id: number;
|
|
@@ -6849,10 +6934,13 @@ interface LineMonthlyPdfGeneratorProps {
|
|
|
6849
6934
|
lineId: string;
|
|
6850
6935
|
lineName: string;
|
|
6851
6936
|
monthlyData: LineDayData[];
|
|
6937
|
+
analysisData?: LineDayData[];
|
|
6852
6938
|
/** Underperforming workspaces keyed by shift_id (0, 1, 2, ...) */
|
|
6853
6939
|
underperformingWorkspaces: Record<number, WorkspacePerformance[]>;
|
|
6854
6940
|
selectedMonth: number;
|
|
6855
6941
|
selectedYear: number;
|
|
6942
|
+
rangeStart?: string;
|
|
6943
|
+
rangeEnd?: string;
|
|
6856
6944
|
/** Numeric shift ID (0, 1, 2, ...) - supports multi-shift */
|
|
6857
6945
|
selectedShiftId: number;
|
|
6858
6946
|
/** Available shifts for display names */
|
|
@@ -7037,9 +7125,13 @@ declare const WorkspaceHistoryCalendar: React__default.FC<WorkspaceHistoryCalend
|
|
|
7037
7125
|
|
|
7038
7126
|
interface WorkspaceMonthlyHistoryProps {
|
|
7039
7127
|
data: DayData[];
|
|
7128
|
+
analysisData?: DayData[];
|
|
7040
7129
|
month: number;
|
|
7041
7130
|
year: number;
|
|
7042
7131
|
workspaceId: string;
|
|
7132
|
+
rangeStart: string;
|
|
7133
|
+
rangeEnd: string;
|
|
7134
|
+
timezone: string;
|
|
7043
7135
|
/** Numeric shift ID (0, 1, 2, ...) - supports multi-shift */
|
|
7044
7136
|
selectedShiftId?: number;
|
|
7045
7137
|
/** Callback when date is selected - passes numeric shift ID */
|
|
@@ -7047,6 +7139,7 @@ interface WorkspaceMonthlyHistoryProps {
|
|
|
7047
7139
|
onMonthNavigate?: (newMonth: number, newYear: number) => void;
|
|
7048
7140
|
/** Callback when shift is changed - passes numeric shift ID */
|
|
7049
7141
|
onShiftChange?: (shiftId: number) => void;
|
|
7142
|
+
onRangeChange?: (range: DateKeyRange) => void;
|
|
7050
7143
|
/** Available shifts for the selector (fetched from DB) */
|
|
7051
7144
|
availableShifts?: Array<{
|
|
7052
7145
|
id: number;
|
|
@@ -7078,8 +7171,11 @@ interface WorkspaceMonthlyPdfGeneratorProps {
|
|
|
7078
7171
|
workspaceId: string;
|
|
7079
7172
|
workspaceName: string;
|
|
7080
7173
|
monthlyData: DayData[];
|
|
7174
|
+
analysisData?: DayData[];
|
|
7081
7175
|
selectedMonth: number;
|
|
7082
7176
|
selectedYear: number;
|
|
7177
|
+
rangeStart?: string;
|
|
7178
|
+
rangeEnd?: string;
|
|
7083
7179
|
/** Numeric shift ID (0, 1, 2, ...) - supports multi-shift */
|
|
7084
7180
|
selectedShiftId: number;
|
|
7085
7181
|
/** Available shifts for display names */
|
|
@@ -7196,6 +7292,8 @@ interface WorkspaceGridProps {
|
|
|
7196
7292
|
factoryView?: string;
|
|
7197
7293
|
line2Uuid?: string;
|
|
7198
7294
|
className?: string;
|
|
7295
|
+
hasFlowBuffers?: boolean;
|
|
7296
|
+
legend?: EfficiencyLegendUpdate;
|
|
7199
7297
|
videoSources?: {
|
|
7200
7298
|
defaultHlsUrl?: string;
|
|
7201
7299
|
workspaceHlsUrls?: Record<string, string>;
|
|
@@ -7236,8 +7334,13 @@ interface WorkspaceGridItemProps {
|
|
|
7236
7334
|
isLowEfficiency?: boolean;
|
|
7237
7335
|
isVeryLowEfficiency?: boolean;
|
|
7238
7336
|
onHoverChange?: (isHovered: boolean) => void;
|
|
7337
|
+
legend?: EfficiencyLegendUpdate;
|
|
7338
|
+
}
|
|
7339
|
+
interface LegendProps {
|
|
7340
|
+
useBottleneckLabel?: boolean;
|
|
7341
|
+
legend?: EfficiencyLegendUpdate;
|
|
7239
7342
|
}
|
|
7240
|
-
declare const Legend:
|
|
7343
|
+
declare const Legend: React__default.FC<LegendProps>;
|
|
7241
7344
|
declare const WorkspaceGridItem: React__default.FC<WorkspaceGridItemProps>;
|
|
7242
7345
|
|
|
7243
7346
|
interface TargetWorkspaceGridProps {
|
|
@@ -7255,6 +7358,7 @@ interface VideoGridViewProps {
|
|
|
7255
7358
|
workspaces: WorkspaceMetrics[];
|
|
7256
7359
|
selectedLine?: number;
|
|
7257
7360
|
className?: string;
|
|
7361
|
+
legend?: EfficiencyLegendUpdate;
|
|
7258
7362
|
videoSources?: {
|
|
7259
7363
|
defaultHlsUrl?: string;
|
|
7260
7364
|
workspaceHlsUrls?: Record<string, string>;
|
|
@@ -7274,6 +7378,7 @@ interface MapGridViewProps {
|
|
|
7274
7378
|
displayNames?: Record<string, string>;
|
|
7275
7379
|
onWorkspaceHover?: (workspaceId: string) => void;
|
|
7276
7380
|
onWorkspaceHoverEnd?: (workspaceId: string) => void;
|
|
7381
|
+
legend?: EfficiencyLegendUpdate;
|
|
7277
7382
|
}
|
|
7278
7383
|
/**
|
|
7279
7384
|
* MapGridView component - 2D factory floor map view with workspace positions
|
|
@@ -7288,6 +7393,7 @@ interface VideoCardProps {
|
|
|
7288
7393
|
onClick?: () => void;
|
|
7289
7394
|
onFatalError?: () => void;
|
|
7290
7395
|
isVeryLowEfficiency?: boolean;
|
|
7396
|
+
legend?: EfficiencyLegendUpdate;
|
|
7291
7397
|
cropping?: VideoCroppingRect;
|
|
7292
7398
|
canvasFps?: number;
|
|
7293
7399
|
useRAF?: boolean;
|
|
@@ -8502,6 +8608,14 @@ interface KPIDetailViewProps {
|
|
|
8502
8608
|
* Year to display in monthly history
|
|
8503
8609
|
*/
|
|
8504
8610
|
year?: string | number;
|
|
8611
|
+
/**
|
|
8612
|
+
* Optional start date for monthly history range (YYYY-MM-DD)
|
|
8613
|
+
*/
|
|
8614
|
+
rangeStart?: string;
|
|
8615
|
+
/**
|
|
8616
|
+
* Optional end date for monthly history range (YYYY-MM-DD)
|
|
8617
|
+
*/
|
|
8618
|
+
rangeEnd?: string;
|
|
8505
8619
|
/**
|
|
8506
8620
|
* Company ID (if not using the default)
|
|
8507
8621
|
*/
|
|
@@ -8656,6 +8770,14 @@ interface WorkspaceDetailViewProps {
|
|
|
8656
8770
|
* Optional return URL for back navigation
|
|
8657
8771
|
*/
|
|
8658
8772
|
returnUrl?: string;
|
|
8773
|
+
/**
|
|
8774
|
+
* Optional start date for monthly history range (YYYY-MM-DD)
|
|
8775
|
+
*/
|
|
8776
|
+
rangeStart?: string;
|
|
8777
|
+
/**
|
|
8778
|
+
* Optional end date for monthly history range (YYYY-MM-DD)
|
|
8779
|
+
*/
|
|
8780
|
+
rangeEnd?: string;
|
|
8659
8781
|
/**
|
|
8660
8782
|
* Line IDs for reference (configurable to avoid hardcoded constants)
|
|
8661
8783
|
*/
|
|
@@ -8979,4 +9101,4 @@ interface ThreadSidebarProps {
|
|
|
8979
9101
|
}
|
|
8980
9102
|
declare const ThreadSidebar: React__default.FC<ThreadSidebarProps>;
|
|
8981
9103
|
|
|
8982
|
-
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, type CalendarShiftData, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, ChangeRoleDialog, type ChangeRoleDialogProps, type ChatMessage, type ChatThread, type CleanupFunction, type ClipCounts, type ClipCountsWithIndex, ClipFilterProvider, type ClipFilterState, type ClipsConfig, CompactWorkspaceHealthCard, type CompanyUsageReport, type CompanyUser, type CompanyUserUsageSummary, type CompanyUserWithDetails, type ComponentOverride, ConfirmRemoveUserDialog, type ConfirmRemoveUserDialogProps, CongratulationsOverlay, type CongratulationsOverlayProps, type CoreComponents, type CreateInvitationInput, type CropConfig, CroppedHlsVideoPlayer, type CroppedHlsVideoPlayerProps, 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_HOME_VIEW_CONFIG, DEFAULT_MAP_VIEW_CONFIG, DEFAULT_SHIFT_CONFIG, DEFAULT_SHIFT_DATA, 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 DayData, type DayHistoryData, type DaySummaryData, DebugAuth, DebugAuthView, DetailedHealthStatus, type DiagnosisOption$1 as DiagnosisOption, DiagnosisVideoModal, type DynamicLineShiftConfig, EmptyStateMessage, type EmptyStateMessageProps, EncouragementOverlay, type EndpointsConfig, type EntityConfig, type ErrorCallback$1 as ErrorCallback, type ExtendedCacheMetrics, type Factory, FactoryAssignmentDropdown, type FactoryAssignmentDropdownProps, type FactoryOverviewMetrics, FactoryView, type FactoryViewProps, type FetchIdleTimeReasonsParams, 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, HealthDateShiftSelector, type HealthFilterOptions, type HealthMetrics, type HealthStatus, HealthStatusGrid, HealthStatusIndicator, type HealthSummary, HelpView, type HelpViewProps, type HistoricWorkspaceMetrics, type HistoryCalendarProps, HlsVideoPlayer, type HlsVideoPlayerProps, type HlsVideoPlayerRef, HomeView, type HomeViewConfig, type HookOverride, type HourlyAchievement, HourlyOutputChart, type HourlyOutputChartProps, type HourlyPerformance, type IPrefetchManager, type ISTDateProps, ISTTimer, type ISTTimerProps, type IdleTimeReason, type IdleTimeReasonData, type IdleTimeReasonsData, type IdleTimeReasonsResponse, ImprovementCenterView, InlineEditableText, InteractiveOnboardingTour, InvitationService, type InvitationWithDetails, InvitationsTable, InviteUserDialog, 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, LineAssignmentDropdown, type LineAssignmentDropdownProps, 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 LineRecord, type LineShiftConfig, type LineShiftInfo, 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 RealtimeLineMetricsProps, type RealtimeService, RegistryProvider, type RenderReadyCallback$1 as RenderReadyCallback, RoleBadge, 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, SessionTracker, SessionTrackingContext, SessionTrackingProvider, type ShiftConfig, type ShiftConfiguration, type ShiftConfigurationRecord, type ShiftData, type ShiftDefinition, ShiftDisplay, type ShiftHistoryData, type ShiftHoursMap, type ShiftLineGroup, 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 SupervisorLine, type SupervisorManagementData, SupervisorManagementView, type SupervisorManagementViewProps, SupervisorService, type Target, TargetWorkspaceGrid, type TargetWorkspaceGridProps, TargetsViewWithDisplayNames as TargetsView, type TargetsViewProps, type TeamManagementPermissions, TeamManagementView, type TeamManagementViewProps, TeamUsagePdfGenerator, type TeamUsagePdfGeneratorProps, type ThemeColorValue, type ThemeConfig, ThreadSidebar, TicketHistory, TicketHistoryService, type TicketsConfig, TicketsView, type TicketsViewProps, TimeDisplay, TimePickerDropdown, Timer, TimezoneProvider, TimezoneService, type TodayUsage, type TodayUsageData, type TodayUsageReport, type TrackingEventProperties, type TrendDirection, type UnderperformingWorkspace, type UnderperformingWorkspaces, type UpdateUserRoleInput, type UptimeDetails, type UptimeStatus, type UsageBreakdown, type UseActiveBreaksResult, type UseAllWorkspaceMetricsOptions, type UseClipTypesResult, type UseCompanyUsersUsageOptions, type UseCompanyUsersUsageReturn, type UseDashboardMetricsProps, type UseDynamicShiftConfigResult, type UseFormatNumberResult, type UseIdleTimeReasonsProps, type UseIdleTimeReasonsResult, type UseLineShiftConfigResult, type UseLineWorkspaceMetricsOptions, type UseMessagesResult, type UseMultiLineShiftConfigsResult, type UsePrefetchClipCountsOptions$1 as UsePrefetchClipCountsOptions, type UsePrefetchClipCountsResult$1 as UsePrefetchClipCountsResult, type UseRealtimeLineMetricsProps, type UseSupervisorsByLineIdsResult, type UseTargetsOptions, type UseThreadsResult, type UseTicketHistoryReturn, type UseUserUsageOptions, type UseUserUsageReturn, type UseWorkspaceHealthByIdOptions, type UseWorkspaceHealthStatusReturn, type UseWorkspaceOperatorsOptions, type UseWorkspaceUptimeTimelineOptions, type UseWorkspaceUptimeTimelineResult, type UserInvitation, UserManagementService, UserManagementTable, type UserProfileConfig, type UserRole, type UserRoleLevel, UserService, type UserUsageDetail, UserUsageDetailModal, type UserUsageDetailModalProps, type UserUsageInfo, UserUsageStats, type UserUsageStatsProps, type UserUsageSummary, VideoCard, type VideoConfig, type VideoCroppingConfig, type VideoCroppingRect, VideoGridView, type VideoIndex, type VideoIndexEntry, type VideoMetadata, VideoPlayer, 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, type WorkspaceDowntimeSegment, 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 WorkspaceUptimeTimeline, type WorkspaceUptimeTimelinePoint, type WorkspaceUrlMapping, WorkspaceWhatsAppShareButton, type WorkspaceWhatsAppShareProps, actionService, aggregateKPIsFromLineMetricsRows, apiUtils, areAllLinesOnSameShift, authCoreService, authOTPService, authRateLimitService, buildKPIsFromLineMetricsRow, checkRateLimit, clearAllRateLimits, clearRateLimit, clearS3VideoCache, clearS3VideoFromCache, clearWorkspaceDisplayNamesCache, cn, createDefaultKPIs, createInvitationService, createLinesService, createSessionTracker, createStreamProxyHandler, createSupabaseClient, createSupervisorService, createThrottledReload, createUserManagementService, createUserService, dashboardService, deleteThread, fetchIdleTimeReasons, forceRefreshWorkspaceDisplayNames, formatDateInZone, formatDateTimeInZone, formatDuration, formatISTDate, formatIdleTime, formatReasonLabel, formatRelativeTime, formatTimeInZone, fromUrlFriendlyName, getAllLineDisplayNames, getAllThreadMessages, getAllWorkspaceDisplayNamesAsync, getAllWorkspaceDisplayNamesSnapshot, getAnonClient, getAvailableShiftIds, getBrowserName, getCameraNumber, getCompanyMetricsTableName, getConfigurableShortWorkspaceDisplayName, getConfigurableWorkspaceDisplayName, getConfiguredLineIds, getCoreSessionRecordingProperties, getCoreSessionReplayUrl, getCurrentShift, getCurrentShiftForLine, getCurrentTimeInZone, getDashboardHeaderTimeInZone, getDaysDifferenceInZone, getDefaultCameraStreamUrl, getDefaultLineId, getDefaultTabForWorkspace, getLineDisplayName, getManufacturingInsights, getMetricsTablePrefix, getNextUpdateInterval, getOperationalDate, getReasonColor, getS3SignedUrl, getS3VideoSrc, getShiftData, getShiftNameById, getShortShiftName, getShortWorkspaceDisplayName, getShortWorkspaceDisplayNameAsync, getStoredWorkspaceMappings, getSubscriptionManager, getThreadMessages, getUniformShiftGroup, getUserThreads, getUserThreadsPaginated, getWorkspaceDisplayName, getWorkspaceDisplayNameAsync, getWorkspaceDisplayNamesMap, getWorkspaceFromUrl, getWorkspaceNavigationParams, groupLinesByShift, hasAnyShiftData, 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, subscribeWorkspaceDisplayNames, throttledReloadDashboard, toUrlFriendlyName, trackCoreEvent, trackCorePageView, transformToChartData, updateThreadTitle, upsertWorkspaceDisplayNameInCache, useAccessControl, useActiveBreaks, useActiveLineId, useAllWorkspaceMetrics, useAnalyticsConfig, useAppTimezone, useAudioService, useAuth, useAuthConfig, useAxelNotifications, useCanSaveTargets, useClipFilter, useClipTypes, useClipTypesWithCounts, useCompanyUsersUsage, useComponentOverride, useCustomConfig, useDashboardConfig, useDashboardMetrics, useDatabaseConfig, useDateFormatter, useDateTimeConfig, useDynamicShiftConfig, useEndpointsConfig, useEntityConfig, useFactoryOverviewMetrics, useFeatureFlags, useFormatNumber, useHasLineAccess, useHistoricWorkspaceMetrics, useHlsStream, useHlsStreamWithCropping, useHookOverride, useHourEndTimer, useHourlyTargetAchievements, useHourlyTargetMisses, useIdleTimeReasons, useLeaderboardMetrics, useLineDetailedMetrics, useLineKPIs, useLineMetrics, useLineShiftConfig, useLineSupervisor, useLineWorkspaceMetrics, useLines, useMessages, useMetrics, useMultiLineShiftConfigs, useNavigation, useOverrides, usePageOverride, usePrefetchClipCounts, useRealtimeLineMetrics, useRegistry, useSKUs, useSessionKeepAlive, useSessionTracking, useSessionTrackingContext, useShiftConfig, useShifts, useSubscriptionManager, useSubscriptionManagerSafe, useSupabase, useSupabaseClient, useSupervisorsByLineIds, useTargets, useTeamManagementPermissions, useTheme, useThemeConfig, useThreads, useTicketHistory, useTimezoneContext, useUserLineAccess, useUserUsage, useVideoConfig, useWorkspaceConfig, useWorkspaceDetailedMetrics, useWorkspaceDisplayName, useWorkspaceDisplayNames, useWorkspaceDisplayNamesMap, useWorkspaceHealthById, useWorkspaceHealthStatus, useWorkspaceMetrics, useWorkspaceNavigation, useWorkspaceOperators, useWorkspaceUptimeTimeline, userService, videoPrefetchManager, videoPreloader, whatsappService, withAccessControl, withAuth, withRegistry, withTimezone, workspaceHealthService, workspaceService };
|
|
9104
|
+
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, type CalendarShiftData, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, ChangeRoleDialog, type ChangeRoleDialogProps, type ChatMessage, type ChatThread, type CleanupFunction, type ClipCounts, type ClipCountsWithIndex, ClipFilterProvider, type ClipFilterState, type ClipsConfig, CompactWorkspaceHealthCard, type CompanyUsageReport, type CompanyUser, type CompanyUserUsageSummary, type CompanyUserWithDetails, type ComponentOverride, ConfirmRemoveUserDialog, type ConfirmRemoveUserDialogProps, CongratulationsOverlay, type CongratulationsOverlayProps, type CoreComponents, type CreateInvitationInput, type CropConfig, CroppedHlsVideoPlayer, type CroppedHlsVideoPlayerProps, 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_HOME_VIEW_CONFIG, DEFAULT_MAP_VIEW_CONFIG, DEFAULT_SHIFT_CONFIG, DEFAULT_SHIFT_DATA, 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 DateKeyRange, type DateTimeConfig, DateTimeDisplay, type DateTimeDisplayProps, type DayData, type DayHistoryData, type DaySummaryData, DebugAuth, DebugAuthView, DetailedHealthStatus, type DiagnosisOption$1 as DiagnosisOption, DiagnosisVideoModal, type DynamicLineShiftConfig, EmptyStateMessage, type EmptyStateMessageProps, EncouragementOverlay, type EndpointsConfig, type EntityConfig, type ErrorCallback$1 as ErrorCallback, type ExtendedCacheMetrics, type Factory, FactoryAssignmentDropdown, type FactoryAssignmentDropdownProps, type FactoryOverviewMetrics, FactoryView, type FactoryViewProps, type FetchIdleTimeReasonsParams, 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, HealthDateShiftSelector, type HealthFilterOptions, type HealthMetrics, type HealthStatus, HealthStatusGrid, HealthStatusIndicator, type HealthSummary, HelpView, type HelpViewProps, type HistoricWorkspaceMetrics, type HistoryCalendarProps, HlsVideoPlayer, type HlsVideoPlayerProps, type HlsVideoPlayerRef, HomeView, type HomeViewConfig, type HookOverride, type HourlyAchievement, HourlyOutputChart, type HourlyOutputChartProps, type HourlyPerformance, type IPrefetchManager, type ISTDateProps, ISTTimer, type ISTTimerProps, type IdleTimeClipMetadata, type IdleTimeReason, type IdleTimeReasonData, type IdleTimeReasonsData, type IdleTimeReasonsResponse, ImprovementCenterView, InlineEditableText, InteractiveOnboardingTour, InvitationService, type InvitationWithDetails, InvitationsTable, InviteUserDialog, 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, LineAssignmentDropdown, type LineAssignmentDropdownProps, 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 LineRecord, type LineShiftConfig, type LineShiftInfo, 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 MonthWeekRange, 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 RealtimeLineMetricsProps, type RealtimeService, RegistryProvider, type RenderReadyCallback$1 as RenderReadyCallback, RoleBadge, 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, SessionTracker, SessionTrackingContext, SessionTrackingProvider, type ShiftConfig, type ShiftConfiguration, type ShiftConfigurationRecord, type ShiftData, type ShiftDefinition, ShiftDisplay, type ShiftHistoryData, type ShiftHoursMap, type ShiftLineGroup, 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 SupervisorLine, type SupervisorManagementData, SupervisorManagementView, type SupervisorManagementViewProps, SupervisorService, type Target, TargetWorkspaceGrid, type TargetWorkspaceGridProps, TargetsViewWithDisplayNames as TargetsView, type TargetsViewProps, type TeamManagementPermissions, TeamManagementView, type TeamManagementViewProps, TeamUsagePdfGenerator, type TeamUsagePdfGeneratorProps, type ThemeColorValue, type ThemeConfig, ThreadSidebar, TicketHistory, TicketHistoryService, type TicketsConfig, TicketsView, type TicketsViewProps, TimeDisplay, TimePickerDropdown, Timer, TimezoneProvider, TimezoneService, type TodayUsage, type TodayUsageData, type TodayUsageReport, type TrackingEventProperties, type TrendDirection, type UnderperformingWorkspace, type UnderperformingWorkspaces, type UpdateUserRoleInput, type UptimeDetails, type UptimeStatus, type UsageBreakdown, type UseActiveBreaksResult, type UseAllWorkspaceMetricsOptions, type UseClipTypesResult, type UseCompanyUsersUsageOptions, type UseCompanyUsersUsageReturn, type UseDashboardMetricsProps, type UseDynamicShiftConfigResult, type UseFormatNumberResult, type UseIdleTimeReasonsProps, type UseIdleTimeReasonsResult, type UseLineShiftConfigResult, type UseLineWorkspaceMetricsOptions, type UseMessagesResult, type UseMultiLineShiftConfigsResult, type UsePrefetchClipCountsOptions$1 as UsePrefetchClipCountsOptions, type UsePrefetchClipCountsResult$1 as UsePrefetchClipCountsResult, type UseRealtimeLineMetricsProps, type UseSupervisorsByLineIdsResult, type UseTargetsOptions, type UseThreadsResult, type UseTicketHistoryReturn, type UseUserUsageOptions, type UseUserUsageReturn, type UseWorkspaceHealthByIdOptions, type UseWorkspaceHealthStatusReturn, type UseWorkspaceOperatorsOptions, type UseWorkspaceUptimeTimelineOptions, type UseWorkspaceUptimeTimelineResult, type UserInvitation, UserManagementService, UserManagementTable, type UserProfileConfig, type UserRole, type UserRoleLevel, UserService, type UserUsageDetail, UserUsageDetailModal, type UserUsageDetailModalProps, type UserUsageInfo, UserUsageStats, type UserUsageStatsProps, type UserUsageSummary, VideoCard, type VideoConfig, type VideoCroppingConfig, type VideoCroppingRect, VideoGridView, type VideoIndex, type VideoIndexEntry, type VideoMetadata, VideoPlayer, 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, type WorkspaceDowntimeSegment, 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 WorkspaceUptimeTimeline, type WorkspaceUptimeTimelinePoint, type WorkspaceUrlMapping, WorkspaceWhatsAppShareButton, type WorkspaceWhatsAppShareProps, actionService, aggregateKPIsFromLineMetricsRows, apiUtils, areAllLinesOnSameShift, authCoreService, authOTPService, authRateLimitService, buildDateKey, buildKPIsFromLineMetricsRow, checkRateLimit, clearAllRateLimits, clearRateLimit, clearS3VideoCache, clearS3VideoFromCache, clearWorkspaceDisplayNamesCache, cn, createDefaultKPIs, createInvitationService, createLinesService, createSessionTracker, createStreamProxyHandler, createSupabaseClient, createSupervisorService, createThrottledReload, createUserManagementService, createUserService, dashboardService, deleteThread, fetchIdleTimeReasons, filterDataByDateKeyRange, forceRefreshWorkspaceDisplayNames, formatDateInZone, formatDateKeyForDisplay, formatDateTimeInZone, formatDuration, formatISTDate, formatIdleTime, formatRangeLabel, formatReasonLabel, formatRelativeTime, formatTimeInZone, fromUrlFriendlyName, getAllLineDisplayNames, getAllThreadMessages, getAllWorkspaceDisplayNamesAsync, getAllWorkspaceDisplayNamesSnapshot, getAnonClient, getAvailableShiftIds, getBrowserName, getCameraNumber, getCompanyMetricsTableName, getConfigurableShortWorkspaceDisplayName, getConfigurableWorkspaceDisplayName, getConfiguredLineIds, getCoreSessionRecordingProperties, getCoreSessionReplayUrl, getCurrentShift, getCurrentShiftForLine, getCurrentTimeInZone, getDashboardHeaderTimeInZone, getDateKeyFromDate, getDaysDifferenceInZone, getDefaultCameraStreamUrl, getDefaultLineId, getDefaultTabForWorkspace, getLineDisplayName, getManufacturingInsights, getMetricsTablePrefix, getMonthKeyBounds, getMonthWeekRanges, getNextUpdateInterval, getOperationalDate, getReasonColor, getS3SignedUrl, getS3VideoSrc, getShiftData, getShiftNameById, getShortShiftName, getShortWorkspaceDisplayName, getShortWorkspaceDisplayNameAsync, getStoredWorkspaceMappings, getSubscriptionManager, getThreadMessages, getUniformShiftGroup, getUserThreads, getUserThreadsPaginated, getWorkspaceDisplayName, getWorkspaceDisplayNameAsync, getWorkspaceDisplayNamesMap, getWorkspaceFromUrl, getWorkspaceNavigationParams, groupLinesByShift, hasAnyShiftData, identifyCoreUser, initializeCoreMixpanel, isFullMonthRange, isLegacyConfiguration, isPrefetchError, isSafari, isTransitionPeriod, isUrlPermanentlyFailed, isValidFactoryViewConfiguration, isValidLineInfoPayload, isValidPrefetchParams, isValidPrefetchStatus, isValidWorkspaceDetailedMetricsPayload, isValidWorkspaceMetricsPayload, isWorkspaceDisplayNamesLoaded, isWorkspaceDisplayNamesLoading, linesService, mergeWithDefaultConfig, migrateLegacyConfiguration, normalizeDateKeyRange, optifyeAgentClient, parseDateKeyToDate, parseS3Uri, preInitializeWorkspaceDisplayNames, preloadS3Video, preloadS3VideoUrl, preloadS3VideosUrl, preloadVideoUrl, preloadVideosUrl, qualityService, realtimeService, refreshWorkspaceDisplayNames, resetCoreMixpanel, resetFailedUrl, resetSubscriptionManager, s3VideoPreloader, shuffleArray, simulateApiDelay, skuService, startCoreSessionRecording, stopCoreSessionRecording, storeWorkspaceMapping, streamProxyConfig, subscribeWorkspaceDisplayNames, throttledReloadDashboard, toUrlFriendlyName, trackCoreEvent, trackCorePageView, transformToChartData, updateThreadTitle, upsertWorkspaceDisplayNameInCache, useAccessControl, useActiveBreaks, useActiveLineId, useAllWorkspaceMetrics, useAnalyticsConfig, useAppTimezone, useAudioService, useAuth, useAuthConfig, useAxelNotifications, useCanSaveTargets, useClipFilter, useClipTypes, useClipTypesWithCounts, useCompanyUsersUsage, useComponentOverride, useCustomConfig, useDashboardConfig, useDashboardMetrics, useDatabaseConfig, useDateFormatter, useDateTimeConfig, useDynamicShiftConfig, useEndpointsConfig, useEntityConfig, useFactoryOverviewMetrics, useFeatureFlags, useFormatNumber, useHasLineAccess, useHistoricWorkspaceMetrics, useHlsStream, useHlsStreamWithCropping, useHookOverride, useHourEndTimer, useHourlyTargetAchievements, useHourlyTargetMisses, useIdleTimeClipClassifications, useIdleTimeReasons, useLeaderboardMetrics, useLineDetailedMetrics, useLineKPIs, useLineMetrics, useLineShiftConfig, useLineSupervisor, useLineWorkspaceMetrics, useLines, useMessages, useMetrics, useMultiLineShiftConfigs, useNavigation, useOverrides, usePageOverride, usePrefetchClipCounts, useRealtimeLineMetrics, useRegistry, useSKUs, useSessionKeepAlive, useSessionTracking, useSessionTrackingContext, useShiftConfig, useShifts, useSubscriptionManager, useSubscriptionManagerSafe, useSupabase, useSupabaseClient, useSupervisorsByLineIds, useTargets, useTeamManagementPermissions, useTheme, useThemeConfig, useThreads, useTicketHistory, useTimezoneContext, useUserLineAccess, useUserUsage, useVideoConfig, useWorkspaceConfig, useWorkspaceDetailedMetrics, useWorkspaceDisplayName, useWorkspaceDisplayNames, useWorkspaceDisplayNamesMap, useWorkspaceHealthById, useWorkspaceHealthStatus, useWorkspaceMetrics, useWorkspaceNavigation, useWorkspaceOperators, useWorkspaceUptimeTimeline, userService, videoPrefetchManager, videoPreloader, whatsappService, withAccessControl, withAuth, withRegistry, withTimezone, workspaceHealthService, workspaceService };
|