@ignos/api-client 20250624.0.11970-alpha → 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
CHANGED
|
@@ -3718,6 +3718,8 @@ export declare class UtilizationTypeEnablingDto implements IUtilizationTypeEnabl
|
|
|
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;
|
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
|
}
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -27134,6 +27134,8 @@ 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 {
|