Releases: monkvision/monkjs
Releases · monkvision/monkjs
v4.3.0
v4.2.9
v4.2.8
v4.2.7
v4.2.6
✨ New Features
- Added
onPictureTaken
callback to thePhotoCapture
component
v4.2.5
v4.2.4
v4.2.2
✨ New Features
- Added the
serie
field to theVehicle
interface
v4.2.1
🐞 Bug Fixes
- Removed invalid properties from the
vehicle
field in theCreateInspectionOptions
interface
v4.2.0
✨ New Features
- Allow users to specify vehicle details and additional data when creating a new inspection using the
createInspection
request
❗ Breaking Changes
CreateInspectionOptions
interface update
ThevehicleType
field is now moved tovehicle.type
:
// OLD
interface CreateInspectionOptions {
...
vehicleType?: VehicleType;
...
};
// NEW
interface CreateInspectionOptions {
...
vehicle?: Omit<Vehicle, 'id' | 'entityType' | 'inspectionId'>;
...
};