@optifye/dashboard-core 6.12.23 → 6.12.26
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 +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +335 -41
- package/dist/index.mjs +335 -41
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -7507,7 +7507,7 @@ interface PieChartProps {
|
|
|
7507
7507
|
}
|
|
7508
7508
|
declare const PieChart: React__default.FC<PieChartProps>;
|
|
7509
7509
|
|
|
7510
|
-
type UptimeStatus = 'active' | 'idle' | 'unknown';
|
|
7510
|
+
type UptimeStatus = 'active' | 'idle' | 'unknown' | 'break';
|
|
7511
7511
|
interface UptimePoint {
|
|
7512
7512
|
minuteIndex: number;
|
|
7513
7513
|
timeLabel: string;
|
|
@@ -7534,6 +7534,7 @@ interface HourlyUptimeChartProps {
|
|
|
7534
7534
|
shiftDate?: string | null;
|
|
7535
7535
|
timezone?: string | null;
|
|
7536
7536
|
elapsedMinutes?: number | null;
|
|
7537
|
+
shiftBreaks?: Break[] | null;
|
|
7537
7538
|
className?: string;
|
|
7538
7539
|
}
|
|
7539
7540
|
declare const HourlyUptimeChart: React__default.NamedExoticComponent<HourlyUptimeChartProps>;
|
|
@@ -8067,6 +8068,7 @@ declare const LineMonthlyPdfGenerator: React__default.FC<LineMonthlyPdfGenerator
|
|
|
8067
8068
|
interface LineWhatsAppShareProps {
|
|
8068
8069
|
lineInfo: LineInfo;
|
|
8069
8070
|
className?: string;
|
|
8071
|
+
shiftBreaks?: Break[];
|
|
8070
8072
|
}
|
|
8071
8073
|
declare const LineWhatsAppShareButton: React__default.FC<LineWhatsAppShareProps>;
|
|
8072
8074
|
|
|
@@ -8289,6 +8291,7 @@ declare const WorkspaceMonthlyHistory: React__default.FC<WorkspaceMonthlyHistory
|
|
|
8289
8291
|
interface WorkspaceWhatsAppShareProps {
|
|
8290
8292
|
workspace: WorkspaceDetailedMetrics;
|
|
8291
8293
|
className?: string;
|
|
8294
|
+
shiftBreaks?: Break[];
|
|
8292
8295
|
}
|
|
8293
8296
|
declare const WorkspaceWhatsAppShareButton: React__default.FC<WorkspaceWhatsAppShareProps>;
|
|
8294
8297
|
|
package/dist/index.d.ts
CHANGED
|
@@ -7507,7 +7507,7 @@ interface PieChartProps {
|
|
|
7507
7507
|
}
|
|
7508
7508
|
declare const PieChart: React__default.FC<PieChartProps>;
|
|
7509
7509
|
|
|
7510
|
-
type UptimeStatus = 'active' | 'idle' | 'unknown';
|
|
7510
|
+
type UptimeStatus = 'active' | 'idle' | 'unknown' | 'break';
|
|
7511
7511
|
interface UptimePoint {
|
|
7512
7512
|
minuteIndex: number;
|
|
7513
7513
|
timeLabel: string;
|
|
@@ -7534,6 +7534,7 @@ interface HourlyUptimeChartProps {
|
|
|
7534
7534
|
shiftDate?: string | null;
|
|
7535
7535
|
timezone?: string | null;
|
|
7536
7536
|
elapsedMinutes?: number | null;
|
|
7537
|
+
shiftBreaks?: Break[] | null;
|
|
7537
7538
|
className?: string;
|
|
7538
7539
|
}
|
|
7539
7540
|
declare const HourlyUptimeChart: React__default.NamedExoticComponent<HourlyUptimeChartProps>;
|
|
@@ -8067,6 +8068,7 @@ declare const LineMonthlyPdfGenerator: React__default.FC<LineMonthlyPdfGenerator
|
|
|
8067
8068
|
interface LineWhatsAppShareProps {
|
|
8068
8069
|
lineInfo: LineInfo;
|
|
8069
8070
|
className?: string;
|
|
8071
|
+
shiftBreaks?: Break[];
|
|
8070
8072
|
}
|
|
8071
8073
|
declare const LineWhatsAppShareButton: React__default.FC<LineWhatsAppShareProps>;
|
|
8072
8074
|
|
|
@@ -8289,6 +8291,7 @@ declare const WorkspaceMonthlyHistory: React__default.FC<WorkspaceMonthlyHistory
|
|
|
8289
8291
|
interface WorkspaceWhatsAppShareProps {
|
|
8290
8292
|
workspace: WorkspaceDetailedMetrics;
|
|
8291
8293
|
className?: string;
|
|
8294
|
+
shiftBreaks?: Break[];
|
|
8292
8295
|
}
|
|
8293
8296
|
declare const WorkspaceWhatsAppShareButton: React__default.FC<WorkspaceWhatsAppShareProps>;
|
|
8294
8297
|
|