@ignos/api-client 20251209.0.13465-alpha → 20251212.0.13543
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 +8 -0
- package/lib/ignosportal-api.js +9 -1
- package/package.json +1 -1
- package/src/ignosportal-api.ts +17 -1
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -4218,6 +4218,8 @@ export declare class MrbInstanceDto implements IMrbInstanceDto {
|
|
|
4218
4218
|
status?: MrbStatusDto | null;
|
|
4219
4219
|
latestRevision?: MrbInstanceRevisionDto | null;
|
|
4220
4220
|
part?: MrbPartDto | null;
|
|
4221
|
+
showSerialNumbersOnFrontPage?: boolean;
|
|
4222
|
+
showSerialNumbersOnCoC?: boolean;
|
|
4221
4223
|
constructor(data?: IMrbInstanceDto);
|
|
4222
4224
|
init(_data?: any): void;
|
|
4223
4225
|
static fromJS(data: any): MrbInstanceDto;
|
|
@@ -4239,6 +4241,8 @@ export interface IMrbInstanceDto {
|
|
|
4239
4241
|
status?: MrbStatusDto | null;
|
|
4240
4242
|
latestRevision?: MrbInstanceRevisionDto | null;
|
|
4241
4243
|
part?: MrbPartDto | null;
|
|
4244
|
+
showSerialNumbersOnFrontPage?: boolean;
|
|
4245
|
+
showSerialNumbersOnCoC?: boolean;
|
|
4242
4246
|
}
|
|
4243
4247
|
export declare class CustomerOrderLineTraceItemDto implements ICustomerOrderLineTraceItemDto {
|
|
4244
4248
|
workOrder: string;
|
|
@@ -6131,6 +6135,8 @@ export declare class DowntimeReasonReport implements IDowntimeReasonReport {
|
|
|
6131
6135
|
reasonId: string;
|
|
6132
6136
|
reasonType: DowntimeReasonTypeDto;
|
|
6133
6137
|
reason: string;
|
|
6138
|
+
parentReasonId: string;
|
|
6139
|
+
parentReason: string;
|
|
6134
6140
|
totalDurationMilliseconds: number;
|
|
6135
6141
|
count: number;
|
|
6136
6142
|
details: DowntimeReasonInformation[];
|
|
@@ -6143,6 +6149,8 @@ export interface IDowntimeReasonReport {
|
|
|
6143
6149
|
reasonId: string;
|
|
6144
6150
|
reasonType: DowntimeReasonTypeDto;
|
|
6145
6151
|
reason: string;
|
|
6152
|
+
parentReasonId: string;
|
|
6153
|
+
parentReason: string;
|
|
6146
6154
|
totalDurationMilliseconds: number;
|
|
6147
6155
|
count: number;
|
|
6148
6156
|
details: DowntimeReasonInformation[];
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
//----------------------
|
|
2
2
|
// <auto-generated>
|
|
3
|
-
// Generated using the NSwag toolchain v14.6.
|
|
3
|
+
// Generated using the NSwag toolchain v14.6.3.0 (NJsonSchema v11.5.2.0 (Newtonsoft.Json v13.0.0.0)) (http://NSwag.org)
|
|
4
4
|
// </auto-generated>
|
|
5
5
|
//----------------------
|
|
6
6
|
/* eslint-disable */
|
|
@@ -26744,6 +26744,8 @@ export class MrbInstanceDto {
|
|
|
26744
26744
|
this.status = _data["status"] ? MrbStatusDto.fromJS(_data["status"]) : undefined;
|
|
26745
26745
|
this.latestRevision = _data["latestRevision"] ? MrbInstanceRevisionDto.fromJS(_data["latestRevision"]) : undefined;
|
|
26746
26746
|
this.part = _data["part"] ? MrbPartDto.fromJS(_data["part"]) : undefined;
|
|
26747
|
+
this.showSerialNumbersOnFrontPage = _data["showSerialNumbersOnFrontPage"];
|
|
26748
|
+
this.showSerialNumbersOnCoC = _data["showSerialNumbersOnCoC"];
|
|
26747
26749
|
}
|
|
26748
26750
|
}
|
|
26749
26751
|
static fromJS(data) {
|
|
@@ -26773,6 +26775,8 @@ export class MrbInstanceDto {
|
|
|
26773
26775
|
data["status"] = this.status ? this.status.toJSON() : undefined;
|
|
26774
26776
|
data["latestRevision"] = this.latestRevision ? this.latestRevision.toJSON() : undefined;
|
|
26775
26777
|
data["part"] = this.part ? this.part.toJSON() : undefined;
|
|
26778
|
+
data["showSerialNumbersOnFrontPage"] = this.showSerialNumbersOnFrontPage;
|
|
26779
|
+
data["showSerialNumbersOnCoC"] = this.showSerialNumbersOnCoC;
|
|
26776
26780
|
return data;
|
|
26777
26781
|
}
|
|
26778
26782
|
}
|
|
@@ -30679,6 +30683,8 @@ export class DowntimeReasonReport {
|
|
|
30679
30683
|
this.reasonId = _data["reasonId"];
|
|
30680
30684
|
this.reasonType = _data["reasonType"];
|
|
30681
30685
|
this.reason = _data["reason"];
|
|
30686
|
+
this.parentReasonId = _data["parentReasonId"];
|
|
30687
|
+
this.parentReason = _data["parentReason"];
|
|
30682
30688
|
this.totalDurationMilliseconds = _data["totalDurationMilliseconds"];
|
|
30683
30689
|
this.count = _data["count"];
|
|
30684
30690
|
if (Array.isArray(_data["details"])) {
|
|
@@ -30699,6 +30705,8 @@ export class DowntimeReasonReport {
|
|
|
30699
30705
|
data["reasonId"] = this.reasonId;
|
|
30700
30706
|
data["reasonType"] = this.reasonType;
|
|
30701
30707
|
data["reason"] = this.reason;
|
|
30708
|
+
data["parentReasonId"] = this.parentReasonId;
|
|
30709
|
+
data["parentReason"] = this.parentReason;
|
|
30702
30710
|
data["totalDurationMilliseconds"] = this.totalDurationMilliseconds;
|
|
30703
30711
|
data["count"] = this.count;
|
|
30704
30712
|
if (Array.isArray(this.details)) {
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
//----------------------
|
|
2
2
|
// <auto-generated>
|
|
3
|
-
// Generated using the NSwag toolchain v14.6.
|
|
3
|
+
// Generated using the NSwag toolchain v14.6.3.0 (NJsonSchema v11.5.2.0 (Newtonsoft.Json v13.0.0.0)) (http://NSwag.org)
|
|
4
4
|
// </auto-generated>
|
|
5
5
|
//----------------------
|
|
6
6
|
|
|
@@ -29669,6 +29669,8 @@ export class MrbInstanceDto implements IMrbInstanceDto {
|
|
|
29669
29669
|
status?: MrbStatusDto | null;
|
|
29670
29670
|
latestRevision?: MrbInstanceRevisionDto | null;
|
|
29671
29671
|
part?: MrbPartDto | null;
|
|
29672
|
+
showSerialNumbersOnFrontPage?: boolean;
|
|
29673
|
+
showSerialNumbersOnCoC?: boolean;
|
|
29672
29674
|
|
|
29673
29675
|
constructor(data?: IMrbInstanceDto) {
|
|
29674
29676
|
if (data) {
|
|
@@ -29703,6 +29705,8 @@ export class MrbInstanceDto implements IMrbInstanceDto {
|
|
|
29703
29705
|
this.status = _data["status"] ? MrbStatusDto.fromJS(_data["status"]) : undefined as any;
|
|
29704
29706
|
this.latestRevision = _data["latestRevision"] ? MrbInstanceRevisionDto.fromJS(_data["latestRevision"]) : undefined as any;
|
|
29705
29707
|
this.part = _data["part"] ? MrbPartDto.fromJS(_data["part"]) : undefined as any;
|
|
29708
|
+
this.showSerialNumbersOnFrontPage = _data["showSerialNumbersOnFrontPage"];
|
|
29709
|
+
this.showSerialNumbersOnCoC = _data["showSerialNumbersOnCoC"];
|
|
29706
29710
|
}
|
|
29707
29711
|
}
|
|
29708
29712
|
|
|
@@ -29734,6 +29738,8 @@ export class MrbInstanceDto implements IMrbInstanceDto {
|
|
|
29734
29738
|
data["status"] = this.status ? this.status.toJSON() : undefined as any;
|
|
29735
29739
|
data["latestRevision"] = this.latestRevision ? this.latestRevision.toJSON() : undefined as any;
|
|
29736
29740
|
data["part"] = this.part ? this.part.toJSON() : undefined as any;
|
|
29741
|
+
data["showSerialNumbersOnFrontPage"] = this.showSerialNumbersOnFrontPage;
|
|
29742
|
+
data["showSerialNumbersOnCoC"] = this.showSerialNumbersOnCoC;
|
|
29737
29743
|
return data;
|
|
29738
29744
|
}
|
|
29739
29745
|
}
|
|
@@ -29754,6 +29760,8 @@ export interface IMrbInstanceDto {
|
|
|
29754
29760
|
status?: MrbStatusDto | null;
|
|
29755
29761
|
latestRevision?: MrbInstanceRevisionDto | null;
|
|
29756
29762
|
part?: MrbPartDto | null;
|
|
29763
|
+
showSerialNumbersOnFrontPage?: boolean;
|
|
29764
|
+
showSerialNumbersOnCoC?: boolean;
|
|
29757
29765
|
}
|
|
29758
29766
|
|
|
29759
29767
|
export class CustomerOrderLineTraceItemDto implements ICustomerOrderLineTraceItemDto {
|
|
@@ -35550,6 +35558,8 @@ export class DowntimeReasonReport implements IDowntimeReasonReport {
|
|
|
35550
35558
|
reasonId!: string;
|
|
35551
35559
|
reasonType!: DowntimeReasonTypeDto;
|
|
35552
35560
|
reason!: string;
|
|
35561
|
+
parentReasonId!: string;
|
|
35562
|
+
parentReason!: string;
|
|
35553
35563
|
totalDurationMilliseconds!: number;
|
|
35554
35564
|
count!: number;
|
|
35555
35565
|
details!: DowntimeReasonInformation[];
|
|
@@ -35571,6 +35581,8 @@ export class DowntimeReasonReport implements IDowntimeReasonReport {
|
|
|
35571
35581
|
this.reasonId = _data["reasonId"];
|
|
35572
35582
|
this.reasonType = _data["reasonType"];
|
|
35573
35583
|
this.reason = _data["reason"];
|
|
35584
|
+
this.parentReasonId = _data["parentReasonId"];
|
|
35585
|
+
this.parentReason = _data["parentReason"];
|
|
35574
35586
|
this.totalDurationMilliseconds = _data["totalDurationMilliseconds"];
|
|
35575
35587
|
this.count = _data["count"];
|
|
35576
35588
|
if (Array.isArray(_data["details"])) {
|
|
@@ -35593,6 +35605,8 @@ export class DowntimeReasonReport implements IDowntimeReasonReport {
|
|
|
35593
35605
|
data["reasonId"] = this.reasonId;
|
|
35594
35606
|
data["reasonType"] = this.reasonType;
|
|
35595
35607
|
data["reason"] = this.reason;
|
|
35608
|
+
data["parentReasonId"] = this.parentReasonId;
|
|
35609
|
+
data["parentReason"] = this.parentReason;
|
|
35596
35610
|
data["totalDurationMilliseconds"] = this.totalDurationMilliseconds;
|
|
35597
35611
|
data["count"] = this.count;
|
|
35598
35612
|
if (Array.isArray(this.details)) {
|
|
@@ -35608,6 +35622,8 @@ export interface IDowntimeReasonReport {
|
|
|
35608
35622
|
reasonId: string;
|
|
35609
35623
|
reasonType: DowntimeReasonTypeDto;
|
|
35610
35624
|
reason: string;
|
|
35625
|
+
parentReasonId: string;
|
|
35626
|
+
parentReason: string;
|
|
35611
35627
|
totalDurationMilliseconds: number;
|
|
35612
35628
|
count: number;
|
|
35613
35629
|
details: DowntimeReasonInformation[];
|