@ignos/api-client 20250620.0.11946 → 20250624.0.11979-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 +7 -1
- package/lib/ignosportal-api.js +6 -0
- package/package.json +1 -1
- package/src/ignosportal-api.ts +13 -1
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -3713,11 +3713,13 @@ 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;
|
|
3720
3720
|
activeOrderEnabled: boolean;
|
|
3721
|
+
machineCalendarEnabled: boolean;
|
|
3722
|
+
factoryCalendarEnabled: boolean;
|
|
3721
3723
|
constructor(data?: IUtilizationTypeEnablingDto);
|
|
3722
3724
|
init(_data?: any): void;
|
|
3723
3725
|
static fromJS(data: any): UtilizationTypeEnablingDto;
|
|
@@ -3727,6 +3729,8 @@ export interface IUtilizationTypeEnablingDto {
|
|
|
3727
3729
|
powerOnEnabled: boolean;
|
|
3728
3730
|
twentyFourSevenEnabled: boolean;
|
|
3729
3731
|
activeOrderEnabled: boolean;
|
|
3732
|
+
machineCalendarEnabled: boolean;
|
|
3733
|
+
factoryCalendarEnabled: boolean;
|
|
3730
3734
|
}
|
|
3731
3735
|
export declare class UpdatePulseSettings implements IUpdatePulseSettings {
|
|
3732
3736
|
defaultUtilizationType: UtilizationTypeDto;
|
|
@@ -3762,6 +3766,7 @@ export interface ICompanyUtilizationDto {
|
|
|
3762
3766
|
}
|
|
3763
3767
|
export declare class UtilizationDetailsV2Dto implements IUtilizationDetailsV2Dto {
|
|
3764
3768
|
utilizationPercent?: number | null;
|
|
3769
|
+
capacityInMilliseconds?: number;
|
|
3765
3770
|
uptimeInSeconds?: number | null;
|
|
3766
3771
|
downtimeInSeconds?: number | null;
|
|
3767
3772
|
totalTimeInSeconds?: number | null;
|
|
@@ -3775,6 +3780,7 @@ export declare class UtilizationDetailsV2Dto implements IUtilizationDetailsV2Dto
|
|
|
3775
3780
|
}
|
|
3776
3781
|
export interface IUtilizationDetailsV2Dto {
|
|
3777
3782
|
utilizationPercent?: number | null;
|
|
3783
|
+
capacityInMilliseconds?: number;
|
|
3778
3784
|
uptimeInSeconds?: number | null;
|
|
3779
3785
|
downtimeInSeconds?: number | null;
|
|
3780
3786
|
totalTimeInSeconds?: number | null;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -24621,6 +24621,8 @@ export class UtilizationTypeEnablingDto {
|
|
|
24621
24621
|
this.powerOnEnabled = _data["powerOnEnabled"];
|
|
24622
24622
|
this.twentyFourSevenEnabled = _data["twentyFourSevenEnabled"];
|
|
24623
24623
|
this.activeOrderEnabled = _data["activeOrderEnabled"];
|
|
24624
|
+
this.machineCalendarEnabled = _data["machineCalendarEnabled"];
|
|
24625
|
+
this.factoryCalendarEnabled = _data["factoryCalendarEnabled"];
|
|
24624
24626
|
}
|
|
24625
24627
|
}
|
|
24626
24628
|
static fromJS(data) {
|
|
@@ -24634,6 +24636,8 @@ export class UtilizationTypeEnablingDto {
|
|
|
24634
24636
|
data["powerOnEnabled"] = this.powerOnEnabled;
|
|
24635
24637
|
data["twentyFourSevenEnabled"] = this.twentyFourSevenEnabled;
|
|
24636
24638
|
data["activeOrderEnabled"] = this.activeOrderEnabled;
|
|
24639
|
+
data["machineCalendarEnabled"] = this.machineCalendarEnabled;
|
|
24640
|
+
data["factoryCalendarEnabled"] = this.factoryCalendarEnabled;
|
|
24637
24641
|
return data;
|
|
24638
24642
|
}
|
|
24639
24643
|
}
|
|
@@ -24734,6 +24738,7 @@ export class UtilizationDetailsV2Dto {
|
|
|
24734
24738
|
init(_data) {
|
|
24735
24739
|
if (_data) {
|
|
24736
24740
|
this.utilizationPercent = _data["utilizationPercent"];
|
|
24741
|
+
this.capacityInMilliseconds = _data["capacityInMilliseconds"];
|
|
24737
24742
|
this.uptimeInSeconds = _data["uptimeInSeconds"];
|
|
24738
24743
|
this.downtimeInSeconds = _data["downtimeInSeconds"];
|
|
24739
24744
|
this.totalTimeInSeconds = _data["totalTimeInSeconds"];
|
|
@@ -24751,6 +24756,7 @@ export class UtilizationDetailsV2Dto {
|
|
|
24751
24756
|
toJSON(data) {
|
|
24752
24757
|
data = typeof data === 'object' ? data : {};
|
|
24753
24758
|
data["utilizationPercent"] = this.utilizationPercent;
|
|
24759
|
+
data["capacityInMilliseconds"] = this.capacityInMilliseconds;
|
|
24754
24760
|
data["uptimeInSeconds"] = this.uptimeInSeconds;
|
|
24755
24761
|
data["downtimeInSeconds"] = this.downtimeInSeconds;
|
|
24756
24762
|
data["totalTimeInSeconds"] = this.totalTimeInSeconds;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -27128,12 +27128,14 @@ 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;
|
|
27135
27135
|
twentyFourSevenEnabled!: boolean;
|
|
27136
27136
|
activeOrderEnabled!: boolean;
|
|
27137
|
+
machineCalendarEnabled!: boolean;
|
|
27138
|
+
factoryCalendarEnabled!: boolean;
|
|
27137
27139
|
|
|
27138
27140
|
constructor(data?: IUtilizationTypeEnablingDto) {
|
|
27139
27141
|
if (data) {
|
|
@@ -27149,6 +27151,8 @@ export class UtilizationTypeEnablingDto implements IUtilizationTypeEnablingDto {
|
|
|
27149
27151
|
this.powerOnEnabled = _data["powerOnEnabled"];
|
|
27150
27152
|
this.twentyFourSevenEnabled = _data["twentyFourSevenEnabled"];
|
|
27151
27153
|
this.activeOrderEnabled = _data["activeOrderEnabled"];
|
|
27154
|
+
this.machineCalendarEnabled = _data["machineCalendarEnabled"];
|
|
27155
|
+
this.factoryCalendarEnabled = _data["factoryCalendarEnabled"];
|
|
27152
27156
|
}
|
|
27153
27157
|
}
|
|
27154
27158
|
|
|
@@ -27164,6 +27168,8 @@ export class UtilizationTypeEnablingDto implements IUtilizationTypeEnablingDto {
|
|
|
27164
27168
|
data["powerOnEnabled"] = this.powerOnEnabled;
|
|
27165
27169
|
data["twentyFourSevenEnabled"] = this.twentyFourSevenEnabled;
|
|
27166
27170
|
data["activeOrderEnabled"] = this.activeOrderEnabled;
|
|
27171
|
+
data["machineCalendarEnabled"] = this.machineCalendarEnabled;
|
|
27172
|
+
data["factoryCalendarEnabled"] = this.factoryCalendarEnabled;
|
|
27167
27173
|
return data;
|
|
27168
27174
|
}
|
|
27169
27175
|
}
|
|
@@ -27172,6 +27178,8 @@ export interface IUtilizationTypeEnablingDto {
|
|
|
27172
27178
|
powerOnEnabled: boolean;
|
|
27173
27179
|
twentyFourSevenEnabled: boolean;
|
|
27174
27180
|
activeOrderEnabled: boolean;
|
|
27181
|
+
machineCalendarEnabled: boolean;
|
|
27182
|
+
factoryCalendarEnabled: boolean;
|
|
27175
27183
|
}
|
|
27176
27184
|
|
|
27177
27185
|
export class UpdatePulseSettings implements IUpdatePulseSettings {
|
|
@@ -27293,6 +27301,7 @@ export interface ICompanyUtilizationDto {
|
|
|
27293
27301
|
|
|
27294
27302
|
export class UtilizationDetailsV2Dto implements IUtilizationDetailsV2Dto {
|
|
27295
27303
|
utilizationPercent?: number | null;
|
|
27304
|
+
capacityInMilliseconds?: number;
|
|
27296
27305
|
uptimeInSeconds?: number | null;
|
|
27297
27306
|
downtimeInSeconds?: number | null;
|
|
27298
27307
|
totalTimeInSeconds?: number | null;
|
|
@@ -27312,6 +27321,7 @@ export class UtilizationDetailsV2Dto implements IUtilizationDetailsV2Dto {
|
|
|
27312
27321
|
init(_data?: any) {
|
|
27313
27322
|
if (_data) {
|
|
27314
27323
|
this.utilizationPercent = _data["utilizationPercent"];
|
|
27324
|
+
this.capacityInMilliseconds = _data["capacityInMilliseconds"];
|
|
27315
27325
|
this.uptimeInSeconds = _data["uptimeInSeconds"];
|
|
27316
27326
|
this.downtimeInSeconds = _data["downtimeInSeconds"];
|
|
27317
27327
|
this.totalTimeInSeconds = _data["totalTimeInSeconds"];
|
|
@@ -27331,6 +27341,7 @@ export class UtilizationDetailsV2Dto implements IUtilizationDetailsV2Dto {
|
|
|
27331
27341
|
toJSON(data?: any) {
|
|
27332
27342
|
data = typeof data === 'object' ? data : {};
|
|
27333
27343
|
data["utilizationPercent"] = this.utilizationPercent;
|
|
27344
|
+
data["capacityInMilliseconds"] = this.capacityInMilliseconds;
|
|
27334
27345
|
data["uptimeInSeconds"] = this.uptimeInSeconds;
|
|
27335
27346
|
data["downtimeInSeconds"] = this.downtimeInSeconds;
|
|
27336
27347
|
data["totalTimeInSeconds"] = this.totalTimeInSeconds;
|
|
@@ -27343,6 +27354,7 @@ export class UtilizationDetailsV2Dto implements IUtilizationDetailsV2Dto {
|
|
|
27343
27354
|
|
|
27344
27355
|
export interface IUtilizationDetailsV2Dto {
|
|
27345
27356
|
utilizationPercent?: number | null;
|
|
27357
|
+
capacityInMilliseconds?: number;
|
|
27346
27358
|
uptimeInSeconds?: number | null;
|
|
27347
27359
|
downtimeInSeconds?: number | null;
|
|
27348
27360
|
totalTimeInSeconds?: number | null;
|