@ignos/api-client 20250620.0.11946 → 20250624.0.11970-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
|
@@ -3713,7 +3713,7 @@ export interface IPulseSettingsDto {
|
|
|
3713
3713
|
defaultUtilizationType: UtilizationTypeDto;
|
|
3714
3714
|
utilizationTypeEnabling: UtilizationTypeEnablingDto;
|
|
3715
3715
|
}
|
|
3716
|
-
export type UtilizationTypeDto = "PowerOn" | "TwentyFourSeven" | "ActiveOrder";
|
|
3716
|
+
export type UtilizationTypeDto = "PowerOn" | "TwentyFourSeven" | "ActiveOrder" | "MachineCalendar" | "FactoryCalendar";
|
|
3717
3717
|
export declare class UtilizationTypeEnablingDto implements IUtilizationTypeEnablingDto {
|
|
3718
3718
|
powerOnEnabled: boolean;
|
|
3719
3719
|
twentyFourSevenEnabled: boolean;
|
|
@@ -3762,6 +3762,7 @@ export interface ICompanyUtilizationDto {
|
|
|
3762
3762
|
}
|
|
3763
3763
|
export declare class UtilizationDetailsV2Dto implements IUtilizationDetailsV2Dto {
|
|
3764
3764
|
utilizationPercent?: number | null;
|
|
3765
|
+
capacityInMilliseconds?: number;
|
|
3765
3766
|
uptimeInSeconds?: number | null;
|
|
3766
3767
|
downtimeInSeconds?: number | null;
|
|
3767
3768
|
totalTimeInSeconds?: number | null;
|
|
@@ -3775,6 +3776,7 @@ export declare class UtilizationDetailsV2Dto implements IUtilizationDetailsV2Dto
|
|
|
3775
3776
|
}
|
|
3776
3777
|
export interface IUtilizationDetailsV2Dto {
|
|
3777
3778
|
utilizationPercent?: number | null;
|
|
3779
|
+
capacityInMilliseconds?: number;
|
|
3778
3780
|
uptimeInSeconds?: number | null;
|
|
3779
3781
|
downtimeInSeconds?: number | null;
|
|
3780
3782
|
totalTimeInSeconds?: number | null;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -24734,6 +24734,7 @@ export class UtilizationDetailsV2Dto {
|
|
|
24734
24734
|
init(_data) {
|
|
24735
24735
|
if (_data) {
|
|
24736
24736
|
this.utilizationPercent = _data["utilizationPercent"];
|
|
24737
|
+
this.capacityInMilliseconds = _data["capacityInMilliseconds"];
|
|
24737
24738
|
this.uptimeInSeconds = _data["uptimeInSeconds"];
|
|
24738
24739
|
this.downtimeInSeconds = _data["downtimeInSeconds"];
|
|
24739
24740
|
this.totalTimeInSeconds = _data["totalTimeInSeconds"];
|
|
@@ -24751,6 +24752,7 @@ export class UtilizationDetailsV2Dto {
|
|
|
24751
24752
|
toJSON(data) {
|
|
24752
24753
|
data = typeof data === 'object' ? data : {};
|
|
24753
24754
|
data["utilizationPercent"] = this.utilizationPercent;
|
|
24755
|
+
data["capacityInMilliseconds"] = this.capacityInMilliseconds;
|
|
24754
24756
|
data["uptimeInSeconds"] = this.uptimeInSeconds;
|
|
24755
24757
|
data["downtimeInSeconds"] = this.downtimeInSeconds;
|
|
24756
24758
|
data["totalTimeInSeconds"] = this.totalTimeInSeconds;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -27128,7 +27128,7 @@ export interface IPulseSettingsDto {
|
|
|
27128
27128
|
utilizationTypeEnabling: UtilizationTypeEnablingDto;
|
|
27129
27129
|
}
|
|
27130
27130
|
|
|
27131
|
-
export type UtilizationTypeDto = "PowerOn" | "TwentyFourSeven" | "ActiveOrder";
|
|
27131
|
+
export type UtilizationTypeDto = "PowerOn" | "TwentyFourSeven" | "ActiveOrder" | "MachineCalendar" | "FactoryCalendar";
|
|
27132
27132
|
|
|
27133
27133
|
export class UtilizationTypeEnablingDto implements IUtilizationTypeEnablingDto {
|
|
27134
27134
|
powerOnEnabled!: boolean;
|
|
@@ -27293,6 +27293,7 @@ export interface ICompanyUtilizationDto {
|
|
|
27293
27293
|
|
|
27294
27294
|
export class UtilizationDetailsV2Dto implements IUtilizationDetailsV2Dto {
|
|
27295
27295
|
utilizationPercent?: number | null;
|
|
27296
|
+
capacityInMilliseconds?: number;
|
|
27296
27297
|
uptimeInSeconds?: number | null;
|
|
27297
27298
|
downtimeInSeconds?: number | null;
|
|
27298
27299
|
totalTimeInSeconds?: number | null;
|
|
@@ -27312,6 +27313,7 @@ export class UtilizationDetailsV2Dto implements IUtilizationDetailsV2Dto {
|
|
|
27312
27313
|
init(_data?: any) {
|
|
27313
27314
|
if (_data) {
|
|
27314
27315
|
this.utilizationPercent = _data["utilizationPercent"];
|
|
27316
|
+
this.capacityInMilliseconds = _data["capacityInMilliseconds"];
|
|
27315
27317
|
this.uptimeInSeconds = _data["uptimeInSeconds"];
|
|
27316
27318
|
this.downtimeInSeconds = _data["downtimeInSeconds"];
|
|
27317
27319
|
this.totalTimeInSeconds = _data["totalTimeInSeconds"];
|
|
@@ -27331,6 +27333,7 @@ export class UtilizationDetailsV2Dto implements IUtilizationDetailsV2Dto {
|
|
|
27331
27333
|
toJSON(data?: any) {
|
|
27332
27334
|
data = typeof data === 'object' ? data : {};
|
|
27333
27335
|
data["utilizationPercent"] = this.utilizationPercent;
|
|
27336
|
+
data["capacityInMilliseconds"] = this.capacityInMilliseconds;
|
|
27334
27337
|
data["uptimeInSeconds"] = this.uptimeInSeconds;
|
|
27335
27338
|
data["downtimeInSeconds"] = this.downtimeInSeconds;
|
|
27336
27339
|
data["totalTimeInSeconds"] = this.totalTimeInSeconds;
|
|
@@ -27343,6 +27346,7 @@ export class UtilizationDetailsV2Dto implements IUtilizationDetailsV2Dto {
|
|
|
27343
27346
|
|
|
27344
27347
|
export interface IUtilizationDetailsV2Dto {
|
|
27345
27348
|
utilizationPercent?: number | null;
|
|
27349
|
+
capacityInMilliseconds?: number;
|
|
27346
27350
|
uptimeInSeconds?: number | null;
|
|
27347
27351
|
downtimeInSeconds?: number | null;
|
|
27348
27352
|
totalTimeInSeconds?: number | null;
|