@ignos/api-client 20251009.0.12798-alpha → 20251009.0.12800
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
|
@@ -3073,6 +3073,8 @@ export interface IMachineStateDatapoint {
|
|
|
3073
3073
|
export declare class DowntimePeriodReasonDto implements IDowntimePeriodReasonDto {
|
|
3074
3074
|
id: number;
|
|
3075
3075
|
reason: string;
|
|
3076
|
+
parentReasonId?: string | null;
|
|
3077
|
+
parentReason?: string | null;
|
|
3076
3078
|
reasonType: DowntimeReasonTypeDto;
|
|
3077
3079
|
startTime: Date;
|
|
3078
3080
|
endTime?: Date | null;
|
|
@@ -3091,6 +3093,8 @@ export declare class DowntimePeriodReasonDto implements IDowntimePeriodReasonDto
|
|
|
3091
3093
|
export interface IDowntimePeriodReasonDto {
|
|
3092
3094
|
id: number;
|
|
3093
3095
|
reason: string;
|
|
3096
|
+
parentReasonId?: string | null;
|
|
3097
|
+
parentReason?: string | null;
|
|
3094
3098
|
reasonType: DowntimeReasonTypeDto;
|
|
3095
3099
|
startTime: Date;
|
|
3096
3100
|
endTime?: Date | null;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -23998,6 +23998,8 @@ export class DowntimePeriodReasonDto {
|
|
|
23998
23998
|
if (_data) {
|
|
23999
23999
|
this.id = _data["id"];
|
|
24000
24000
|
this.reason = _data["reason"];
|
|
24001
|
+
this.parentReasonId = _data["parentReasonId"];
|
|
24002
|
+
this.parentReason = _data["parentReason"];
|
|
24001
24003
|
this.reasonType = _data["reasonType"];
|
|
24002
24004
|
this.startTime = _data["startTime"] ? new Date(_data["startTime"].toString()) : undefined;
|
|
24003
24005
|
this.endTime = _data["endTime"] ? new Date(_data["endTime"].toString()) : undefined;
|
|
@@ -24020,6 +24022,8 @@ export class DowntimePeriodReasonDto {
|
|
|
24020
24022
|
data = typeof data === 'object' ? data : {};
|
|
24021
24023
|
data["id"] = this.id;
|
|
24022
24024
|
data["reason"] = this.reason;
|
|
24025
|
+
data["parentReasonId"] = this.parentReasonId;
|
|
24026
|
+
data["parentReason"] = this.parentReason;
|
|
24023
24027
|
data["reasonType"] = this.reasonType;
|
|
24024
24028
|
data["startTime"] = this.startTime ? this.startTime.toISOString() : undefined;
|
|
24025
24029
|
data["endTime"] = this.endTime ? this.endTime.toISOString() : undefined;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -25813,6 +25813,8 @@ export interface IMachineStateDatapoint {
|
|
|
25813
25813
|
export class DowntimePeriodReasonDto implements IDowntimePeriodReasonDto {
|
|
25814
25814
|
id!: number;
|
|
25815
25815
|
reason!: string;
|
|
25816
|
+
parentReasonId?: string | null;
|
|
25817
|
+
parentReason?: string | null;
|
|
25816
25818
|
reasonType!: DowntimeReasonTypeDto;
|
|
25817
25819
|
startTime!: Date;
|
|
25818
25820
|
endTime?: Date | null;
|
|
@@ -25837,6 +25839,8 @@ export class DowntimePeriodReasonDto implements IDowntimePeriodReasonDto {
|
|
|
25837
25839
|
if (_data) {
|
|
25838
25840
|
this.id = _data["id"];
|
|
25839
25841
|
this.reason = _data["reason"];
|
|
25842
|
+
this.parentReasonId = _data["parentReasonId"];
|
|
25843
|
+
this.parentReason = _data["parentReason"];
|
|
25840
25844
|
this.reasonType = _data["reasonType"];
|
|
25841
25845
|
this.startTime = _data["startTime"] ? new Date(_data["startTime"].toString()) : <any>undefined;
|
|
25842
25846
|
this.endTime = _data["endTime"] ? new Date(_data["endTime"].toString()) : <any>undefined;
|
|
@@ -25861,6 +25865,8 @@ export class DowntimePeriodReasonDto implements IDowntimePeriodReasonDto {
|
|
|
25861
25865
|
data = typeof data === 'object' ? data : {};
|
|
25862
25866
|
data["id"] = this.id;
|
|
25863
25867
|
data["reason"] = this.reason;
|
|
25868
|
+
data["parentReasonId"] = this.parentReasonId;
|
|
25869
|
+
data["parentReason"] = this.parentReason;
|
|
25864
25870
|
data["reasonType"] = this.reasonType;
|
|
25865
25871
|
data["startTime"] = this.startTime ? this.startTime.toISOString() : <any>undefined;
|
|
25866
25872
|
data["endTime"] = this.endTime ? this.endTime.toISOString() : <any>undefined;
|
|
@@ -25878,6 +25884,8 @@ export class DowntimePeriodReasonDto implements IDowntimePeriodReasonDto {
|
|
|
25878
25884
|
export interface IDowntimePeriodReasonDto {
|
|
25879
25885
|
id: number;
|
|
25880
25886
|
reason: string;
|
|
25887
|
+
parentReasonId?: string | null;
|
|
25888
|
+
parentReason?: string | null;
|
|
25881
25889
|
reasonType: DowntimeReasonTypeDto;
|
|
25882
25890
|
startTime: Date;
|
|
25883
25891
|
endTime?: Date | null;
|