@ignos/api-client 20260216.52.1 → 20260218.53.1-alpha
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 +11 -0
- package/package.json +1 -1
- package/src/ignosportal-api.ts +11 -0
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -3344,6 +3344,9 @@ export interface DowntimePeriodReasonDto {
|
|
|
3344
3344
|
autoCompleteDowntime?: boolean | null;
|
|
3345
3345
|
createdBy?: EmployeeDto | null;
|
|
3346
3346
|
updatedBy?: EmployeeDto | null;
|
|
3347
|
+
workOrderId?: string | null;
|
|
3348
|
+
partNumber?: string | null;
|
|
3349
|
+
partName?: string | null;
|
|
3347
3350
|
}
|
|
3348
3351
|
export type DowntimeReasonTypeDto = "Unplanned" | "Planned";
|
|
3349
3352
|
export interface EmployeeDto {
|
|
@@ -3755,6 +3758,9 @@ export interface CreateDowntimePeriodReason {
|
|
|
3755
3758
|
endTime?: Date | null;
|
|
3756
3759
|
autoCompleteDowntime?: boolean | null;
|
|
3757
3760
|
comment?: string | null;
|
|
3761
|
+
workOrderId?: string | null;
|
|
3762
|
+
partNumber?: string | null;
|
|
3763
|
+
partName?: string | null;
|
|
3758
3764
|
}
|
|
3759
3765
|
export interface IgnosPortalControllersResourcesApiModelsUpdateDowntimePeriodReasonRequest {
|
|
3760
3766
|
reasonId?: string | null;
|
|
@@ -3763,6 +3769,9 @@ export interface IgnosPortalControllersResourcesApiModelsUpdateDowntimePeriodRea
|
|
|
3763
3769
|
endTime?: Date | null;
|
|
3764
3770
|
autoCompleteDowntime?: boolean | null;
|
|
3765
3771
|
comment?: string | null;
|
|
3772
|
+
workOrderId?: string | null;
|
|
3773
|
+
partNumber?: string | null;
|
|
3774
|
+
partName?: string | null;
|
|
3766
3775
|
}
|
|
3767
3776
|
export interface TopDowntimeReasonsDto {
|
|
3768
3777
|
planned: DowntimeReasonCountDto[];
|
|
@@ -3854,6 +3863,7 @@ export interface CalendarSettingsDto {
|
|
|
3854
3863
|
};
|
|
3855
3864
|
halfDayHours?: number;
|
|
3856
3865
|
holidayHours?: number;
|
|
3866
|
+
defaultPerformanceFraction?: number;
|
|
3857
3867
|
}
|
|
3858
3868
|
export type DayOfWeek = 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
3859
3869
|
export interface UpdateCalendarSettingsCommand {
|
|
@@ -3862,6 +3872,7 @@ export interface UpdateCalendarSettingsCommand {
|
|
|
3862
3872
|
};
|
|
3863
3873
|
halfDayHours?: number;
|
|
3864
3874
|
holidayHours?: number;
|
|
3875
|
+
defaultPerformanceFraction?: number;
|
|
3865
3876
|
}
|
|
3866
3877
|
export interface ResourceKpiDto {
|
|
3867
3878
|
uptimeToNow: number;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -28062,6 +28062,9 @@ export interface DowntimePeriodReasonDto {
|
|
|
28062
28062
|
autoCompleteDowntime?: boolean | null;
|
|
28063
28063
|
createdBy?: EmployeeDto | null;
|
|
28064
28064
|
updatedBy?: EmployeeDto | null;
|
|
28065
|
+
workOrderId?: string | null;
|
|
28066
|
+
partNumber?: string | null;
|
|
28067
|
+
partName?: string | null;
|
|
28065
28068
|
}
|
|
28066
28069
|
|
|
28067
28070
|
export type DowntimeReasonTypeDto = "Unplanned" | "Planned";
|
|
@@ -28541,6 +28544,9 @@ export interface CreateDowntimePeriodReason {
|
|
|
28541
28544
|
endTime?: Date | null;
|
|
28542
28545
|
autoCompleteDowntime?: boolean | null;
|
|
28543
28546
|
comment?: string | null;
|
|
28547
|
+
workOrderId?: string | null;
|
|
28548
|
+
partNumber?: string | null;
|
|
28549
|
+
partName?: string | null;
|
|
28544
28550
|
}
|
|
28545
28551
|
|
|
28546
28552
|
export interface IgnosPortalControllersResourcesApiModelsUpdateDowntimePeriodReasonRequest {
|
|
@@ -28550,6 +28556,9 @@ export interface IgnosPortalControllersResourcesApiModelsUpdateDowntimePeriodRea
|
|
|
28550
28556
|
endTime?: Date | null;
|
|
28551
28557
|
autoCompleteDowntime?: boolean | null;
|
|
28552
28558
|
comment?: string | null;
|
|
28559
|
+
workOrderId?: string | null;
|
|
28560
|
+
partNumber?: string | null;
|
|
28561
|
+
partName?: string | null;
|
|
28553
28562
|
}
|
|
28554
28563
|
|
|
28555
28564
|
export interface TopDowntimeReasonsDto {
|
|
@@ -28656,6 +28665,7 @@ export interface CalendarSettingsDto {
|
|
|
28656
28665
|
defaultHoursPerWeekday?: { [key in DayOfWeek]?: number; };
|
|
28657
28666
|
halfDayHours?: number;
|
|
28658
28667
|
holidayHours?: number;
|
|
28668
|
+
defaultPerformanceFraction?: number;
|
|
28659
28669
|
}
|
|
28660
28670
|
|
|
28661
28671
|
export type DayOfWeek = 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
@@ -28664,6 +28674,7 @@ export interface UpdateCalendarSettingsCommand {
|
|
|
28664
28674
|
defaultHoursPerWeekday?: { [key in DayOfWeek]?: number; };
|
|
28665
28675
|
halfDayHours?: number;
|
|
28666
28676
|
holidayHours?: number;
|
|
28677
|
+
defaultPerformanceFraction?: number;
|
|
28667
28678
|
}
|
|
28668
28679
|
|
|
28669
28680
|
export interface ResourceKpiDto {
|