@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.
- 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 -10
- 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
|
@@ -828,16 +828,9 @@
|
|
|
828
828
|
"maxLength": 30
|
|
829
829
|
},
|
|
830
830
|
"techRecord_noOfAxles": {
|
|
831
|
-
"
|
|
832
|
-
|
|
833
|
-
|
|
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
|
@@ -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;
|