@dvsa/cvs-type-definitions 3.0.39 → 3.0.40

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.
@@ -380,7 +380,10 @@
380
380
  "type": "null"
381
381
  },
382
382
  "techRecord_dda_certificateIssued": {
383
- "type": "boolean"
383
+ "type": [
384
+ "boolean",
385
+ "null"
386
+ ]
384
387
  },
385
388
  "techRecord_dda_wheelchairCapacity": {
386
389
  "type": [
@@ -338,7 +338,10 @@
338
338
  "minimum": 0
339
339
  },
340
340
  "techRecord_dda_certificateIssued": {
341
- "type": "boolean"
341
+ "type": [
342
+ "boolean",
343
+ "null"
344
+ ]
342
345
  },
343
346
  "techRecord_dda_wheelchairCapacity": {
344
347
  "type": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dvsa/cvs-type-definitions",
3
- "version": "3.0.39",
3
+ "version": "3.0.40",
4
4
  "description": "type definitions for cvs vta application",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -225,7 +225,7 @@ export interface TechRecordGETPSVComplete {
225
225
  techRecord_lastUpdatedByName?: string | null;
226
226
  techRecord_lastUpdatedById?: string | null;
227
227
  techRecord_dda?: null;
228
- techRecord_dda_certificateIssued: boolean;
228
+ techRecord_dda_certificateIssued: boolean | null;
229
229
  techRecord_dda_wheelchairCapacity?: number | null;
230
230
  techRecord_dda_wheelchairFittings?: string | null;
231
231
  techRecord_dda_wheelchairLiftPresent?: boolean | null;
@@ -217,7 +217,7 @@ export interface TechRecordPUTPSVComplete {
217
217
  techRecord_conversionRefNo?: string | null;
218
218
  techRecord_grossGbWeight?: number | null;
219
219
  techRecord_grossDesignWeight?: number | null;
220
- techRecord_dda_certificateIssued: boolean;
220
+ techRecord_dda_certificateIssued: boolean | null;
221
221
  techRecord_dda_wheelchairCapacity?: number | null;
222
222
  techRecord_dda_wheelchairFittings?: string | null;
223
223
  techRecord_dda_wheelchairLiftPresent?: boolean | null;