@optifye/dashboard-core 4.2.6 → 4.2.7
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.d.mts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +1528 -1497
- package/dist/index.mjs +1528 -1497
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -597,6 +597,10 @@ interface WorkspaceMonthlyMetric {
|
|
|
597
597
|
avg_pph: number;
|
|
598
598
|
pph_threshold: number;
|
|
599
599
|
workspace_rank: number;
|
|
600
|
+
/**
|
|
601
|
+
* Total idle time for the shift in seconds
|
|
602
|
+
*/
|
|
603
|
+
idle_time: number;
|
|
600
604
|
}
|
|
601
605
|
interface LineMonthlyMetric {
|
|
602
606
|
date: string;
|
|
@@ -3276,6 +3280,7 @@ interface ShiftData {
|
|
|
3276
3280
|
pphThreshold: number;
|
|
3277
3281
|
idealOutput: number;
|
|
3278
3282
|
rank: number;
|
|
3283
|
+
idleTime: number;
|
|
3279
3284
|
}
|
|
3280
3285
|
interface DayData$1 {
|
|
3281
3286
|
date: Date;
|
package/dist/index.d.ts
CHANGED
|
@@ -597,6 +597,10 @@ interface WorkspaceMonthlyMetric {
|
|
|
597
597
|
avg_pph: number;
|
|
598
598
|
pph_threshold: number;
|
|
599
599
|
workspace_rank: number;
|
|
600
|
+
/**
|
|
601
|
+
* Total idle time for the shift in seconds
|
|
602
|
+
*/
|
|
603
|
+
idle_time: number;
|
|
600
604
|
}
|
|
601
605
|
interface LineMonthlyMetric {
|
|
602
606
|
date: string;
|
|
@@ -3276,6 +3280,7 @@ interface ShiftData {
|
|
|
3276
3280
|
pphThreshold: number;
|
|
3277
3281
|
idealOutput: number;
|
|
3278
3282
|
rank: number;
|
|
3283
|
+
idleTime: number;
|
|
3279
3284
|
}
|
|
3280
3285
|
interface DayData$1 {
|
|
3281
3286
|
date: Date;
|