@dvsa/cvs-type-definitions 3.0.36 → 3.0.37

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.
@@ -11,6 +11,7 @@
11
11
  "techRecord_createdByName",
12
12
  "techRecord_createdById",
13
13
  "techRecord_reasonForCreation",
14
+ "techRecord_vehicleType",
14
15
  "createdTimestamp",
15
16
  "partialVin",
16
17
  "vin"
@@ -10,6 +10,7 @@
10
10
  "techRecord_createdByName",
11
11
  "techRecord_createdById",
12
12
  "techRecord_reasonForCreation",
13
+ "techRecord_vehicleType",
13
14
  "createdTimestamp",
14
15
  "partialVin",
15
16
  "vin"
@@ -6,8 +6,9 @@
6
6
  "techRecord_numberOfWheelsDriven",
7
7
  "techRecord_vehicleClass_description",
8
8
  "techRecord_reasonForCreation",
9
- "vin",
10
- "techRecord_statusCode"
9
+ "techRecord_vehicleType",
10
+ "techRecord_statusCode",
11
+ "vin"
11
12
  ],
12
13
  "properties": {
13
14
  "secondaryVrms": {
@@ -5,8 +5,9 @@
5
5
  "required": [
6
6
  "techRecord_vehicleClass_description",
7
7
  "techRecord_reasonForCreation",
8
- "vin",
9
- "techRecord_statusCode"
8
+ "techRecord_statusCode",
9
+ "techRecord_vehicleType",
10
+ "vin"
10
11
  ],
11
12
  "properties": {
12
13
  "techRecord_applicantDetails_name": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dvsa/cvs-type-definitions",
3
- "version": "3.0.36",
3
+ "version": "3.0.37",
4
4
  "description": "type definitions for cvs vta application",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -82,7 +82,7 @@ export interface TechRecordGETMotorcycleComplete {
82
82
  techRecord_vehicleClass_description: VehicleClassDescription;
83
83
  techRecord_vehicleClass_code: string;
84
84
  techRecord_vehicleConfiguration?: null | VehicleConfiguration;
85
- techRecord_vehicleType?: "motorcycle";
85
+ techRecord_vehicleType: "motorcycle";
86
86
  vin: string;
87
87
  techRecord_numberOfWheelsDriven: null | number;
88
88
  techRecord_hiddenInVta?: null | boolean;
@@ -81,7 +81,7 @@ export interface TechRecordGETMotorcycleSkeleton {
81
81
  techRecord_vehicleClass_description: VehicleClassDescription;
82
82
  techRecord_vehicleClass_code: string;
83
83
  techRecord_vehicleConfiguration?: null | VehicleConfiguration;
84
- techRecord_vehicleType?: "motorcycle";
84
+ techRecord_vehicleType: "motorcycle";
85
85
  vin: string;
86
86
  techRecord_hiddenInVta?: null | boolean;
87
87
  techRecord_updateType?: null | string;
@@ -74,7 +74,7 @@ export interface TechRecordPUTMotorcycleComplete {
74
74
  techRecord_statusCode: StatusCode;
75
75
  techRecord_vehicleClass_description: VehicleClassDescription;
76
76
  techRecord_vehicleConfiguration?: null | VehicleConfiguration;
77
- techRecord_vehicleType?: "motorcycle";
77
+ techRecord_vehicleType: "motorcycle";
78
78
  vin: string;
79
79
  techRecord_numberOfWheelsDriven: number;
80
80
  techRecord_hiddenInVta?: null | boolean;
@@ -73,7 +73,7 @@ export interface TechRecordPUTMotorcycleSkeleton {
73
73
  techRecord_statusCode: StatusCode;
74
74
  techRecord_vehicleClass_description: VehicleClassDescription;
75
75
  techRecord_vehicleConfiguration?: null | VehicleConfiguration;
76
- techRecord_vehicleType?: "motorcycle";
76
+ techRecord_vehicleType: "motorcycle";
77
77
  vin: string;
78
78
  techRecord_hiddenInVta?: null | boolean;
79
79
  techRecord_updateType?: null | string;