Skip to content

Commit

Permalink
patch(*): add update type to motorcycle complete (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
gjulien-bjss authored Jul 20, 2023
1 parent fd35550 commit d2122d4
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,12 @@
},
"numberOfWheelsDriven": {
"type": "integer"
},
"techRecord_hiddenInVta": {
"type": "boolean"
},
"techRecord_updateType": {
"type": "string"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,12 @@
},
"numberOfWheelsDriven": {
"type": "integer"
},
"techRecord_hiddenInVta": {
"type": "boolean"
},
"techRecord_updateType": {
"type": "string"
}
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dvsa/cvs-type-definitions",
"version": "2.0.20",
"version": "2.0.21",
"description": "type definitions for cvs vta application",
"main": "index.js",
"repository": {
Expand Down
2 changes: 2 additions & 0 deletions types/v3/tech-record/get/motorcycle/complete/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,6 @@ export interface TechRecordCompleteMotorcycleSchema {
vin: string;
vehicleSubclass: VehicleSubclass;
numberOfWheelsDriven?: number;
techRecord_hiddenInVta?: boolean;
techRecord_updateType?: string;
}

0 comments on commit d2122d4

Please sign in to comment.