@ignos/api-client 20251209.0.13465-alpha → 20251209.0.13468-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.
@@ -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;
@@ -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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20251209.0.13465-alpha",
3
+ "version": "20251209.0.13468-alpha",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -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 {