@ignos/api-client 20260303.69.1 → 20260304.70.1
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/lib/ignosportal-api.d.ts
CHANGED
|
@@ -3911,6 +3911,7 @@ export interface CalendarSettingsDto {
|
|
|
3911
3911
|
};
|
|
3912
3912
|
halfDayHours?: number;
|
|
3913
3913
|
holidayHours?: number;
|
|
3914
|
+
defaultPerformancePercent?: number;
|
|
3914
3915
|
}
|
|
3915
3916
|
export type DayOfWeek = 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
3916
3917
|
export interface UpdateCalendarSettingsCommand {
|
|
@@ -3919,6 +3920,7 @@ export interface UpdateCalendarSettingsCommand {
|
|
|
3919
3920
|
};
|
|
3920
3921
|
halfDayHours?: number;
|
|
3921
3922
|
holidayHours?: number;
|
|
3923
|
+
defaultPerformancePercent?: number | null;
|
|
3922
3924
|
}
|
|
3923
3925
|
export interface ResourceKpiDto {
|
|
3924
3926
|
uptimeToNow: number;
|
|
@@ -4232,6 +4234,7 @@ export interface UtilizationDetailsV2Dto {
|
|
|
4232
4234
|
uptimeInMilliseconds?: number | null;
|
|
4233
4235
|
downtimeInMilliseconds?: number | null;
|
|
4234
4236
|
totalTimeInMilliseconds?: number | null;
|
|
4237
|
+
performancePercent?: number | null;
|
|
4235
4238
|
}
|
|
4236
4239
|
export interface MachineGroupUtilizationV2Dto {
|
|
4237
4240
|
name: string;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -29059,6 +29059,7 @@ export interface CalendarSettingsDto {
|
|
|
29059
29059
|
defaultHoursPerWeekday?: { [key in DayOfWeek]?: number; };
|
|
29060
29060
|
halfDayHours?: number;
|
|
29061
29061
|
holidayHours?: number;
|
|
29062
|
+
defaultPerformancePercent?: number;
|
|
29062
29063
|
}
|
|
29063
29064
|
|
|
29064
29065
|
export type DayOfWeek = 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
@@ -29067,6 +29068,7 @@ export interface UpdateCalendarSettingsCommand {
|
|
|
29067
29068
|
defaultHoursPerWeekday?: { [key in DayOfWeek]?: number; };
|
|
29068
29069
|
halfDayHours?: number;
|
|
29069
29070
|
holidayHours?: number;
|
|
29071
|
+
defaultPerformancePercent?: number | null;
|
|
29070
29072
|
}
|
|
29071
29073
|
|
|
29072
29074
|
export interface ResourceKpiDto {
|
|
@@ -29427,6 +29429,7 @@ export interface UtilizationDetailsV2Dto {
|
|
|
29427
29429
|
uptimeInMilliseconds?: number | null;
|
|
29428
29430
|
downtimeInMilliseconds?: number | null;
|
|
29429
29431
|
totalTimeInMilliseconds?: number | null;
|
|
29432
|
+
performancePercent?: number | null;
|
|
29430
29433
|
}
|
|
29431
29434
|
|
|
29432
29435
|
export interface MachineGroupUtilizationV2Dto {
|