@ignos/api-client 20251209.0.13468-alpha → 20251218.0.13600-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.
@@ -6135,6 +6135,8 @@ export declare class DowntimeReasonReport implements IDowntimeReasonReport {
6135
6135
  reasonId: string;
6136
6136
  reasonType: DowntimeReasonTypeDto;
6137
6137
  reason: string;
6138
+ parentReasonId: string;
6139
+ parentReason: string;
6138
6140
  totalDurationMilliseconds: number;
6139
6141
  count: number;
6140
6142
  details: DowntimeReasonInformation[];
@@ -6147,6 +6149,8 @@ export interface IDowntimeReasonReport {
6147
6149
  reasonId: string;
6148
6150
  reasonType: DowntimeReasonTypeDto;
6149
6151
  reason: string;
6152
+ parentReasonId: string;
6153
+ parentReason: string;
6150
6154
  totalDurationMilliseconds: number;
6151
6155
  count: number;
6152
6156
  details: DowntimeReasonInformation[];
@@ -1,6 +1,6 @@
1
1
  //----------------------
2
2
  // <auto-generated>
3
- // Generated using the NSwag toolchain v14.6.1.0 (NJsonSchema v11.5.1.0 (Newtonsoft.Json v13.0.0.0)) (http://NSwag.org)
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 */
@@ -30683,6 +30683,8 @@ export class DowntimeReasonReport {
30683
30683
  this.reasonId = _data["reasonId"];
30684
30684
  this.reasonType = _data["reasonType"];
30685
30685
  this.reason = _data["reason"];
30686
+ this.parentReasonId = _data["parentReasonId"];
30687
+ this.parentReason = _data["parentReason"];
30686
30688
  this.totalDurationMilliseconds = _data["totalDurationMilliseconds"];
30687
30689
  this.count = _data["count"];
30688
30690
  if (Array.isArray(_data["details"])) {
@@ -30703,6 +30705,8 @@ export class DowntimeReasonReport {
30703
30705
  data["reasonId"] = this.reasonId;
30704
30706
  data["reasonType"] = this.reasonType;
30705
30707
  data["reason"] = this.reason;
30708
+ data["parentReasonId"] = this.parentReasonId;
30709
+ data["parentReason"] = this.parentReason;
30706
30710
  data["totalDurationMilliseconds"] = this.totalDurationMilliseconds;
30707
30711
  data["count"] = this.count;
30708
30712
  if (Array.isArray(this.details)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20251209.0.13468-alpha",
3
+ "version": "20251218.0.13600-alpha",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -1,6 +1,6 @@
1
1
  //----------------------
2
2
  // <auto-generated>
3
- // Generated using the NSwag toolchain v14.6.1.0 (NJsonSchema v11.5.1.0 (Newtonsoft.Json v13.0.0.0)) (http://NSwag.org)
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
 
@@ -35558,6 +35558,8 @@ export class DowntimeReasonReport implements IDowntimeReasonReport {
35558
35558
  reasonId!: string;
35559
35559
  reasonType!: DowntimeReasonTypeDto;
35560
35560
  reason!: string;
35561
+ parentReasonId!: string;
35562
+ parentReason!: string;
35561
35563
  totalDurationMilliseconds!: number;
35562
35564
  count!: number;
35563
35565
  details!: DowntimeReasonInformation[];
@@ -35579,6 +35581,8 @@ export class DowntimeReasonReport implements IDowntimeReasonReport {
35579
35581
  this.reasonId = _data["reasonId"];
35580
35582
  this.reasonType = _data["reasonType"];
35581
35583
  this.reason = _data["reason"];
35584
+ this.parentReasonId = _data["parentReasonId"];
35585
+ this.parentReason = _data["parentReason"];
35582
35586
  this.totalDurationMilliseconds = _data["totalDurationMilliseconds"];
35583
35587
  this.count = _data["count"];
35584
35588
  if (Array.isArray(_data["details"])) {
@@ -35601,6 +35605,8 @@ export class DowntimeReasonReport implements IDowntimeReasonReport {
35601
35605
  data["reasonId"] = this.reasonId;
35602
35606
  data["reasonType"] = this.reasonType;
35603
35607
  data["reason"] = this.reason;
35608
+ data["parentReasonId"] = this.parentReasonId;
35609
+ data["parentReason"] = this.parentReason;
35604
35610
  data["totalDurationMilliseconds"] = this.totalDurationMilliseconds;
35605
35611
  data["count"] = this.count;
35606
35612
  if (Array.isArray(this.details)) {
@@ -35616,6 +35622,8 @@ export interface IDowntimeReasonReport {
35616
35622
  reasonId: string;
35617
35623
  reasonType: DowntimeReasonTypeDto;
35618
35624
  reason: string;
35625
+ parentReasonId: string;
35626
+ parentReason: string;
35619
35627
  totalDurationMilliseconds: number;
35620
35628
  count: number;
35621
35629
  details: DowntimeReasonInformation[];