@dvsa/cvs-type-definitions 3.0.1 → 3.0.3
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/car/complete/index.json +111 -54
- package/json-schemas/v3/tech-record/get/car/skeleton/index.json +111 -54
- package/json-schemas/v3/tech-record/get/hgv/complete/index.json +20 -5
- package/json-schemas/v3/tech-record/get/hgv/skeleton/index.json +57 -23
- package/json-schemas/v3/tech-record/get/hgv/testable/index.json +28 -7
- package/json-schemas/v3/tech-record/get/lgv/complete/index.json +152 -81
- package/json-schemas/v3/tech-record/get/lgv/skeleton/index.json +127 -63
- package/json-schemas/v3/tech-record/get/motorcycle/complete/index.json +140 -78
- package/json-schemas/v3/tech-record/get/motorcycle/skeleton/index.json +115 -60
- package/json-schemas/v3/tech-record/get/psv/complete/index.json +106 -66
- package/json-schemas/v3/tech-record/get/psv/skeleton/index.json +16 -13
- package/json-schemas/v3/tech-record/get/psv/testable/index.json +31 -16
- package/json-schemas/v3/tech-record/get/trl/complete/index.json +91 -30
- package/json-schemas/v3/tech-record/get/trl/skeleton/index.json +80 -6
- package/json-schemas/v3/tech-record/get/trl/testable/index.json +48 -24
- package/json-schemas/v3/tech-record/put/car/complete/index.json +41 -13
- package/json-schemas/v3/tech-record/put/car/skeleton/index.json +45 -14
- package/json-schemas/v3/tech-record/put/hgv/complete/index.json +32 -9
- package/json-schemas/v3/tech-record/put/hgv/skeleton/index.json +65 -26
- package/json-schemas/v3/tech-record/put/hgv/testable/index.json +20 -6
- package/json-schemas/v3/tech-record/put/motorcycle/complete/index.json +153 -81
- package/json-schemas/v3/tech-record/put/motorcycle/skeleton/index.json +128 -63
- package/json-schemas/v3/tech-record/put/psv/complete/index.json +118 -70
- package/json-schemas/v3/tech-record/put/psv/skeleton/index.json +37 -19
- package/json-schemas/v3/tech-record/put/psv/testable/index.json +42 -20
- package/json-schemas/v3/tech-record/put/trl/complete/index.json +103 -40
- package/json-schemas/v3/tech-record/put/trl/skeleton/index.json +157 -1
- package/json-schemas/v3/tech-record/put/trl/testable/index.json +137 -4
- package/package.json +1 -1
- package/types/v3/tech-record/get/car/complete/index.d.ts +15 -15
- package/types/v3/tech-record/get/car/skeleton/index.d.ts +15 -15
- package/types/v3/tech-record/get/hgv/complete/index.d.ts +5 -5
- package/types/v3/tech-record/get/hgv/skeleton/index.d.ts +10 -10
- package/types/v3/tech-record/get/hgv/testable/index.d.ts +7 -7
- package/types/v3/tech-record/get/lgv/complete/index.d.ts +17 -17
- package/types/v3/tech-record/get/lgv/skeleton/index.d.ts +16 -16
- package/types/v3/tech-record/get/motorcycle/complete/index.d.ts +14 -14
- package/types/v3/tech-record/get/motorcycle/skeleton/index.d.ts +13 -13
- package/types/v3/tech-record/get/psv/complete/index.d.ts +13 -16
- package/types/v3/tech-record/get/psv/skeleton/index.d.ts +4 -7
- package/types/v3/tech-record/get/psv/testable/index.d.ts +10 -13
- package/types/v3/tech-record/get/trl/complete/index.d.ts +34 -34
- package/types/v3/tech-record/get/trl/skeleton/index.d.ts +16 -6
- package/types/v3/tech-record/get/trl/testable/index.d.ts +10 -10
- package/types/v3/tech-record/put/car/complete/index.d.ts +8 -8
- package/types/v3/tech-record/put/car/skeleton/index.d.ts +9 -9
- package/types/v3/tech-record/put/hgv/complete/index.d.ts +8 -8
- package/types/v3/tech-record/put/hgv/skeleton/index.d.ts +12 -12
- package/types/v3/tech-record/put/hgv/testable/index.d.ts +5 -5
- package/types/v3/tech-record/put/motorcycle/complete/index.d.ts +18 -18
- package/types/v3/tech-record/put/motorcycle/skeleton/index.d.ts +17 -17
- package/types/v3/tech-record/put/psv/complete/index.d.ts +16 -19
- package/types/v3/tech-record/put/psv/skeleton/index.d.ts +10 -13
- package/types/v3/tech-record/put/psv/testable/index.d.ts +12 -15
- package/types/v3/tech-record/put/trl/complete/index.d.ts +23 -24
- package/types/v3/tech-record/put/trl/skeleton/index.d.ts +38 -1
- package/types/v3/tech-record/put/trl/testable/index.d.ts +18 -3
|
@@ -186,21 +186,21 @@ export type MicrofilmDocumentType =
|
|
|
186
186
|
export interface TechRecordPUTPSVSkeleton {
|
|
187
187
|
vin: string;
|
|
188
188
|
partialVin?: string | null;
|
|
189
|
-
systemNumber
|
|
190
|
-
primaryVrm?: string;
|
|
189
|
+
systemNumber?: null | string;
|
|
190
|
+
primaryVrm?: null | string;
|
|
191
191
|
techRecord_vehicleType: "psv";
|
|
192
192
|
techRecord_statusCode: StatusCode;
|
|
193
193
|
techRecord_reasonForCreation: string;
|
|
194
|
-
techRecord_createdAt?: string;
|
|
194
|
+
techRecord_createdAt?: null | string;
|
|
195
195
|
techRecord_vehicleConfiguration?: VehicleConfiguration | null;
|
|
196
196
|
techRecord_vehicleSize?: VehicleSize | null;
|
|
197
197
|
techRecord_seatsLowerDeck?: number | null;
|
|
198
198
|
techRecord_seatsUpperDeck?: number | null;
|
|
199
199
|
techRecord_numberOfWheelsDriven?: number | null;
|
|
200
|
-
techRecord_vehicleClass_code?: string;
|
|
200
|
+
techRecord_vehicleClass_code?: null | string;
|
|
201
201
|
techRecord_vehicleClass_description: VehicleClassDescription;
|
|
202
|
-
techRecord_hiddenInVta?: boolean;
|
|
203
|
-
techRecord_recordCompleteness?: string;
|
|
202
|
+
techRecord_hiddenInVta?: null | boolean;
|
|
203
|
+
techRecord_recordCompleteness?: null | string;
|
|
204
204
|
techRecord_euVehicleCategory?: EUVehicleCategory | null;
|
|
205
205
|
techRecord_regnDate?: string | null;
|
|
206
206
|
techRecord_manufactureYear?: number | null;
|
|
@@ -213,7 +213,7 @@ export interface TechRecordPUTPSVSkeleton {
|
|
|
213
213
|
techRecord_variantNumber?: string | null;
|
|
214
214
|
techRecord_variantVersionNumber?: string | null;
|
|
215
215
|
techRecord_bodyType_description: BodyTypeDescription;
|
|
216
|
-
techRecord_bodyType_code?: string;
|
|
216
|
+
techRecord_bodyType_code?: null | string;
|
|
217
217
|
techRecord_functionCode?: string | null;
|
|
218
218
|
techRecord_conversionRefNo?: string | null;
|
|
219
219
|
techRecord_grossGbWeight?: number | null;
|
|
@@ -235,7 +235,6 @@ export interface TechRecordPUTPSVSkeleton {
|
|
|
235
235
|
techRecord_dda_ddaSchedules?: string | null;
|
|
236
236
|
techRecord_dda_seatbeltsFitted?: number | null;
|
|
237
237
|
techRecord_dda_ddaNotes?: string | null;
|
|
238
|
-
techRecord_dda?: null;
|
|
239
238
|
techRecord_standingCapacity?: number | null;
|
|
240
239
|
techRecord_speedLimiterMrk?: boolean | null;
|
|
241
240
|
techRecord_tachoExemptMrk?: boolean | null;
|
|
@@ -258,14 +257,13 @@ export interface TechRecordPUTPSVSkeleton {
|
|
|
258
257
|
techRecord_grossLadenWeight?: number | null;
|
|
259
258
|
techRecord_unladenWeight?: number | null;
|
|
260
259
|
techRecord_maxTrainGbWeight?: number | null;
|
|
261
|
-
techRecord_dimensions?: null;
|
|
262
260
|
techRecord_dimensions_length?: number | null;
|
|
263
261
|
techRecord_dimensions_width?: number | null;
|
|
264
262
|
techRecord_dimensions_height?: number | null;
|
|
265
263
|
techRecord_frontAxleToRearAxle?: number | null;
|
|
266
264
|
techRecord_remarks?: string | null;
|
|
267
265
|
techRecord_dispensations?: string | null;
|
|
268
|
-
techRecord_axles?: PSVAxles[];
|
|
266
|
+
techRecord_axles?: null | PSVAxles[];
|
|
269
267
|
techRecord_applicantDetails_name?: string | null;
|
|
270
268
|
techRecord_applicantDetails_address1?: null | string;
|
|
271
269
|
techRecord_applicantDetails_address2?: null | string;
|
|
@@ -288,15 +286,14 @@ export interface TechRecordPUTPSVSkeleton {
|
|
|
288
286
|
techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB?: number | null;
|
|
289
287
|
techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB?: number | null;
|
|
290
288
|
techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB?: number | null;
|
|
291
|
-
techRecord_microfilm?: null;
|
|
292
289
|
techRecord_microfilmDocumentType?: MicrofilmDocumentType | null;
|
|
293
290
|
techRecord_microfilmRollNumber?: string | null;
|
|
294
291
|
techRecord_microfilmSerialNumber?: string | null;
|
|
295
292
|
techRecord_brakeCode?: string | null;
|
|
296
|
-
createdTimestamp?: string;
|
|
293
|
+
createdTimestamp?: null | string;
|
|
297
294
|
techRecord_applicationId?: string;
|
|
298
295
|
secondaryVrms?: string[];
|
|
299
|
-
techRecord_updateType?: string;
|
|
296
|
+
techRecord_updateType?: null | string;
|
|
300
297
|
}
|
|
301
298
|
export interface PSVAxles {
|
|
302
299
|
parkingBrakeMrk?: boolean | null;
|
|
@@ -186,21 +186,21 @@ export type MicrofilmDocumentType =
|
|
|
186
186
|
export interface TechRecordPUTPSVTestable {
|
|
187
187
|
vin: string;
|
|
188
188
|
partialVin?: string | null;
|
|
189
|
-
systemNumber
|
|
190
|
-
primaryVrm?: string;
|
|
189
|
+
systemNumber?: null | string;
|
|
190
|
+
primaryVrm?: null | string;
|
|
191
191
|
techRecord_vehicleType: "psv";
|
|
192
192
|
techRecord_statusCode: StatusCode;
|
|
193
193
|
techRecord_reasonForCreation: string;
|
|
194
|
-
techRecord_createdAt?: string;
|
|
194
|
+
techRecord_createdAt?: null | string;
|
|
195
195
|
techRecord_vehicleConfiguration: VehicleConfiguration;
|
|
196
196
|
techRecord_vehicleSize: VehicleSize;
|
|
197
197
|
techRecord_seatsLowerDeck: number;
|
|
198
198
|
techRecord_seatsUpperDeck: number;
|
|
199
199
|
techRecord_numberOfWheelsDriven: number | null;
|
|
200
|
-
techRecord_vehicleClass_code?: string;
|
|
200
|
+
techRecord_vehicleClass_code?: null | string;
|
|
201
201
|
techRecord_vehicleClass_description: VehicleClassDescription;
|
|
202
|
-
techRecord_hiddenInVta?: boolean;
|
|
203
|
-
techRecord_recordCompleteness?: string;
|
|
202
|
+
techRecord_hiddenInVta?: null | boolean;
|
|
203
|
+
techRecord_recordCompleteness?: null | string;
|
|
204
204
|
techRecord_euVehicleCategory?: EUVehicleCategory | null;
|
|
205
205
|
techRecord_regnDate?: string | null;
|
|
206
206
|
techRecord_manufactureYear?: number | null;
|
|
@@ -235,7 +235,6 @@ export interface TechRecordPUTPSVTestable {
|
|
|
235
235
|
techRecord_dda_ddaSchedules?: string | null;
|
|
236
236
|
techRecord_dda_seatbeltsFitted?: number | null;
|
|
237
237
|
techRecord_dda_ddaNotes?: string | null;
|
|
238
|
-
techRecord_dda?: null;
|
|
239
238
|
techRecord_standingCapacity?: number | null;
|
|
240
239
|
techRecord_speedLimiterMrk?: boolean | null;
|
|
241
240
|
techRecord_tachoExemptMrk?: boolean | null;
|
|
@@ -243,7 +242,7 @@ export interface TechRecordPUTPSVTestable {
|
|
|
243
242
|
techRecord_fuelPropulsionSystem?: FuelPropulsionSystem | null;
|
|
244
243
|
techRecord_emissionsLimit?: null | number;
|
|
245
244
|
techRecord_trainDesignWeight?: number | null;
|
|
246
|
-
techRecord_numberOfSeatbelts?: string;
|
|
245
|
+
techRecord_numberOfSeatbelts?: null | string;
|
|
247
246
|
techRecord_seatbeltInstallationApprovalDate?: string | null;
|
|
248
247
|
techRecord_coifSerialNumber?: string | null;
|
|
249
248
|
techRecord_coifCertifierName?: string | null;
|
|
@@ -258,14 +257,13 @@ export interface TechRecordPUTPSVTestable {
|
|
|
258
257
|
techRecord_grossLadenWeight?: number | null;
|
|
259
258
|
techRecord_unladenWeight?: number | null;
|
|
260
259
|
techRecord_maxTrainGbWeight?: number | null;
|
|
261
|
-
techRecord_dimensions?: null;
|
|
262
260
|
techRecord_dimensions_length?: number | null;
|
|
263
261
|
techRecord_dimensions_width?: number | null;
|
|
264
262
|
techRecord_dimensions_height?: number | null;
|
|
265
263
|
techRecord_frontAxleToRearAxle?: number | null;
|
|
266
264
|
techRecord_remarks?: string | null;
|
|
267
265
|
techRecord_dispensations?: string | null;
|
|
268
|
-
techRecord_axles?: PSVAxles[];
|
|
266
|
+
techRecord_axles?: null | PSVAxles[];
|
|
269
267
|
techRecord_applicantDetails_name?: string | null;
|
|
270
268
|
techRecord_applicantDetails_address1?: null | string;
|
|
271
269
|
techRecord_applicantDetails_address2?: null | string;
|
|
@@ -288,15 +286,14 @@ export interface TechRecordPUTPSVTestable {
|
|
|
288
286
|
techRecord_brakes_brakeForceWheelsUpToHalfLocked_parkingBrakeForceB?: number | null;
|
|
289
287
|
techRecord_brakes_brakeForceWheelsUpToHalfLocked_secondaryBrakeForceB?: number | null;
|
|
290
288
|
techRecord_brakes_brakeForceWheelsUpToHalfLocked_serviceBrakeForceB?: number | null;
|
|
291
|
-
techRecord_microfilm?: null;
|
|
292
289
|
techRecord_microfilmDocumentType?: MicrofilmDocumentType | null;
|
|
293
290
|
techRecord_microfilmRollNumber?: string | null;
|
|
294
291
|
techRecord_microfilmSerialNumber?: string | null;
|
|
295
292
|
techRecord_brakeCode?: string | null;
|
|
296
|
-
createdTimestamp?: string;
|
|
297
|
-
techRecord_applicationId?: string;
|
|
298
|
-
secondaryVrms?: string[];
|
|
299
|
-
techRecord_updateType?: string;
|
|
293
|
+
createdTimestamp?: null | string;
|
|
294
|
+
techRecord_applicationId?: null | string;
|
|
295
|
+
secondaryVrms?: null | string[];
|
|
296
|
+
techRecord_updateType?: null | string;
|
|
300
297
|
}
|
|
301
298
|
export interface PSVAxles {
|
|
302
299
|
parkingBrakeMrk?: boolean | null;
|
|
@@ -182,9 +182,9 @@ export type SpeedCategorySymbol =
|
|
|
182
182
|
|
|
183
183
|
export interface TechRecordPUTTRLComplete {
|
|
184
184
|
partialVin?: string | null;
|
|
185
|
-
techRecord_createdAt?: string;
|
|
186
|
-
techRecord_createdById?: string;
|
|
187
|
-
techRecord_createdByName?: string;
|
|
185
|
+
techRecord_createdAt?: null | string;
|
|
186
|
+
techRecord_createdById?: null | string;
|
|
187
|
+
techRecord_createdByName?: null | string;
|
|
188
188
|
techRecord_adrDetails_vehicleDetails_type?: string | null;
|
|
189
189
|
techRecord_adrDetails_vehicleDetails_approvalDate?: string | null;
|
|
190
190
|
techRecord_adrDetails_permittedDangerousGoods?: string[] | null;
|
|
@@ -254,10 +254,10 @@ export interface TechRecordPUTTRLComplete {
|
|
|
254
254
|
techRecord_departmentalVehicleMarker?: boolean | null;
|
|
255
255
|
techRecord_dimensions_length: number | null;
|
|
256
256
|
techRecord_dimensions_width: number | null;
|
|
257
|
-
drawbarCouplingFitted?: string;
|
|
257
|
+
drawbarCouplingFitted?: null | string;
|
|
258
258
|
techRecord_emissionsLimit?: null | number;
|
|
259
259
|
techRecord_euVehicleCategory?: EUVehicleCategory | null;
|
|
260
|
-
techRecord_euroStandard?: EuroStandard;
|
|
260
|
+
techRecord_euroStandard?: null | EuroStandard;
|
|
261
261
|
frontAxleTo5thWheelMax?: number | null;
|
|
262
262
|
techRecord_frontAxleTo5thWheelMin?: number | null;
|
|
263
263
|
techRecord_firstUseDate: string | null;
|
|
@@ -276,22 +276,21 @@ export interface TechRecordPUTTRLComplete {
|
|
|
276
276
|
techRecord_letterOfAuth_letterIssuer?: string | null;
|
|
277
277
|
techRecord_make: string | null;
|
|
278
278
|
techRecord_manufactureYear?: number | null;
|
|
279
|
-
techRecord_maxTrainDesignWeight?: number;
|
|
280
|
-
techRecord_maxTrainEecWeight?: number;
|
|
281
|
-
techRecord_maxTrainGbWeight?: number;
|
|
279
|
+
techRecord_maxTrainDesignWeight?: null | number;
|
|
280
|
+
techRecord_maxTrainEecWeight?: null | number;
|
|
281
|
+
techRecord_maxTrainGbWeight?: null | number;
|
|
282
282
|
techRecord_manufacturerDetails?: string | null;
|
|
283
283
|
techRecord_maxLoadOnCoupling: number | null;
|
|
284
|
-
techRecord_microfilm?: string | null;
|
|
285
284
|
techRecord_microfilm_microfilmDocumentType?: null | MicrofilmDocumentType;
|
|
286
285
|
techRecord_microfilm_microfilmRollNumber?: string | null;
|
|
287
286
|
techRecord_microfilm_microfilmSerialNumber?: string | null;
|
|
288
287
|
techRecord_model: string | null;
|
|
289
288
|
techRecord_noOfAxles: number | null;
|
|
290
289
|
techRecord_notes: string;
|
|
291
|
-
techRecord_ntaNumber?: string;
|
|
290
|
+
techRecord_ntaNumber?: null | string;
|
|
292
291
|
techRecord_numberOfWheelsDriven?: number | null;
|
|
293
|
-
techRecord_offRoad?: boolean;
|
|
294
|
-
techRecord_plates?: TRLPlates[];
|
|
292
|
+
techRecord_offRoad?: null | boolean;
|
|
293
|
+
techRecord_plates?: null | TRLPlates[];
|
|
295
294
|
techRecord_purchaserDetails_address1?: string | null;
|
|
296
295
|
techRecord_purchaserDetails_address2?: string | null;
|
|
297
296
|
techRecord_purchaserDetails_address3?: string | null;
|
|
@@ -306,22 +305,22 @@ export interface TechRecordPUTTRLComplete {
|
|
|
306
305
|
techRecord_reasonForCreation: string;
|
|
307
306
|
techRecord_regnDate?: string | null;
|
|
308
307
|
techRecord_roadFriendly: boolean | null;
|
|
309
|
-
techRecord_speedLimiterMrk?: boolean;
|
|
308
|
+
techRecord_speedLimiterMrk?: null | boolean;
|
|
310
309
|
techRecord_statusCode: StatusCode;
|
|
311
|
-
techRecord_tachoExemptMrk?: boolean;
|
|
310
|
+
techRecord_tachoExemptMrk?: null | boolean;
|
|
312
311
|
techRecord_suspensionType: string | null;
|
|
313
312
|
techRecord_tyreUseCode: string | null;
|
|
314
|
-
techRecord_variantNumber?: string;
|
|
315
|
-
techRecord_variantVersionNumber?: string;
|
|
313
|
+
techRecord_variantNumber?: null | string;
|
|
314
|
+
techRecord_variantVersionNumber?: null | string;
|
|
316
315
|
techRecord_vehicleClass_code: string;
|
|
317
316
|
techRecord_vehicleClass_description: VehicleClassDescription;
|
|
318
317
|
techRecord_vehicleConfiguration: VehicleConfiguration | null;
|
|
319
318
|
techRecord_vehicleType: "trl";
|
|
320
|
-
trailerId
|
|
319
|
+
trailerId?: string;
|
|
321
320
|
vin: string;
|
|
322
|
-
techRecord_axles?: PSVAxles[];
|
|
323
|
-
techRecord_hiddenInVta?: boolean;
|
|
324
|
-
techRecord_updateType?: string;
|
|
321
|
+
techRecord_axles?: null | PSVAxles[];
|
|
322
|
+
techRecord_hiddenInVta?: null | boolean;
|
|
323
|
+
techRecord_updateType?: null | string;
|
|
325
324
|
techRecord_authIntoService_cocIssueDate?: string | null;
|
|
326
325
|
techRecord_authIntoService_dateReceived?: string | null;
|
|
327
326
|
techRecord_authIntoService_datePending?: string | null;
|
|
@@ -337,10 +336,10 @@ export interface TRLPlates {
|
|
|
337
336
|
export interface PSVAxles {
|
|
338
337
|
parkingBrakeMrk?: boolean | null;
|
|
339
338
|
axleNumber?: number | null;
|
|
340
|
-
brakes?: {
|
|
341
|
-
brakeActuator?: number;
|
|
342
|
-
leverLength?: number;
|
|
343
|
-
springBrakeParking?: boolean;
|
|
339
|
+
brakes?: null | {
|
|
340
|
+
brakeActuator?: null | number;
|
|
341
|
+
leverLength?: null | number;
|
|
342
|
+
springBrakeParking?: null | boolean;
|
|
344
343
|
};
|
|
345
344
|
weights_gbWeight?: number | null;
|
|
346
345
|
weights_designWeight?: number | null;
|
|
@@ -127,6 +127,23 @@ export type VehicleConfiguration =
|
|
|
127
127
|
| "four-in-line"
|
|
128
128
|
| "dolly"
|
|
129
129
|
| "full drawbar";
|
|
130
|
+
export type FitmentCode = "single" | "double";
|
|
131
|
+
export type SpeedCategorySymbol =
|
|
132
|
+
| "a7"
|
|
133
|
+
| "a8"
|
|
134
|
+
| "b"
|
|
135
|
+
| "c"
|
|
136
|
+
| "d"
|
|
137
|
+
| "e"
|
|
138
|
+
| "f"
|
|
139
|
+
| "g"
|
|
140
|
+
| "j"
|
|
141
|
+
| "k"
|
|
142
|
+
| "l"
|
|
143
|
+
| "m"
|
|
144
|
+
| "n"
|
|
145
|
+
| "p"
|
|
146
|
+
| "q";
|
|
130
147
|
|
|
131
148
|
export interface TechRecordPUTTRLSkeleton {
|
|
132
149
|
partialVin?: string | null;
|
|
@@ -247,7 +264,7 @@ export interface TechRecordPUTTRLSkeleton {
|
|
|
247
264
|
techRecord_vehicleClass_description: VehicleClassDescription;
|
|
248
265
|
techRecord_vehicleConfiguration: VehicleConfiguration | null;
|
|
249
266
|
techRecord_vehicleType: "trl";
|
|
250
|
-
trailerId
|
|
267
|
+
trailerId?: string;
|
|
251
268
|
vin: string;
|
|
252
269
|
techRecord_hiddenInVta?: boolean;
|
|
253
270
|
techRecord_updateType?: string;
|
|
@@ -256,6 +273,7 @@ export interface TechRecordPUTTRLSkeleton {
|
|
|
256
273
|
techRecord_authIntoService_datePending?: string | null;
|
|
257
274
|
techRecord_authIntoService_dateAuthorised?: string | null;
|
|
258
275
|
techRecord_authIntoService_dateRejected?: string | null;
|
|
276
|
+
techRecord_axles?: null | TRLAxles[];
|
|
259
277
|
}
|
|
260
278
|
export interface TRLPlates {
|
|
261
279
|
plateSerialNumber?: string | null;
|
|
@@ -263,3 +281,22 @@ export interface TRLPlates {
|
|
|
263
281
|
reasonForIssue?: null | PlateReasonForIssue;
|
|
264
282
|
plateIssuer?: string | null;
|
|
265
283
|
}
|
|
284
|
+
export interface TRLAxles {
|
|
285
|
+
parkingBrakeMrk?: boolean | null;
|
|
286
|
+
axleNumber?: number | null;
|
|
287
|
+
brakes?: {
|
|
288
|
+
brakeActuator?: null | number;
|
|
289
|
+
leverLength?: null | number;
|
|
290
|
+
springBrakeParking?: null | boolean;
|
|
291
|
+
};
|
|
292
|
+
weights_gbWeight?: number | null;
|
|
293
|
+
weights_designWeight?: number | null;
|
|
294
|
+
weights_ladenWeight?: number | null;
|
|
295
|
+
weights_kerbWeight?: number | null;
|
|
296
|
+
tyres_tyreCode?: number | null;
|
|
297
|
+
tyres_tyreSize?: string | null;
|
|
298
|
+
tyres_plyRating?: string | null;
|
|
299
|
+
tyres_fitmentCode?: null | FitmentCode;
|
|
300
|
+
tyres_dataTrAxles?: null | number;
|
|
301
|
+
tyres_speedCategorySymbol?: SpeedCategorySymbol | null;
|
|
302
|
+
}
|
|
@@ -261,9 +261,9 @@ export interface TechRecordPUTTRLTestable {
|
|
|
261
261
|
techRecord_vehicleClass_description: VehicleClassDescription;
|
|
262
262
|
techRecord_vehicleConfiguration: VehicleConfiguration | null;
|
|
263
263
|
techRecord_vehicleType: "trl";
|
|
264
|
-
trailerId
|
|
264
|
+
trailerId?: string;
|
|
265
265
|
vin: string;
|
|
266
|
-
techRecord_axles?:
|
|
266
|
+
techRecord_axles?: null | TRLAxles[];
|
|
267
267
|
brakes?: {
|
|
268
268
|
brakeActuator?: number;
|
|
269
269
|
leverLength?: number;
|
|
@@ -293,7 +293,22 @@ export interface TRLPlates {
|
|
|
293
293
|
reasonForIssue?: null | PlateReasonForIssue;
|
|
294
294
|
plateIssuer?: string | null;
|
|
295
295
|
}
|
|
296
|
-
export interface
|
|
296
|
+
export interface TRLAxles {
|
|
297
297
|
parkingBrakeMrk?: boolean | null;
|
|
298
298
|
axleNumber?: number | null;
|
|
299
|
+
brakes?: {
|
|
300
|
+
brakeActuator?: null | number;
|
|
301
|
+
leverLength?: null | number;
|
|
302
|
+
springBrakeParking?: null | boolean;
|
|
303
|
+
};
|
|
304
|
+
weights_gbWeight?: number | null;
|
|
305
|
+
weights_designWeight?: number | null;
|
|
306
|
+
weights_ladenWeight?: number | null;
|
|
307
|
+
weights_kerbWeight?: number | null;
|
|
308
|
+
tyres_tyreCode?: number | null;
|
|
309
|
+
tyres_tyreSize?: string | null;
|
|
310
|
+
tyres_plyRating?: string | null;
|
|
311
|
+
tyres_fitmentCode?: null | FitmentCode;
|
|
312
|
+
tyres_dataTrAxles?: null | number;
|
|
313
|
+
tyres_speedCategorySymbol?: SpeedCategorySymbol | null;
|
|
299
314
|
}
|