@ignos/api-client 20250313.0.11364 → 20250313.0.11366
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 +10 -0
- package/lib/ignosportal-api.js +10 -0
- package/package.json +1 -1
- package/src/ignosportal-api.ts +20 -0
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -9404,10 +9404,15 @@ export interface IDocumentLinkDto {
|
|
|
9404
9404
|
export declare class EngineeringChangeOrderDto implements IEngineeringChangeOrderDto {
|
|
9405
9405
|
orderNumber: string;
|
|
9406
9406
|
title: string;
|
|
9407
|
+
processedAt: Date;
|
|
9408
|
+
severity: string;
|
|
9407
9409
|
category?: string | null;
|
|
9408
9410
|
description?: string | null;
|
|
9409
9411
|
project?: string | null;
|
|
9410
9412
|
status?: string | null;
|
|
9413
|
+
responsible?: UserDto | null;
|
|
9414
|
+
engineer?: UserDto | null;
|
|
9415
|
+
actions?: string | null;
|
|
9411
9416
|
constructor(data?: IEngineeringChangeOrderDto);
|
|
9412
9417
|
init(_data?: any): void;
|
|
9413
9418
|
static fromJS(data: any): EngineeringChangeOrderDto;
|
|
@@ -9416,10 +9421,15 @@ export declare class EngineeringChangeOrderDto implements IEngineeringChangeOrde
|
|
|
9416
9421
|
export interface IEngineeringChangeOrderDto {
|
|
9417
9422
|
orderNumber: string;
|
|
9418
9423
|
title: string;
|
|
9424
|
+
processedAt: Date;
|
|
9425
|
+
severity: string;
|
|
9419
9426
|
category?: string | null;
|
|
9420
9427
|
description?: string | null;
|
|
9421
9428
|
project?: string | null;
|
|
9422
9429
|
status?: string | null;
|
|
9430
|
+
responsible?: UserDto | null;
|
|
9431
|
+
engineer?: UserDto | null;
|
|
9432
|
+
actions?: string | null;
|
|
9423
9433
|
}
|
|
9424
9434
|
export declare class AddMesLink implements IAddMesLink {
|
|
9425
9435
|
uri?: string | null;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -35396,10 +35396,15 @@ export class EngineeringChangeOrderDto {
|
|
|
35396
35396
|
if (_data) {
|
|
35397
35397
|
this.orderNumber = _data["orderNumber"];
|
|
35398
35398
|
this.title = _data["title"];
|
|
35399
|
+
this.processedAt = _data["processedAt"] ? new Date(_data["processedAt"].toString()) : undefined;
|
|
35400
|
+
this.severity = _data["severity"];
|
|
35399
35401
|
this.category = _data["category"];
|
|
35400
35402
|
this.description = _data["description"];
|
|
35401
35403
|
this.project = _data["project"];
|
|
35402
35404
|
this.status = _data["status"];
|
|
35405
|
+
this.responsible = _data["responsible"] ? UserDto.fromJS(_data["responsible"]) : undefined;
|
|
35406
|
+
this.engineer = _data["engineer"] ? UserDto.fromJS(_data["engineer"]) : undefined;
|
|
35407
|
+
this.actions = _data["actions"];
|
|
35403
35408
|
}
|
|
35404
35409
|
}
|
|
35405
35410
|
static fromJS(data) {
|
|
@@ -35412,10 +35417,15 @@ export class EngineeringChangeOrderDto {
|
|
|
35412
35417
|
data = typeof data === 'object' ? data : {};
|
|
35413
35418
|
data["orderNumber"] = this.orderNumber;
|
|
35414
35419
|
data["title"] = this.title;
|
|
35420
|
+
data["processedAt"] = this.processedAt ? this.processedAt.toISOString() : undefined;
|
|
35421
|
+
data["severity"] = this.severity;
|
|
35415
35422
|
data["category"] = this.category;
|
|
35416
35423
|
data["description"] = this.description;
|
|
35417
35424
|
data["project"] = this.project;
|
|
35418
35425
|
data["status"] = this.status;
|
|
35426
|
+
data["responsible"] = this.responsible ? this.responsible.toJSON() : undefined;
|
|
35427
|
+
data["engineer"] = this.engineer ? this.engineer.toJSON() : undefined;
|
|
35428
|
+
data["actions"] = this.actions;
|
|
35419
35429
|
return data;
|
|
35420
35430
|
}
|
|
35421
35431
|
}
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -43695,10 +43695,15 @@ export interface IDocumentLinkDto {
|
|
|
43695
43695
|
export class EngineeringChangeOrderDto implements IEngineeringChangeOrderDto {
|
|
43696
43696
|
orderNumber!: string;
|
|
43697
43697
|
title!: string;
|
|
43698
|
+
processedAt!: Date;
|
|
43699
|
+
severity!: string;
|
|
43698
43700
|
category?: string | null;
|
|
43699
43701
|
description?: string | null;
|
|
43700
43702
|
project?: string | null;
|
|
43701
43703
|
status?: string | null;
|
|
43704
|
+
responsible?: UserDto | null;
|
|
43705
|
+
engineer?: UserDto | null;
|
|
43706
|
+
actions?: string | null;
|
|
43702
43707
|
|
|
43703
43708
|
constructor(data?: IEngineeringChangeOrderDto) {
|
|
43704
43709
|
if (data) {
|
|
@@ -43713,10 +43718,15 @@ export class EngineeringChangeOrderDto implements IEngineeringChangeOrderDto {
|
|
|
43713
43718
|
if (_data) {
|
|
43714
43719
|
this.orderNumber = _data["orderNumber"];
|
|
43715
43720
|
this.title = _data["title"];
|
|
43721
|
+
this.processedAt = _data["processedAt"] ? new Date(_data["processedAt"].toString()) : <any>undefined;
|
|
43722
|
+
this.severity = _data["severity"];
|
|
43716
43723
|
this.category = _data["category"];
|
|
43717
43724
|
this.description = _data["description"];
|
|
43718
43725
|
this.project = _data["project"];
|
|
43719
43726
|
this.status = _data["status"];
|
|
43727
|
+
this.responsible = _data["responsible"] ? UserDto.fromJS(_data["responsible"]) : <any>undefined;
|
|
43728
|
+
this.engineer = _data["engineer"] ? UserDto.fromJS(_data["engineer"]) : <any>undefined;
|
|
43729
|
+
this.actions = _data["actions"];
|
|
43720
43730
|
}
|
|
43721
43731
|
}
|
|
43722
43732
|
|
|
@@ -43731,10 +43741,15 @@ export class EngineeringChangeOrderDto implements IEngineeringChangeOrderDto {
|
|
|
43731
43741
|
data = typeof data === 'object' ? data : {};
|
|
43732
43742
|
data["orderNumber"] = this.orderNumber;
|
|
43733
43743
|
data["title"] = this.title;
|
|
43744
|
+
data["processedAt"] = this.processedAt ? this.processedAt.toISOString() : <any>undefined;
|
|
43745
|
+
data["severity"] = this.severity;
|
|
43734
43746
|
data["category"] = this.category;
|
|
43735
43747
|
data["description"] = this.description;
|
|
43736
43748
|
data["project"] = this.project;
|
|
43737
43749
|
data["status"] = this.status;
|
|
43750
|
+
data["responsible"] = this.responsible ? this.responsible.toJSON() : <any>undefined;
|
|
43751
|
+
data["engineer"] = this.engineer ? this.engineer.toJSON() : <any>undefined;
|
|
43752
|
+
data["actions"] = this.actions;
|
|
43738
43753
|
return data;
|
|
43739
43754
|
}
|
|
43740
43755
|
}
|
|
@@ -43742,10 +43757,15 @@ export class EngineeringChangeOrderDto implements IEngineeringChangeOrderDto {
|
|
|
43742
43757
|
export interface IEngineeringChangeOrderDto {
|
|
43743
43758
|
orderNumber: string;
|
|
43744
43759
|
title: string;
|
|
43760
|
+
processedAt: Date;
|
|
43761
|
+
severity: string;
|
|
43745
43762
|
category?: string | null;
|
|
43746
43763
|
description?: string | null;
|
|
43747
43764
|
project?: string | null;
|
|
43748
43765
|
status?: string | null;
|
|
43766
|
+
responsible?: UserDto | null;
|
|
43767
|
+
engineer?: UserDto | null;
|
|
43768
|
+
actions?: string | null;
|
|
43749
43769
|
}
|
|
43750
43770
|
|
|
43751
43771
|
export class AddMesLink implements IAddMesLink {
|