@dvsa/cvs-type-definitions 2.1.14 → 2.1.15

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.
@@ -19,6 +19,62 @@
19
19
  "null"
20
20
  ]
21
21
  },
22
+ "techRecord_applicantDetails_name": {
23
+ "type": [
24
+ "string",
25
+ "null"
26
+ ],
27
+ "maxLength": 150
28
+ },
29
+ "techRecord_applicantDetails_address1": {
30
+ "type": [
31
+ "null",
32
+ "string"
33
+ ],
34
+ "maxLength": 60
35
+ },
36
+ "techRecord_applicantDetails_address2": {
37
+ "type": [
38
+ "null",
39
+ "string"
40
+ ],
41
+ "maxLength": 60
42
+ },
43
+ "techRecord_applicantDetails_postTown": {
44
+ "type": [
45
+ "null",
46
+ "string"
47
+ ],
48
+ "maxLength": 60
49
+ },
50
+ "techRecord_applicantDetails_address3": {
51
+ "type": [
52
+ "null",
53
+ "string"
54
+ ],
55
+ "maxLength": 60
56
+ },
57
+ "techRecord_applicantDetails_postCode": {
58
+ "type": [
59
+ "null",
60
+ "string"
61
+ ],
62
+ "maxLength": 12
63
+ },
64
+ "techRecord_applicantDetails_telephoneNumber": {
65
+ "type": [
66
+ "null",
67
+ "string"
68
+ ],
69
+ "maxLength": 25
70
+ },
71
+ "techRecord_applicantDetails_emailAddress": {
72
+ "type": [
73
+ "null",
74
+ "string"
75
+ ],
76
+ "maxLength": 255
77
+ },
22
78
  "techRecord_reasonForCreation": {
23
79
  "type": [
24
80
  "string",
@@ -19,6 +19,62 @@
19
19
  "null"
20
20
  ]
21
21
  },
22
+ "techRecord_applicantDetails_name": {
23
+ "type": [
24
+ "string",
25
+ "null"
26
+ ],
27
+ "maxLength": 150
28
+ },
29
+ "techRecord_applicantDetails_address1": {
30
+ "type": [
31
+ "null",
32
+ "string"
33
+ ],
34
+ "maxLength": 60
35
+ },
36
+ "techRecord_applicantDetails_address2": {
37
+ "type": [
38
+ "null",
39
+ "string"
40
+ ],
41
+ "maxLength": 60
42
+ },
43
+ "techRecord_applicantDetails_postTown": {
44
+ "type": [
45
+ "null",
46
+ "string"
47
+ ],
48
+ "maxLength": 60
49
+ },
50
+ "techRecord_applicantDetails_address3": {
51
+ "type": [
52
+ "null",
53
+ "string"
54
+ ],
55
+ "maxLength": 60
56
+ },
57
+ "techRecord_applicantDetails_postCode": {
58
+ "type": [
59
+ "null",
60
+ "string"
61
+ ],
62
+ "maxLength": 12
63
+ },
64
+ "techRecord_applicantDetails_telephoneNumber": {
65
+ "type": [
66
+ "null",
67
+ "string"
68
+ ],
69
+ "maxLength": 25
70
+ },
71
+ "techRecord_applicantDetails_emailAddress": {
72
+ "type": [
73
+ "null",
74
+ "string"
75
+ ],
76
+ "maxLength": 255
77
+ },
22
78
  "techRecord_reasonForCreation": {
23
79
  "type": [
24
80
  "string",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dvsa/cvs-type-definitions",
3
- "version": "2.1.14",
3
+ "version": "2.1.15",
4
4
  "description": "type definitions for cvs vta application",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -13,6 +13,14 @@ export interface TechRecordCompleteLGVSchema {
13
13
  vin: string;
14
14
  primaryVrm?: string;
15
15
  trailerId?: string | null;
16
+ techRecord_applicantDetails_name?: string | null;
17
+ techRecord_applicantDetails_address1?: null | string;
18
+ techRecord_applicantDetails_address2?: null | string;
19
+ techRecord_applicantDetails_postTown?: null | string;
20
+ techRecord_applicantDetails_address3?: null | string;
21
+ techRecord_applicantDetails_postCode?: null | string;
22
+ techRecord_applicantDetails_telephoneNumber?: null | string;
23
+ techRecord_applicantDetails_emailAddress?: null | string;
16
24
  techRecord_reasonForCreation?: string | null;
17
25
  techRecord_vehicleType?: VehicleType;
18
26
  techRecord_statusCode?: StatusCode;
@@ -12,6 +12,14 @@ export interface TechRecordCompleteCarSchema {
12
12
  vin: string;
13
13
  primaryVrm?: string;
14
14
  trailerId?: string | null;
15
+ techRecord_applicantDetails_name?: string | null;
16
+ techRecord_applicantDetails_address1?: null | string;
17
+ techRecord_applicantDetails_address2?: null | string;
18
+ techRecord_applicantDetails_postTown?: null | string;
19
+ techRecord_applicantDetails_address3?: null | string;
20
+ techRecord_applicantDetails_postCode?: null | string;
21
+ techRecord_applicantDetails_telephoneNumber?: null | string;
22
+ techRecord_applicantDetails_emailAddress?: null | string;
15
23
  techRecord_reasonForCreation?: string | null;
16
24
  techRecord_vehicleType: VehicleType;
17
25
  techRecord_statusCode?: StatusCode;