@ignos/api-client 20260219.54.1-alpha → 20260219.55.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
CHANGED
|
@@ -4186,6 +4186,7 @@ export interface UtilizationDetailsV2Dto {
|
|
|
4186
4186
|
uptimeInMilliseconds?: number | null;
|
|
4187
4187
|
downtimeInMilliseconds?: number | null;
|
|
4188
4188
|
totalTimeInMilliseconds?: number | null;
|
|
4189
|
+
performancePercent?: number | null;
|
|
4189
4190
|
}
|
|
4190
4191
|
export interface MachineGroupUtilizationV2Dto {
|
|
4191
4192
|
name: string;
|
|
@@ -4211,7 +4212,6 @@ export interface UtilizationDatapointListDto {
|
|
|
4211
4212
|
datapoints?: NumericNullableValueWithTimestamp[];
|
|
4212
4213
|
trendDatapoints?: NumericNullableValueWithTimestamp[];
|
|
4213
4214
|
linearTrendDatapoints?: NumericNullableValueWithTimestamp[];
|
|
4214
|
-
performanceFraction?: number;
|
|
4215
4215
|
}
|
|
4216
4216
|
export interface MachineUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
4217
4217
|
externalId: string;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -29035,6 +29035,7 @@ export interface UtilizationDetailsV2Dto {
|
|
|
29035
29035
|
uptimeInMilliseconds?: number | null;
|
|
29036
29036
|
downtimeInMilliseconds?: number | null;
|
|
29037
29037
|
totalTimeInMilliseconds?: number | null;
|
|
29038
|
+
performancePercent?: number | null;
|
|
29038
29039
|
}
|
|
29039
29040
|
|
|
29040
29041
|
export interface MachineGroupUtilizationV2Dto {
|
|
@@ -29065,7 +29066,6 @@ export interface UtilizationDatapointListDto {
|
|
|
29065
29066
|
datapoints?: NumericNullableValueWithTimestamp[];
|
|
29066
29067
|
trendDatapoints?: NumericNullableValueWithTimestamp[];
|
|
29067
29068
|
linearTrendDatapoints?: NumericNullableValueWithTimestamp[];
|
|
29068
|
-
performanceFraction?: number;
|
|
29069
29069
|
}
|
|
29070
29070
|
|
|
29071
29071
|
export interface MachineUtilizationDatapointListDto extends UtilizationDatapointListDto {
|