@dvsa/cvs-type-definitions 7.7.0 → 7.7.1

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.
@@ -3,10 +3,7 @@
3
3
  "type": "object",
4
4
  "properties": {
5
5
  "hasRecall": {
6
- "type": [
7
- "boolean",
8
- "null"
9
- ]
6
+ "type": "boolean"
10
7
  },
11
8
  "manufacturer": {
12
9
  "type": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dvsa/cvs-type-definitions",
3
- "version": "7.7.0",
3
+ "version": "7.7.1",
4
4
  "description": "type definitions for cvs vta and vtm applications",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -6,6 +6,6 @@
6
6
  */
7
7
 
8
8
  export interface RecallsSchema {
9
- hasRecall: boolean | null;
9
+ hasRecall: boolean;
10
10
  manufacturer: string | null;
11
11
  }
@@ -282,7 +282,7 @@ export interface TestResultSchema {
282
282
  testHistory?: TestResultSchema[];
283
283
  testVersion?: string;
284
284
  deletionFlag?: boolean;
285
- recalls?: RecallsSchema | null;
285
+ recalls?: RecallsSchema;
286
286
  }
287
287
  export interface TestTypeSchema {
288
288
  testTypeName: string | null;
@@ -422,7 +422,7 @@ export interface BodyTypeSchema {
422
422
  description?: string | null;
423
423
  }
424
424
  export interface RecallsSchema {
425
- hasRecall: boolean | null;
425
+ hasRecall: boolean;
426
426
  manufacturer: string | null;
427
427
  }
428
428
 
@@ -61,7 +61,7 @@ export interface TestResultSchema {
61
61
  testHistory?: TestResultSchema[];
62
62
  testVersion?: string;
63
63
  deletionFlag?: boolean;
64
- recalls?: RecallsSchema | null;
64
+ recalls?: RecallsSchema;
65
65
  }
66
66
  export interface VehicleClassSchema {
67
67
  code: string;
@@ -205,7 +205,7 @@ export interface BodyTypeSchema {
205
205
  description?: string | null;
206
206
  }
207
207
  export interface RecallsSchema {
208
- hasRecall: boolean | null;
208
+ hasRecall: boolean;
209
209
  manufacturer: string | null;
210
210
  }
211
211
 
@@ -274,7 +274,7 @@ export interface TestResultSchema {
274
274
  testHistory?: TestResultSchema[];
275
275
  testVersion?: string;
276
276
  deletionFlag?: boolean;
277
- recalls?: RecallsSchema | null;
277
+ recalls?: RecallsSchema;
278
278
  }
279
279
  export interface TestTypeSchema {
280
280
  testTypeName: string | null;
@@ -414,7 +414,7 @@ export interface BodyTypeSchema {
414
414
  description?: string | null;
415
415
  }
416
416
  export interface RecallsSchema {
417
- hasRecall: boolean | null;
417
+ hasRecall: boolean;
418
418
  manufacturer: string | null;
419
419
  }
420
420
 
@@ -295,7 +295,7 @@ export interface TestResultSchema {
295
295
  testHistory?: TestResultSchema[];
296
296
  testVersion?: string;
297
297
  deletionFlag?: boolean;
298
- recalls?: RecallsSchema | null;
298
+ recalls?: RecallsSchema;
299
299
  }
300
300
  export interface TestTypeSchema {
301
301
  testTypeName: string | null;
@@ -435,7 +435,7 @@ export interface BodyTypeSchema {
435
435
  description?: string | null;
436
436
  }
437
437
  export interface RecallsSchema {
438
- hasRecall: boolean | null;
438
+ hasRecall: boolean;
439
439
  manufacturer: string | null;
440
440
  }
441
441