@movalib/movalib-commons 1.68.8 → 1.68.10

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.
@@ -43,7 +43,10 @@ export default class Vehicle {
43
43
  secondaryTireSpeedIndex: string;
44
44
  secondaryTireWidth: string;
45
45
  secondaryTireSize: VehicleTire;
46
-
46
+ engineCode: string;
47
+ gearboxCode: string;
48
+ gearboxType: string;
49
+ energy: string;
47
50
  constructor(
48
51
  id: number,
49
52
  ownerId: number,
@@ -71,8 +74,12 @@ export default class Vehicle {
71
74
  secondaryTireSpeedIndex: string,
72
75
  secondaryTireWidth: string,
73
76
  secondaryTireSize: VehicleTire,
77
+ engineCode: string,
78
+ gearboxCode: string,
79
+ gearboxType: string,
80
+ energy: string,
74
81
  tireBrand?: string,
75
- tireProfile?: string
82
+ tireProfile?: string,
76
83
  ) {
77
84
  this.id = id;
78
85
  this.ownerId = ownerId;
@@ -102,6 +109,10 @@ export default class Vehicle {
102
109
  this.secondaryTireSpeedIndex = secondaryTireSpeedIndex;
103
110
  this.secondaryTireWidth = secondaryTireWidth;
104
111
  this.secondaryTireSize = secondaryTireSize;
112
+ this.engineCode = engineCode;
113
+ this.gearboxCode = gearboxCode;
114
+ this.gearboxType = gearboxType;
115
+ this.energy = energy;
105
116
  }
106
117
 
107
118
  getVehicleLabel() {