@dvsa/cvs-type-definitions 3.0.33 → 3.0.35
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/car/complete/index.json +8 -2
- package/json-schemas/v3/tech-record/put/car/skeleton/index.json +8 -2
- package/json-schemas/v3/tech-record/put/psv/complete/index.json +6 -0
- package/json-schemas/v3/tech-record/put/trl/complete/index.json +2 -2
- 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/car/complete/index.d.ts +2 -2
- package/types/v3/tech-record/put/car/skeleton/index.d.ts +2 -2
- package/types/v3/tech-record/put/psv/complete/index.d.ts +1 -0
- package/types/v3/tech-record/put/trl/complete/index.d.ts +2 -2
|
@@ -126,7 +126,10 @@
|
|
|
126
126
|
]
|
|
127
127
|
},
|
|
128
128
|
"techRecord_applicantDetails_name": {
|
|
129
|
-
"type":
|
|
129
|
+
"type": [
|
|
130
|
+
"string",
|
|
131
|
+
"null"
|
|
132
|
+
],
|
|
130
133
|
"maxLength": 150
|
|
131
134
|
},
|
|
132
135
|
"techRecord_applicantDetails_address1": {
|
|
@@ -144,7 +147,10 @@
|
|
|
144
147
|
"maxLength": 60
|
|
145
148
|
},
|
|
146
149
|
"techRecord_applicantDetails_postTown": {
|
|
147
|
-
"type":
|
|
150
|
+
"type": [
|
|
151
|
+
"string",
|
|
152
|
+
"null"
|
|
153
|
+
],
|
|
148
154
|
"maxLength": 60
|
|
149
155
|
},
|
|
150
156
|
"techRecord_applicantDetails_address3": {
|
|
@@ -126,7 +126,10 @@
|
|
|
126
126
|
]
|
|
127
127
|
},
|
|
128
128
|
"techRecord_applicantDetails_name": {
|
|
129
|
-
"type":
|
|
129
|
+
"type": [
|
|
130
|
+
"string",
|
|
131
|
+
"null"
|
|
132
|
+
],
|
|
130
133
|
"maxLength": 150
|
|
131
134
|
},
|
|
132
135
|
"techRecord_applicantDetails_address1": {
|
|
@@ -144,7 +147,10 @@
|
|
|
144
147
|
"maxLength": 60
|
|
145
148
|
},
|
|
146
149
|
"techRecord_applicantDetails_postTown": {
|
|
147
|
-
"type":
|
|
150
|
+
"type": [
|
|
151
|
+
"null",
|
|
152
|
+
"string"
|
|
153
|
+
],
|
|
148
154
|
"maxLength": 60
|
|
149
155
|
},
|
|
150
156
|
"techRecord_applicantDetails_address3": {
|
|
@@ -552,7 +552,7 @@
|
|
|
552
552
|
"maximum": 99999,
|
|
553
553
|
"minimum": 0
|
|
554
554
|
},
|
|
555
|
-
"
|
|
555
|
+
"techRecord_drawbarCouplingFitted": {
|
|
556
556
|
"type": [
|
|
557
557
|
"null",
|
|
558
558
|
"string"
|
|
@@ -612,7 +612,7 @@
|
|
|
612
612
|
}
|
|
613
613
|
]
|
|
614
614
|
},
|
|
615
|
-
"
|
|
615
|
+
"techRecord_frontAxleTo5thWheelMRex": {
|
|
616
616
|
"type": [
|
|
617
617
|
"integer",
|
|
618
618
|
"null"
|
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;
|
|
@@ -42,10 +42,10 @@ export interface TechRecordPUTCarComplete {
|
|
|
42
42
|
techRecord_updateType?: null | string;
|
|
43
43
|
secondaryVrms?: null | string[];
|
|
44
44
|
techRecord_euVehicleCategory?: EUVehicleCategory | null;
|
|
45
|
-
techRecord_applicantDetails_name?: string;
|
|
45
|
+
techRecord_applicantDetails_name?: string | null;
|
|
46
46
|
techRecord_applicantDetails_address1?: null | string;
|
|
47
47
|
techRecord_applicantDetails_address2?: null | string;
|
|
48
|
-
techRecord_applicantDetails_postTown?: string;
|
|
48
|
+
techRecord_applicantDetails_postTown?: string | null;
|
|
49
49
|
techRecord_applicantDetails_address3?: null | string;
|
|
50
50
|
techRecord_applicantDetails_postCode?: null | string;
|
|
51
51
|
techRecord_applicantDetails_telephoneNumber?: null | string;
|
|
@@ -42,10 +42,10 @@ export interface TechRecordPUTCarSkeleton {
|
|
|
42
42
|
secondaryVrms?: null | string[];
|
|
43
43
|
techRecord_vehicleSubclass?: VehicleSubclass;
|
|
44
44
|
techRecord_euVehicleCategory?: EUVehicleCategory | null;
|
|
45
|
-
techRecord_applicantDetails_name?: string;
|
|
45
|
+
techRecord_applicantDetails_name?: string | null;
|
|
46
46
|
techRecord_applicantDetails_address1?: null | string;
|
|
47
47
|
techRecord_applicantDetails_address2?: null | string;
|
|
48
|
-
techRecord_applicantDetails_postTown?: string;
|
|
48
|
+
techRecord_applicantDetails_postTown?: null | string;
|
|
49
49
|
techRecord_applicantDetails_address3?: null | string;
|
|
50
50
|
techRecord_applicantDetails_postCode?: null | string;
|
|
51
51
|
techRecord_applicantDetails_telephoneNumber?: null | string;
|
|
@@ -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,11 +251,11 @@ export interface TechRecordPUTTRLComplete {
|
|
|
251
251
|
techRecord_departmentalVehicleMarker?: boolean | null;
|
|
252
252
|
techRecord_dimensions_length: number | null;
|
|
253
253
|
techRecord_dimensions_width: number | null;
|
|
254
|
-
|
|
254
|
+
techRecord_drawbarCouplingFitted?: null | string;
|
|
255
255
|
techRecord_emissionsLimit?: null | number;
|
|
256
256
|
techRecord_euVehicleCategory: EUVehicleCategory;
|
|
257
257
|
techRecord_euroStandard?: null | EuroStandard;
|
|
258
|
-
|
|
258
|
+
techRecord_frontAxleTo5thWheelMRex?: number | null;
|
|
259
259
|
techRecord_frontAxleTo5thWheelMin?: number | null;
|
|
260
260
|
techRecord_firstUseDate: string | null;
|
|
261
261
|
techRecord_frameDescription?: FrameDescription | null;
|