@dvsa/cvs-type-definitions 7.13.2 → 8.0.0
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.
- package/json-schemas/v3/tech-record/get/motorcycle/complete/index.json +3 -5
- package/json-schemas/v3/tech-record/put/motorcycle/complete/index.json +3 -5
- package/package.json +1 -1
- package/types/v3/tech-record/get/motorcycle/complete/index.d.ts +1 -1
- package/types/v3/tech-record/put/motorcycle/complete/index.d.ts +1 -1
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"createdTimestamp",
|
|
17
17
|
"partialVin",
|
|
18
18
|
"vin",
|
|
19
|
-
"techRecord_vehicleConfiguration"
|
|
19
|
+
"techRecord_vehicleConfiguration",
|
|
20
|
+
"techRecord_noOfAxles"
|
|
20
21
|
],
|
|
21
22
|
"properties": {
|
|
22
23
|
"secondaryVrms": {
|
|
@@ -195,10 +196,7 @@
|
|
|
195
196
|
]
|
|
196
197
|
},
|
|
197
198
|
"techRecord_noOfAxles": {
|
|
198
|
-
"type":
|
|
199
|
-
"null",
|
|
200
|
-
"integer"
|
|
201
|
-
]
|
|
199
|
+
"type": "integer"
|
|
202
200
|
},
|
|
203
201
|
"techRecord_notes": {
|
|
204
202
|
"type": [
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
"techRecord_vehicleType",
|
|
10
10
|
"techRecord_statusCode",
|
|
11
11
|
"techRecord_vehicleConfiguration",
|
|
12
|
-
"vin"
|
|
12
|
+
"vin",
|
|
13
|
+
"techRecord_noOfAxles"
|
|
13
14
|
],
|
|
14
15
|
"properties": {
|
|
15
16
|
"secondaryVrms": {
|
|
@@ -159,10 +160,7 @@
|
|
|
159
160
|
]
|
|
160
161
|
},
|
|
161
162
|
"techRecord_noOfAxles": {
|
|
162
|
-
"type":
|
|
163
|
-
"null",
|
|
164
|
-
"integer"
|
|
165
|
-
]
|
|
163
|
+
"type": "integer"
|
|
166
164
|
},
|
|
167
165
|
"techRecord_notes": {
|
|
168
166
|
"type": [
|
package/package.json
CHANGED
|
@@ -30,7 +30,7 @@ export interface TechRecordGETMotorcycleComplete {
|
|
|
30
30
|
techRecord_lastUpdatedByName?: string | null;
|
|
31
31
|
techRecord_manufactureYear?: number | null;
|
|
32
32
|
techRecord_recordCompleteness?: null | string;
|
|
33
|
-
techRecord_noOfAxles
|
|
33
|
+
techRecord_noOfAxles: number;
|
|
34
34
|
techRecord_notes?: null | string;
|
|
35
35
|
techRecord_reasonForCreation: string;
|
|
36
36
|
techRecord_regnDate?: string | null;
|
|
@@ -23,7 +23,7 @@ export interface TechRecordPUTMotorcycleComplete {
|
|
|
23
23
|
techRecord_euVehicleCategory?: null | EUVehicleCategory;
|
|
24
24
|
techRecord_manufactureYear?: number | null;
|
|
25
25
|
techRecord_recordCompleteness?: null | string;
|
|
26
|
-
techRecord_noOfAxles
|
|
26
|
+
techRecord_noOfAxles: number;
|
|
27
27
|
techRecord_notes?: null | string;
|
|
28
28
|
techRecord_reasonForCreation: string;
|
|
29
29
|
techRecord_regnDate?: string | null;
|