@dvsa/cvs-type-definitions 4.0.2 → 4.0.3
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/enums/tc3Types.enum.json +14 -0
- package/json-schemas/v3/tech-record/get/hgv/complete/index.json +31 -10
- package/json-schemas/v3/tech-record/get/hgv/skeleton/index.json +31 -10
- package/json-schemas/v3/tech-record/get/hgv/testable/index.json +31 -10
- package/json-schemas/v3/tech-record/get/lgv/complete/index.json +31 -10
- package/json-schemas/v3/tech-record/get/lgv/skeleton/index.json +31 -10
- package/json-schemas/v3/tech-record/get/trl/complete/index.json +31 -10
- package/json-schemas/v3/tech-record/get/trl/skeleton/index.json +31 -10
- package/json-schemas/v3/tech-record/get/trl/testable/index.json +31 -10
- package/json-schemas/v3/tech-record/put/hgv/complete/index.json +31 -10
- package/json-schemas/v3/tech-record/put/hgv/skeleton/index.json +31 -10
- package/json-schemas/v3/tech-record/put/hgv/testable/index.json +31 -10
- package/json-schemas/v3/tech-record/put/lgv/complete/index.json +31 -10
- package/json-schemas/v3/tech-record/put/lgv/skeleton/index.json +31 -10
- package/json-schemas/v3/tech-record/put/trl/complete/index.json +31 -10
- package/json-schemas/v3/tech-record/put/trl/skeleton/index.json +31 -10
- package/json-schemas/v3/tech-record/put/trl/testable/index.json +31 -10
- package/package.json +1 -1
- package/schemas.d.ts +1 -1
- package/schemas.js +1 -0
- package/types/v3/tech-record/enums/tc3Types.enum.d.ts +10 -0
- package/types/v3/tech-record/enums/tc3Types.enum.js +15 -0
- package/types/v3/tech-record/enums/tc3Types.enum.ts +12 -0
- package/types/v3/tech-record/get/hgv/complete/index.d.ts +5 -1
- package/types/v3/tech-record/get/hgv/skeleton/index.d.ts +5 -1
- package/types/v3/tech-record/get/hgv/testable/index.d.ts +5 -1
- package/types/v3/tech-record/get/lgv/complete/index.d.ts +5 -1
- package/types/v3/tech-record/get/lgv/skeleton/index.d.ts +5 -1
- package/types/v3/tech-record/get/trl/complete/index.d.ts +5 -1
- package/types/v3/tech-record/get/trl/skeleton/index.d.ts +5 -1
- package/types/v3/tech-record/get/trl/testable/index.d.ts +5 -1
- package/types/v3/tech-record/put/hgv/complete/index.d.ts +5 -1
- package/types/v3/tech-record/put/hgv/skeleton/index.d.ts +5 -1
- package/types/v3/tech-record/put/hgv/testable/index.d.ts +5 -1
- package/types/v3/tech-record/put/lgv/complete/index.d.ts +5 -1
- package/types/v3/tech-record/put/lgv/skeleton/index.d.ts +5 -1
- package/types/v3/tech-record/put/trl/complete/index.d.ts +5 -1
- package/types/v3/tech-record/put/trl/skeleton/index.d.ts +5 -1
- package/types/v3/tech-record/put/trl/testable/index.d.ts +5 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/**
|
|
4
|
+
* This file was automatically generated by json-schema-to-typescript.
|
|
5
|
+
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
6
|
+
* and run json-schema-to-typescript to regenerate this file.
|
|
7
|
+
*/
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.TC3Types = void 0;
|
|
10
|
+
var TC3Types;
|
|
11
|
+
(function (TC3Types) {
|
|
12
|
+
TC3Types["INTERMEDIATE"] = "intermediate";
|
|
13
|
+
TC3Types["PERIODIC"] = "periodic";
|
|
14
|
+
TC3Types["EXCEPTIONAL"] = "exceptional";
|
|
15
|
+
})(TC3Types = exports.TC3Types || (exports.TC3Types = {}));
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/**
|
|
3
|
+
* This file was automatically generated by json-schema-to-typescript.
|
|
4
|
+
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
5
|
+
* and run json-schema-to-typescript to regenerate this file.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
export enum TC3Types {
|
|
9
|
+
INTERMEDIATE = "intermediate",
|
|
10
|
+
PERIODIC = "periodic",
|
|
11
|
+
EXCEPTIONAL = "exceptional"
|
|
12
|
+
}
|
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
export type TC2Types = "initial";
|
|
9
|
-
export type TC3Types = "intermediate" | "periodic" | "exceptional";
|
|
10
9
|
export type FitmentCode = "single" | "double";
|
|
11
10
|
export type FuelPropulsionSystem =
|
|
12
11
|
| "DieselPetrol"
|
|
@@ -242,6 +241,11 @@ export enum ADRCompatibilityGroupJ {
|
|
|
242
241
|
I = "I",
|
|
243
242
|
E = "E"
|
|
244
243
|
}
|
|
244
|
+
export enum TC3Types {
|
|
245
|
+
INTERMEDIATE = "intermediate",
|
|
246
|
+
PERIODIC = "periodic",
|
|
247
|
+
EXCEPTIONAL = "exceptional"
|
|
248
|
+
}
|
|
245
249
|
export enum EUVehicleCategory {
|
|
246
250
|
N1 = "n1",
|
|
247
251
|
N2 = "n2",
|
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
export type TC2Types = "initial";
|
|
9
|
-
export type TC3Types = "intermediate" | "periodic" | "exceptional";
|
|
10
9
|
export type FitmentCode = "single" | "double";
|
|
11
10
|
export type FuelPropulsionSystem =
|
|
12
11
|
| "DieselPetrol"
|
|
@@ -239,6 +238,11 @@ export enum ADRCompatibilityGroupJ {
|
|
|
239
238
|
I = "I",
|
|
240
239
|
E = "E"
|
|
241
240
|
}
|
|
241
|
+
export enum TC3Types {
|
|
242
|
+
INTERMEDIATE = "intermediate",
|
|
243
|
+
PERIODIC = "periodic",
|
|
244
|
+
EXCEPTIONAL = "exceptional"
|
|
245
|
+
}
|
|
242
246
|
export enum EUVehicleCategory {
|
|
243
247
|
N1 = "n1",
|
|
244
248
|
N2 = "n2",
|
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
export type TC2Types = "initial";
|
|
9
|
-
export type TC3Types = "intermediate" | "periodic" | "exceptional";
|
|
10
9
|
export type FitmentCode = "single" | "double";
|
|
11
10
|
export type FuelPropulsionSystem =
|
|
12
11
|
| "DieselPetrol"
|
|
@@ -239,6 +238,11 @@ export enum ADRCompatibilityGroupJ {
|
|
|
239
238
|
I = "I",
|
|
240
239
|
E = "E"
|
|
241
240
|
}
|
|
241
|
+
export enum TC3Types {
|
|
242
|
+
INTERMEDIATE = "intermediate",
|
|
243
|
+
PERIODIC = "periodic",
|
|
244
|
+
EXCEPTIONAL = "exceptional"
|
|
245
|
+
}
|
|
242
246
|
export enum EUVehicleCategory {
|
|
243
247
|
N1 = "n1",
|
|
244
248
|
N2 = "n2",
|
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
export type TC2Types = "initial";
|
|
9
|
-
export type TC3Types = "intermediate" | "periodic" | "exceptional";
|
|
10
9
|
export type StatusCode = "provisional" | "current" | "archived";
|
|
11
10
|
export type VehicleSubclass = ("n" | "p" | "a" | "s" | "c" | "l" | "t" | "e" | "m" | "r" | "w")[];
|
|
12
11
|
|
|
@@ -94,6 +93,11 @@ export enum ADRCompatibilityGroupJ {
|
|
|
94
93
|
I = "I",
|
|
95
94
|
E = "E"
|
|
96
95
|
}
|
|
96
|
+
export enum TC3Types {
|
|
97
|
+
INTERMEDIATE = "intermediate",
|
|
98
|
+
PERIODIC = "periodic",
|
|
99
|
+
EXCEPTIONAL = "exceptional"
|
|
100
|
+
}
|
|
97
101
|
export enum EUVehicleCategory {
|
|
98
102
|
M1 = "m1",
|
|
99
103
|
M2 = "m2",
|
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
export type TC2Types = "initial";
|
|
9
|
-
export type TC3Types = "intermediate" | "periodic" | "exceptional";
|
|
10
9
|
export type StatusCode = "provisional" | "current" | "archived";
|
|
11
10
|
export type VehicleSubclass = ("n" | "p" | "a" | "s" | "c" | "l" | "t" | "e" | "m" | "r" | "w")[];
|
|
12
11
|
|
|
@@ -94,6 +93,11 @@ export enum ADRCompatibilityGroupJ {
|
|
|
94
93
|
I = "I",
|
|
95
94
|
E = "E"
|
|
96
95
|
}
|
|
96
|
+
export enum TC3Types {
|
|
97
|
+
INTERMEDIATE = "intermediate",
|
|
98
|
+
PERIODIC = "periodic",
|
|
99
|
+
EXCEPTIONAL = "exceptional"
|
|
100
|
+
}
|
|
97
101
|
export enum EUVehicleCategory {
|
|
98
102
|
M1 = "m1",
|
|
99
103
|
M2 = "m2",
|
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
export type TC2Types = "initial";
|
|
9
|
-
export type TC3Types = "intermediate" | "periodic" | "exceptional";
|
|
10
9
|
export type FrameDescription =
|
|
11
10
|
| "Channel section"
|
|
12
11
|
| "Space frame"
|
|
@@ -291,6 +290,11 @@ export enum ADRCompatibilityGroupJ {
|
|
|
291
290
|
I = "I",
|
|
292
291
|
E = "E"
|
|
293
292
|
}
|
|
293
|
+
export enum TC3Types {
|
|
294
|
+
INTERMEDIATE = "intermediate",
|
|
295
|
+
PERIODIC = "periodic",
|
|
296
|
+
EXCEPTIONAL = "exceptional"
|
|
297
|
+
}
|
|
294
298
|
export enum ApprovalType {
|
|
295
299
|
NTA = "NTA",
|
|
296
300
|
ECTA = "ECTA",
|
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
export type TC2Types = "initial";
|
|
9
|
-
export type TC3Types = "intermediate" | "periodic" | "exceptional";
|
|
10
9
|
export type FrameDescription =
|
|
11
10
|
| "Channel section"
|
|
12
11
|
| "Space frame"
|
|
@@ -288,6 +287,11 @@ export enum ADRCompatibilityGroupJ {
|
|
|
288
287
|
I = "I",
|
|
289
288
|
E = "E"
|
|
290
289
|
}
|
|
290
|
+
export enum TC3Types {
|
|
291
|
+
INTERMEDIATE = "intermediate",
|
|
292
|
+
PERIODIC = "periodic",
|
|
293
|
+
EXCEPTIONAL = "exceptional"
|
|
294
|
+
}
|
|
291
295
|
export enum ApprovalType {
|
|
292
296
|
NTA = "NTA",
|
|
293
297
|
ECTA = "ECTA",
|
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
export type TC2Types = "initial";
|
|
9
|
-
export type TC3Types = "intermediate" | "periodic" | "exceptional";
|
|
10
9
|
export type FrameDescription =
|
|
11
10
|
| "Channel section"
|
|
12
11
|
| "Space frame"
|
|
@@ -288,6 +287,11 @@ export enum ADRCompatibilityGroupJ {
|
|
|
288
287
|
I = "I",
|
|
289
288
|
E = "E"
|
|
290
289
|
}
|
|
290
|
+
export enum TC3Types {
|
|
291
|
+
INTERMEDIATE = "intermediate",
|
|
292
|
+
PERIODIC = "periodic",
|
|
293
|
+
EXCEPTIONAL = "exceptional"
|
|
294
|
+
}
|
|
291
295
|
export enum ApprovalType {
|
|
292
296
|
NTA = "NTA",
|
|
293
297
|
ECTA = "ECTA",
|
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
export type TC2Types = "initial";
|
|
9
|
-
export type TC3Types = "intermediate" | "periodic" | "exceptional";
|
|
10
9
|
export type FitmentCode = "single" | "double";
|
|
11
10
|
export type FuelPropulsionSystem =
|
|
12
11
|
| "DieselPetrol"
|
|
@@ -230,6 +229,11 @@ export enum ADRCompatibilityGroupJ {
|
|
|
230
229
|
I = "I",
|
|
231
230
|
E = "E"
|
|
232
231
|
}
|
|
232
|
+
export enum TC3Types {
|
|
233
|
+
INTERMEDIATE = "intermediate",
|
|
234
|
+
PERIODIC = "periodic",
|
|
235
|
+
EXCEPTIONAL = "exceptional"
|
|
236
|
+
}
|
|
233
237
|
export enum EUVehicleCategory {
|
|
234
238
|
N1 = "n1",
|
|
235
239
|
N2 = "n2",
|
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
export type TC2Types = "initial";
|
|
9
|
-
export type TC3Types = "intermediate" | "periodic" | "exceptional";
|
|
10
9
|
export type FitmentCode = "single" | "double";
|
|
11
10
|
export type FuelPropulsionSystem =
|
|
12
11
|
| "DieselPetrol"
|
|
@@ -227,6 +226,11 @@ export enum ADRCompatibilityGroupJ {
|
|
|
227
226
|
I = "I",
|
|
228
227
|
E = "E"
|
|
229
228
|
}
|
|
229
|
+
export enum TC3Types {
|
|
230
|
+
INTERMEDIATE = "intermediate",
|
|
231
|
+
PERIODIC = "periodic",
|
|
232
|
+
EXCEPTIONAL = "exceptional"
|
|
233
|
+
}
|
|
230
234
|
export enum EUVehicleCategory {
|
|
231
235
|
N1 = "n1",
|
|
232
236
|
N2 = "n2",
|
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
export type TC2Types = "initial";
|
|
9
|
-
export type TC3Types = "intermediate" | "periodic" | "exceptional";
|
|
10
9
|
export type FitmentCode = "single" | "double";
|
|
11
10
|
export type FuelPropulsionSystem =
|
|
12
11
|
| "DieselPetrol"
|
|
@@ -227,6 +226,11 @@ export enum ADRCompatibilityGroupJ {
|
|
|
227
226
|
I = "I",
|
|
228
227
|
E = "E"
|
|
229
228
|
}
|
|
229
|
+
export enum TC3Types {
|
|
230
|
+
INTERMEDIATE = "intermediate",
|
|
231
|
+
PERIODIC = "periodic",
|
|
232
|
+
EXCEPTIONAL = "exceptional"
|
|
233
|
+
}
|
|
230
234
|
export enum EUVehicleCategory {
|
|
231
235
|
N1 = "n1",
|
|
232
236
|
N2 = "n2",
|
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
export type TC2Types = "initial";
|
|
9
|
-
export type TC3Types = "intermediate" | "periodic" | "exceptional";
|
|
10
9
|
export type StatusCode = "provisional" | "current" | "archived";
|
|
11
10
|
export type VehicleSubclass = ("n" | "p" | "a" | "s" | "c" | "l" | "t" | "e" | "m" | "r" | "w")[];
|
|
12
11
|
|
|
@@ -84,6 +83,11 @@ export enum ADRCompatibilityGroupJ {
|
|
|
84
83
|
I = "I",
|
|
85
84
|
E = "E"
|
|
86
85
|
}
|
|
86
|
+
export enum TC3Types {
|
|
87
|
+
INTERMEDIATE = "intermediate",
|
|
88
|
+
PERIODIC = "periodic",
|
|
89
|
+
EXCEPTIONAL = "exceptional"
|
|
90
|
+
}
|
|
87
91
|
export enum EUVehicleCategory {
|
|
88
92
|
M1 = "m1",
|
|
89
93
|
M2 = "m2",
|
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
export type TC2Types = "initial";
|
|
9
|
-
export type TC3Types = "intermediate" | "periodic" | "exceptional";
|
|
10
9
|
export type StatusCode = "provisional" | "current" | "archived";
|
|
11
10
|
export type VehicleSubclass = ("n" | "p" | "a" | "s" | "c" | "l" | "t" | "e" | "m" | "r" | "w")[];
|
|
12
11
|
|
|
@@ -84,6 +83,11 @@ export enum ADRCompatibilityGroupJ {
|
|
|
84
83
|
I = "I",
|
|
85
84
|
E = "E"
|
|
86
85
|
}
|
|
86
|
+
export enum TC3Types {
|
|
87
|
+
INTERMEDIATE = "intermediate",
|
|
88
|
+
PERIODIC = "periodic",
|
|
89
|
+
EXCEPTIONAL = "exceptional"
|
|
90
|
+
}
|
|
87
91
|
export enum EUVehicleCategory {
|
|
88
92
|
M1 = "m1",
|
|
89
93
|
M2 = "m2",
|
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
export type TC2Types = "initial";
|
|
9
|
-
export type TC3Types = "intermediate" | "periodic" | "exceptional";
|
|
10
9
|
export type FrameDescription =
|
|
11
10
|
| "Channel section"
|
|
12
11
|
| "Space frame"
|
|
@@ -280,6 +279,11 @@ export enum ADRCompatibilityGroupJ {
|
|
|
280
279
|
I = "I",
|
|
281
280
|
E = "E"
|
|
282
281
|
}
|
|
282
|
+
export enum TC3Types {
|
|
283
|
+
INTERMEDIATE = "intermediate",
|
|
284
|
+
PERIODIC = "periodic",
|
|
285
|
+
EXCEPTIONAL = "exceptional"
|
|
286
|
+
}
|
|
283
287
|
export enum ApprovalType {
|
|
284
288
|
NTA = "NTA",
|
|
285
289
|
ECTA = "ECTA",
|
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
export type TC2Types = "initial";
|
|
9
|
-
export type TC3Types = "intermediate" | "periodic" | "exceptional";
|
|
10
9
|
export type FrameDescription =
|
|
11
10
|
| "Channel section"
|
|
12
11
|
| "Space frame"
|
|
@@ -294,6 +293,11 @@ export enum ADRCompatibilityGroupJ {
|
|
|
294
293
|
I = "I",
|
|
295
294
|
E = "E"
|
|
296
295
|
}
|
|
296
|
+
export enum TC3Types {
|
|
297
|
+
INTERMEDIATE = "intermediate",
|
|
298
|
+
PERIODIC = "periodic",
|
|
299
|
+
EXCEPTIONAL = "exceptional"
|
|
300
|
+
}
|
|
297
301
|
export enum EUVehicleCategory {
|
|
298
302
|
M1 = "m1",
|
|
299
303
|
M2 = "m2",
|
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
export type TC2Types = "initial";
|
|
9
|
-
export type TC3Types = "intermediate" | "periodic" | "exceptional";
|
|
10
9
|
export type FrameDescription =
|
|
11
10
|
| "Channel section"
|
|
12
11
|
| "Space frame"
|
|
@@ -294,6 +293,11 @@ export enum ADRCompatibilityGroupJ {
|
|
|
294
293
|
I = "I",
|
|
295
294
|
E = "E"
|
|
296
295
|
}
|
|
296
|
+
export enum TC3Types {
|
|
297
|
+
INTERMEDIATE = "intermediate",
|
|
298
|
+
PERIODIC = "periodic",
|
|
299
|
+
EXCEPTIONAL = "exceptional"
|
|
300
|
+
}
|
|
297
301
|
export enum EUVehicleCategory {
|
|
298
302
|
M1 = "m1",
|
|
299
303
|
M2 = "m2",
|