@dvsa/cvs-type-definitions 3.0.34 → 3.0.36
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/psv/complete/index.json +6 -0
- package/json-schemas/v3/tech-record/get/search/index.json +6 -0
- package/json-schemas/v3/tech-record/put/psv/complete/index.json +6 -0
- package/json-schemas/v3/tech-record/put/trl/complete/index.json +1 -19
- package/package.json +1 -1
- package/types/v3/tech-record/get/psv/complete/index.d.ts +1 -0
- package/types/v3/tech-record/get/search/index.d.ts +2 -0
- package/types/v3/tech-record/put/psv/complete/index.d.ts +1 -0
- package/types/v3/tech-record/put/trl/complete/index.d.ts +1 -4
|
@@ -552,12 +552,6 @@
|
|
|
552
552
|
"maximum": 99999,
|
|
553
553
|
"minimum": 0
|
|
554
554
|
},
|
|
555
|
-
"drawbarCouplingFitted": {
|
|
556
|
-
"type": [
|
|
557
|
-
"null",
|
|
558
|
-
"string"
|
|
559
|
-
]
|
|
560
|
-
},
|
|
561
555
|
"techRecord_emissionsLimit": {
|
|
562
556
|
"type": [
|
|
563
557
|
"null",
|
|
@@ -612,7 +606,7 @@
|
|
|
612
606
|
}
|
|
613
607
|
]
|
|
614
608
|
},
|
|
615
|
-
"
|
|
609
|
+
"techRecord_frontAxleTo5thWheelMRex": {
|
|
616
610
|
"type": [
|
|
617
611
|
"integer",
|
|
618
612
|
"null"
|
|
@@ -660,18 +654,6 @@
|
|
|
660
654
|
"maximum": 99999,
|
|
661
655
|
"minimum": 0
|
|
662
656
|
},
|
|
663
|
-
"techRecord_frontVehicleTo5thWheelCouplingMax": {
|
|
664
|
-
"type": [
|
|
665
|
-
"string",
|
|
666
|
-
"null"
|
|
667
|
-
]
|
|
668
|
-
},
|
|
669
|
-
"techRecord_frontVehicleTo5thWheelCouplingMin": {
|
|
670
|
-
"type": [
|
|
671
|
-
"string",
|
|
672
|
-
"null"
|
|
673
|
-
]
|
|
674
|
-
},
|
|
675
657
|
"techRecord_fuelPropulsionSystem": {
|
|
676
658
|
"title": "Fuel Propulsion System",
|
|
677
659
|
"type": "string",
|
package/package.json
CHANGED
|
@@ -299,6 +299,7 @@ export interface TechRecordGETPSVComplete {
|
|
|
299
299
|
techRecord_brakeCode?: string | null;
|
|
300
300
|
createdTimestamp: string;
|
|
301
301
|
techRecord_updateType?: null | string;
|
|
302
|
+
techRecord_applicationId?: null | string;
|
|
302
303
|
}
|
|
303
304
|
export interface PSVAxlesComplete {
|
|
304
305
|
parkingBrakeMrk: boolean;
|
|
@@ -289,6 +289,7 @@ export interface TechRecordPUTPSVComplete {
|
|
|
289
289
|
techRecord_brakeCode?: string | null;
|
|
290
290
|
secondaryVrms?: null | string[];
|
|
291
291
|
techRecord_updateType?: null | string;
|
|
292
|
+
techRecord_applicationId?: null | string;
|
|
292
293
|
}
|
|
293
294
|
export interface PSVAxlesComplete {
|
|
294
295
|
parkingBrakeMrk: boolean;
|
|
@@ -251,17 +251,14 @@ export interface TechRecordPUTTRLComplete {
|
|
|
251
251
|
techRecord_departmentalVehicleMarker?: boolean | null;
|
|
252
252
|
techRecord_dimensions_length: number | null;
|
|
253
253
|
techRecord_dimensions_width: number | null;
|
|
254
|
-
drawbarCouplingFitted?: null | string;
|
|
255
254
|
techRecord_emissionsLimit?: null | number;
|
|
256
255
|
techRecord_euVehicleCategory: EUVehicleCategory;
|
|
257
256
|
techRecord_euroStandard?: null | EuroStandard;
|
|
258
|
-
|
|
257
|
+
techRecord_frontAxleTo5thWheelMRex?: number | null;
|
|
259
258
|
techRecord_frontAxleTo5thWheelMin?: number | null;
|
|
260
259
|
techRecord_firstUseDate: string | null;
|
|
261
260
|
techRecord_frameDescription?: FrameDescription | null;
|
|
262
261
|
techRecord_frontAxleToRearAxle: number | null;
|
|
263
|
-
techRecord_frontVehicleTo5thWheelCouplingMax?: string | null;
|
|
264
|
-
techRecord_frontVehicleTo5thWheelCouplingMin?: string | null;
|
|
265
262
|
techRecord_fuelPropulsionSystem?: FuelPropulsionSystem;
|
|
266
263
|
techRecord_functionCode?: string | null;
|
|
267
264
|
techRecord_grossDesignWeight?: number | null;
|