@dvsa/cvs-type-definitions 3.0.44 → 3.0.46
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 +6 -0
- package/json-schemas/v3/tech-record/get/hgv/skeleton/index.json +6 -0
- package/json-schemas/v3/tech-record/get/hgv/testable/index.json +10 -1
- package/json-schemas/v3/tech-record/get/psv/skeleton/index.json +4 -1
- package/json-schemas/v3/tech-record/put/hgv/complete/index.json +6 -0
- package/json-schemas/v3/tech-record/put/hgv/skeleton/index.json +6 -0
- package/json-schemas/v3/tech-record/put/hgv/testable/index.json +6 -0
- package/json-schemas/v3/tech-record/put/psv/skeleton/index.json +4 -1
- package/json-schemas/v3/tech-record/put/trl/skeleton/index.json +4 -1
- package/package.json +1 -1
- package/types/v3/tech-record/get/hgv/complete/index.d.ts +1 -0
- package/types/v3/tech-record/get/hgv/skeleton/index.d.ts +1 -0
- package/types/v3/tech-record/get/hgv/testable/index.d.ts +2 -1
- package/types/v3/tech-record/get/psv/skeleton/index.d.ts +1 -1
- package/types/v3/tech-record/put/hgv/complete/index.d.ts +1 -0
- package/types/v3/tech-record/put/hgv/skeleton/index.d.ts +1 -0
- package/types/v3/tech-record/put/hgv/testable/index.d.ts +1 -0
- package/types/v3/tech-record/put/psv/skeleton/index.d.ts +1 -1
- package/types/v3/tech-record/put/trl/skeleton/index.d.ts +1 -1
|
@@ -507,6 +507,12 @@
|
|
|
507
507
|
"techRecord_bodyType_description": {
|
|
508
508
|
"type": "string"
|
|
509
509
|
},
|
|
510
|
+
"techRecord_brakes_antilockBrakingSystem": {
|
|
511
|
+
"type": [
|
|
512
|
+
"string",
|
|
513
|
+
"null"
|
|
514
|
+
]
|
|
515
|
+
},
|
|
510
516
|
"techRecord_brakes_dtpNumber": {
|
|
511
517
|
"type": "string",
|
|
512
518
|
"maxLength": 6
|
|
@@ -403,7 +403,10 @@
|
|
|
403
403
|
"maxLength": 255
|
|
404
404
|
},
|
|
405
405
|
"techRecord_applicationId": {
|
|
406
|
-
"type":
|
|
406
|
+
"type": [
|
|
407
|
+
"string",
|
|
408
|
+
"null"
|
|
409
|
+
]
|
|
407
410
|
},
|
|
408
411
|
"techRecord_axles": {
|
|
409
412
|
"type": [
|
|
@@ -510,6 +513,12 @@
|
|
|
510
513
|
"string"
|
|
511
514
|
]
|
|
512
515
|
},
|
|
516
|
+
"techRecord_brakes_antilockBrakingSystem": {
|
|
517
|
+
"type": [
|
|
518
|
+
"string",
|
|
519
|
+
"null"
|
|
520
|
+
]
|
|
521
|
+
},
|
|
513
522
|
"techRecord_brakes_dtpNumber": {
|
|
514
523
|
"type": [
|
|
515
524
|
"string",
|
|
@@ -495,6 +495,12 @@
|
|
|
495
495
|
"techRecord_bodyType_description": {
|
|
496
496
|
"type": "string"
|
|
497
497
|
},
|
|
498
|
+
"techRecord_brakes_antilockBrakingSystem": {
|
|
499
|
+
"type": [
|
|
500
|
+
"string",
|
|
501
|
+
"null"
|
|
502
|
+
]
|
|
503
|
+
},
|
|
498
504
|
"techRecord_brakes_dtpNumber": {
|
|
499
505
|
"type": "string",
|
|
500
506
|
"maxLength": 6
|
package/package.json
CHANGED
|
@@ -203,6 +203,7 @@ export interface TechRecordGETHGVComplete {
|
|
|
203
203
|
techRecord_axles: [HGVAxles, ...HGVAxles[]];
|
|
204
204
|
techRecord_bodyType_code: string;
|
|
205
205
|
techRecord_bodyType_description: string;
|
|
206
|
+
techRecord_brakes_antilockBrakingSystem?: string | null;
|
|
206
207
|
techRecord_brakes_dtpNumber: string;
|
|
207
208
|
techRecord_brakes_loadSensingValve?: boolean | null;
|
|
208
209
|
techRecord_conversionRefNo?: string | null;
|
|
@@ -200,6 +200,7 @@ export interface TechRecordGETHGVSkeleton {
|
|
|
200
200
|
techRecord_axles?: null | HGVAxles[];
|
|
201
201
|
techRecord_bodyType_code?: null | string;
|
|
202
202
|
techRecord_bodyType_description?: null | string;
|
|
203
|
+
techRecord_brakes_antilockBrakingSystem?: string | null;
|
|
203
204
|
techRecord_brakes_dtpNumber?: string | null;
|
|
204
205
|
techRecord_brakes_loadSensingValve?: boolean | null;
|
|
205
206
|
techRecord_conversionRefNo?: string | null;
|
|
@@ -196,10 +196,11 @@ export interface TechRecordGETHGVTestable {
|
|
|
196
196
|
techRecord_applicantDetails_postCode?: null | string;
|
|
197
197
|
techRecord_applicantDetails_telephoneNumber?: null | string;
|
|
198
198
|
techRecord_applicantDetails_emailAddress?: null | string;
|
|
199
|
-
techRecord_applicationId?: string;
|
|
199
|
+
techRecord_applicationId?: string | null;
|
|
200
200
|
techRecord_axles?: null | HGVAxles[];
|
|
201
201
|
techRecord_bodyType_code?: null | string;
|
|
202
202
|
techRecord_bodyType_description?: null | string;
|
|
203
|
+
techRecord_brakes_antilockBrakingSystem?: string | null;
|
|
203
204
|
techRecord_brakes_dtpNumber?: string | null;
|
|
204
205
|
techRecord_brakes_loadSensingValve?: boolean | null;
|
|
205
206
|
techRecord_conversionRefNo?: string | null;
|
|
@@ -294,7 +294,7 @@ export interface TechRecordGETPSVSkeleton {
|
|
|
294
294
|
techRecord_microfilm_microfilmSerialNumber?: string | null;
|
|
295
295
|
techRecord_brakeCode?: string | null;
|
|
296
296
|
createdTimestamp: string;
|
|
297
|
-
techRecord_applicationId?: string;
|
|
297
|
+
techRecord_applicationId?: string | null;
|
|
298
298
|
secondaryVrms?: null | string[];
|
|
299
299
|
techRecord_updateType?: null | string;
|
|
300
300
|
}
|
|
@@ -201,6 +201,7 @@ export interface TechRecordPUTHGVComplete {
|
|
|
201
201
|
techRecord_axles: [HGVAxles, ...HGVAxles[]];
|
|
202
202
|
techRecord_bodyType_code: string;
|
|
203
203
|
techRecord_bodyType_description: string;
|
|
204
|
+
techRecord_brakes_antilockBrakingSystem?: string | null;
|
|
204
205
|
techRecord_brakes_dtpNumber: string;
|
|
205
206
|
techRecord_brakes_loadSensingValve?: boolean | null;
|
|
206
207
|
techRecord_conversionRefNo?: string | null;
|
|
@@ -198,6 +198,7 @@ export interface TechRecordPUTHGVSkeleton {
|
|
|
198
198
|
techRecord_axles?: null | HGVAxles[];
|
|
199
199
|
techRecord_bodyType_code?: null | string;
|
|
200
200
|
techRecord_bodyType_description?: null | string;
|
|
201
|
+
techRecord_brakes_antilockBrakingSystem?: string | null;
|
|
201
202
|
techRecord_brakes_dtpNumber?: string | null;
|
|
202
203
|
techRecord_brakes_loadSensingValve?: boolean | null;
|
|
203
204
|
techRecord_conversionRefNo?: string | null;
|
|
@@ -198,6 +198,7 @@ export interface TechRecordPUTHGVTestable {
|
|
|
198
198
|
techRecord_axles?: HGVAxles[];
|
|
199
199
|
techRecord_bodyType_code?: string;
|
|
200
200
|
techRecord_bodyType_description?: string;
|
|
201
|
+
techRecord_brakes_antilockBrakingSystem?: string | null;
|
|
201
202
|
techRecord_brakes_dtpNumber?: string | null;
|
|
202
203
|
techRecord_brakes_loadSensingValve?: boolean | null;
|
|
203
204
|
techRecord_conversionRefNo?: string | null;
|
|
@@ -282,7 +282,7 @@ export interface TechRecordPUTPSVSkeleton {
|
|
|
282
282
|
techRecord_microfilm_microfilmRollNumber?: string | null;
|
|
283
283
|
techRecord_microfilm_microfilmSerialNumber?: string | null;
|
|
284
284
|
techRecord_brakeCode?: string | null;
|
|
285
|
-
techRecord_applicationId?: string;
|
|
285
|
+
techRecord_applicationId?: string | null;
|
|
286
286
|
secondaryVrms?: string[];
|
|
287
287
|
techRecord_updateType?: null | string;
|
|
288
288
|
}
|
|
@@ -216,7 +216,7 @@ export interface TechRecordPUTTRLSkeleton {
|
|
|
216
216
|
techRecord_applicantDetails_postCode?: null | string;
|
|
217
217
|
techRecord_applicantDetails_telephoneNumber?: null | string;
|
|
218
218
|
techRecord_applicantDetails_emailAddress?: null | string;
|
|
219
|
-
techRecord_applicationId?: string;
|
|
219
|
+
techRecord_applicationId?: string | null;
|
|
220
220
|
techRecord_authIntoService?: string | null;
|
|
221
221
|
techRecord_batchId?: string | null;
|
|
222
222
|
techRecord_bodyType_code: string;
|