The following changes are with this commit
- Add metadata to Add new app & edit app forms in Publisher
- Display metadata in both publisher and store views
- Fix typo in lifecycle component
- Update table when changing the name & categories in apps table in publisher
API endpoint to get all devices which are enrolled between two dates
## Purpose
> Building a new feature which lets users to generate reports according to various parameters.
## Goals
> Get all the devices which enrolled between two dates. Use as a one feature of report generating feature.
## Approach
* Created a new service for reports.
* Added a new method to DeviceDAO to get reports between two dates.
* Called the DeviceDAO in Reports service and called the above method
## Documentation
**New API endpoints** :
* Get all devices between two dates : /reports/devices?from=[date]&to=[date]
* Filter by device status : /reports/devices?status=[status]&from=[date]&to=[date]
* Filter by device ownership : /reports/devices?ownership=[ownership]&from=[date]&to=[date]
Date format : YYYY-MM-DD
See merge request entgra/carbon-device-mgt!237
Permanent delete API modification
## Purpose
> Delete multple devices from one API call.
## Goals
> Avoid invoking the API multiple times to delete a set of devices.
## Approach
> Delete the records of the devices as batch operations in the core level via a DEeviceDAO object and in the plugin level by creating a DeviceManager object for each device type.
## Documentation
> N/A
## Automation tests
- Unit tests
> None
- Integration tests
> None
## Security checks
- Followed secure coding standards? (yes)
- Ran FindSecurityBugs plugin and verified report? (no)
- Confirmed that this PR doesn't commit any keys, passwords, tokens, usernames, or other secrets? (yes)
## Related MRs
> https://gitlab.com/entgra/carbon-device-mgt/merge_requests/198
## Test environment
> N/A
## Learning
> N/A
See merge request entgra/carbon-device-mgt!241