@dvsa/cvs-type-definitions 3.0.33 → 3.0.34

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.
@@ -126,7 +126,10 @@
126
126
  ]
127
127
  },
128
128
  "techRecord_applicantDetails_name": {
129
- "type": "string",
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": "string",
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": "string",
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": "string",
150
+ "type": [
151
+ "null",
152
+ "string"
153
+ ],
148
154
  "maxLength": 60
149
155
  },
150
156
  "techRecord_applicantDetails_address3": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dvsa/cvs-type-definitions",
3
- "version": "3.0.33",
3
+ "version": "3.0.34",
4
4
  "description": "type definitions for cvs vta application",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -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;