@dvsa/cvs-type-definitions 3.0.33 → 3.0.35

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.
@@ -1058,6 +1058,12 @@
1058
1058
  "null",
1059
1059
  "string"
1060
1060
  ]
1061
+ },
1062
+ "techRecord_applicationId": {
1063
+ "type": [
1064
+ "null",
1065
+ "string"
1066
+ ]
1061
1067
  }
1062
1068
  }
1063
1069
  }
@@ -76,6 +76,12 @@
76
76
  "integer",
77
77
  "null"
78
78
  ]
79
+ },
80
+ "techRecord_reasonForCreation": {
81
+ "type": "string"
82
+ },
83
+ "techRecord_createdByName": {
84
+ "type": "string"
79
85
  }
80
86
  }
81
87
  }
@@ -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": {
@@ -1017,6 +1017,12 @@
1017
1017
  "null",
1018
1018
  "string"
1019
1019
  ]
1020
+ },
1021
+ "techRecord_applicationId": {
1022
+ "type": [
1023
+ "null",
1024
+ "string"
1025
+ ]
1020
1026
  }
1021
1027
  }
1022
1028
  }
@@ -552,7 +552,7 @@
552
552
  "maximum": 99999,
553
553
  "minimum": 0
554
554
  },
555
- "drawbarCouplingFitted": {
555
+ "techRecord_drawbarCouplingFitted": {
556
556
  "type": [
557
557
  "null",
558
558
  "string"
@@ -612,7 +612,7 @@
612
612
  }
613
613
  ]
614
614
  },
615
- "frontAxleTo5thWheelMax": {
615
+ "techRecord_frontAxleTo5thWheelMRex": {
616
616
  "type": [
617
617
  "integer",
618
618
  "null"
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.35",
4
4
  "description": "type definitions for cvs vta application",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -299,6 +299,7 @@ export interface TechRecordGETPSVComplete {
299
299
  techRecord_brakeCode?: string | null;
300
300
  createdTimestamp: string;
301
301
  techRecord_updateType?: null | string;
302
+ techRecord_applicationId?: null | string;
302
303
  }
303
304
  export interface PSVAxlesComplete {
304
305
  parkingBrakeMrk: boolean;
@@ -21,4 +21,6 @@ export interface TechRecordSearchSchema {
21
21
  techRecord_make?: null | string;
22
22
  techRecord_model?: null | string;
23
23
  techRecord_manufactureYear: number | null;
24
+ techRecord_reasonForCreation?: string;
25
+ techRecord_createdByName?: string;
24
26
  }
@@ -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;
@@ -289,6 +289,7 @@ export interface TechRecordPUTPSVComplete {
289
289
  techRecord_brakeCode?: string | null;
290
290
  secondaryVrms?: null | string[];
291
291
  techRecord_updateType?: null | string;
292
+ techRecord_applicationId?: null | string;
292
293
  }
293
294
  export interface PSVAxlesComplete {
294
295
  parkingBrakeMrk: boolean;
@@ -251,11 +251,11 @@ export interface TechRecordPUTTRLComplete {
251
251
  techRecord_departmentalVehicleMarker?: boolean | null;
252
252
  techRecord_dimensions_length: number | null;
253
253
  techRecord_dimensions_width: number | null;
254
- drawbarCouplingFitted?: null | string;
254
+ techRecord_drawbarCouplingFitted?: null | string;
255
255
  techRecord_emissionsLimit?: null | number;
256
256
  techRecord_euVehicleCategory: EUVehicleCategory;
257
257
  techRecord_euroStandard?: null | EuroStandard;
258
- frontAxleTo5thWheelMax?: number | null;
258
+ techRecord_frontAxleTo5thWheelMRex?: number | null;
259
259
  techRecord_frontAxleTo5thWheelMin?: number | null;
260
260
  techRecord_firstUseDate: string | null;
261
261
  techRecord_frameDescription?: FrameDescription | null;