@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.
@@ -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
@@ -509,6 +509,12 @@
509
509
  "string"
510
510
  ]
511
511
  },
512
+ "techRecord_brakes_antilockBrakingSystem": {
513
+ "type": [
514
+ "string",
515
+ "null"
516
+ ]
517
+ },
512
518
  "techRecord_brakes_dtpNumber": {
513
519
  "type": [
514
520
  "string",
@@ -403,7 +403,10 @@
403
403
  "maxLength": 255
404
404
  },
405
405
  "techRecord_applicationId": {
406
- "type": "string"
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",
@@ -1108,7 +1108,10 @@
1108
1108
  ]
1109
1109
  },
1110
1110
  "techRecord_applicationId": {
1111
- "type": "string"
1111
+ "type": [
1112
+ "string",
1113
+ "null"
1114
+ ]
1112
1115
  },
1113
1116
  "secondaryVrms": {
1114
1117
  "type": [
@@ -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
@@ -495,6 +495,12 @@
495
495
  "string"
496
496
  ]
497
497
  },
498
+ "techRecord_brakes_antilockBrakingSystem": {
499
+ "type": [
500
+ "string",
501
+ "null"
502
+ ]
503
+ },
498
504
  "techRecord_brakes_dtpNumber": {
499
505
  "type": [
500
506
  "string",
@@ -488,6 +488,12 @@
488
488
  "techRecord_bodyType_description": {
489
489
  "type": "string"
490
490
  },
491
+ "techRecord_brakes_antilockBrakingSystem": {
492
+ "type": [
493
+ "string",
494
+ "null"
495
+ ]
496
+ },
491
497
  "techRecord_brakes_dtpNumber": {
492
498
  "type": [
493
499
  "string",
@@ -1054,7 +1054,10 @@
1054
1054
  ]
1055
1055
  },
1056
1056
  "techRecord_applicationId": {
1057
- "type": "string"
1057
+ "type": [
1058
+ "string",
1059
+ "null"
1060
+ ]
1058
1061
  },
1059
1062
  "secondaryVrms": {
1060
1063
  "type": "array",
@@ -434,7 +434,10 @@
434
434
  "maxLength": 255
435
435
  },
436
436
  "techRecord_applicationId": {
437
- "type": "string"
437
+ "type": [
438
+ "string",
439
+ "null"
440
+ ]
438
441
  },
439
442
  "techRecord_authIntoService": {
440
443
  "type": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dvsa/cvs-type-definitions",
3
- "version": "3.0.44",
3
+ "version": "3.0.46",
4
4
  "description": "type definitions for cvs vta application",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -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;