@dvsa/cvs-type-definitions 7.6.0 → 7.6.2
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/test/index.json +1 -1092
- package/json-schemas/v1/test-result/index.json +1 -1092
- package/json-schemas/v1/test-station/index.json +8 -1
- package/json-schemas/v1/vehicle/index.json +1 -1092
- package/json-schemas/v1/visit/index.json +1 -1092
- package/package.json +1 -1
- package/types/v1/test/index.d.ts +3 -0
- package/types/v1/test-result/index.d.ts +3 -0
- package/types/v1/test-station/index.d.ts +2 -0
- package/types/v1/vehicle/index.d.ts +3 -0
- package/types/v1/visit/index.d.ts +3 -0
package/package.json
CHANGED
package/types/v1/test/index.d.ts
CHANGED
|
@@ -279,6 +279,9 @@ export interface TestResultSchema {
|
|
|
279
279
|
model?: string | null;
|
|
280
280
|
bodyType?: BodyTypeSchema;
|
|
281
281
|
vehicleId?: string | null;
|
|
282
|
+
testHistory?: TestResultSchema[];
|
|
283
|
+
testVersion?: string;
|
|
284
|
+
deletionFlag?: boolean;
|
|
282
285
|
}
|
|
283
286
|
export interface TestTypeSchema {
|
|
284
287
|
testTypeName: string | null;
|
|
@@ -58,6 +58,9 @@ export interface TestResultSchema {
|
|
|
58
58
|
model?: string | null;
|
|
59
59
|
bodyType?: BodyTypeSchema;
|
|
60
60
|
vehicleId?: string | null;
|
|
61
|
+
testHistory?: TestResultSchema[];
|
|
62
|
+
testVersion?: string;
|
|
63
|
+
deletionFlag?: boolean;
|
|
61
64
|
}
|
|
62
65
|
export interface VehicleClassSchema {
|
|
63
66
|
code: string;
|
|
@@ -271,6 +271,9 @@ export interface TestResultSchema {
|
|
|
271
271
|
model?: string | null;
|
|
272
272
|
bodyType?: BodyTypeSchema;
|
|
273
273
|
vehicleId?: string | null;
|
|
274
|
+
testHistory?: TestResultSchema[];
|
|
275
|
+
testVersion?: string;
|
|
276
|
+
deletionFlag?: boolean;
|
|
274
277
|
}
|
|
275
278
|
export interface TestTypeSchema {
|
|
276
279
|
testTypeName: string | null;
|
|
@@ -292,6 +292,9 @@ export interface TestResultSchema {
|
|
|
292
292
|
model?: string | null;
|
|
293
293
|
bodyType?: BodyTypeSchema;
|
|
294
294
|
vehicleId?: string | null;
|
|
295
|
+
testHistory?: TestResultSchema[];
|
|
296
|
+
testVersion?: string;
|
|
297
|
+
deletionFlag?: boolean;
|
|
295
298
|
}
|
|
296
299
|
export interface TestTypeSchema {
|
|
297
300
|
testTypeName: string | null;
|