@ignos/api-client 20251008.0.12788-alpha → 20251008.0.12792-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
|
@@ -3753,14 +3753,14 @@ export interface IPagedResultOfGroupedMachineIncidentDto {
|
|
|
3753
3753
|
continuationToken?: string | null;
|
|
3754
3754
|
}
|
|
3755
3755
|
export declare class GroupedMachineIncidentDto extends MachineAlarmDto implements IGroupedMachineIncidentDto {
|
|
3756
|
-
incidents
|
|
3756
|
+
incidents: MachineAlarmDto[];
|
|
3757
3757
|
constructor(data?: IGroupedMachineIncidentDto);
|
|
3758
3758
|
init(_data?: any): void;
|
|
3759
3759
|
static fromJS(data: any): GroupedMachineIncidentDto;
|
|
3760
3760
|
toJSON(data?: any): any;
|
|
3761
3761
|
}
|
|
3762
3762
|
export interface IGroupedMachineIncidentDto extends IMachineAlarmDto {
|
|
3763
|
-
incidents
|
|
3763
|
+
incidents: MachineAlarmDto[];
|
|
3764
3764
|
}
|
|
3765
3765
|
export declare class ListGroupedMachineIncidentsRequest implements IListGroupedMachineIncidentsRequest {
|
|
3766
3766
|
assetId: number;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -25500,6 +25500,9 @@ export class PagedResultOfGroupedMachineIncidentDto {
|
|
|
25500
25500
|
export class GroupedMachineIncidentDto extends MachineAlarmDto {
|
|
25501
25501
|
constructor(data) {
|
|
25502
25502
|
super(data);
|
|
25503
|
+
if (!data) {
|
|
25504
|
+
this.incidents = [];
|
|
25505
|
+
}
|
|
25503
25506
|
}
|
|
25504
25507
|
init(_data) {
|
|
25505
25508
|
super.init(_data);
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -28003,10 +28003,13 @@ export interface IPagedResultOfGroupedMachineIncidentDto {
|
|
|
28003
28003
|
}
|
|
28004
28004
|
|
|
28005
28005
|
export class GroupedMachineIncidentDto extends MachineAlarmDto implements IGroupedMachineIncidentDto {
|
|
28006
|
-
incidents
|
|
28006
|
+
incidents!: MachineAlarmDto[];
|
|
28007
28007
|
|
|
28008
28008
|
constructor(data?: IGroupedMachineIncidentDto) {
|
|
28009
28009
|
super(data);
|
|
28010
|
+
if (!data) {
|
|
28011
|
+
this.incidents = [];
|
|
28012
|
+
}
|
|
28010
28013
|
}
|
|
28011
28014
|
|
|
28012
28015
|
override init(_data?: any) {
|
|
@@ -28040,7 +28043,7 @@ export class GroupedMachineIncidentDto extends MachineAlarmDto implements IGroup
|
|
|
28040
28043
|
}
|
|
28041
28044
|
|
|
28042
28045
|
export interface IGroupedMachineIncidentDto extends IMachineAlarmDto {
|
|
28043
|
-
incidents
|
|
28046
|
+
incidents: MachineAlarmDto[];
|
|
28044
28047
|
}
|
|
28045
28048
|
|
|
28046
28049
|
export class ListGroupedMachineIncidentsRequest implements IListGroupedMachineIncidentsRequest {
|