@dvsa/cvs-type-definitions 2.0.20 → 2.0.21

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.
@@ -215,6 +215,12 @@
215
215
  },
216
216
  "numberOfWheelsDriven": {
217
217
  "type": "integer"
218
+ },
219
+ "techRecord_hiddenInVta": {
220
+ "type": "boolean"
221
+ },
222
+ "techRecord_updateType": {
223
+ "type": "string"
218
224
  }
219
225
  }
220
226
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dvsa/cvs-type-definitions",
3
- "version": "2.0.20",
3
+ "version": "2.0.21",
4
4
  "description": "type definitions for cvs vta application",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -72,4 +72,6 @@ export interface TechRecordCompleteMotorcycleSchema {
72
72
  vin: string;
73
73
  vehicleSubclass: VehicleSubclass;
74
74
  numberOfWheelsDriven?: number;
75
+ techRecord_hiddenInVta?: boolean;
76
+ techRecord_updateType?: string;
75
77
  }