@dvsa/cvs-type-definitions 7.13.2 → 8.1.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/enums/vehicleType.enum.json +20 -0
- package/json-schemas/v3/tech-record/enums/vehicleConfiguration.enum.json +32 -0
- package/json-schemas/v3/tech-record/enums/vehicleSize.enum.json +12 -0
- package/json-schemas/v3/tech-record/get/motorcycle/complete/index.json +3 -5
- package/json-schemas/v3/tech-record/put/motorcycle/complete/index.json +3 -5
- package/package.json +2 -2
- package/schemas.d.ts +1 -1
- package/schemas.js +3 -0
- package/types/v1/enums/vehicleType.enum.d.ts +13 -0
- package/types/v1/enums/vehicleType.enum.js +18 -0
- package/types/v1/enums/vehicleType.enum.ts +15 -0
- package/types/v3/tech-record/enums/vehicleConfiguration.enum.d.ts +19 -0
- package/types/v3/tech-record/enums/vehicleConfiguration.enum.js +24 -0
- package/types/v3/tech-record/enums/vehicleConfiguration.enum.ts +21 -0
- package/types/v3/tech-record/enums/vehicleSize.enum.d.ts +9 -0
- package/types/v3/tech-record/enums/vehicleSize.enum.js +14 -0
- package/types/v3/tech-record/enums/vehicleSize.enum.ts +11 -0
- package/types/v3/tech-record/get/motorcycle/complete/index.d.ts +1 -1
- package/types/v3/tech-record/put/motorcycle/complete/index.d.ts +1 -1
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Vehicle Configuration",
|
|
3
|
+
"type": "string",
|
|
4
|
+
"tsEnumNames": [
|
|
5
|
+
"RIGID",
|
|
6
|
+
"ARTICULATED",
|
|
7
|
+
"CENTRE_AXLE_DRAWBAR",
|
|
8
|
+
"SEMI_CAR_TRANSPORTER",
|
|
9
|
+
"SEMI_TRAILER",
|
|
10
|
+
"LONG_SEMI_TRAILER",
|
|
11
|
+
"LOW_LOADER",
|
|
12
|
+
"OTHER",
|
|
13
|
+
"DRAWBAR",
|
|
14
|
+
"FOUR_IN_LINE",
|
|
15
|
+
"DOLLY",
|
|
16
|
+
"FULL_DRAWBAR"
|
|
17
|
+
],
|
|
18
|
+
"enum": [
|
|
19
|
+
"rigid",
|
|
20
|
+
"articulated",
|
|
21
|
+
"centre axle drawbar",
|
|
22
|
+
"semi-car transporter",
|
|
23
|
+
"semi-trailer",
|
|
24
|
+
"long semi-trailer",
|
|
25
|
+
"low loader",
|
|
26
|
+
"other",
|
|
27
|
+
"drawbar",
|
|
28
|
+
"four-in-line",
|
|
29
|
+
"dolly",
|
|
30
|
+
"full drawbar"
|
|
31
|
+
]
|
|
32
|
+
}
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"createdTimestamp",
|
|
17
17
|
"partialVin",
|
|
18
18
|
"vin",
|
|
19
|
-
"techRecord_vehicleConfiguration"
|
|
19
|
+
"techRecord_vehicleConfiguration",
|
|
20
|
+
"techRecord_noOfAxles"
|
|
20
21
|
],
|
|
21
22
|
"properties": {
|
|
22
23
|
"secondaryVrms": {
|
|
@@ -195,10 +196,7 @@
|
|
|
195
196
|
]
|
|
196
197
|
},
|
|
197
198
|
"techRecord_noOfAxles": {
|
|
198
|
-
"type":
|
|
199
|
-
"null",
|
|
200
|
-
"integer"
|
|
201
|
-
]
|
|
199
|
+
"type": "integer"
|
|
202
200
|
},
|
|
203
201
|
"techRecord_notes": {
|
|
204
202
|
"type": [
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
"techRecord_vehicleType",
|
|
10
10
|
"techRecord_statusCode",
|
|
11
11
|
"techRecord_vehicleConfiguration",
|
|
12
|
-
"vin"
|
|
12
|
+
"vin",
|
|
13
|
+
"techRecord_noOfAxles"
|
|
13
14
|
],
|
|
14
15
|
"properties": {
|
|
15
16
|
"secondaryVrms": {
|
|
@@ -159,10 +160,7 @@
|
|
|
159
160
|
]
|
|
160
161
|
},
|
|
161
162
|
"techRecord_noOfAxles": {
|
|
162
|
-
"type":
|
|
163
|
-
"null",
|
|
164
|
-
"integer"
|
|
165
|
-
]
|
|
163
|
+
"type": "integer"
|
|
166
164
|
},
|
|
167
165
|
"techRecord_notes": {
|
|
168
166
|
"type": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dvsa/cvs-type-definitions",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.1.0",
|
|
4
4
|
"description": "type definitions for cvs vta and vtm applications",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"json-schema-to-typescript": "^11.0.2",
|
|
22
22
|
"ts-jest": "^29.1.0",
|
|
23
23
|
"ts-node": "^10.9.1",
|
|
24
|
-
"tsconfig-paths": "^4.
|
|
24
|
+
"tsconfig-paths": "^4.2.0",
|
|
25
25
|
"typescript": "^4.8.4"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
package/schemas.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const schemas: readonly ["required-standards/defects/enums/euVehicleCategory.enum.json", "required-standards/defects/get/index.json", "required-standards/defects/requiredStandardTaxonomySection.json", "v1/activity/index.json", "v1/defect-category-reference-data/index.json", "v1/defect-details/index.json", "v1/defect-location/index.json", "v1/enums/activityType.enum.json", "v1/enums/emissionStandard.enum.json", "v1/enums/fuelType.enum.json", "v1/enums/odometerReadingUnits.enum.json", "v1/enums/sources.enum.json", "v1/enums/testResult.enum.json", "v1/enums/testStationType.enum.json", "v1/enums/testStatus.enum.json", "v1/enums/typeOfTest.enum.json", "v1/enums/waitReason.enum.json", "v1/reason-item/index.json", "v1/recalls/index.json", "v1/tech-record/index.json", "v1/test/index.json", "v1/test-result/index.json", "v1/test-station/index.json", "v1/test-type/index.json", "v1/vehicle/index.json", "v1/vehicle-tech-record/index.json", "v1/visit/index.json", "v3/tech-record/enums/adrAdditionalNotesNumber.enum.json", "v3/tech-record/enums/adrBodyDeclarationType.enum.json", "v3/tech-record/enums/adrBodyType.enum.json", "v3/tech-record/enums/adrCertificateTypes.enum.json", "v3/tech-record/enums/adrCompatibilityGroupJ.enum.json", "v3/tech-record/enums/adrDangerousGood.enum.json", "v3/tech-record/enums/adrTankDetailsTankStatementSelect.enum.json", "v3/tech-record/enums/adrTankStatementSubstancePermitted.json", "v3/tech-record/enums/approvalType.enum.json", "v3/tech-record/enums/approvalTypeHgvOrPsv.enum.json", "v3/tech-record/enums/euVehicleCategory.enum.json", "v3/tech-record/enums/euVehicleCategoryCar.enum.json", "v3/tech-record/enums/euVehicleCategoryHgv.enum.json", "v3/tech-record/enums/euVehicleCategoryLgv.enum.json", "v3/tech-record/enums/euVehicleCategoryPsv.enum.json", "v3/tech-record/enums/euVehicleCategorySmallTrl.enum.json", "v3/tech-record/enums/euVehicleCategoryTrl.enum.json", "v3/tech-record/enums/radioButtonOptions.enum.json", "v3/tech-record/enums/tc3Types.enum.json", "v3/tech-record/enums/tyreUseCodeHgv.enum.json", "v3/tech-record/enums/tyreUseCodeTrl.enum.json", "v3/tech-record/enums/vehicleClassDescription.enum.json", "v3/tech-record/enums/vehicleClassDescriptionPSV.enum.json", "v3/tech-record/enums/vehicleConfigurationHgvPsv.enum.json", "v3/tech-record/enums/vehicleConfigurationLightVehicle.enum.json", "v3/tech-record/enums/vehicleConfigurationTrl.enum.json", "v3/tech-record/get/car/complete/index.json", "v3/tech-record/get/car/skeleton/index.json", "v3/tech-record/get/hgv/complete/index.json", "v3/tech-record/get/hgv/skeleton/index.json", "v3/tech-record/get/hgv/testable/index.json", "v3/tech-record/get/lgv/complete/index.json", "v3/tech-record/get/lgv/skeleton/index.json", "v3/tech-record/get/motorcycle/complete/index.json", "v3/tech-record/get/motorcycle/skeleton/index.json", "v3/tech-record/get/psv/complete/index.json", "v3/tech-record/get/psv/skeleton/index.json", "v3/tech-record/get/psv/testable/index.json", "v3/tech-record/get/search/index.json", "v3/tech-record/get/small trl/complete/index.json", "v3/tech-record/get/small trl/skeleton/index.json", "v3/tech-record/get/trl/complete/index.json", "v3/tech-record/get/trl/skeleton/index.json", "v3/tech-record/get/trl/testable/index.json", "v3/tech-record/put/car/complete/index.json", "v3/tech-record/put/car/skeleton/index.json", "v3/tech-record/put/hgv/complete/index.json", "v3/tech-record/put/hgv/skeleton/index.json", "v3/tech-record/put/hgv/testable/index.json", "v3/tech-record/put/lgv/complete/index.json", "v3/tech-record/put/lgv/skeleton/index.json", "v3/tech-record/put/motorcycle/complete/index.json", "v3/tech-record/put/motorcycle/skeleton/index.json", "v3/tech-record/put/psv/complete/index.json", "v3/tech-record/put/psv/skeleton/index.json", "v3/tech-record/put/psv/testable/index.json", "v3/tech-record/put/small trl/complete/index.json", "v3/tech-record/put/small trl/skeleton/index.json", "v3/tech-record/put/trl/complete/index.json", "v3/tech-record/put/trl/skeleton/index.json", "v3/tech-record/put/trl/testable/index.json"];
|
|
1
|
+
export declare const schemas: readonly ["required-standards/defects/enums/euVehicleCategory.enum.json", "required-standards/defects/get/index.json", "required-standards/defects/requiredStandardTaxonomySection.json", "v1/activity/index.json", "v1/defect-category-reference-data/index.json", "v1/defect-details/index.json", "v1/defect-location/index.json", "v1/enums/activityType.enum.json", "v1/enums/emissionStandard.enum.json", "v1/enums/fuelType.enum.json", "v1/enums/odometerReadingUnits.enum.json", "v1/enums/sources.enum.json", "v1/enums/testResult.enum.json", "v1/enums/testStationType.enum.json", "v1/enums/testStatus.enum.json", "v1/enums/typeOfTest.enum.json", "v1/enums/vehicleType.enum.json", "v1/enums/waitReason.enum.json", "v1/reason-item/index.json", "v1/recalls/index.json", "v1/tech-record/index.json", "v1/test/index.json", "v1/test-result/index.json", "v1/test-station/index.json", "v1/test-type/index.json", "v1/vehicle/index.json", "v1/vehicle-tech-record/index.json", "v1/visit/index.json", "v3/tech-record/enums/adrAdditionalNotesNumber.enum.json", "v3/tech-record/enums/adrBodyDeclarationType.enum.json", "v3/tech-record/enums/adrBodyType.enum.json", "v3/tech-record/enums/adrCertificateTypes.enum.json", "v3/tech-record/enums/adrCompatibilityGroupJ.enum.json", "v3/tech-record/enums/adrDangerousGood.enum.json", "v3/tech-record/enums/adrTankDetailsTankStatementSelect.enum.json", "v3/tech-record/enums/adrTankStatementSubstancePermitted.json", "v3/tech-record/enums/approvalType.enum.json", "v3/tech-record/enums/approvalTypeHgvOrPsv.enum.json", "v3/tech-record/enums/euVehicleCategory.enum.json", "v3/tech-record/enums/euVehicleCategoryCar.enum.json", "v3/tech-record/enums/euVehicleCategoryHgv.enum.json", "v3/tech-record/enums/euVehicleCategoryLgv.enum.json", "v3/tech-record/enums/euVehicleCategoryPsv.enum.json", "v3/tech-record/enums/euVehicleCategorySmallTrl.enum.json", "v3/tech-record/enums/euVehicleCategoryTrl.enum.json", "v3/tech-record/enums/radioButtonOptions.enum.json", "v3/tech-record/enums/tc3Types.enum.json", "v3/tech-record/enums/tyreUseCodeHgv.enum.json", "v3/tech-record/enums/tyreUseCodeTrl.enum.json", "v3/tech-record/enums/vehicleClassDescription.enum.json", "v3/tech-record/enums/vehicleClassDescriptionPSV.enum.json", "v3/tech-record/enums/vehicleConfiguration.enum.json", "v3/tech-record/enums/vehicleConfigurationHgvPsv.enum.json", "v3/tech-record/enums/vehicleConfigurationLightVehicle.enum.json", "v3/tech-record/enums/vehicleConfigurationTrl.enum.json", "v3/tech-record/enums/vehicleSize.enum.json", "v3/tech-record/get/car/complete/index.json", "v3/tech-record/get/car/skeleton/index.json", "v3/tech-record/get/hgv/complete/index.json", "v3/tech-record/get/hgv/skeleton/index.json", "v3/tech-record/get/hgv/testable/index.json", "v3/tech-record/get/lgv/complete/index.json", "v3/tech-record/get/lgv/skeleton/index.json", "v3/tech-record/get/motorcycle/complete/index.json", "v3/tech-record/get/motorcycle/skeleton/index.json", "v3/tech-record/get/psv/complete/index.json", "v3/tech-record/get/psv/skeleton/index.json", "v3/tech-record/get/psv/testable/index.json", "v3/tech-record/get/search/index.json", "v3/tech-record/get/small trl/complete/index.json", "v3/tech-record/get/small trl/skeleton/index.json", "v3/tech-record/get/trl/complete/index.json", "v3/tech-record/get/trl/skeleton/index.json", "v3/tech-record/get/trl/testable/index.json", "v3/tech-record/put/car/complete/index.json", "v3/tech-record/put/car/skeleton/index.json", "v3/tech-record/put/hgv/complete/index.json", "v3/tech-record/put/hgv/skeleton/index.json", "v3/tech-record/put/hgv/testable/index.json", "v3/tech-record/put/lgv/complete/index.json", "v3/tech-record/put/lgv/skeleton/index.json", "v3/tech-record/put/motorcycle/complete/index.json", "v3/tech-record/put/motorcycle/skeleton/index.json", "v3/tech-record/put/psv/complete/index.json", "v3/tech-record/put/psv/skeleton/index.json", "v3/tech-record/put/psv/testable/index.json", "v3/tech-record/put/small trl/complete/index.json", "v3/tech-record/put/small trl/skeleton/index.json", "v3/tech-record/put/trl/complete/index.json", "v3/tech-record/put/trl/skeleton/index.json", "v3/tech-record/put/trl/testable/index.json"];
|
package/schemas.js
CHANGED
|
@@ -18,6 +18,7 @@ exports.schemas = [
|
|
|
18
18
|
"v1/enums/testStationType.enum.json",
|
|
19
19
|
"v1/enums/testStatus.enum.json",
|
|
20
20
|
"v1/enums/typeOfTest.enum.json",
|
|
21
|
+
"v1/enums/vehicleType.enum.json",
|
|
21
22
|
"v1/enums/waitReason.enum.json",
|
|
22
23
|
"v1/reason-item/index.json",
|
|
23
24
|
"v1/recalls/index.json",
|
|
@@ -52,9 +53,11 @@ exports.schemas = [
|
|
|
52
53
|
"v3/tech-record/enums/tyreUseCodeTrl.enum.json",
|
|
53
54
|
"v3/tech-record/enums/vehicleClassDescription.enum.json",
|
|
54
55
|
"v3/tech-record/enums/vehicleClassDescriptionPSV.enum.json",
|
|
56
|
+
"v3/tech-record/enums/vehicleConfiguration.enum.json",
|
|
55
57
|
"v3/tech-record/enums/vehicleConfigurationHgvPsv.enum.json",
|
|
56
58
|
"v3/tech-record/enums/vehicleConfigurationLightVehicle.enum.json",
|
|
57
59
|
"v3/tech-record/enums/vehicleConfigurationTrl.enum.json",
|
|
60
|
+
"v3/tech-record/enums/vehicleSize.enum.json",
|
|
58
61
|
"v3/tech-record/get/car/complete/index.json",
|
|
59
62
|
"v3/tech-record/get/car/skeleton/index.json",
|
|
60
63
|
"v3/tech-record/get/hgv/complete/index.json",
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was automatically generated by json-schema-to-typescript.
|
|
3
|
+
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
4
|
+
* and run json-schema-to-typescript to regenerate this file.
|
|
5
|
+
*/
|
|
6
|
+
export declare enum VehicleType {
|
|
7
|
+
HGV = "hgv",
|
|
8
|
+
PSV = "psv",
|
|
9
|
+
TRL = "trl",
|
|
10
|
+
LGV = "lgv",
|
|
11
|
+
CAR = "car",
|
|
12
|
+
MOTORCYCLE = "motorcycle"
|
|
13
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
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.VehicleType = void 0;
|
|
10
|
+
var VehicleType;
|
|
11
|
+
(function (VehicleType) {
|
|
12
|
+
VehicleType["HGV"] = "hgv";
|
|
13
|
+
VehicleType["PSV"] = "psv";
|
|
14
|
+
VehicleType["TRL"] = "trl";
|
|
15
|
+
VehicleType["LGV"] = "lgv";
|
|
16
|
+
VehicleType["CAR"] = "car";
|
|
17
|
+
VehicleType["MOTORCYCLE"] = "motorcycle";
|
|
18
|
+
})(VehicleType = exports.VehicleType || (exports.VehicleType = {}));
|
|
@@ -0,0 +1,15 @@
|
|
|
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 VehicleType {
|
|
9
|
+
HGV = "hgv",
|
|
10
|
+
PSV = "psv",
|
|
11
|
+
TRL = "trl",
|
|
12
|
+
LGV = "lgv",
|
|
13
|
+
CAR = "car",
|
|
14
|
+
MOTORCYCLE = "motorcycle"
|
|
15
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was automatically generated by json-schema-to-typescript.
|
|
3
|
+
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
4
|
+
* and run json-schema-to-typescript to regenerate this file.
|
|
5
|
+
*/
|
|
6
|
+
export declare enum VehicleConfiguration {
|
|
7
|
+
RIGID = "rigid",
|
|
8
|
+
ARTICULATED = "articulated",
|
|
9
|
+
CENTRE_AXLE_DRAWBAR = "centre axle drawbar",
|
|
10
|
+
SEMI_CAR_TRANSPORTER = "semi-car transporter",
|
|
11
|
+
SEMI_TRAILER = "semi-trailer",
|
|
12
|
+
LONG_SEMI_TRAILER = "long semi-trailer",
|
|
13
|
+
LOW_LOADER = "low loader",
|
|
14
|
+
OTHER = "other",
|
|
15
|
+
DRAWBAR = "drawbar",
|
|
16
|
+
FOUR_IN_LINE = "four-in-line",
|
|
17
|
+
DOLLY = "dolly",
|
|
18
|
+
FULL_DRAWBAR = "full drawbar"
|
|
19
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
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.VehicleConfiguration = void 0;
|
|
10
|
+
var VehicleConfiguration;
|
|
11
|
+
(function (VehicleConfiguration) {
|
|
12
|
+
VehicleConfiguration["RIGID"] = "rigid";
|
|
13
|
+
VehicleConfiguration["ARTICULATED"] = "articulated";
|
|
14
|
+
VehicleConfiguration["CENTRE_AXLE_DRAWBAR"] = "centre axle drawbar";
|
|
15
|
+
VehicleConfiguration["SEMI_CAR_TRANSPORTER"] = "semi-car transporter";
|
|
16
|
+
VehicleConfiguration["SEMI_TRAILER"] = "semi-trailer";
|
|
17
|
+
VehicleConfiguration["LONG_SEMI_TRAILER"] = "long semi-trailer";
|
|
18
|
+
VehicleConfiguration["LOW_LOADER"] = "low loader";
|
|
19
|
+
VehicleConfiguration["OTHER"] = "other";
|
|
20
|
+
VehicleConfiguration["DRAWBAR"] = "drawbar";
|
|
21
|
+
VehicleConfiguration["FOUR_IN_LINE"] = "four-in-line";
|
|
22
|
+
VehicleConfiguration["DOLLY"] = "dolly";
|
|
23
|
+
VehicleConfiguration["FULL_DRAWBAR"] = "full drawbar";
|
|
24
|
+
})(VehicleConfiguration = exports.VehicleConfiguration || (exports.VehicleConfiguration = {}));
|
|
@@ -0,0 +1,21 @@
|
|
|
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 VehicleConfiguration {
|
|
9
|
+
RIGID = "rigid",
|
|
10
|
+
ARTICULATED = "articulated",
|
|
11
|
+
CENTRE_AXLE_DRAWBAR = "centre axle drawbar",
|
|
12
|
+
SEMI_CAR_TRANSPORTER = "semi-car transporter",
|
|
13
|
+
SEMI_TRAILER = "semi-trailer",
|
|
14
|
+
LONG_SEMI_TRAILER = "long semi-trailer",
|
|
15
|
+
LOW_LOADER = "low loader",
|
|
16
|
+
OTHER = "other",
|
|
17
|
+
DRAWBAR = "drawbar",
|
|
18
|
+
FOUR_IN_LINE = "four-in-line",
|
|
19
|
+
DOLLY = "dolly",
|
|
20
|
+
FULL_DRAWBAR = "full drawbar"
|
|
21
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was automatically generated by json-schema-to-typescript.
|
|
3
|
+
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
4
|
+
* and run json-schema-to-typescript to regenerate this file.
|
|
5
|
+
*/
|
|
6
|
+
export declare enum VehicleSize {
|
|
7
|
+
LARGE = "large",
|
|
8
|
+
SMALL = "small"
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
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.VehicleSize = void 0;
|
|
10
|
+
var VehicleSize;
|
|
11
|
+
(function (VehicleSize) {
|
|
12
|
+
VehicleSize["LARGE"] = "large";
|
|
13
|
+
VehicleSize["SMALL"] = "small";
|
|
14
|
+
})(VehicleSize = exports.VehicleSize || (exports.VehicleSize = {}));
|
|
@@ -0,0 +1,11 @@
|
|
|
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 VehicleSize {
|
|
9
|
+
LARGE = "large",
|
|
10
|
+
SMALL = "small"
|
|
11
|
+
}
|
|
@@ -30,7 +30,7 @@ export interface TechRecordGETMotorcycleComplete {
|
|
|
30
30
|
techRecord_lastUpdatedByName?: string | null;
|
|
31
31
|
techRecord_manufactureYear?: number | null;
|
|
32
32
|
techRecord_recordCompleteness?: null | string;
|
|
33
|
-
techRecord_noOfAxles
|
|
33
|
+
techRecord_noOfAxles: number;
|
|
34
34
|
techRecord_notes?: null | string;
|
|
35
35
|
techRecord_reasonForCreation: string;
|
|
36
36
|
techRecord_regnDate?: string | null;
|
|
@@ -23,7 +23,7 @@ export interface TechRecordPUTMotorcycleComplete {
|
|
|
23
23
|
techRecord_euVehicleCategory?: null | EUVehicleCategory;
|
|
24
24
|
techRecord_manufactureYear?: number | null;
|
|
25
25
|
techRecord_recordCompleteness?: null | string;
|
|
26
|
-
techRecord_noOfAxles
|
|
26
|
+
techRecord_noOfAxles: number;
|
|
27
27
|
techRecord_notes?: null | string;
|
|
28
28
|
techRecord_reasonForCreation: string;
|
|
29
29
|
techRecord_regnDate?: string | null;
|