@dvsa/cvs-type-definitions 3.0.18 → 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.
- package/json-schemas/v3/tech-record/put/trl/complete/index.json +2 -1
- package/json-schemas/v3/tech-record/put/trl/skeleton/index.json +7 -0
- package/json-schemas/v3/tech-record/put/trl/testable/index.json +10 -11
- package/package.json +1 -1
- package/types/v3/tech-record/put/trl/skeleton/index.d.ts +1 -0
- package/types/v3/tech-record/put/trl/testable/index.d.ts +2 -1
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
"required": [
|
|
6
6
|
"techRecord_noOfAxles",
|
|
7
7
|
"techRecord_reasonForCreation",
|
|
8
|
-
"techRecord_recordCompleteness",
|
|
9
8
|
"techRecord_statusCode",
|
|
10
9
|
"techRecord_vehicleClass_code",
|
|
11
10
|
"techRecord_vehicleClass_description",
|
|
@@ -829,16 +828,9 @@
|
|
|
829
828
|
"maxLength": 30
|
|
830
829
|
},
|
|
831
830
|
"techRecord_noOfAxles": {
|
|
832
|
-
"
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
"minimum": 0,
|
|
836
|
-
"maximum": 99
|
|
837
|
-
},
|
|
838
|
-
{
|
|
839
|
-
"type": "null"
|
|
840
|
-
}
|
|
841
|
-
]
|
|
831
|
+
"type": "integer",
|
|
832
|
+
"minimum": 0,
|
|
833
|
+
"maximum": 99
|
|
842
834
|
},
|
|
843
835
|
"techRecord_plates": {
|
|
844
836
|
"type": "array",
|
|
@@ -937,6 +929,13 @@
|
|
|
937
929
|
"null"
|
|
938
930
|
]
|
|
939
931
|
},
|
|
932
|
+
"techRecord_notes": {
|
|
933
|
+
"type": [
|
|
934
|
+
"string",
|
|
935
|
+
"null"
|
|
936
|
+
],
|
|
937
|
+
"maxLength": 1024
|
|
938
|
+
},
|
|
940
939
|
"techRecord_purchaserDetails_purchaserNotes": {
|
|
941
940
|
"type": [
|
|
942
941
|
"string",
|
package/package.json
CHANGED
|
@@ -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
|
|
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;
|