@dvsa/cvs-type-definitions 3.0.19 → 3.0.20

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.
@@ -935,7 +935,8 @@
935
935
  ]
936
936
  },
937
937
  "techRecord_notes": {
938
- "type": "string"
938
+ "type": "string",
939
+ "maxLength": 1024
939
940
  },
940
941
  "techRecord_ntaNumber": {
941
942
  "type": [
@@ -1174,6 +1174,13 @@
1174
1174
  "null"
1175
1175
  ]
1176
1176
  },
1177
+ "techRecord_notes": {
1178
+ "type": [
1179
+ "string",
1180
+ "null"
1181
+ ],
1182
+ "maxLength": 1024
1183
+ },
1177
1184
  "techRecord_authIntoService_dateAuthorised": {
1178
1185
  "type": [
1179
1186
  "string",
@@ -828,16 +828,9 @@
828
828
  "maxLength": 30
829
829
  },
830
830
  "techRecord_noOfAxles": {
831
- "anyOf": [
832
- {
833
- "type": "integer",
834
- "minimum": 0,
835
- "maximum": 99
836
- },
837
- {
838
- "type": "null"
839
- }
840
- ]
831
+ "type": "integer",
832
+ "minimum": 0,
833
+ "maximum": 99
841
834
  },
842
835
  "techRecord_plates": {
843
836
  "type": "array",
@@ -936,6 +929,13 @@
936
929
  "null"
937
930
  ]
938
931
  },
932
+ "techRecord_notes": {
933
+ "type": [
934
+ "string",
935
+ "null"
936
+ ],
937
+ "maxLength": 1024
938
+ },
939
939
  "techRecord_purchaserDetails_purchaserNotes": {
940
940
  "type": [
941
941
  "string",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dvsa/cvs-type-definitions",
3
- "version": "3.0.19",
3
+ "version": "3.0.20",
4
4
  "description": "type definitions for cvs vta application",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -301,6 +301,7 @@ export interface TechRecordPUTTRLSkeleton {
301
301
  techRecord_authIntoService_dateReceived?: string | null;
302
302
  techRecord_dimensions_axleSpacing?: AxleSpacing[];
303
303
  techRecord_authIntoService_datePending?: string | null;
304
+ techRecord_notes?: string | null;
304
305
  techRecord_authIntoService_dateAuthorised?: string | null;
305
306
  techRecord_authIntoService_dateRejected?: string | null;
306
307
  techRecord_axles?: null | TRLAxles[];
@@ -257,7 +257,7 @@ export interface TechRecordPUTTRLTestable {
257
257
  techRecord_microfilm_microfilmRollNumber?: string | null;
258
258
  techRecord_microfilm_microfilmSerialNumber?: string | null;
259
259
  techRecord_model?: string | null;
260
- techRecord_noOfAxles: number | null;
260
+ techRecord_noOfAxles: number;
261
261
  techRecord_plates?: TRLPlates[];
262
262
  techRecord_purchaserDetails_address1?: string | null;
263
263
  techRecord_purchaserDetails_address2?: string | null;
@@ -267,6 +267,7 @@ export interface TechRecordPUTTRLTestable {
267
267
  techRecord_purchaserDetails_name?: string | null;
268
268
  techRecord_purchaserDetails_postCode?: string | null;
269
269
  techRecord_purchaserDetails_postTown?: string | null;
270
+ techRecord_notes?: string | null;
270
271
  techRecord_purchaserDetails_purchaserNotes?: string | null;
271
272
  techRecord_purchaserDetails_telephoneNumber?: string | null;
272
273
  techRecord_manufacturerDetails_address1?: string | null;