@dvsa/cvs-type-definitions 2.0.21 → 2.0.22
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/hgv/complete/index.json +16 -16
- package/json-schemas/v3/tech-record/get/hgv/skeleton/index.json +16 -16
- package/json-schemas/v3/tech-record/get/hgv/testable/index.json +16 -16
- package/json-schemas/v3/tech-record/get/psv/complete/index.json +24 -24
- package/json-schemas/v3/tech-record/get/psv/skeleton/index.json +13 -13
- package/json-schemas/v3/tech-record/get/psv/testable/index.json +13 -13
- package/json-schemas/v3/tech-record/get/trl/complete/index.json +26 -26
- package/json-schemas/v3/tech-record/get/trl/skeleton/index.json +5 -5
- package/json-schemas/v3/tech-record/get/trl/testable/index.json +19 -19
- package/json-schemas/v3/tech-record/put/hgv/complete/index.json +17 -17
- package/json-schemas/v3/tech-record/put/hgv/skeleton/index.json +16 -16
- package/json-schemas/v3/tech-record/put/hgv/testable/index.json +16 -16
- package/json-schemas/v3/tech-record/put/psv/complete/index.json +24 -24
- package/json-schemas/v3/tech-record/put/psv/skeleton/index.json +13 -13
- package/json-schemas/v3/tech-record/put/psv/testable/index.json +13 -13
- package/json-schemas/v3/tech-record/put/trl/complete/index.json +25 -25
- package/json-schemas/v3/tech-record/put/trl/skeleton/index.json +5 -5
- package/json-schemas/v3/tech-record/put/trl/testable/index.json +19 -19
- package/package.json +1 -1
- package/types/v3/tech-record/get/hgv/complete/index.d.ts +15 -15
- package/types/v3/tech-record/get/hgv/skeleton/index.d.ts +16 -16
- package/types/v3/tech-record/get/hgv/testable/index.d.ts +16 -16
- package/types/v3/tech-record/get/psv/complete/index.d.ts +13 -13
- package/types/v3/tech-record/get/psv/skeleton/index.d.ts +13 -13
- package/types/v3/tech-record/get/psv/testable/index.d.ts +13 -13
- package/types/v3/tech-record/get/trl/complete/index.d.ts +22 -22
- package/types/v3/tech-record/get/trl/skeleton/index.d.ts +5 -5
- package/types/v3/tech-record/get/trl/testable/index.d.ts +19 -19
- package/types/v3/tech-record/put/hgv/complete/index.d.ts +16 -16
- package/types/v3/tech-record/put/hgv/skeleton/index.d.ts +16 -16
- package/types/v3/tech-record/put/hgv/testable/index.d.ts +16 -16
- package/types/v3/tech-record/put/psv/complete/index.d.ts +13 -13
- package/types/v3/tech-record/put/psv/skeleton/index.d.ts +13 -13
- package/types/v3/tech-record/put/psv/testable/index.d.ts +13 -13
- package/types/v3/tech-record/put/trl/complete/index.d.ts +21 -21
- package/types/v3/tech-record/put/trl/skeleton/index.d.ts +5 -5
- package/types/v3/tech-record/put/trl/testable/index.d.ts +19 -19
|
@@ -288,7 +288,7 @@ export interface GETTRLTechnicalRecordV3Complete {
|
|
|
288
288
|
techRecord_ntaNumber?: string;
|
|
289
289
|
techRecord_numberOfWheelsDriven?: number | null;
|
|
290
290
|
techRecord_offRoad?: boolean;
|
|
291
|
-
|
|
291
|
+
techRecord_plates?: TRLPlates[];
|
|
292
292
|
techRecord_purchaserDetails_address1?: string | null;
|
|
293
293
|
techRecord_purchaserDetails_address2?: string | null;
|
|
294
294
|
techRecord_purchaserDetails_address3?: string | null;
|
|
@@ -320,33 +320,33 @@ export interface GETTRLTechnicalRecordV3Complete {
|
|
|
320
320
|
techRecord_vehicleType: "trl";
|
|
321
321
|
trailerId: string;
|
|
322
322
|
vin: string;
|
|
323
|
-
|
|
323
|
+
techRecord_axles?: TRLAxles[];
|
|
324
|
+
techRecord_hiddenInVta?: boolean;
|
|
325
|
+
techRecord_updateType?: string;
|
|
324
326
|
}
|
|
325
327
|
export interface TRLPlates {
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
328
|
+
plateSerialNumber?: string | null;
|
|
329
|
+
plateIssueDate?: string | null;
|
|
330
|
+
reasonForIssue?: null | PlateReasonForIssue;
|
|
331
|
+
plateIssuer?: string | null;
|
|
330
332
|
}
|
|
331
|
-
export interface
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
333
|
+
export interface TRLAxles {
|
|
334
|
+
parkingBrakeMrk?: boolean | null;
|
|
335
|
+
axleNumber?: number | null;
|
|
336
|
+
brakes?: {
|
|
335
337
|
brakeActuator?: number;
|
|
336
338
|
leverLength?: number;
|
|
337
339
|
springBrakeParking?: boolean;
|
|
338
340
|
[k: string]: unknown;
|
|
339
341
|
}[];
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
techRecord_hiddenInVta?: boolean;
|
|
351
|
-
techRecord_updateType?: string;
|
|
342
|
+
weights_gbWeight?: number | null;
|
|
343
|
+
weights_designWeight?: number | null;
|
|
344
|
+
weights_ladenWeight?: number | null;
|
|
345
|
+
weights_kerbWeight?: number | null;
|
|
346
|
+
tyres_tyreCode?: number | null;
|
|
347
|
+
tyres_tyreSize?: string | null;
|
|
348
|
+
tyres_plyRating?: string | null;
|
|
349
|
+
tyres_fitmentCode?: null | FitmentCode;
|
|
350
|
+
tyres_dataTrAxles?: null | number;
|
|
351
|
+
tyres_speedCategorySymbol?: SpeedCategorySymbol | null;
|
|
352
352
|
}
|
|
@@ -219,7 +219,7 @@ export interface GETTRLTechnicalRecordV3Skeleton {
|
|
|
219
219
|
techRecord_microfilm_microfilmSerialNumber?: string | null;
|
|
220
220
|
techRecord_model?: string | null;
|
|
221
221
|
techRecord_noOfAxles?: number | null;
|
|
222
|
-
|
|
222
|
+
techRecord_plates?: TRLPlates[];
|
|
223
223
|
techRecord_purchaserDetails_address1?: string | null;
|
|
224
224
|
techRecord_purchaserDetails_address2?: string | null;
|
|
225
225
|
techRecord_purchaserDetails_address3?: string | null;
|
|
@@ -251,8 +251,8 @@ export interface GETTRLTechnicalRecordV3Skeleton {
|
|
|
251
251
|
techRecord_updateType?: string;
|
|
252
252
|
}
|
|
253
253
|
export interface TRLPlates {
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
254
|
+
plateSerialNumber?: string | null;
|
|
255
|
+
plateIssueDate?: string | null;
|
|
256
|
+
reasonForIssue?: null | PlateReasonForIssue;
|
|
257
|
+
plateIssuer?: string | null;
|
|
258
258
|
}
|
|
@@ -236,7 +236,7 @@ export interface GETTRLTechnicalRecordV3Testable {
|
|
|
236
236
|
techRecord_microfilm_microfilmSerialNumber?: string | null;
|
|
237
237
|
techRecord_model?: string | null;
|
|
238
238
|
techRecord_noOfAxles: number | null;
|
|
239
|
-
|
|
239
|
+
techRecord_plates?: TRLPlates[];
|
|
240
240
|
techRecord_purchaserDetails_address1?: string | null;
|
|
241
241
|
techRecord_purchaserDetails_address2?: string | null;
|
|
242
242
|
techRecord_purchaserDetails_address3?: string | null;
|
|
@@ -264,33 +264,33 @@ export interface GETTRLTechnicalRecordV3Testable {
|
|
|
264
264
|
techRecord_vehicleType: "trl";
|
|
265
265
|
trailerId: string;
|
|
266
266
|
vin: string;
|
|
267
|
-
|
|
268
|
-
|
|
267
|
+
techRecord_axles?: PSVAxles[];
|
|
268
|
+
brakes?: {
|
|
269
269
|
brakeActuator?: number;
|
|
270
270
|
leverLength?: number;
|
|
271
271
|
springBrakeParking?: boolean;
|
|
272
272
|
[k: string]: unknown;
|
|
273
273
|
}[];
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
274
|
+
weights_gbWeight?: number | null;
|
|
275
|
+
weights_designWeight?: number | null;
|
|
276
|
+
weights_ladenWeight?: number | null;
|
|
277
|
+
weights_kerbWeight?: number | null;
|
|
278
|
+
tyres_tyreCode?: number | null;
|
|
279
|
+
tyres_tyreSize?: string | null;
|
|
280
|
+
tyres_plyRating?: string | null;
|
|
281
|
+
tyres_fitmentCode?: null | FitmentCode;
|
|
282
|
+
tyres_dataTrAxles?: null | number;
|
|
283
|
+
tyres_speedCategorySymbol?: SpeedCategorySymbol | null;
|
|
284
284
|
techRecord_hiddenInVta?: boolean;
|
|
285
285
|
techRecord_updateType?: string;
|
|
286
286
|
}
|
|
287
287
|
export interface TRLPlates {
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
288
|
+
plateSerialNumber?: string | null;
|
|
289
|
+
plateIssueDate?: string | null;
|
|
290
|
+
reasonForIssue?: null | PlateReasonForIssue;
|
|
291
|
+
plateIssuer?: string | null;
|
|
292
292
|
}
|
|
293
293
|
export interface PSVAxles {
|
|
294
|
-
|
|
295
|
-
|
|
294
|
+
parkingBrakeMrk?: boolean | null;
|
|
295
|
+
axleNumber?: number | null;
|
|
296
296
|
}
|
|
@@ -194,7 +194,7 @@ export interface PUTHGVTechnicalRecordV3Complete {
|
|
|
194
194
|
techRecord_applicantDetails_telephoneNumber?: null | string;
|
|
195
195
|
techRecord_applicantDetails_emailAddress?: null | string;
|
|
196
196
|
techRecord_applicationId?: string;
|
|
197
|
-
|
|
197
|
+
techRecord_axles: HGVAxles[];
|
|
198
198
|
techRecord_bodyType_code: string;
|
|
199
199
|
techRecord_bodyType_description: string;
|
|
200
200
|
techRecord_brakes_antilockBrakingSystem?: string | null;
|
|
@@ -233,7 +233,7 @@ export interface PUTHGVTechnicalRecordV3Complete {
|
|
|
233
233
|
techRecord_noOfAxles?: number | null;
|
|
234
234
|
techRecord_notes: string;
|
|
235
235
|
techRecord_offRoad: boolean;
|
|
236
|
-
|
|
236
|
+
techRecord_plates?: HGVPlates[];
|
|
237
237
|
techRecord_reasonForCreation: string;
|
|
238
238
|
techRecord_regnDate: string;
|
|
239
239
|
techRecord_roadFriendly: boolean;
|
|
@@ -259,20 +259,20 @@ export interface PUTHGVTechnicalRecordV3Complete {
|
|
|
259
259
|
techRecord_updateType?: string;
|
|
260
260
|
}
|
|
261
261
|
export interface HGVAxles {
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
262
|
+
parkingBrakeMrk?: boolean;
|
|
263
|
+
axleNumber?: number;
|
|
264
|
+
weights_gbWeight?: number;
|
|
265
|
+
weights_designWeight?: number;
|
|
266
|
+
weights_eecWeight?: number | null;
|
|
267
|
+
tyres_tyreCode?: number;
|
|
268
|
+
tyres_tyreSize?: string;
|
|
269
|
+
tyres_plyRating?: string | null;
|
|
270
|
+
tyres_fitmentCode?: FitmentCode;
|
|
271
|
+
tyres_dataTrAxles?: null | number;
|
|
272
272
|
}
|
|
273
273
|
export interface HGVPlates {
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
274
|
+
plateSerialNumber?: string | null;
|
|
275
|
+
plateIssueDate?: string | null;
|
|
276
|
+
reasonForIssue?: null | PlateReasonForIssue;
|
|
277
|
+
plateIssuer?: string | null;
|
|
278
278
|
}
|
|
@@ -194,7 +194,7 @@ export interface PUTHGVTechnicalRecordV3Skeleton {
|
|
|
194
194
|
techRecord_applicantDetails_telephoneNumber?: null | string;
|
|
195
195
|
techRecord_applicantDetails_emailAddress?: null | string;
|
|
196
196
|
techRecord_applicationId?: string | null;
|
|
197
|
-
|
|
197
|
+
techRecord_axles?: HGVAxles[];
|
|
198
198
|
techRecord_bodyType_code?: string;
|
|
199
199
|
techRecord_bodyType_description?: string;
|
|
200
200
|
techRecord_brakes_antilockBrakingSystem?: string | null;
|
|
@@ -233,7 +233,7 @@ export interface PUTHGVTechnicalRecordV3Skeleton {
|
|
|
233
233
|
techRecord_noOfAxles?: number | null;
|
|
234
234
|
techRecord_notes?: string | null;
|
|
235
235
|
techRecord_offRoad?: boolean | null;
|
|
236
|
-
|
|
236
|
+
techRecord_plates?: HGVPlates[];
|
|
237
237
|
techRecord_reasonForCreation: string;
|
|
238
238
|
techRecord_regnDate?: string | null;
|
|
239
239
|
techRecord_roadFriendly?: boolean | null;
|
|
@@ -259,20 +259,20 @@ export interface PUTHGVTechnicalRecordV3Skeleton {
|
|
|
259
259
|
techRecord_updateType?: string;
|
|
260
260
|
}
|
|
261
261
|
export interface HGVAxles {
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
262
|
+
parkingBrakeMrk?: boolean | null;
|
|
263
|
+
axleNumber?: number | null;
|
|
264
|
+
weights_gbWeight?: number | null;
|
|
265
|
+
weights_designWeight?: number | null;
|
|
266
|
+
weights_eecWeight?: number | null;
|
|
267
|
+
tyres_tyreCode?: number | null;
|
|
268
|
+
tyres_tyreSize?: string | null;
|
|
269
|
+
tyres_plyRating?: string | null;
|
|
270
|
+
tyres_fitmentCode?: null | FitmentCode;
|
|
271
|
+
tyres_dataTrAxles?: null | number;
|
|
272
272
|
}
|
|
273
273
|
export interface HGVPlates {
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
274
|
+
plateSerialNumber?: string | null;
|
|
275
|
+
plateIssueDate?: string | null;
|
|
276
|
+
reasonForIssue?: null | PlateReasonForIssue;
|
|
277
|
+
plateIssuer?: string | null;
|
|
278
278
|
}
|
|
@@ -194,7 +194,7 @@ export interface PUTHGVTechnicalRecordV3Testable {
|
|
|
194
194
|
techRecord_applicantDetails_telephoneNumber?: null | string;
|
|
195
195
|
techRecord_applicantDetails_emailAddress?: null | string;
|
|
196
196
|
techRecord_applicationId?: string;
|
|
197
|
-
|
|
197
|
+
techRecord_axles?: HGVAxles[];
|
|
198
198
|
techRecord_bodyType_code?: string;
|
|
199
199
|
techRecord_bodyType_description?: string;
|
|
200
200
|
techRecord_brakes_antilockBrakingSystem?: string | null;
|
|
@@ -233,7 +233,7 @@ export interface PUTHGVTechnicalRecordV3Testable {
|
|
|
233
233
|
techRecord_noOfAxles?: number | null;
|
|
234
234
|
techRecord_notes?: string | null;
|
|
235
235
|
techRecord_offRoad?: boolean | null;
|
|
236
|
-
|
|
236
|
+
techRecord_plates?: HGVPlates[];
|
|
237
237
|
techRecord_reasonForCreation: string;
|
|
238
238
|
techRecord_regnDate?: string | null;
|
|
239
239
|
techRecord_roadFriendly?: boolean | null;
|
|
@@ -259,20 +259,20 @@ export interface PUTHGVTechnicalRecordV3Testable {
|
|
|
259
259
|
techRecord_updateType?: string;
|
|
260
260
|
}
|
|
261
261
|
export interface HGVAxles {
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
262
|
+
parkingBrakeMrk?: boolean | null;
|
|
263
|
+
axleNumber?: number | null;
|
|
264
|
+
weights_gbWeight?: number | null;
|
|
265
|
+
weights_designWeight?: number | null;
|
|
266
|
+
weights_eecWeight?: number | null;
|
|
267
|
+
tyres_tyreCode?: number | null;
|
|
268
|
+
tyres_tyreSize?: string | null;
|
|
269
|
+
tyres_plyRating?: string | null;
|
|
270
|
+
tyres_fitmentCode?: null | FitmentCode;
|
|
271
|
+
tyres_dataTrAxles?: null | number;
|
|
272
272
|
}
|
|
273
273
|
export interface HGVPlates {
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
274
|
+
plateSerialNumber?: string | null;
|
|
275
|
+
plateIssueDate?: string | null;
|
|
276
|
+
reasonForIssue?: null | PlateReasonForIssue;
|
|
277
|
+
plateIssuer?: string | null;
|
|
278
278
|
}
|
|
@@ -268,7 +268,7 @@ export interface POSTPSVTechnicalRecordV3Complete {
|
|
|
268
268
|
/**
|
|
269
269
|
* @minItems 1
|
|
270
270
|
*/
|
|
271
|
-
|
|
271
|
+
techRecord_axles: [PSVAxlesComplete, ...PSVAxlesComplete[]];
|
|
272
272
|
techRecord_applicantDetails_name?: string | null;
|
|
273
273
|
techRecord_applicantDetails_address1?: null | string;
|
|
274
274
|
techRecord_applicantDetails_address2?: null | string;
|
|
@@ -301,16 +301,16 @@ export interface POSTPSVTechnicalRecordV3Complete {
|
|
|
301
301
|
techRecord_updateType?: string;
|
|
302
302
|
}
|
|
303
303
|
export interface PSVAxlesComplete {
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
304
|
+
parkingBrakeMrk: boolean;
|
|
305
|
+
axleNumber: number;
|
|
306
|
+
weights_gbWeight: number;
|
|
307
|
+
weights_designWeight: number;
|
|
308
|
+
weights_ladenWeight: number;
|
|
309
|
+
weights_kerbWeight: number;
|
|
310
|
+
tyres_tyreCode: number;
|
|
311
|
+
tyres_tyreSize: string;
|
|
312
|
+
tyres_plyRating?: string | null;
|
|
313
|
+
tyres_fitmentCode: FitmentCode;
|
|
314
|
+
tyres_dataTrAxles?: null | number;
|
|
315
|
+
tyres_speedCategorySymbol: SpeedCategorySymbol;
|
|
316
316
|
}
|
|
@@ -265,7 +265,7 @@ export interface POSTPSVTechnicalRecordV3Skeleton {
|
|
|
265
265
|
techRecord_frontAxleToRearAxle?: number | null;
|
|
266
266
|
techRecord_remarks?: string | null;
|
|
267
267
|
techRecord_dispensations?: string | null;
|
|
268
|
-
|
|
268
|
+
techRecord_axles?: PSVAxles[];
|
|
269
269
|
techRecord_applicantDetails_name?: string | null;
|
|
270
270
|
techRecord_applicantDetails_address1?: null | string;
|
|
271
271
|
techRecord_applicantDetails_address2?: null | string;
|
|
@@ -299,16 +299,16 @@ export interface POSTPSVTechnicalRecordV3Skeleton {
|
|
|
299
299
|
techRecord_updateType?: string;
|
|
300
300
|
}
|
|
301
301
|
export interface PSVAxles {
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
302
|
+
parkingBrakeMrk?: boolean | null;
|
|
303
|
+
axleNumber?: number | null;
|
|
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;
|
|
314
314
|
}
|
|
@@ -265,7 +265,7 @@ export interface POSTPSVTechnicalRecordV3Testable {
|
|
|
265
265
|
techRecord_frontAxleToRearAxle?: number | null;
|
|
266
266
|
techRecord_remarks?: string | null;
|
|
267
267
|
techRecord_dispensations?: string | null;
|
|
268
|
-
|
|
268
|
+
techRecord_axles?: PSVAxles[];
|
|
269
269
|
techRecord_applicantDetails_name?: string | null;
|
|
270
270
|
techRecord_applicantDetails_address1?: null | string;
|
|
271
271
|
techRecord_applicantDetails_address2?: null | string;
|
|
@@ -299,16 +299,16 @@ export interface POSTPSVTechnicalRecordV3Testable {
|
|
|
299
299
|
techRecord_updateType?: string;
|
|
300
300
|
}
|
|
301
301
|
export interface PSVAxles {
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
302
|
+
parkingBrakeMrk?: boolean | null;
|
|
303
|
+
axleNumber?: number | null;
|
|
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;
|
|
314
314
|
}
|
|
@@ -283,7 +283,7 @@ export interface PUTTRLTechnicalRecordV3Complete {
|
|
|
283
283
|
techRecord_ntaNumber?: string;
|
|
284
284
|
techRecord_numberOfWheelsDriven?: number | null;
|
|
285
285
|
techRecord_offRoad?: boolean;
|
|
286
|
-
|
|
286
|
+
techRecord_plates?: TRLPlates[];
|
|
287
287
|
techRecord_purchaserDetails_address1?: string | null;
|
|
288
288
|
techRecord_purchaserDetails_address2?: string | null;
|
|
289
289
|
techRecord_purchaserDetails_address3?: string | null;
|
|
@@ -311,33 +311,33 @@ export interface PUTTRLTechnicalRecordV3Complete {
|
|
|
311
311
|
techRecord_vehicleType: "trl";
|
|
312
312
|
trailerId: string;
|
|
313
313
|
vin: string;
|
|
314
|
-
|
|
314
|
+
techRecord_axles?: PSVAxles[];
|
|
315
|
+
techRecord_hiddenInVta?: boolean;
|
|
316
|
+
techRecord_updateType?: string;
|
|
315
317
|
}
|
|
316
318
|
export interface TRLPlates {
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
319
|
+
plateSerialNumber?: string | null;
|
|
320
|
+
plateIssueDate?: string | null;
|
|
321
|
+
reasonForIssue?: null | PlateReasonForIssue;
|
|
322
|
+
plateIssuer?: string | null;
|
|
321
323
|
}
|
|
322
324
|
export interface PSVAxles {
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
325
|
+
parkingBrakeMrk?: boolean | null;
|
|
326
|
+
axleNumber?: number | null;
|
|
327
|
+
brakes?: {
|
|
326
328
|
brakeActuator?: number;
|
|
327
329
|
leverLength?: number;
|
|
328
330
|
springBrakeParking?: boolean;
|
|
329
331
|
[k: string]: unknown;
|
|
330
332
|
}[];
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
techRecord_hiddenInVta?: boolean;
|
|
342
|
-
techRecord_updateType?: string;
|
|
333
|
+
weights_gbWeight?: number | null;
|
|
334
|
+
weights_designWeight?: number | null;
|
|
335
|
+
weights_ladenWeight?: number | null;
|
|
336
|
+
weights_kerbWeight?: number | null;
|
|
337
|
+
tyres_tyreCode?: number | null;
|
|
338
|
+
tyres_tyreSize?: string | null;
|
|
339
|
+
tyres_plyRating?: string | null;
|
|
340
|
+
tyres_fitmentCode?: null | FitmentCode;
|
|
341
|
+
tyres_dataTrAxles?: null | number;
|
|
342
|
+
tyres_speedCategorySymbol?: SpeedCategorySymbol | null;
|
|
343
343
|
}
|
|
@@ -214,7 +214,7 @@ export interface GETTRLTechnicalRecordV3Skeleton {
|
|
|
214
214
|
techRecord_microfilm_microfilmSerialNumber?: string | null;
|
|
215
215
|
techRecord_model?: string | null;
|
|
216
216
|
techRecord_noOfAxles?: number | null;
|
|
217
|
-
|
|
217
|
+
techRecord_plates?: TRLPlates[];
|
|
218
218
|
techRecord_purchaserDetails_address1?: string | null;
|
|
219
219
|
techRecord_purchaserDetails_address2?: string | null;
|
|
220
220
|
techRecord_purchaserDetails_address3?: string | null;
|
|
@@ -245,8 +245,8 @@ export interface GETTRLTechnicalRecordV3Skeleton {
|
|
|
245
245
|
techRecord_updateType?: string;
|
|
246
246
|
}
|
|
247
247
|
export interface TRLPlates {
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
248
|
+
plateSerialNumber?: string | null;
|
|
249
|
+
plateIssueDate?: string | null;
|
|
250
|
+
reasonForIssue?: null | PlateReasonForIssue;
|
|
251
|
+
plateIssuer?: string | null;
|
|
252
252
|
}
|
|
@@ -231,7 +231,7 @@ export interface GETTRLTechnicalRecordV3Testable {
|
|
|
231
231
|
techRecord_microfilm_microfilmSerialNumber?: string | null;
|
|
232
232
|
techRecord_model?: string | null;
|
|
233
233
|
techRecord_noOfAxles: number | null;
|
|
234
|
-
|
|
234
|
+
techRecord_plates?: TRLPlates[];
|
|
235
235
|
techRecord_purchaserDetails_address1?: string | null;
|
|
236
236
|
techRecord_purchaserDetails_address2?: string | null;
|
|
237
237
|
techRecord_purchaserDetails_address3?: string | null;
|
|
@@ -255,33 +255,33 @@ export interface GETTRLTechnicalRecordV3Testable {
|
|
|
255
255
|
techRecord_vehicleType: "trl";
|
|
256
256
|
trailerId: string;
|
|
257
257
|
vin: string;
|
|
258
|
-
|
|
259
|
-
|
|
258
|
+
techRecord_axles?: PSVAxles[];
|
|
259
|
+
brakes?: {
|
|
260
260
|
brakeActuator?: number;
|
|
261
261
|
leverLength?: number;
|
|
262
262
|
springBrakeParking?: boolean;
|
|
263
263
|
[k: string]: unknown;
|
|
264
264
|
}[];
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
265
|
+
weights_gbWeight?: number | null;
|
|
266
|
+
weights_designWeight?: number | null;
|
|
267
|
+
weights_ladenWeight?: number | null;
|
|
268
|
+
weights_kerbWeight?: number | null;
|
|
269
|
+
tyres_tyreCode?: number | null;
|
|
270
|
+
tyres_tyreSize?: string | null;
|
|
271
|
+
tyres_plyRating?: string | null;
|
|
272
|
+
tyres_fitmentCode?: null | FitmentCode;
|
|
273
|
+
tyres_dataTrAxles?: null | number;
|
|
274
|
+
tyres_speedCategorySymbol?: SpeedCategorySymbol | null;
|
|
275
275
|
techRecord_hiddenInVta?: boolean;
|
|
276
276
|
techRecord_updateType?: string;
|
|
277
277
|
}
|
|
278
278
|
export interface TRLPlates {
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
279
|
+
plateSerialNumber?: string | null;
|
|
280
|
+
plateIssueDate?: string | null;
|
|
281
|
+
reasonForIssue?: null | PlateReasonForIssue;
|
|
282
|
+
plateIssuer?: string | null;
|
|
283
283
|
}
|
|
284
284
|
export interface PSVAxles {
|
|
285
|
-
|
|
286
|
-
|
|
285
|
+
parkingBrakeMrk?: boolean | null;
|
|
286
|
+
axleNumber?: number | null;
|
|
287
287
|
}
|