@dvsa/cvs-type-definitions 3.0.36 → 3.0.38

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"
@@ -260,10 +261,7 @@
260
261
  "type": "string"
261
262
  },
262
263
  "techRecord_numberOfWheelsDriven": {
263
- "type": [
264
- "null",
265
- "integer"
266
- ]
264
+ "type": "integer"
267
265
  },
268
266
  "techRecord_hiddenInVta": {
269
267
  "type": [
@@ -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"
@@ -272,6 +273,12 @@
272
273
  "items": {
273
274
  "type": "string"
274
275
  }
276
+ },
277
+ "techRecord_numberOfWheelsDriven": {
278
+ "type": [
279
+ "null",
280
+ "integer"
281
+ ]
275
282
  }
276
283
  }
277
284
  }
@@ -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": {
@@ -138,6 +139,12 @@
138
139
  "string"
139
140
  ]
140
141
  },
142
+ "techRecord_numberOfWheelsDriven": {
143
+ "type": [
144
+ "null",
145
+ "integer"
146
+ ]
147
+ },
141
148
  "techRecord_reasonForCreation": {
142
149
  "type": "string"
143
150
  },
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.38",
4
4
  "description": "type definitions for cvs vta application",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -82,9 +82,9 @@ 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
- techRecord_numberOfWheelsDriven: null | number;
87
+ techRecord_numberOfWheelsDriven: number;
88
88
  techRecord_hiddenInVta?: null | boolean;
89
89
  techRecord_updateType?: null | string;
90
90
  }
@@ -81,9 +81,10 @@ 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;
88
88
  secondaryVrms?: null | string[];
89
+ techRecord_numberOfWheelsDriven?: null | number;
89
90
  }
@@ -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;
@@ -68,12 +68,13 @@ export interface TechRecordPUTMotorcycleSkeleton {
68
68
  techRecord_recordCompleteness?: null | string;
69
69
  techRecord_noOfAxles?: null | number;
70
70
  techRecord_notes?: null | string;
71
+ techRecord_numberOfWheelsDriven?: null | number;
71
72
  techRecord_reasonForCreation: string;
72
73
  techRecord_regnDate?: string | null;
73
74
  techRecord_statusCode: StatusCode;
74
75
  techRecord_vehicleClass_description: VehicleClassDescription;
75
76
  techRecord_vehicleConfiguration?: null | VehicleConfiguration;
76
- techRecord_vehicleType?: "motorcycle";
77
+ techRecord_vehicleType: "motorcycle";
77
78
  vin: string;
78
79
  techRecord_hiddenInVta?: null | boolean;
79
80
  techRecord_updateType?: null | string;