@optifye/dashboard-core 6.12.50 → 6.12.52
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/{automation-B472r1h3.d.mts → automation-Bxp-JzQB.d.mts} +9 -1
- package/dist/{automation-B472r1h3.d.ts → automation-Bxp-JzQB.d.ts} +9 -1
- package/dist/automation.d.mts +1 -1
- package/dist/automation.d.ts +1 -1
- package/dist/automation.js +2 -0
- package/dist/automation.js.map +1 -0
- package/dist/automation.mjs +2 -0
- package/dist/automation.mjs.map +1 -0
- package/dist/index.css +5 -0
- package/dist/index.css.map +1 -0
- package/dist/index.d.mts +183 -46
- package/dist/index.d.ts +183 -46
- package/dist/index.js +3765 -801
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +3765 -803
- package/dist/index.mjs.map +1 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { L as LineSignal, V as VideoGridMetricMode, W as WorkspaceMetrics, a as LineInfo, b as WorkspaceDetailedMetrics, S as SkuBreakdownItem, c as SkuSegmentItem, d as LineSkuBreakdownItem, E as EfficiencyLegendUpdate, D as DashboardKPIs, P as PoorPerformingWorkspace, e as WorkspaceVideoStream, K as KpiTrend, M as MonthlyTrendSummary, f as Workspace, g as WorkspaceCameraIpInfo, h as WorkspaceActionUpdate, A as ActionThreshold,
|
|
2
|
-
export {
|
|
1
|
+
import { L as LineSignal, V as VideoGridMetricMode, W as WorkspaceMetrics, a as LineInfo, b as WorkspaceDetailedMetrics, S as SkuBreakdownItem, c as SkuSegmentItem, d as LineSkuBreakdownItem, E as EfficiencyLegendUpdate, D as DashboardKPIs, P as PoorPerformingWorkspace, e as WorkspaceVideoStream, K as KpiTrend, M as MonthlyTrendSummary, f as Workspace, g as WorkspaceCameraIpInfo, h as WorkspaceLightConfigInfo, i as WorkspaceActionUpdate, A as ActionThreshold, j as ShiftConfiguration, k as KpiSignal, l as LineIssueResolutionSummary } from './automation-Bxp-JzQB.mjs';
|
|
2
|
+
export { t as CountDelta, C as CurrentWorkspaceSKU, u as DurationDelta, q as KpiSignalMode, p as KpiSignalSource, m as LineDetailedMetrics, o as LineSignalSource, w as LineThreshold, s as PercentageDelta, F as RecentFlowSnapshotGrid, R as RecentFlowSnapshotGridProps, x as ShiftConfigurationRecord, r as ValueDelta, n as VideoGridStatusBadge, v as WorkspaceCropRect, z as isRecentFlowVideoGridMetricMode, B as isWipGatedVideoGridMetricMode, y as normalizeVideoGridMetricMode } from './automation-Bxp-JzQB.mjs';
|
|
3
3
|
import * as _supabase_supabase_js from '@supabase/supabase-js';
|
|
4
4
|
import { SupabaseClient as SupabaseClient$1, Session, User, AuthError } from '@supabase/supabase-js';
|
|
5
5
|
import { LucideProps, Share2, Download } from 'lucide-react';
|
|
@@ -2038,6 +2038,7 @@ interface WorkspaceHealthWithStatus extends WorkspaceHealth {
|
|
|
2038
2038
|
hasUptimeData: boolean;
|
|
2039
2039
|
uptimePercentage?: number;
|
|
2040
2040
|
uptimeDetails?: UptimeDetails;
|
|
2041
|
+
lightSummary?: WorkspaceLightSummary;
|
|
2041
2042
|
}
|
|
2042
2043
|
interface UptimeDetails {
|
|
2043
2044
|
expectedMinutes: number;
|
|
@@ -2045,7 +2046,22 @@ interface UptimeDetails {
|
|
|
2045
2046
|
percentage: number;
|
|
2046
2047
|
lastCalculated: string;
|
|
2047
2048
|
}
|
|
2048
|
-
type UptimeStatus$1 = 'up' | 'down' | 'pending';
|
|
2049
|
+
type UptimeStatus$1 = 'up' | 'down' | 'unknown' | 'pending';
|
|
2050
|
+
type LightStatus = 'up' | 'down' | 'unknown';
|
|
2051
|
+
interface WorkspaceLightSummary {
|
|
2052
|
+
hasLightConfig: boolean;
|
|
2053
|
+
bulbIp: string | null;
|
|
2054
|
+
currentStatus?: LightStatus | null;
|
|
2055
|
+
currentStartedAt?: string | null;
|
|
2056
|
+
lastSeenAt?: string | null;
|
|
2057
|
+
currentDurationSeconds?: number | null;
|
|
2058
|
+
lastError?: string | null;
|
|
2059
|
+
uptimePercent: number | null;
|
|
2060
|
+
upSeconds: number;
|
|
2061
|
+
downSeconds: number;
|
|
2062
|
+
unknownSeconds: number;
|
|
2063
|
+
totalObservedSeconds: number;
|
|
2064
|
+
}
|
|
2049
2065
|
interface WorkspaceUptimeTimelinePoint {
|
|
2050
2066
|
minuteIndex: number;
|
|
2051
2067
|
timestamp: string;
|
|
@@ -2074,6 +2090,42 @@ interface WorkspaceUptimeTimeline {
|
|
|
2074
2090
|
points: WorkspaceUptimeTimelinePoint[];
|
|
2075
2091
|
downtimeSegments: WorkspaceDowntimeSegment[];
|
|
2076
2092
|
}
|
|
2093
|
+
interface WorkspaceLightStatusSegment {
|
|
2094
|
+
status: LightStatus;
|
|
2095
|
+
startMinuteIndex: number;
|
|
2096
|
+
endMinuteIndex: number;
|
|
2097
|
+
startTime: string;
|
|
2098
|
+
endTime: string;
|
|
2099
|
+
durationSeconds: number;
|
|
2100
|
+
durationMinutes: number;
|
|
2101
|
+
isCurrent?: boolean;
|
|
2102
|
+
lastError?: string | null;
|
|
2103
|
+
}
|
|
2104
|
+
interface WorkspaceLightTimeline {
|
|
2105
|
+
shiftId: number;
|
|
2106
|
+
shiftLabel: string;
|
|
2107
|
+
shiftStart: string;
|
|
2108
|
+
shiftEnd: string;
|
|
2109
|
+
totalMinutes: number;
|
|
2110
|
+
completedMinutes: number;
|
|
2111
|
+
upSeconds: number;
|
|
2112
|
+
downSeconds: number;
|
|
2113
|
+
unknownSeconds: number;
|
|
2114
|
+
totalObservedSeconds: number;
|
|
2115
|
+
downtimeSeconds: number;
|
|
2116
|
+
uptimePercentage: number | null;
|
|
2117
|
+
hasData: boolean;
|
|
2118
|
+
generatedAt: string;
|
|
2119
|
+
bulbIp: string | null;
|
|
2120
|
+
currentStatus?: LightStatus | null;
|
|
2121
|
+
currentStartedAt?: string | null;
|
|
2122
|
+
currentDurationSeconds?: number | null;
|
|
2123
|
+
lastSeenAt?: string | null;
|
|
2124
|
+
lastError?: string | null;
|
|
2125
|
+
points: WorkspaceUptimeTimelinePoint[];
|
|
2126
|
+
statusSegments: WorkspaceLightStatusSegment[];
|
|
2127
|
+
}
|
|
2128
|
+
type HealthTimelineMode = 'camera' | 'light';
|
|
2077
2129
|
interface HealthFilterOptions {
|
|
2078
2130
|
lineId?: string;
|
|
2079
2131
|
companyId?: string;
|
|
@@ -4547,6 +4599,24 @@ interface UseWorkspaceUptimeTimelineResult {
|
|
|
4547
4599
|
}
|
|
4548
4600
|
declare const useWorkspaceUptimeTimeline: (options: UseWorkspaceUptimeTimelineOptions) => UseWorkspaceUptimeTimelineResult;
|
|
4549
4601
|
|
|
4602
|
+
interface UseWorkspaceLightTimelineOptions {
|
|
4603
|
+
workspaceId?: string;
|
|
4604
|
+
lineId?: string;
|
|
4605
|
+
enabled?: boolean;
|
|
4606
|
+
refreshInterval?: number;
|
|
4607
|
+
shiftConfig?: any;
|
|
4608
|
+
timezone?: string;
|
|
4609
|
+
date?: string;
|
|
4610
|
+
shiftId?: number;
|
|
4611
|
+
}
|
|
4612
|
+
interface UseWorkspaceLightTimelineResult {
|
|
4613
|
+
timeline: WorkspaceLightTimeline | null;
|
|
4614
|
+
loading: boolean;
|
|
4615
|
+
error: MetricsError | null;
|
|
4616
|
+
refetch: () => Promise<void>;
|
|
4617
|
+
}
|
|
4618
|
+
declare const useWorkspaceLightTimeline: (options: UseWorkspaceLightTimelineOptions) => UseWorkspaceLightTimelineResult;
|
|
4619
|
+
|
|
4550
4620
|
/**
|
|
4551
4621
|
* @typedef {object} DateTimeConfigShape
|
|
4552
4622
|
* @description Shape of the dateTimeConfig object expected from useDateTimeConfig.
|
|
@@ -5667,8 +5737,12 @@ declare const qualityService: {
|
|
|
5667
5737
|
type QualityService = typeof qualityService;
|
|
5668
5738
|
|
|
5669
5739
|
declare const workspaceService: {
|
|
5670
|
-
_workspaceDisplayNamesCache: Map<string,
|
|
5671
|
-
|
|
5740
|
+
_workspaceDisplayNamesCache: Map<string, {
|
|
5741
|
+
displayNames: Map<string, string>;
|
|
5742
|
+
timestamp: number;
|
|
5743
|
+
}>;
|
|
5744
|
+
_workspaceDisplayNamesInFlight: Map<string, Promise<Map<string, string>>>;
|
|
5745
|
+
_workspaceDisplayNamesByLineInFlight: Map<string, Promise<Map<string, Map<string, string>>>>;
|
|
5672
5746
|
_cacheExpiryMs: number;
|
|
5673
5747
|
_workspacesCache: Map<string, {
|
|
5674
5748
|
workspaces: Workspace[];
|
|
@@ -5688,6 +5762,12 @@ declare const workspaceService: {
|
|
|
5688
5762
|
}>;
|
|
5689
5763
|
_workspaceCameraIpsInFlight: Map<string, Promise<Record<string, WorkspaceCameraIpInfo>>>;
|
|
5690
5764
|
_workspaceCameraIpsCacheExpiryMs: number;
|
|
5765
|
+
_workspaceLightConfigsCache: Map<string, {
|
|
5766
|
+
lightConfigs: Record<string, WorkspaceLightConfigInfo>;
|
|
5767
|
+
timestamp: number;
|
|
5768
|
+
}>;
|
|
5769
|
+
_workspaceLightConfigsInFlight: Map<string, Promise<Record<string, WorkspaceLightConfigInfo>>>;
|
|
5770
|
+
_workspaceLightConfigsCacheExpiryMs: number;
|
|
5691
5771
|
getWorkspaces(lineId: string, options?: {
|
|
5692
5772
|
enabledOnly?: boolean;
|
|
5693
5773
|
force?: boolean;
|
|
@@ -5710,11 +5790,17 @@ declare const workspaceService: {
|
|
|
5710
5790
|
lineIds?: string[];
|
|
5711
5791
|
force?: boolean;
|
|
5712
5792
|
}): Promise<Record<string, WorkspaceCameraIpInfo>>;
|
|
5793
|
+
getWorkspaceLightConfigs(params: {
|
|
5794
|
+
workspaceIds?: string[];
|
|
5795
|
+
lineIds?: string[];
|
|
5796
|
+
force?: boolean;
|
|
5797
|
+
}): Promise<Record<string, WorkspaceLightConfigInfo>>;
|
|
5713
5798
|
/**
|
|
5714
5799
|
* Fetches workspace display names from the database
|
|
5715
5800
|
* Returns a map of workspace_id -> display_name
|
|
5716
5801
|
*/
|
|
5717
5802
|
getWorkspaceDisplayNames(companyId?: string, lineId?: string): Promise<Map<string, string>>;
|
|
5803
|
+
getWorkspaceDisplayNamesByLine(companyId?: string, lineIds?: string[]): Promise<Map<string, Map<string, string>>>;
|
|
5718
5804
|
/**
|
|
5719
5805
|
* Gets cached workspace display names (with cache expiry)
|
|
5720
5806
|
*/
|
|
@@ -5773,10 +5859,13 @@ declare class WorkspaceHealthService {
|
|
|
5773
5859
|
static getInstance(): WorkspaceHealthService;
|
|
5774
5860
|
private getFromCache;
|
|
5775
5861
|
private setCache;
|
|
5862
|
+
private hasBackendUrl;
|
|
5863
|
+
private isCanonicalDate;
|
|
5864
|
+
private fetchBackendWorkspaceUptimeSummaries;
|
|
5865
|
+
private fetchBackendWorkspaceUptimeTimeline;
|
|
5776
5866
|
private getShiftTiming;
|
|
5777
5867
|
private getShiftTimingForDateShift;
|
|
5778
|
-
private
|
|
5779
|
-
private normalizeOutputHourly;
|
|
5868
|
+
private mergeOutputArrayValues;
|
|
5780
5869
|
/**
|
|
5781
5870
|
* Group multi-SKU `performance_metrics` rows by workspace and merge their
|
|
5782
5871
|
* per-minute series. Multi-SKU lines emit one row per (workspace, sku)
|
|
@@ -5791,11 +5880,25 @@ declare class WorkspaceHealthService {
|
|
|
5791
5880
|
* row encountered for the workspace.
|
|
5792
5881
|
*/
|
|
5793
5882
|
private mergeRecordsByWorkspace;
|
|
5794
|
-
private
|
|
5795
|
-
private
|
|
5796
|
-
private
|
|
5883
|
+
private parseShiftTime;
|
|
5884
|
+
private getShiftDurationMinutes;
|
|
5885
|
+
private resolveLightShiftWindow;
|
|
5886
|
+
private isLightStatus;
|
|
5887
|
+
private secondsBetween;
|
|
5888
|
+
private roundPercent;
|
|
5889
|
+
private emptyLightTimeline;
|
|
5890
|
+
private resolveWorkspaceLightConfigs;
|
|
5891
|
+
private fetchLightIntervals;
|
|
5892
|
+
private getLightIntervalEffectiveRange;
|
|
5893
|
+
private summarizeLightIntervals;
|
|
5894
|
+
private summarizeResolvedLightConfigs;
|
|
5895
|
+
getWorkspaceLightSummaries(workspaces: Array<{
|
|
5896
|
+
workspace_id?: string | null;
|
|
5897
|
+
line_id?: string | null;
|
|
5898
|
+
}>, passedShiftConfig?: any, passedTimezone?: string, overrideDate?: string, overrideShiftId?: number, now?: Date, lineShiftConfigs?: Map<string, any>): Promise<Map<string, WorkspaceLightSummary>>;
|
|
5899
|
+
getWorkspaceLightTimeline(workspaceId: string, lineId: string | undefined | null, passedShiftConfig?: any, passedTimezone?: string, overrideDate?: string, overrideShiftId?: number, now?: Date): Promise<WorkspaceLightTimeline>;
|
|
5797
5900
|
getWorkspaceHealthStatus(options?: HealthFilterOptions): Promise<WorkspaceHealthWithStatus[]>;
|
|
5798
|
-
getWorkspaceUptimeTimeline(workspaceId: string, companyId: string, passedShiftConfig?: any, passedTimezone?: string, overrideDate?: string, overrideShiftId?: number): Promise<WorkspaceUptimeTimeline>;
|
|
5901
|
+
getWorkspaceUptimeTimeline(workspaceId: string, companyId: string, passedShiftConfig?: any, passedTimezone?: string, overrideDate?: string, overrideShiftId?: number, lineId?: string): Promise<WorkspaceUptimeTimeline>;
|
|
5799
5902
|
getWorkspaceHealthById(workspaceId: string): Promise<WorkspaceHealthWithStatus | null>;
|
|
5800
5903
|
getHealthSummary(lineId?: string, companyId?: string): Promise<HealthSummary>;
|
|
5801
5904
|
getHealthMetrics(workspaceId: string, startDate?: string, endDate?: string): Promise<HealthMetrics>;
|
|
@@ -5811,7 +5914,7 @@ declare class WorkspaceHealthService {
|
|
|
5811
5914
|
* This prevents data collision when multiple lines have workspaces with the same workspace_id
|
|
5812
5915
|
*/
|
|
5813
5916
|
private getUptimeMapKey;
|
|
5814
|
-
calculateWorkspaceUptime(companyId: string, passedShiftConfig?: any, timezone?: string, lineShiftConfigs?: Map<string, any>, overrideDate?: string, overrideShiftId?: number): Promise<Map<string, UptimeDetails>>;
|
|
5917
|
+
calculateWorkspaceUptime(companyId: string, passedShiftConfig?: any, timezone?: string, lineShiftConfigs?: Map<string, any>, overrideDate?: string, overrideShiftId?: number, lineId?: string): Promise<Map<string, UptimeDetails>>;
|
|
5815
5918
|
/**
|
|
5816
5919
|
* Calculate uptime for workspaces across multiple lines with different shift configurations
|
|
5817
5920
|
* Used in factory view where each line may have different shift schedules
|
|
@@ -6644,43 +6747,48 @@ declare const createStorageService: (supabase: SupabaseClient$1) => {
|
|
|
6644
6747
|
};
|
|
6645
6748
|
type StorageService = ReturnType<typeof createStorageService>;
|
|
6646
6749
|
|
|
6647
|
-
/**
|
|
6648
|
-
* Session Tracker Service
|
|
6649
|
-
* Tracks dashboard usage with active/passive time detection
|
|
6650
|
-
*/
|
|
6651
6750
|
interface SessionTrackerConfig {
|
|
6652
6751
|
apiBaseUrl: string;
|
|
6653
6752
|
getAccessToken: () => Promise<string | null>;
|
|
6753
|
+
getCachedAccessToken?: () => string | null;
|
|
6654
6754
|
onSessionStart?: (sessionId: string) => void;
|
|
6655
6755
|
onSessionEnd?: (sessionId: string, reason: string) => void;
|
|
6656
6756
|
}
|
|
6757
|
+
|
|
6758
|
+
/**
|
|
6759
|
+
* Session Tracker Service
|
|
6760
|
+
* Tracks dashboard usage with active/passive time detection.
|
|
6761
|
+
*
|
|
6762
|
+
* v2 contract:
|
|
6763
|
+
* - active time only follows trusted user input for IDLE_THRESHOLD_MS
|
|
6764
|
+
* - page load, auth refresh, focus, and visibility return never create active time
|
|
6765
|
+
* - hidden/blurred time is not counted
|
|
6766
|
+
*/
|
|
6767
|
+
|
|
6657
6768
|
declare class SessionTracker {
|
|
6658
6769
|
private session;
|
|
6659
6770
|
private heartbeatInterval;
|
|
6660
|
-
private graceTimeout;
|
|
6661
6771
|
private tickInterval;
|
|
6772
|
+
private heartbeatInFlight;
|
|
6773
|
+
private pendingForcedHeartbeat;
|
|
6662
6774
|
private config;
|
|
6775
|
+
private activityAccumulator;
|
|
6776
|
+
private transport;
|
|
6777
|
+
private readonly TRACKER_VERSION;
|
|
6663
6778
|
private readonly HEARTBEAT_INTERVAL_MS;
|
|
6664
|
-
private readonly HIDDEN_GRACE_PERIOD_MS;
|
|
6665
6779
|
private readonly IDLE_THRESHOLD_MS;
|
|
6666
6780
|
private readonly TICK_INTERVAL_MS;
|
|
6781
|
+
private readonly MAX_SEGMENTS_PER_REQUEST;
|
|
6667
6782
|
private boundHandleActivity;
|
|
6668
6783
|
private boundHandleVisibility;
|
|
6669
6784
|
private boundHandleBeforeUnload;
|
|
6785
|
+
private boundHandlePageHide;
|
|
6786
|
+
private boundHandlePageShow;
|
|
6670
6787
|
private boundHandleFocus;
|
|
6671
6788
|
private boundHandleBlur;
|
|
6672
6789
|
constructor(config: SessionTrackerConfig);
|
|
6673
|
-
/**
|
|
6674
|
-
* Start a new session
|
|
6675
|
-
*/
|
|
6676
6790
|
startSession(userId: string, companyId: string | null): Promise<void>;
|
|
6677
|
-
/**
|
|
6678
|
-
* End the current session
|
|
6679
|
-
*/
|
|
6680
6791
|
endSession(reason: string): Promise<void>;
|
|
6681
|
-
/**
|
|
6682
|
-
* Get current session stats (for debugging/display)
|
|
6683
|
-
*/
|
|
6684
6792
|
getSessionStats(): {
|
|
6685
6793
|
totalMs: number;
|
|
6686
6794
|
activeMs: number;
|
|
@@ -6689,20 +6797,29 @@ declare class SessionTracker {
|
|
|
6689
6797
|
private setupActivityListeners;
|
|
6690
6798
|
private setupVisibilityListener;
|
|
6691
6799
|
private setupFocusListeners;
|
|
6692
|
-
private
|
|
6800
|
+
private setupPageLifecycleListeners;
|
|
6693
6801
|
private handleUserActivity;
|
|
6694
6802
|
private handleVisibilityChange;
|
|
6695
6803
|
private handleWindowFocus;
|
|
6696
6804
|
private handleWindowBlur;
|
|
6697
6805
|
private handleBeforeUnload;
|
|
6806
|
+
private handlePageHide;
|
|
6807
|
+
private handlePageShow;
|
|
6808
|
+
private finalizeWithKeepalive;
|
|
6698
6809
|
private startTimeTick;
|
|
6699
6810
|
private shouldTrackTime;
|
|
6811
|
+
private getActivityState;
|
|
6700
6812
|
private updateTimes;
|
|
6813
|
+
private flushCurrentSegment;
|
|
6701
6814
|
private startHeartbeat;
|
|
6702
6815
|
private sendStartSession;
|
|
6703
6816
|
private sendHeartbeat;
|
|
6817
|
+
private drainPendingSegmentsBeforeEnd;
|
|
6704
6818
|
private sendEndSession;
|
|
6705
6819
|
private cleanup;
|
|
6820
|
+
private getDashboardView;
|
|
6821
|
+
private getDocumentVisibility;
|
|
6822
|
+
private getWindowFocus;
|
|
6706
6823
|
}
|
|
6707
6824
|
declare function createSessionTracker(config: SessionTrackerConfig): SessionTracker;
|
|
6708
6825
|
|
|
@@ -7165,6 +7282,7 @@ declare const upsertWorkspaceDisplayNameInCache: (params: {
|
|
|
7165
7282
|
displayName: string;
|
|
7166
7283
|
enabled?: boolean;
|
|
7167
7284
|
}) => void;
|
|
7285
|
+
declare const preInitializeWorkspaceDisplayNamesForLines: (lineIds: string[]) => Promise<void>;
|
|
7168
7286
|
/**
|
|
7169
7287
|
* Pre-initialize workspace display names for a specific line
|
|
7170
7288
|
* This ensures display names are available before components render
|
|
@@ -7797,6 +7915,7 @@ interface HourlyOutputBarClickPayload {
|
|
|
7797
7915
|
timeRange: string;
|
|
7798
7916
|
startTime: string;
|
|
7799
7917
|
endTime: string;
|
|
7918
|
+
timezone?: string;
|
|
7800
7919
|
output: number;
|
|
7801
7920
|
target: number | null;
|
|
7802
7921
|
status: "below_target" | "met_target";
|
|
@@ -8785,6 +8904,9 @@ interface ClipTimeFilter {
|
|
|
8785
8904
|
startTime: string;
|
|
8786
8905
|
endTime: string;
|
|
8787
8906
|
sourceLabel?: string;
|
|
8907
|
+
timezone?: string;
|
|
8908
|
+
categoryId?: string;
|
|
8909
|
+
categoryIds?: string[];
|
|
8788
8910
|
}
|
|
8789
8911
|
type IdleClipSort = 'latest' | 'idle_duration_desc';
|
|
8790
8912
|
interface SOPCategory {
|
|
@@ -8823,6 +8945,8 @@ interface FileManagerFiltersProps {
|
|
|
8823
8945
|
idleTimeVlmEnabled?: boolean;
|
|
8824
8946
|
showPercentileCycleFilters?: boolean;
|
|
8825
8947
|
prefetchedClipMetadata?: Record<string, ClipMetadata[]>;
|
|
8948
|
+
prefetchedClipTotals?: Record<string, number>;
|
|
8949
|
+
prefetchedPercentileClips?: Record<string, BottleneckVideoData[]>;
|
|
8826
8950
|
externallyManagedLoadingCategories?: Record<string, boolean>;
|
|
8827
8951
|
activeCategoryLoading?: boolean;
|
|
8828
8952
|
idleClipSort?: IdleClipSort;
|
|
@@ -8843,6 +8967,18 @@ interface LowMomentsPrefetchSnapshot {
|
|
|
8843
8967
|
loading: boolean;
|
|
8844
8968
|
error: string | null;
|
|
8845
8969
|
}
|
|
8970
|
+
interface InitialTimePrefetchSnapshot {
|
|
8971
|
+
key: string;
|
|
8972
|
+
categoryId: string;
|
|
8973
|
+
metadata: ClipMetadata[];
|
|
8974
|
+
metadataByCategory?: Record<string, ClipMetadata[]>;
|
|
8975
|
+
totalsByCategory?: Record<string, number>;
|
|
8976
|
+
percentileClipsByCategory?: Record<string, BottleneckVideoData[]>;
|
|
8977
|
+
firstVideo: BottleneckVideoData | null;
|
|
8978
|
+
total: number;
|
|
8979
|
+
loading: boolean;
|
|
8980
|
+
error: string | null;
|
|
8981
|
+
}
|
|
8846
8982
|
/**
|
|
8847
8983
|
* Props for the BottlenecksContent component
|
|
8848
8984
|
*/
|
|
@@ -8906,6 +9042,10 @@ interface BottlenecksContentProps {
|
|
|
8906
9042
|
* Optional Low moments metadata + first-video snapshot from workspace detail prefetch.
|
|
8907
9043
|
*/
|
|
8908
9044
|
lowMomentsPrefetch?: LowMomentsPrefetchSnapshot | null;
|
|
9045
|
+
/**
|
|
9046
|
+
* Optional scoped metadata + first-video snapshot for chart hour handoff.
|
|
9047
|
+
*/
|
|
9048
|
+
initialTimePrefetch?: InitialTimePrefetchSnapshot | null;
|
|
8909
9049
|
/**
|
|
8910
9050
|
* Optional time filter applied when opening the clips explorer from a chart hour.
|
|
8911
9051
|
*/
|
|
@@ -9236,21 +9376,21 @@ interface WorkspaceHealthCardProps {
|
|
|
9236
9376
|
onClick?: (workspace: WorkspaceHealthWithStatus) => void;
|
|
9237
9377
|
showDetails?: boolean;
|
|
9238
9378
|
className?: string;
|
|
9239
|
-
onViewDetails?: (workspace: WorkspaceHealthWithStatus) => void;
|
|
9379
|
+
onViewDetails?: (workspace: WorkspaceHealthWithStatus, mode?: HealthTimelineMode, source?: 'card_button' | 'light_chip') => void;
|
|
9240
9380
|
}
|
|
9241
9381
|
declare const WorkspaceHealthCard: React__default.FC<WorkspaceHealthCardProps>;
|
|
9242
9382
|
interface CompactWorkspaceHealthCardProps {
|
|
9243
9383
|
workspace: WorkspaceHealthWithStatus;
|
|
9244
9384
|
onClick?: (workspace: WorkspaceHealthWithStatus) => void;
|
|
9245
9385
|
className?: string;
|
|
9246
|
-
onViewDetails?: (workspace: WorkspaceHealthWithStatus) => void;
|
|
9386
|
+
onViewDetails?: (workspace: WorkspaceHealthWithStatus, mode?: HealthTimelineMode, source?: 'card_button' | 'light_chip') => void;
|
|
9247
9387
|
}
|
|
9248
9388
|
declare const CompactWorkspaceHealthCard: React__default.FC<CompactWorkspaceHealthCardProps>;
|
|
9249
9389
|
|
|
9250
9390
|
interface HealthStatusGridProps {
|
|
9251
9391
|
workspaces: WorkspaceHealthWithStatus[];
|
|
9252
9392
|
onWorkspaceClick?: (workspace: WorkspaceHealthWithStatus) => void;
|
|
9253
|
-
onWorkspaceViewDetails?: (workspace: WorkspaceHealthWithStatus) => void;
|
|
9393
|
+
onWorkspaceViewDetails?: (workspace: WorkspaceHealthWithStatus, mode?: HealthTimelineMode, source?: 'card_button' | 'light_chip') => void;
|
|
9254
9394
|
showFilters?: boolean;
|
|
9255
9395
|
groupBy?: 'none' | 'line' | 'status';
|
|
9256
9396
|
className?: string;
|
|
@@ -10443,21 +10583,18 @@ interface TargetsViewProps {
|
|
|
10443
10583
|
onSaveChanges?: (lineId: string) => void;
|
|
10444
10584
|
}
|
|
10445
10585
|
|
|
10446
|
-
|
|
10447
|
-
|
|
10448
|
-
|
|
10449
|
-
|
|
10586
|
+
/**
|
|
10587
|
+
* TargetsView component for managing production targets
|
|
10588
|
+
*
|
|
10589
|
+
* This component allows for configuring:
|
|
10590
|
+
* - Production targets (PPH, cycle time, day output)
|
|
10591
|
+
* - Action types per workspace
|
|
10592
|
+
* - Product codes
|
|
10593
|
+
* - Supports both day and night shifts
|
|
10594
|
+
*/
|
|
10595
|
+
declare const TargetsView: React__default.FC<TargetsViewProps>;
|
|
10450
10596
|
|
|
10451
|
-
declare const AuthenticatedTargetsView: React__default.NamedExoticComponent<
|
|
10452
|
-
lineIds?: string[] | Record<string, string | undefined>;
|
|
10453
|
-
selectedLineId?: string;
|
|
10454
|
-
}) | (TargetsViewProps & {
|
|
10455
|
-
lineIds?: string[] | Record<string, string | undefined>;
|
|
10456
|
-
selectedLineId?: string;
|
|
10457
|
-
} & React__default.RefAttributes<React__default.Component<TargetsViewProps & {
|
|
10458
|
-
lineIds?: string[] | Record<string, string | undefined>;
|
|
10459
|
-
selectedLineId?: string;
|
|
10460
|
-
}, any, any>>)>;
|
|
10597
|
+
declare const AuthenticatedTargetsView: React__default.NamedExoticComponent<TargetsViewProps>;
|
|
10461
10598
|
|
|
10462
10599
|
type TabType = 'overview' | 'monthly_history' | 'bottlenecks';
|
|
10463
10600
|
type NavigationHandler = (url: string) => void;
|
|
@@ -10868,4 +11005,4 @@ interface ThreadSidebarProps {
|
|
|
10868
11005
|
}
|
|
10869
11006
|
declare const ThreadSidebar: React__default.FC<ThreadSidebarProps>;
|
|
10870
11007
|
|
|
10871
|
-
export { ACTION_FAMILIES, ACTION_NAMES, AIAgentView, AcceptInvite, type AcceptInviteProps, AcceptInviteView, type AcceptInviteViewProps, type AccessControlReturn, type AccessScope$1 as AccessScope, type Action, type ActionFamily, type ActionName, type ActionService, ActionThreshold, type ActiveBreak, AdvancedFilterDialog, AdvancedFilterPanel, type AnalyticsConfig, type AppRoleLevel, type AssignUserToFactoriesInput, type AssignUserToLinesInput, AudioService, AuthCallback, type AuthCallbackProps, AuthCallbackView, type AuthCallbackViewProps, type AuthConfig, AuthProvider, AuthService, type AuthStatus, type AuthUser, AuthenticatedBottleneckClipsView, AuthenticatedFactoryView, AuthenticatedHelpView, AuthenticatedHomeView, AuthenticatedShiftsView, AuthenticatedTargetsView, AuthenticatedTicketsView, AuthenticatedWorkspaceHealthView, AvatarUpload, type AvatarUploadProps, type AwardBadgeType, type AwardNotificationRecord, type AwardNotificationType, type AwardRecord, type AwardType, 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, ClipsCostView, 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, type CycleTimeHourClickPayload, 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, DashboardKPIs, DashboardLayout, type DashboardLayoutProps, DashboardOverridesProvider, DashboardProvider, type DashboardService, type DashboardSurface, type DatabaseConfig, DateDisplay, type DateKeyRange, type DateTimeConfig, DateTimeDisplay, type DateTimeDisplayProps, type DayData, type DayHistoryData, type DaySummaryData, DebugAuth, DebugAuthView, DetailedHealthStatus, type DetectLineOvertakeEventsParams, type DiagnosisOption$1 as DiagnosisOption, DiagnosisVideoModal, type DummyAware, type DynamicLineShiftConfig, EFFICIENCY_ON_TRACK_THRESHOLD, 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, FittingTitle, 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, type HourlyOutputBarClickPayload, HourlyOutputChart, type HourlyOutputChartProps, type HourlyPerformance, HourlyUptimeChart, type HourlyUptimeChartProps, type IPrefetchManager, type ISTDateProps, ISTTimer, type ISTTimerProps, type IdleTimeClipMetadata, type IdleTimeReason, type IdleTimeReasonData, type IdleTimeReasonsData, type IdleTimeReasonsResponse, IdleTimeVlmConfigProvider, 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, KPI_SIGNAL_LABELS, KPIsOverviewView, type KPIsOverviewViewProps, type KpiAreaNode, type KpiFactoryNode, type KpiLineHierarchy, KpiSignal, type KpiSignalStatus, KpiTrend, 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, LineInfo, LineIssueResolutionSummary, type LineLeaderboardDisplayRow, type LineMetrics, LineMonthlyHistory, type LineMonthlyHistoryProps, type LineMonthlyMetric, LineMonthlyPdfGenerator, type LineMonthlyPdfGeneratorProps, type LineNavigationParams, type LineOvertakeCrossedLine, type LineOvertakeDirection, type LineOvertakeEvent, LineOvertakeNotificationManager, type LineOvertakeNotificationManagerProps, type LineOvertakeRoleMode, type LineOvertakeRowType, type LineOvertakeSnapshotRow, LinePdfExportButton, type LinePdfExportButtonProps, LinePdfGenerator, type LinePdfGeneratorProps, type LineProps, type LineRecord, type LineShiftConfig, type LineShiftInfo, LineSignal, LineSkuBreakdownItem, type LineSnapshot, type LineSupervisor, 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, type LowEfficiencyAiSummary, type LowMomentsPrefetchSnapshot, MainLayout, type MainLayoutProps, MapGridView, type MapViewConfig, type Metric, MetricCard, type MetricCardProps$1 as MetricCardProps, type MetricsError, MinimalOnboardingPopup, type MixpanelSessionOptions, MobileMenuProvider, type MobileMenuProviderProps, type MonthWeekRange, MonthlyTrendSummary, 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, PlantHeadView, PlayPauseIndicator, type PlayPauseIndicatorProps, 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, ProductionPlanApiError, type ProductionPlanReasonCode, type ProductionPlanState, type ProductionPlanStateResponse, ProductionPlanView, type ProductionPlanViewProps, type ProductionPlanWorkstation, type ProfileMenuItem, ProfileView, type QualityMetric, type QualityOverview, type QualityService, ROOT_DASHBOARD_EVENT_NAMES, type RateLimitOptions, type RateLimitResult, type RealtimeLineMetricsProps, type RealtimeService, type RedFlowConfidence, type RedFlowDriver, type RedFlowExplanation, type RedFlowExplanationSummary, type RedFlowTimeline, type RedFlowTimelineBin, type RedFlowWorstMinute, RegistryProvider, type RenderReadyCallback$1 as RenderReadyCallback, type RoleAssignmentKind, RoleBadge, type RoleMetadata, type RoutePath, type S3ClipsAPIParams, S3ClipsSupabaseService as S3ClipsService, type S3Config, type S3ListObjectsParams, S3Service, type S3ServiceConfig, SENTRY_HANDLED_EVENT_SESSION_LIMIT, SENTRY_HANDLED_EVENT_WINDOW_MS, SENTRY_QUOTA_STORAGE_KEY, type SKU, type SKUConfig, SKUManagementView, type SOPCategory$1 as SOPCategory, SOPComplianceChart, type SOPComplianceChartProps, SSEChatClient, type SSEEvent, type SaveProductionPlanPayload, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, type SentryCaptureOptions, type SentryCaptureSeverity, SessionTracker, SessionTrackingContext, SessionTrackingProvider, SettingsPopup, type SettingsPopupItem, type ShiftConfig, ShiftConfiguration, 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, SkuBreakdownItem, SkuSegmentItem, type StatusChangeCallback$1 as StatusChangeCallback, type StorageService, type StreamProxyConfig, type SubscriberId, SubscriptionManager, SubscriptionManagerProvider, type SupabaseClient, SupabaseProvider, type Supervisor, type SupervisorAssignment, type SupervisorConfig, type SupervisorDetail, 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, type ThemeColorValue, type ThemeConfig, ThreadSidebar, TicketHistory, TicketHistoryService, type TicketsConfig, TicketsView, type TicketsViewProps, TimeDisplay, TimePickerDropdown, Timer, TimezoneProvider, TimezoneService, type TodayUsage, type TodayUsageData, type TodayUsageReport, type TopPerformerRecord, type TrackingEventProperties, type TrendDirection, type UnderperformingWorkspace, type UnderperformingWorkspaces, type UpdateUserNameInput, type UpdateUserProfileInput, type UpdateUserRoleInput, type UptimeDetails, UptimeDonutChart, type UptimeDonutChartProps, UptimeLineChart, type UptimeLineChartProps, UptimeMetricCards, type UptimeMetricCardsProps, type UptimeStatus$1 as 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, UserAvatar, type UserAvatarProps, 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, VideoGridMetricMode, VideoGridView, type VideoIndex, type VideoIndexEntry, type VideoMetadata, VideoPlayer, type VideoPlayerProps, type VideoPlayerRef, VideoPreloader, type VideoSeverity, type VideoSummary, type VideoType, WORKSPACE_POSITIONS, type WeeklyTopPerformerRecord, type WhatsAppSendResult, WhatsAppShareButton, type WhatsAppShareButtonProps, type WhatsappService, Workspace, WorkspaceActionUpdate, WorkspaceCameraIpInfo, WorkspaceCard, type WorkspaceCardProps, type WorkspaceConfig$1 as WorkspaceConfig, WorkspaceCycleTimeMetricCards, type WorkspaceCycleTimeMetricCardsProps, WrappedComponent as WorkspaceDetailView, 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, 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, WorkspaceVideoStream, WorkspaceWhatsAppShareButton, type WorkspaceWhatsAppShareProps, actionService, addSentryBreadcrumb, aggregateKPIsFromLineMetricsRows, aggregateLineSignals, alertsService, apiUtils, areAllLinesOnSameShift, authCoreService, authOTPService, authRateLimitService, awardsService, buildDateKey, buildKPIsFromLineMetricsRow, buildKpiLineHierarchy, buildLegacyLineOvertakeEventKey, buildLineLeaderboardRows, buildLineOvertakeEventKey, buildLineSkuBreakdown, buildShiftGroupsKey, canPermissionEditProductionPlan, canRoleAccessDashboardPath, canRoleAccessTeamManagement, canRoleAssignFactories, canRoleAssignLines, canRoleChangeRole, canRoleEditProductionPlan, canRoleInviteRole, canRoleManageCompany, canRoleManageTargets, canRoleManageUsers, canRoleRemoveUser, canRoleViewClipsCost, canRoleViewUsageStats, captureHandledFrontendException, captureSentryException, captureSentryMessage, checkRateLimit, clearAllRateLimits, clearRateLimit, clearS3VideoCache, clearS3VideoFromCache, clearSentryContext, clearWorkspaceDisplayNamesCache, cn, combineLineMetricsRows, countRealSkus, createDefaultKPIs, createInvitationService, createLinesService, createSessionTracker, createStorageService, createStreamProxyHandler, createSupabaseClient, createSupervisorService, createThrottledReload, createUserManagementService, createUserService, dashboardService, deleteThread, detectLineOvertakeEvents, fetchIdleTimeReasons, fetchLineDummySkuId, fetchLineSkuCatalog, filterDataByDateKeyRange, filterRealSkuBreakdown, forceRefreshWorkspaceDisplayNames, formatAwardMonth, formatDateInZone, formatDateKeyForDisplay, formatDateTimeInZone, formatDuration, formatISTDate, formatIdleTime, formatRangeLabel, formatReasonLabel, formatRelativeTime, formatTimeInZone, fromUrlFriendlyName, getActionDisplayName, getActiveShift, getAllLineDisplayNames, getAllThreadMessages, getAllWorkspaceDisplayNamesAsync, getAllWorkspaceDisplayNamesSnapshot, getAnonClient, getAssignableRoles, getAssignmentColumnLabel, getAvailableShiftIds, getAwardBadgeType, getAwardDescription, getAwardTitle, getBrowserName, getCameraNumber, getCompanyMetricsTableName, getConfigurableShortWorkspaceDisplayName, getConfigurableWorkspaceDisplayName, getConfiguredLineIds, getCoreSessionRecordingProperties, getCoreSessionReplayUrl, getCurrentShift, getCurrentShiftForLine, getCurrentTimeInZone, getCurrentWeekFullRange, getCurrentWeekToDateRange, getDashboardHeaderTimeInZone, getDateKeyFromDate, getDateKeyFromValue, getDayDateKey, getDaysDifferenceInZone, getDefaultCameraStreamUrl, getDefaultLineId, getDefaultTabForWorkspace, getInitials, getKpiSignalLabel, getKpiSignalStatus, getLineDisplayName, getManufacturingInsights, getMetricsTablePrefix, getMonthKeyBounds, getMonthWeekRanges, getMonthlyTrendComparisonLabel, getNextUpdateInterval, getOperationalDate, getRoleAssignmentKind, getRoleDescription, getRoleLabel, getRoleMetadata, getRoleNavPaths, getS3SignedUrl, getS3VideoSrc, getShiftData, getShiftNameById, getShiftWorkDurationSeconds, getShortShiftName, getShortWorkspaceDisplayName, getShortWorkspaceDisplayNameAsync, getStoredWorkspaceMappings, getSubscriptionManager, getThreadMessages, getUniformShiftGroup, getUserThreads, getUserThreadsPaginated, getVisibleRolesForCurrentUser, getWorkspaceDisplayName, getWorkspaceDisplayNameAsync, getWorkspaceDisplayNamesMap, getWorkspaceFromUrl, getWorkspaceNavigationParams, groupLinesByShift, hasAnyShiftData, identifyCoreUser, initializeCoreMixpanel, isEfficiencyOnTrack, isFactoryScopedRole, isFullMonthRange, isIgnorableFrontendError, isLegacyConfiguration, isLoopbackHostname, isPrefetchError, isRealSku, isSafari, isSupervisorRole, isTransitionPeriod, isUrlPermanentlyFailed, isValidFactoryViewConfiguration, isValidLineInfoPayload, isValidPrefetchParams, isValidPrefetchStatus, isValidWorkspaceDetailedMetricsPayload, isValidWorkspaceMetricsPayload, isWorkspaceDisplayNamesLoaded, isWorkspaceDisplayNamesLoading, lineLeaderboardService, linesService, mergeWithDefaultConfig, migrateLegacyConfiguration, normalizeActionFamily, normalizeDateKeyRange, normalizeDateKeyRangeUnbounded, normalizeRoleLevel, optifyeAgentClient, parseDateKeyToDate, parseS3Uri, pickPreferredLineMetricsRow, preInitializeWorkspaceDisplayNames, preloadS3Video, preloadS3VideoUrl, preloadS3VideosUrl, preloadVideoUrl, preloadVideosUrl, productionPlanService, qualityService, realtimeService, refreshWorkspaceDisplayNames, resetCoreMixpanel, resetFailedUrl, resetSentryQuotaForTests, resetSubscriptionManager, resolveDefaultSkuId, resolveLiveSkuId, s3VideoPreloader, selectPreferredLineMetricsRow, setSentryUserContext, setSentryWorkspaceContext, shouldEnableLocalDevTestLogin, 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, useClipsInit, useCompanyClipsCost, useCompanyFastSlowClipFiltersEnabled, useCompanyHasVlmEnabledLine, useCompanyUsersUsage, useCompanyWorkspaceHourAiSummaryEnabled, useComponentOverride, useCustomConfig, useDashboardConfig, useDashboardMetrics, useDatabaseConfig, useDateFormatter, useDateTimeConfig, useDynamicShiftConfig, useEndpointsConfig, useEntityConfig, useFactoryOverviewMetrics, useFeatureFlags, useFormatNumber, useHasLineAccess, useHideMobileHeader, useHistoricWorkspaceMetrics, useHlsStream, useHlsStreamWithCropping, useHookOverride, useHourEndTimer, useHourlyTargetAchievements, useHourlyTargetMisses, useIdleTimeClipClassifications, useIdleTimeReasons, useIdleTimeVlmConfig, useKpiTrends, useLeaderboardMetrics, useLineDetailedMetrics, useLineKPIs, useLineMetrics, useLineShiftConfig, useLineSupervisor, useLineWorkspaceMetrics, useLines, useMessages, useMetrics, useMobileMenu, useMonthlyTrend, useMultiLineShiftConfigs, useNavigation, useOperationalShiftKey, useOptionalSupabase, useOverrides, usePageOverride, usePrefetchClipCounts, useRealtimeLineMetrics, useRegistry, useSKUs, useSessionKeepAlive, useSessionTracking, useSessionTrackingContext, useShiftConfig, useShiftGroups, useShifts, useSubscriptionManager, useSubscriptionManagerSafe, useSupabase, useSupabaseClient, useSupervisorsByLineIds, useTargets, useTeamManagementPermissions, useTheme, useThemeConfig, useThreads, useTicketHistory, useTimezoneContext, useUserLineAccess, useUserUsage, useVideoConfig, useWorkspaceConfig, useWorkspaceDetailedMetrics, useWorkspaceDisplayName, useWorkspaceDisplayNames, useWorkspaceDisplayNamesMap, useWorkspaceHealthById, useWorkspaceHealthLastSeen, useWorkspaceHealthStatus, useWorkspaceHourSummary, useWorkspaceMetrics, useWorkspaceNavigation, useWorkspaceOperators, useWorkspaceUptimeTimeline, useWorkspaceVideoStreams, userService, videoPrefetchManager, videoPreloader, weeklyTopPerformerService, whatsappService, withAccessControl, withAuth, withRegistry, withTimezone, workspaceHealthService, workspaceService };
|
|
11008
|
+
export { ACTION_FAMILIES, ACTION_NAMES, AIAgentView, AcceptInvite, type AcceptInviteProps, AcceptInviteView, type AcceptInviteViewProps, type AccessControlReturn, type AccessScope$1 as AccessScope, type Action, type ActionFamily, type ActionName, type ActionService, ActionThreshold, type ActiveBreak, AdvancedFilterDialog, AdvancedFilterPanel, type AnalyticsConfig, type AppRoleLevel, type AssignUserToFactoriesInput, type AssignUserToLinesInput, AudioService, AuthCallback, type AuthCallbackProps, AuthCallbackView, type AuthCallbackViewProps, type AuthConfig, AuthProvider, AuthService, type AuthStatus, type AuthUser, AuthenticatedBottleneckClipsView, AuthenticatedFactoryView, AuthenticatedHelpView, AuthenticatedHomeView, AuthenticatedShiftsView, AuthenticatedTargetsView, AuthenticatedTicketsView, AuthenticatedWorkspaceHealthView, AvatarUpload, type AvatarUploadProps, type AwardBadgeType, type AwardNotificationRecord, type AwardNotificationType, type AwardRecord, type AwardType, 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, ClipsCostView, 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, type CycleTimeHourClickPayload, 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, DashboardKPIs, DashboardLayout, type DashboardLayoutProps, DashboardOverridesProvider, DashboardProvider, type DashboardService, type DashboardSurface, type DatabaseConfig, DateDisplay, type DateKeyRange, type DateTimeConfig, DateTimeDisplay, type DateTimeDisplayProps, type DayData, type DayHistoryData, type DaySummaryData, DebugAuth, DebugAuthView, DetailedHealthStatus, type DetectLineOvertakeEventsParams, type DiagnosisOption$1 as DiagnosisOption, DiagnosisVideoModal, type DummyAware, type DynamicLineShiftConfig, EFFICIENCY_ON_TRACK_THRESHOLD, 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, FittingTitle, 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, type HealthTimelineMode, HelpView, type HelpViewProps, type HistoricWorkspaceMetrics, type HistoryCalendarProps, HlsVideoPlayer, type HlsVideoPlayerProps, type HlsVideoPlayerRef, HomeView, type HomeViewConfig, type HookOverride, type HourlyAchievement, type HourlyOutputBarClickPayload, HourlyOutputChart, type HourlyOutputChartProps, type HourlyPerformance, HourlyUptimeChart, type HourlyUptimeChartProps, type IPrefetchManager, type ISTDateProps, ISTTimer, type ISTTimerProps, type IdleTimeClipMetadata, type IdleTimeReason, type IdleTimeReasonData, type IdleTimeReasonsData, type IdleTimeReasonsResponse, IdleTimeVlmConfigProvider, ImprovementCenterView, type InitialTimePrefetchSnapshot, InlineEditableText, InteractiveOnboardingTour, InvitationService, type InvitationWithDetails, InvitationsTable, InviteUserDialog, KPICard, type KPICardProps, KPIDetailViewWithDisplayNames as KPIDetailView, type KPIDetailViewProps, KPIGrid, type KPIGridProps, KPIHeader, type KPIHeaderProps, KPISection, type KPITrend, KPI_SIGNAL_LABELS, KPIsOverviewView, type KPIsOverviewViewProps, type KpiAreaNode, type KpiFactoryNode, type KpiLineHierarchy, KpiSignal, type KpiSignalStatus, KpiTrend, LINE_1_UUID, LINE_2_UUID, LargeOutputProgressChart, type LargeOutputProgressChartProps, LeaderboardDetailViewWithDisplayNames as LeaderboardDetailView, type LeaderboardDetailViewProps, type LeaderboardEntry, Legend, type LightStatus, LineAssignmentDropdown, type LineAssignmentDropdownProps, LineChart, type LineChartDataItem, type LineChartProps, type LineDetails, type LineDisplayData, LineHistoryCalendar, type LineHistoryCalendarProps, LineInfo, LineIssueResolutionSummary, type LineLeaderboardDisplayRow, type LineMetrics, LineMonthlyHistory, type LineMonthlyHistoryProps, type LineMonthlyMetric, LineMonthlyPdfGenerator, type LineMonthlyPdfGeneratorProps, type LineNavigationParams, type LineOvertakeCrossedLine, type LineOvertakeDirection, type LineOvertakeEvent, LineOvertakeNotificationManager, type LineOvertakeNotificationManagerProps, type LineOvertakeRoleMode, type LineOvertakeRowType, type LineOvertakeSnapshotRow, LinePdfExportButton, type LinePdfExportButtonProps, LinePdfGenerator, type LinePdfGeneratorProps, type LineProps, type LineRecord, type LineShiftConfig, type LineShiftInfo, LineSignal, LineSkuBreakdownItem, type LineSnapshot, type LineSupervisor, 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, type LowEfficiencyAiSummary, type LowMomentsPrefetchSnapshot, MainLayout, type MainLayoutProps, MapGridView, type MapViewConfig, type Metric, MetricCard, type MetricCardProps$1 as MetricCardProps, type MetricsError, MinimalOnboardingPopup, type MixpanelSessionOptions, MobileMenuProvider, type MobileMenuProviderProps, type MonthWeekRange, MonthlyTrendSummary, 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, PlantHeadView, PlayPauseIndicator, type PlayPauseIndicatorProps, 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, ProductionPlanApiError, type ProductionPlanReasonCode, type ProductionPlanState, type ProductionPlanStateResponse, ProductionPlanView, type ProductionPlanViewProps, type ProductionPlanWorkstation, type ProfileMenuItem, ProfileView, type QualityMetric, type QualityOverview, type QualityService, ROOT_DASHBOARD_EVENT_NAMES, type RateLimitOptions, type RateLimitResult, type RealtimeLineMetricsProps, type RealtimeService, type RedFlowConfidence, type RedFlowDriver, type RedFlowExplanation, type RedFlowExplanationSummary, type RedFlowTimeline, type RedFlowTimelineBin, type RedFlowWorstMinute, RegistryProvider, type RenderReadyCallback$1 as RenderReadyCallback, type RoleAssignmentKind, RoleBadge, type RoleMetadata, type RoutePath, type S3ClipsAPIParams, S3ClipsSupabaseService as S3ClipsService, type S3Config, type S3ListObjectsParams, S3Service, type S3ServiceConfig, SENTRY_HANDLED_EVENT_SESSION_LIMIT, SENTRY_HANDLED_EVENT_WINDOW_MS, SENTRY_QUOTA_STORAGE_KEY, type SKU, type SKUConfig, SKUManagementView, type SOPCategory$1 as SOPCategory, SOPComplianceChart, type SOPComplianceChartProps, SSEChatClient, type SSEEvent, type SaveProductionPlanPayload, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, type SentryCaptureOptions, type SentryCaptureSeverity, SessionTracker, SessionTrackingContext, SessionTrackingProvider, SettingsPopup, type SettingsPopupItem, type ShiftConfig, ShiftConfiguration, 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, SkuBreakdownItem, SkuSegmentItem, type StatusChangeCallback$1 as StatusChangeCallback, type StorageService, type StreamProxyConfig, type SubscriberId, SubscriptionManager, SubscriptionManagerProvider, type SupabaseClient, SupabaseProvider, type Supervisor, type SupervisorAssignment, type SupervisorConfig, type SupervisorDetail, SupervisorDropdown, type SupervisorDropdownProps, type SupervisorLine, type SupervisorManagementData, SupervisorManagementView, type SupervisorManagementViewProps, SupervisorService, type Target, TargetWorkspaceGrid, type TargetWorkspaceGridProps, 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 TodayUsage, type TodayUsageData, type TodayUsageReport, type TopPerformerRecord, type TrackingEventProperties, type TrendDirection, type UnderperformingWorkspace, type UnderperformingWorkspaces, type UpdateUserNameInput, type UpdateUserProfileInput, type UpdateUserRoleInput, type UptimeDetails, UptimeDonutChart, type UptimeDonutChartProps, UptimeLineChart, type UptimeLineChartProps, UptimeMetricCards, type UptimeMetricCardsProps, type UptimeStatus$1 as 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 UseWorkspaceLightTimelineOptions, type UseWorkspaceLightTimelineResult, type UseWorkspaceOperatorsOptions, type UseWorkspaceUptimeTimelineOptions, type UseWorkspaceUptimeTimelineResult, UserAvatar, type UserAvatarProps, 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, VideoGridMetricMode, VideoGridView, type VideoIndex, type VideoIndexEntry, type VideoMetadata, VideoPlayer, type VideoPlayerProps, type VideoPlayerRef, VideoPreloader, type VideoSeverity, type VideoSummary, type VideoType, WORKSPACE_POSITIONS, type WeeklyTopPerformerRecord, type WhatsAppSendResult, WhatsAppShareButton, type WhatsAppShareButtonProps, type WhatsappService, Workspace, WorkspaceActionUpdate, WorkspaceCameraIpInfo, WorkspaceCard, type WorkspaceCardProps, type WorkspaceConfig$1 as WorkspaceConfig, WorkspaceCycleTimeMetricCards, type WorkspaceCycleTimeMetricCardsProps, WrappedComponent as WorkspaceDetailView, WorkspaceDetailedMetrics, WorkspaceDisplayNameExample, type WorkspaceDowntimeSegment, WorkspaceGrid, WorkspaceGridItem, type WorkspaceGridItemProps, type WorkspaceGridPosition, type WorkspaceHealth, WorkspaceHealthCard, type WorkspaceHealthInfo, type WorkspaceHealthStatusData, _default as WorkspaceHealthView, type WorkspaceHealthWithStatus, WorkspaceHistoryCalendar, WorkspaceLightConfigInfo, type WorkspaceLightStatusSegment, type WorkspaceLightSummary, type WorkspaceLightTimeline, WorkspaceMetricCards, WorkspaceMetricCardsImpl, type WorkspaceMetricCardsProps, 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, WorkspaceVideoStream, WorkspaceWhatsAppShareButton, type WorkspaceWhatsAppShareProps, actionService, addSentryBreadcrumb, aggregateKPIsFromLineMetricsRows, aggregateLineSignals, alertsService, apiUtils, areAllLinesOnSameShift, authCoreService, authOTPService, authRateLimitService, awardsService, buildDateKey, buildKPIsFromLineMetricsRow, buildKpiLineHierarchy, buildLegacyLineOvertakeEventKey, buildLineLeaderboardRows, buildLineOvertakeEventKey, buildLineSkuBreakdown, buildShiftGroupsKey, canPermissionEditProductionPlan, canRoleAccessDashboardPath, canRoleAccessTeamManagement, canRoleAssignFactories, canRoleAssignLines, canRoleChangeRole, canRoleEditProductionPlan, canRoleInviteRole, canRoleManageCompany, canRoleManageTargets, canRoleManageUsers, canRoleRemoveUser, canRoleViewClipsCost, canRoleViewUsageStats, captureHandledFrontendException, captureSentryException, captureSentryMessage, checkRateLimit, clearAllRateLimits, clearRateLimit, clearS3VideoCache, clearS3VideoFromCache, clearSentryContext, clearWorkspaceDisplayNamesCache, cn, combineLineMetricsRows, countRealSkus, createDefaultKPIs, createInvitationService, createLinesService, createSessionTracker, createStorageService, createStreamProxyHandler, createSupabaseClient, createSupervisorService, createThrottledReload, createUserManagementService, createUserService, dashboardService, deleteThread, detectLineOvertakeEvents, fetchIdleTimeReasons, fetchLineDummySkuId, fetchLineSkuCatalog, filterDataByDateKeyRange, filterRealSkuBreakdown, forceRefreshWorkspaceDisplayNames, formatAwardMonth, formatDateInZone, formatDateKeyForDisplay, formatDateTimeInZone, formatDuration, formatISTDate, formatIdleTime, formatRangeLabel, formatReasonLabel, formatRelativeTime, formatTimeInZone, fromUrlFriendlyName, getActionDisplayName, getActiveShift, getAllLineDisplayNames, getAllThreadMessages, getAllWorkspaceDisplayNamesAsync, getAllWorkspaceDisplayNamesSnapshot, getAnonClient, getAssignableRoles, getAssignmentColumnLabel, getAvailableShiftIds, getAwardBadgeType, getAwardDescription, getAwardTitle, getBrowserName, getCameraNumber, getCompanyMetricsTableName, getConfigurableShortWorkspaceDisplayName, getConfigurableWorkspaceDisplayName, getConfiguredLineIds, getCoreSessionRecordingProperties, getCoreSessionReplayUrl, getCurrentShift, getCurrentShiftForLine, getCurrentTimeInZone, getCurrentWeekFullRange, getCurrentWeekToDateRange, getDashboardHeaderTimeInZone, getDateKeyFromDate, getDateKeyFromValue, getDayDateKey, getDaysDifferenceInZone, getDefaultCameraStreamUrl, getDefaultLineId, getDefaultTabForWorkspace, getInitials, getKpiSignalLabel, getKpiSignalStatus, getLineDisplayName, getManufacturingInsights, getMetricsTablePrefix, getMonthKeyBounds, getMonthWeekRanges, getMonthlyTrendComparisonLabel, getNextUpdateInterval, getOperationalDate, getRoleAssignmentKind, getRoleDescription, getRoleLabel, getRoleMetadata, getRoleNavPaths, getS3SignedUrl, getS3VideoSrc, getShiftData, getShiftNameById, getShiftWorkDurationSeconds, getShortShiftName, getShortWorkspaceDisplayName, getShortWorkspaceDisplayNameAsync, getStoredWorkspaceMappings, getSubscriptionManager, getThreadMessages, getUniformShiftGroup, getUserThreads, getUserThreadsPaginated, getVisibleRolesForCurrentUser, getWorkspaceDisplayName, getWorkspaceDisplayNameAsync, getWorkspaceDisplayNamesMap, getWorkspaceFromUrl, getWorkspaceNavigationParams, groupLinesByShift, hasAnyShiftData, identifyCoreUser, initializeCoreMixpanel, isEfficiencyOnTrack, isFactoryScopedRole, isFullMonthRange, isIgnorableFrontendError, isLegacyConfiguration, isLoopbackHostname, isPrefetchError, isRealSku, isSafari, isSupervisorRole, isTransitionPeriod, isUrlPermanentlyFailed, isValidFactoryViewConfiguration, isValidLineInfoPayload, isValidPrefetchParams, isValidPrefetchStatus, isValidWorkspaceDetailedMetricsPayload, isValidWorkspaceMetricsPayload, isWorkspaceDisplayNamesLoaded, isWorkspaceDisplayNamesLoading, lineLeaderboardService, linesService, mergeWithDefaultConfig, migrateLegacyConfiguration, normalizeActionFamily, normalizeDateKeyRange, normalizeDateKeyRangeUnbounded, normalizeRoleLevel, optifyeAgentClient, parseDateKeyToDate, parseS3Uri, pickPreferredLineMetricsRow, preInitializeWorkspaceDisplayNames, preInitializeWorkspaceDisplayNamesForLines, preloadS3Video, preloadS3VideoUrl, preloadS3VideosUrl, preloadVideoUrl, preloadVideosUrl, productionPlanService, qualityService, realtimeService, refreshWorkspaceDisplayNames, resetCoreMixpanel, resetFailedUrl, resetSentryQuotaForTests, resetSubscriptionManager, resolveDefaultSkuId, resolveLiveSkuId, s3VideoPreloader, selectPreferredLineMetricsRow, setSentryUserContext, setSentryWorkspaceContext, shouldEnableLocalDevTestLogin, 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, useClipsInit, useCompanyClipsCost, useCompanyFastSlowClipFiltersEnabled, useCompanyHasVlmEnabledLine, useCompanyUsersUsage, useCompanyWorkspaceHourAiSummaryEnabled, useComponentOverride, useCustomConfig, useDashboardConfig, useDashboardMetrics, useDatabaseConfig, useDateFormatter, useDateTimeConfig, useDynamicShiftConfig, useEndpointsConfig, useEntityConfig, useFactoryOverviewMetrics, useFeatureFlags, useFormatNumber, useHasLineAccess, useHideMobileHeader, useHistoricWorkspaceMetrics, useHlsStream, useHlsStreamWithCropping, useHookOverride, useHourEndTimer, useHourlyTargetAchievements, useHourlyTargetMisses, useIdleTimeClipClassifications, useIdleTimeReasons, useIdleTimeVlmConfig, useKpiTrends, useLeaderboardMetrics, useLineDetailedMetrics, useLineKPIs, useLineMetrics, useLineShiftConfig, useLineSupervisor, useLineWorkspaceMetrics, useLines, useMessages, useMetrics, useMobileMenu, useMonthlyTrend, useMultiLineShiftConfigs, useNavigation, useOperationalShiftKey, useOptionalSupabase, useOverrides, usePageOverride, usePrefetchClipCounts, useRealtimeLineMetrics, useRegistry, useSKUs, useSessionKeepAlive, useSessionTracking, useSessionTrackingContext, useShiftConfig, useShiftGroups, useShifts, useSubscriptionManager, useSubscriptionManagerSafe, useSupabase, useSupabaseClient, useSupervisorsByLineIds, useTargets, useTeamManagementPermissions, useTheme, useThemeConfig, useThreads, useTicketHistory, useTimezoneContext, useUserLineAccess, useUserUsage, useVideoConfig, useWorkspaceConfig, useWorkspaceDetailedMetrics, useWorkspaceDisplayName, useWorkspaceDisplayNames, useWorkspaceDisplayNamesMap, useWorkspaceHealthById, useWorkspaceHealthLastSeen, useWorkspaceHealthStatus, useWorkspaceHourSummary, useWorkspaceLightTimeline, useWorkspaceMetrics, useWorkspaceNavigation, useWorkspaceOperators, useWorkspaceUptimeTimeline, useWorkspaceVideoStreams, userService, videoPrefetchManager, videoPreloader, weeklyTopPerformerService, whatsappService, withAccessControl, withAuth, withRegistry, withTimezone, workspaceHealthService, workspaceService };
|