@ignos/api-client 20251209.0.13462-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;
@@ -4678,6 +4682,8 @@ export declare class UpdateMrbTemplate implements IUpdateMrbTemplate {
4678
4682
  elements?: MrbTemplateUpdateElementDto[];
4679
4683
  contentIndicator?: string | null;
4680
4684
  noContentIndicator?: string | null;
4685
+ showSerialNumbersOnFrontPage?: boolean;
4686
+ showSerialNumbersOnCoC?: boolean;
4681
4687
  constructor(data?: IUpdateMrbTemplate);
4682
4688
  init(_data?: any): void;
4683
4689
  static fromJS(data: any): UpdateMrbTemplate;
@@ -4690,6 +4696,8 @@ export interface IUpdateMrbTemplate {
4690
4696
  elements?: MrbTemplateUpdateElementDto[];
4691
4697
  contentIndicator?: string | null;
4692
4698
  noContentIndicator?: string | null;
4699
+ showSerialNumbersOnFrontPage?: boolean;
4700
+ showSerialNumbersOnCoC?: boolean;
4693
4701
  }
4694
4702
  export declare class MrbTemplateUpdateElementDto implements IMrbTemplateUpdateElementDto {
4695
4703
  id?: string | null;
@@ -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
  }
@@ -27694,6 +27698,8 @@ export class UpdateMrbTemplate {
27694
27698
  }
27695
27699
  this.contentIndicator = _data["contentIndicator"];
27696
27700
  this.noContentIndicator = _data["noContentIndicator"];
27701
+ this.showSerialNumbersOnFrontPage = _data["showSerialNumbersOnFrontPage"];
27702
+ this.showSerialNumbersOnCoC = _data["showSerialNumbersOnCoC"];
27697
27703
  }
27698
27704
  }
27699
27705
  static fromJS(data) {
@@ -27714,6 +27720,8 @@ export class UpdateMrbTemplate {
27714
27720
  }
27715
27721
  data["contentIndicator"] = this.contentIndicator;
27716
27722
  data["noContentIndicator"] = this.noContentIndicator;
27723
+ data["showSerialNumbersOnFrontPage"] = this.showSerialNumbersOnFrontPage;
27724
+ data["showSerialNumbersOnCoC"] = this.showSerialNumbersOnCoC;
27717
27725
  return data;
27718
27726
  }
27719
27727
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20251209.0.13462-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 {
@@ -31096,6 +31104,8 @@ export class UpdateMrbTemplate implements IUpdateMrbTemplate {
31096
31104
  elements?: MrbTemplateUpdateElementDto[];
31097
31105
  contentIndicator?: string | null;
31098
31106
  noContentIndicator?: string | null;
31107
+ showSerialNumbersOnFrontPage?: boolean;
31108
+ showSerialNumbersOnCoC?: boolean;
31099
31109
 
31100
31110
  constructor(data?: IUpdateMrbTemplate) {
31101
31111
  if (data) {
@@ -31118,6 +31128,8 @@ export class UpdateMrbTemplate implements IUpdateMrbTemplate {
31118
31128
  }
31119
31129
  this.contentIndicator = _data["contentIndicator"];
31120
31130
  this.noContentIndicator = _data["noContentIndicator"];
31131
+ this.showSerialNumbersOnFrontPage = _data["showSerialNumbersOnFrontPage"];
31132
+ this.showSerialNumbersOnCoC = _data["showSerialNumbersOnCoC"];
31121
31133
  }
31122
31134
  }
31123
31135
 
@@ -31140,6 +31152,8 @@ export class UpdateMrbTemplate implements IUpdateMrbTemplate {
31140
31152
  }
31141
31153
  data["contentIndicator"] = this.contentIndicator;
31142
31154
  data["noContentIndicator"] = this.noContentIndicator;
31155
+ data["showSerialNumbersOnFrontPage"] = this.showSerialNumbersOnFrontPage;
31156
+ data["showSerialNumbersOnCoC"] = this.showSerialNumbersOnCoC;
31143
31157
  return data;
31144
31158
  }
31145
31159
  }
@@ -31151,6 +31165,8 @@ export interface IUpdateMrbTemplate {
31151
31165
  elements?: MrbTemplateUpdateElementDto[];
31152
31166
  contentIndicator?: string | null;
31153
31167
  noContentIndicator?: string | null;
31168
+ showSerialNumbersOnFrontPage?: boolean;
31169
+ showSerialNumbersOnCoC?: boolean;
31154
31170
  }
31155
31171
 
31156
31172
  export class MrbTemplateUpdateElementDto implements IMrbTemplateUpdateElementDto {