@dvsa/cvs-type-definitions 7.3.0 → 7.5.0
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/v1/activity/index.json +4 -2
- package/json-schemas/v1/enums/testStationType.enum.json +4 -2
- package/json-schemas/v1/test/index.json +4 -2
- package/json-schemas/v1/test-result/index.json +4 -2
- package/json-schemas/v1/vehicle/index.json +4 -2
- package/json-schemas/v1/visit/index.json +4 -2
- package/json-schemas/v3/tech-record/enums/adrBodyDeclarationType.enum.json +14 -0
- package/json-schemas/v3/tech-record/get/hgv/complete/index.json +48 -0
- package/json-schemas/v3/tech-record/get/hgv/skeleton/index.json +48 -0
- package/json-schemas/v3/tech-record/get/hgv/testable/index.json +48 -0
- package/json-schemas/v3/tech-record/get/lgv/complete/index.json +48 -0
- package/json-schemas/v3/tech-record/get/lgv/skeleton/index.json +48 -0
- package/json-schemas/v3/tech-record/get/trl/complete/index.json +48 -0
- package/json-schemas/v3/tech-record/get/trl/skeleton/index.json +48 -0
- package/json-schemas/v3/tech-record/get/trl/testable/index.json +48 -0
- package/json-schemas/v3/tech-record/put/hgv/complete/index.json +48 -0
- package/json-schemas/v3/tech-record/put/hgv/skeleton/index.json +48 -0
- package/json-schemas/v3/tech-record/put/hgv/testable/index.json +48 -0
- package/json-schemas/v3/tech-record/put/lgv/complete/index.json +48 -0
- package/json-schemas/v3/tech-record/put/lgv/skeleton/index.json +48 -0
- package/json-schemas/v3/tech-record/put/trl/complete/index.json +48 -0
- package/json-schemas/v3/tech-record/put/trl/skeleton/index.json +48 -0
- package/json-schemas/v3/tech-record/put/trl/testable/index.json +48 -0
- package/package.json +1 -1
- package/schemas.d.ts +1 -1
- package/schemas.js +1 -0
- package/types/v1/activity/index.d.ts +2 -1
- package/types/v1/enums/testStationType.enum.d.ts +2 -1
- package/types/v1/enums/testStationType.enum.js +1 -0
- package/types/v1/enums/testStationType.enum.ts +2 -1
- package/types/v1/test/index.d.ts +2 -1
- package/types/v1/test-result/index.d.ts +2 -1
- package/types/v1/vehicle/index.d.ts +2 -1
- package/types/v1/visit/index.d.ts +2 -1
- package/types/v3/tech-record/enums/adrBodyDeclarationType.enum.d.ts +10 -0
- package/types/v3/tech-record/enums/adrBodyDeclarationType.enum.js +15 -0
- package/types/v3/tech-record/enums/adrBodyDeclarationType.enum.ts +12 -0
- package/types/v3/tech-record/get/hgv/complete/index.d.ts +6 -0
- package/types/v3/tech-record/get/hgv/skeleton/index.d.ts +6 -0
- package/types/v3/tech-record/get/hgv/testable/index.d.ts +6 -0
- package/types/v3/tech-record/get/lgv/complete/index.d.ts +6 -0
- package/types/v3/tech-record/get/lgv/skeleton/index.d.ts +6 -0
- package/types/v3/tech-record/get/trl/complete/index.d.ts +6 -0
- package/types/v3/tech-record/get/trl/skeleton/index.d.ts +6 -0
- package/types/v3/tech-record/get/trl/testable/index.d.ts +6 -0
- package/types/v3/tech-record/put/hgv/complete/index.d.ts +6 -0
- package/types/v3/tech-record/put/hgv/skeleton/index.d.ts +6 -0
- package/types/v3/tech-record/put/hgv/testable/index.d.ts +6 -0
- package/types/v3/tech-record/put/lgv/complete/index.d.ts +6 -0
- package/types/v3/tech-record/put/lgv/skeleton/index.d.ts +6 -0
- package/types/v3/tech-record/put/trl/complete/index.d.ts +6 -0
- package/types/v3/tech-record/put/trl/skeleton/index.d.ts +6 -0
- package/types/v3/tech-record/put/trl/testable/index.d.ts +6 -0
|
@@ -90,6 +90,7 @@ export interface TechRecordGETHGVComplete {
|
|
|
90
90
|
techRecord_adrDetails_documentId?: string;
|
|
91
91
|
techRecord_adrDetails_dangerousGoods?: boolean | null;
|
|
92
92
|
techRecord_adrDetails_vehicleDetails_type?: string | null;
|
|
93
|
+
techRecord_adrDetails_bodyDeclaration_type?: null | ADRBodyDeclarationTypes;
|
|
93
94
|
techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys?: null | RadioButtonOptions;
|
|
94
95
|
techRecord_adrDetails_vehicleDetails_approvalDate?: string | null;
|
|
95
96
|
techRecord_adrDetails_permittedDangerousGoods?: string[] | null;
|
|
@@ -253,6 +254,11 @@ export interface HGVPlates {
|
|
|
253
254
|
plateIssuer?: string | null;
|
|
254
255
|
}
|
|
255
256
|
|
|
257
|
+
export enum ADRBodyDeclarationTypes {
|
|
258
|
+
PRE_1ST_JULY_2005 = "Pre 1st July 2005",
|
|
259
|
+
ON_OR_AFTER_1ST_JULY_2005 = "On or after 1st July 2005",
|
|
260
|
+
UNKNOWN = "Unknown"
|
|
261
|
+
}
|
|
256
262
|
export enum RadioButtonOptions {
|
|
257
263
|
yes = "yes",
|
|
258
264
|
no = "no",
|
|
@@ -90,6 +90,7 @@ export interface TechRecordGETHGVSkeleton {
|
|
|
90
90
|
techRecord_adrDetails_documentId?: string;
|
|
91
91
|
techRecord_adrDetails_dangerousGoods?: boolean | null;
|
|
92
92
|
techRecord_adrDetails_vehicleDetails_type?: string | null;
|
|
93
|
+
techRecord_adrDetails_bodyDeclaration_type?: null | ADRBodyDeclarationTypes;
|
|
93
94
|
techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys?: null | RadioButtonOptions;
|
|
94
95
|
techRecord_adrDetails_vehicleDetails_approvalDate?: string | null;
|
|
95
96
|
techRecord_adrDetails_permittedDangerousGoods?: string[] | null;
|
|
@@ -250,6 +251,11 @@ export interface HGVPlates {
|
|
|
250
251
|
plateIssuer?: string | null;
|
|
251
252
|
}
|
|
252
253
|
|
|
254
|
+
export enum ADRBodyDeclarationTypes {
|
|
255
|
+
PRE_1ST_JULY_2005 = "Pre 1st July 2005",
|
|
256
|
+
ON_OR_AFTER_1ST_JULY_2005 = "On or after 1st July 2005",
|
|
257
|
+
UNKNOWN = "Unknown"
|
|
258
|
+
}
|
|
253
259
|
export enum RadioButtonOptions {
|
|
254
260
|
yes = "yes",
|
|
255
261
|
no = "no",
|
|
@@ -90,6 +90,7 @@ export interface TechRecordGETHGVTestable {
|
|
|
90
90
|
techRecord_adrDetails_documentId?: string;
|
|
91
91
|
techRecord_adrDetails_dangerousGoods?: boolean | null;
|
|
92
92
|
techRecord_adrDetails_vehicleDetails_type?: string | null;
|
|
93
|
+
techRecord_adrDetails_bodyDeclaration_type?: null | ADRBodyDeclarationTypes;
|
|
93
94
|
techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys?: null | RadioButtonOptions;
|
|
94
95
|
techRecord_adrDetails_vehicleDetails_approvalDate?: string | null;
|
|
95
96
|
techRecord_adrDetails_permittedDangerousGoods?: string[] | null;
|
|
@@ -250,6 +251,11 @@ export interface HGVPlates {
|
|
|
250
251
|
plateIssuer?: string | null;
|
|
251
252
|
}
|
|
252
253
|
|
|
254
|
+
export enum ADRBodyDeclarationTypes {
|
|
255
|
+
PRE_1ST_JULY_2005 = "Pre 1st July 2005",
|
|
256
|
+
ON_OR_AFTER_1ST_JULY_2005 = "On or after 1st July 2005",
|
|
257
|
+
UNKNOWN = "Unknown"
|
|
258
|
+
}
|
|
253
259
|
export enum RadioButtonOptions {
|
|
254
260
|
yes = "yes",
|
|
255
261
|
no = "no",
|
|
@@ -21,6 +21,7 @@ export interface TechRecordGETLGVComplete {
|
|
|
21
21
|
techRecord_adrDetails_documentId?: string;
|
|
22
22
|
techRecord_adrDetails_dangerousGoods?: boolean | null;
|
|
23
23
|
techRecord_adrDetails_vehicleDetails_type?: string | null;
|
|
24
|
+
techRecord_adrDetails_bodyDeclaration_type?: null | ADRBodyDeclarationTypes;
|
|
24
25
|
techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys?: null | RadioButtonOptions;
|
|
25
26
|
techRecord_adrDetails_vehicleDetails_approvalDate?: string | null;
|
|
26
27
|
techRecord_adrDetails_permittedDangerousGoods?: string[] | null;
|
|
@@ -105,6 +106,11 @@ export interface ADRCertificateDetails {
|
|
|
105
106
|
certificateId: string;
|
|
106
107
|
}
|
|
107
108
|
|
|
109
|
+
export enum ADRBodyDeclarationTypes {
|
|
110
|
+
PRE_1ST_JULY_2005 = "Pre 1st July 2005",
|
|
111
|
+
ON_OR_AFTER_1ST_JULY_2005 = "On or after 1st July 2005",
|
|
112
|
+
UNKNOWN = "Unknown"
|
|
113
|
+
}
|
|
108
114
|
export enum RadioButtonOptions {
|
|
109
115
|
yes = "yes",
|
|
110
116
|
no = "no",
|
|
@@ -21,6 +21,7 @@ export interface TechRecordGETLGVSkeleton {
|
|
|
21
21
|
techRecord_adrDetails_documentId?: string;
|
|
22
22
|
techRecord_adrDetails_dangerousGoods?: boolean | null;
|
|
23
23
|
techRecord_adrDetails_vehicleDetails_type?: string | null;
|
|
24
|
+
techRecord_adrDetails_bodyDeclaration_type?: null | ADRBodyDeclarationTypes;
|
|
24
25
|
techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys?: null | RadioButtonOptions;
|
|
25
26
|
techRecord_adrDetails_vehicleDetails_approvalDate?: string | null;
|
|
26
27
|
techRecord_adrDetails_permittedDangerousGoods?: string[] | null;
|
|
@@ -105,6 +106,11 @@ export interface ADRCertificateDetails {
|
|
|
105
106
|
certificateId: string;
|
|
106
107
|
}
|
|
107
108
|
|
|
109
|
+
export enum ADRBodyDeclarationTypes {
|
|
110
|
+
PRE_1ST_JULY_2005 = "Pre 1st July 2005",
|
|
111
|
+
ON_OR_AFTER_1ST_JULY_2005 = "On or after 1st July 2005",
|
|
112
|
+
UNKNOWN = "Unknown"
|
|
113
|
+
}
|
|
108
114
|
export enum RadioButtonOptions {
|
|
109
115
|
yes = "yes",
|
|
110
116
|
no = "no",
|
|
@@ -107,6 +107,7 @@ export interface TechRecordGETTRLComplete {
|
|
|
107
107
|
techRecord_adrDetails_documentId?: string;
|
|
108
108
|
techRecord_adrDetails_dangerousGoods?: boolean | null;
|
|
109
109
|
techRecord_adrDetails_vehicleDetails_type?: string | null;
|
|
110
|
+
techRecord_adrDetails_bodyDeclaration_type?: null | ADRBodyDeclarationTypes;
|
|
110
111
|
techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys?: null | RadioButtonOptions;
|
|
111
112
|
techRecord_adrDetails_vehicleDetails_approvalDate?: string | null;
|
|
112
113
|
techRecord_adrDetails_permittedDangerousGoods?: string[] | null;
|
|
@@ -302,6 +303,11 @@ export interface AxleSpacing {
|
|
|
302
303
|
value?: number | null;
|
|
303
304
|
}
|
|
304
305
|
|
|
306
|
+
export enum ADRBodyDeclarationTypes {
|
|
307
|
+
PRE_1ST_JULY_2005 = "Pre 1st July 2005",
|
|
308
|
+
ON_OR_AFTER_1ST_JULY_2005 = "On or after 1st July 2005",
|
|
309
|
+
UNKNOWN = "Unknown"
|
|
310
|
+
}
|
|
305
311
|
export enum RadioButtonOptions {
|
|
306
312
|
yes = "yes",
|
|
307
313
|
no = "no",
|
|
@@ -107,6 +107,7 @@ export interface TechRecordGETTRLSkeleton {
|
|
|
107
107
|
techRecord_adrDetails_documentId?: string;
|
|
108
108
|
techRecord_adrDetails_dangerousGoods?: boolean | null;
|
|
109
109
|
techRecord_adrDetails_vehicleDetails_type?: string | null;
|
|
110
|
+
techRecord_adrDetails_bodyDeclaration_type?: null | ADRBodyDeclarationTypes;
|
|
110
111
|
techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys?: null | RadioButtonOptions;
|
|
111
112
|
techRecord_adrDetails_vehicleDetails_approvalDate?: string | null;
|
|
112
113
|
techRecord_adrDetails_permittedDangerousGoods?: string[] | null;
|
|
@@ -299,6 +300,11 @@ export interface AxleSpacing {
|
|
|
299
300
|
value?: number | null;
|
|
300
301
|
}
|
|
301
302
|
|
|
303
|
+
export enum ADRBodyDeclarationTypes {
|
|
304
|
+
PRE_1ST_JULY_2005 = "Pre 1st July 2005",
|
|
305
|
+
ON_OR_AFTER_1ST_JULY_2005 = "On or after 1st July 2005",
|
|
306
|
+
UNKNOWN = "Unknown"
|
|
307
|
+
}
|
|
302
308
|
export enum RadioButtonOptions {
|
|
303
309
|
yes = "yes",
|
|
304
310
|
no = "no",
|
|
@@ -107,6 +107,7 @@ export interface TechRecordGETTRLTestable {
|
|
|
107
107
|
techRecord_adrDetails_documentId?: string;
|
|
108
108
|
techRecord_adrDetails_dangerousGoods?: boolean | null;
|
|
109
109
|
techRecord_adrDetails_vehicleDetails_type?: string | null;
|
|
110
|
+
techRecord_adrDetails_bodyDeclaration_type?: null | ADRBodyDeclarationTypes;
|
|
110
111
|
techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys?: null | RadioButtonOptions;
|
|
111
112
|
techRecord_adrDetails_vehicleDetails_approvalDate?: string | null;
|
|
112
113
|
techRecord_adrDetails_permittedDangerousGoods?: string[] | null;
|
|
@@ -299,6 +300,11 @@ export interface AxleSpacing {
|
|
|
299
300
|
value?: number | null;
|
|
300
301
|
}
|
|
301
302
|
|
|
303
|
+
export enum ADRBodyDeclarationTypes {
|
|
304
|
+
PRE_1ST_JULY_2005 = "Pre 1st July 2005",
|
|
305
|
+
ON_OR_AFTER_1ST_JULY_2005 = "On or after 1st July 2005",
|
|
306
|
+
UNKNOWN = "Unknown"
|
|
307
|
+
}
|
|
302
308
|
export enum RadioButtonOptions {
|
|
303
309
|
yes = "yes",
|
|
304
310
|
no = "no",
|
|
@@ -88,6 +88,7 @@ export interface TechRecordPUTHGVComplete {
|
|
|
88
88
|
techRecord_adrDetails_documentId?: string;
|
|
89
89
|
techRecord_adrDetails_dangerousGoods?: boolean | null;
|
|
90
90
|
techRecord_adrDetails_vehicleDetails_type?: string | null;
|
|
91
|
+
techRecord_adrDetails_bodyDeclaration_type?: null | ADRBodyDeclarationTypes;
|
|
91
92
|
techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys?: null | RadioButtonOptions;
|
|
92
93
|
techRecord_adrDetails_vehicleDetails_approvalDate?: string | null;
|
|
93
94
|
techRecord_adrDetails_permittedDangerousGoods?: string[] | null;
|
|
@@ -241,6 +242,11 @@ export interface HGVPlates {
|
|
|
241
242
|
plateIssuer?: string | null;
|
|
242
243
|
}
|
|
243
244
|
|
|
245
|
+
export enum ADRBodyDeclarationTypes {
|
|
246
|
+
PRE_1ST_JULY_2005 = "Pre 1st July 2005",
|
|
247
|
+
ON_OR_AFTER_1ST_JULY_2005 = "On or after 1st July 2005",
|
|
248
|
+
UNKNOWN = "Unknown"
|
|
249
|
+
}
|
|
244
250
|
export enum RadioButtonOptions {
|
|
245
251
|
yes = "yes",
|
|
246
252
|
no = "no",
|
|
@@ -88,6 +88,7 @@ export interface TechRecordPUTHGVSkeleton {
|
|
|
88
88
|
techRecord_adrDetails_documentId?: string;
|
|
89
89
|
techRecord_adrDetails_dangerousGoods?: boolean | null;
|
|
90
90
|
techRecord_adrDetails_vehicleDetails_type?: string | null;
|
|
91
|
+
techRecord_adrDetails_bodyDeclaration_type?: null | ADRBodyDeclarationTypes;
|
|
91
92
|
techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys?: null | RadioButtonOptions;
|
|
92
93
|
techRecord_adrDetails_vehicleDetails_approvalDate?: string | null;
|
|
93
94
|
techRecord_adrDetails_permittedDangerousGoods?: string[] | null;
|
|
@@ -238,6 +239,11 @@ export interface HGVPlates {
|
|
|
238
239
|
plateIssuer?: string | null;
|
|
239
240
|
}
|
|
240
241
|
|
|
242
|
+
export enum ADRBodyDeclarationTypes {
|
|
243
|
+
PRE_1ST_JULY_2005 = "Pre 1st July 2005",
|
|
244
|
+
ON_OR_AFTER_1ST_JULY_2005 = "On or after 1st July 2005",
|
|
245
|
+
UNKNOWN = "Unknown"
|
|
246
|
+
}
|
|
241
247
|
export enum RadioButtonOptions {
|
|
242
248
|
yes = "yes",
|
|
243
249
|
no = "no",
|
|
@@ -88,6 +88,7 @@ export interface TechRecordPUTHGVTestable {
|
|
|
88
88
|
techRecord_adrDetails_documentId?: string;
|
|
89
89
|
techRecord_adrDetails_dangerousGoods?: boolean | null;
|
|
90
90
|
techRecord_adrDetails_vehicleDetails_type?: string | null;
|
|
91
|
+
techRecord_adrDetails_bodyDeclaration_type?: null | ADRBodyDeclarationTypes;
|
|
91
92
|
techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys?: null | RadioButtonOptions;
|
|
92
93
|
techRecord_adrDetails_vehicleDetails_approvalDate?: string | null;
|
|
93
94
|
techRecord_adrDetails_permittedDangerousGoods?: string[] | null;
|
|
@@ -238,6 +239,11 @@ export interface HGVPlates {
|
|
|
238
239
|
plateIssuer?: string | null;
|
|
239
240
|
}
|
|
240
241
|
|
|
242
|
+
export enum ADRBodyDeclarationTypes {
|
|
243
|
+
PRE_1ST_JULY_2005 = "Pre 1st July 2005",
|
|
244
|
+
ON_OR_AFTER_1ST_JULY_2005 = "On or after 1st July 2005",
|
|
245
|
+
UNKNOWN = "Unknown"
|
|
246
|
+
}
|
|
241
247
|
export enum RadioButtonOptions {
|
|
242
248
|
yes = "yes",
|
|
243
249
|
no = "no",
|
|
@@ -23,6 +23,7 @@ export interface TechRecordPUTLGVComplete {
|
|
|
23
23
|
techRecord_adrDetails_documentId?: string;
|
|
24
24
|
techRecord_adrDetails_dangerousGoods?: boolean | null;
|
|
25
25
|
techRecord_adrDetails_vehicleDetails_type?: string | null;
|
|
26
|
+
techRecord_adrDetails_bodyDeclaration_type?: null | ADRBodyDeclarationTypes;
|
|
26
27
|
techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys?: null | RadioButtonOptions;
|
|
27
28
|
techRecord_adrDetails_vehicleDetails_approvalDate?: string | null;
|
|
28
29
|
techRecord_adrDetails_permittedDangerousGoods?: string[] | null;
|
|
@@ -95,6 +96,11 @@ export interface ADRCertificateDetails {
|
|
|
95
96
|
certificateId: string;
|
|
96
97
|
}
|
|
97
98
|
|
|
99
|
+
export enum ADRBodyDeclarationTypes {
|
|
100
|
+
PRE_1ST_JULY_2005 = "Pre 1st July 2005",
|
|
101
|
+
ON_OR_AFTER_1ST_JULY_2005 = "On or after 1st July 2005",
|
|
102
|
+
UNKNOWN = "Unknown"
|
|
103
|
+
}
|
|
98
104
|
export enum RadioButtonOptions {
|
|
99
105
|
yes = "yes",
|
|
100
106
|
no = "no",
|
|
@@ -23,6 +23,7 @@ export interface TechRecordPUTLGVSkeleton {
|
|
|
23
23
|
techRecord_adrDetails_documentId?: string;
|
|
24
24
|
techRecord_adrDetails_dangerousGoods?: boolean | null;
|
|
25
25
|
techRecord_adrDetails_vehicleDetails_type?: string | null;
|
|
26
|
+
techRecord_adrDetails_bodyDeclaration_type?: null | ADRBodyDeclarationTypes;
|
|
26
27
|
techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys?: null | RadioButtonOptions;
|
|
27
28
|
techRecord_adrDetails_vehicleDetails_approvalDate?: string | null;
|
|
28
29
|
techRecord_adrDetails_permittedDangerousGoods?: string[] | null;
|
|
@@ -95,6 +96,11 @@ export interface ADRCertificateDetails {
|
|
|
95
96
|
certificateId: string;
|
|
96
97
|
}
|
|
97
98
|
|
|
99
|
+
export enum ADRBodyDeclarationTypes {
|
|
100
|
+
PRE_1ST_JULY_2005 = "Pre 1st July 2005",
|
|
101
|
+
ON_OR_AFTER_1ST_JULY_2005 = "On or after 1st July 2005",
|
|
102
|
+
UNKNOWN = "Unknown"
|
|
103
|
+
}
|
|
98
104
|
export enum RadioButtonOptions {
|
|
99
105
|
yes = "yes",
|
|
100
106
|
no = "no",
|
|
@@ -105,6 +105,7 @@ export interface TechRecordPUTTRLComplete {
|
|
|
105
105
|
techRecord_adrDetails_documentId?: string;
|
|
106
106
|
techRecord_adrDetails_dangerousGoods?: boolean | null;
|
|
107
107
|
techRecord_adrDetails_vehicleDetails_type?: string | null;
|
|
108
|
+
techRecord_adrDetails_bodyDeclaration_type?: null | ADRBodyDeclarationTypes;
|
|
108
109
|
techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys?: null | RadioButtonOptions;
|
|
109
110
|
techRecord_adrDetails_vehicleDetails_approvalDate?: string | null;
|
|
110
111
|
techRecord_adrDetails_permittedDangerousGoods?: string[] | null;
|
|
@@ -291,6 +292,11 @@ export interface AxleSpacing {
|
|
|
291
292
|
value?: number | null;
|
|
292
293
|
}
|
|
293
294
|
|
|
295
|
+
export enum ADRBodyDeclarationTypes {
|
|
296
|
+
PRE_1ST_JULY_2005 = "Pre 1st July 2005",
|
|
297
|
+
ON_OR_AFTER_1ST_JULY_2005 = "On or after 1st July 2005",
|
|
298
|
+
UNKNOWN = "Unknown"
|
|
299
|
+
}
|
|
294
300
|
export enum RadioButtonOptions {
|
|
295
301
|
yes = "yes",
|
|
296
302
|
no = "no",
|
|
@@ -110,6 +110,7 @@ export interface TechRecordPUTTRLSkeleton {
|
|
|
110
110
|
techRecord_adrDetails_documentId?: string;
|
|
111
111
|
techRecord_adrDetails_dangerousGoods?: boolean | null;
|
|
112
112
|
techRecord_adrDetails_vehicleDetails_type?: string | null;
|
|
113
|
+
techRecord_adrDetails_bodyDeclaration_type?: null | ADRBodyDeclarationTypes;
|
|
113
114
|
techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys?: null | RadioButtonOptions;
|
|
114
115
|
techRecord_adrDetails_vehicleDetails_approvalDate?: string | null;
|
|
115
116
|
techRecord_adrDetails_permittedDangerousGoods?: string[] | null;
|
|
@@ -305,6 +306,11 @@ export enum ApprovalType {
|
|
|
305
306
|
IVA_VCA = "IVA - VCA",
|
|
306
307
|
IVA_DVSA_NI = "IVA - DVSA/NI"
|
|
307
308
|
}
|
|
309
|
+
export enum ADRBodyDeclarationTypes {
|
|
310
|
+
PRE_1ST_JULY_2005 = "Pre 1st July 2005",
|
|
311
|
+
ON_OR_AFTER_1ST_JULY_2005 = "On or after 1st July 2005",
|
|
312
|
+
UNKNOWN = "Unknown"
|
|
313
|
+
}
|
|
308
314
|
export enum RadioButtonOptions {
|
|
309
315
|
yes = "yes",
|
|
310
316
|
no = "no",
|
|
@@ -110,6 +110,7 @@ export interface TechRecordPUTTRLTestable {
|
|
|
110
110
|
techRecord_adrDetails_documentId?: string;
|
|
111
111
|
techRecord_adrDetails_dangerousGoods?: boolean | null;
|
|
112
112
|
techRecord_adrDetails_vehicleDetails_type?: string | null;
|
|
113
|
+
techRecord_adrDetails_bodyDeclaration_type?: null | ADRBodyDeclarationTypes;
|
|
113
114
|
techRecord_adrDetails_vehicleDetails_usedOnInternationalJourneys?: null | RadioButtonOptions;
|
|
114
115
|
techRecord_adrDetails_vehicleDetails_approvalDate?: string | null;
|
|
115
116
|
techRecord_adrDetails_permittedDangerousGoods?: string[] | null;
|
|
@@ -305,6 +306,11 @@ export enum ApprovalType {
|
|
|
305
306
|
IVA_VCA = "IVA - VCA",
|
|
306
307
|
IVA_DVSA_NI = "IVA - DVSA/NI"
|
|
307
308
|
}
|
|
309
|
+
export enum ADRBodyDeclarationTypes {
|
|
310
|
+
PRE_1ST_JULY_2005 = "Pre 1st July 2005",
|
|
311
|
+
ON_OR_AFTER_1ST_JULY_2005 = "On or after 1st July 2005",
|
|
312
|
+
UNKNOWN = "Unknown"
|
|
313
|
+
}
|
|
308
314
|
export enum RadioButtonOptions {
|
|
309
315
|
yes = "yes",
|
|
310
316
|
no = "no",
|