@optifye/dashboard-core 4.2.5 → 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 +10 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +1533 -1498
- package/dist/index.mjs +1533 -1498
- 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;
|
|
@@ -3370,6 +3375,11 @@ interface BottlenecksContentProps {
|
|
|
3370
3375
|
* Optional date to fetch clips for (defaults to current date)
|
|
3371
3376
|
*/
|
|
3372
3377
|
date?: string;
|
|
3378
|
+
/**
|
|
3379
|
+
* Optional shift ID for fetching clips (0 = Day shift, 1 = Night shift)
|
|
3380
|
+
* If not provided, defaults to current shift
|
|
3381
|
+
*/
|
|
3382
|
+
shift?: string | number;
|
|
3373
3383
|
/**
|
|
3374
3384
|
* Optional className for styling
|
|
3375
3385
|
*/
|
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;
|
|
@@ -3370,6 +3375,11 @@ interface BottlenecksContentProps {
|
|
|
3370
3375
|
* Optional date to fetch clips for (defaults to current date)
|
|
3371
3376
|
*/
|
|
3372
3377
|
date?: string;
|
|
3378
|
+
/**
|
|
3379
|
+
* Optional shift ID for fetching clips (0 = Day shift, 1 = Night shift)
|
|
3380
|
+
* If not provided, defaults to current shift
|
|
3381
|
+
*/
|
|
3382
|
+
shift?: string | number;
|
|
3373
3383
|
/**
|
|
3374
3384
|
* Optional className for styling
|
|
3375
3385
|
*/
|