Breaking change on `get_sections()` for adding the state of a section.
Before it would return a list of sections, it will not return a dictionary with the following keys `['service-states', 'states', 'sections']` in order to get to the old behavior you need to select the key `"sections"`.
Example output:
python
{
'service-states':
{
'events': [
{
'type': 'TROUBLE',
'message': 'Fault - Periphery',
'date': '2022-11-27T23:55:34+0100'
}],
'last-event-time': '2023-01-04T20:01:05+0100',
'service-name': 'Name'
},
'states': [
{
'cloud-component-id': 'SEC-12345678',
'state': 'DISARM'
}],
'sections': [
{
'cloud-component-id': 'SEC-12345678',
'name': 'Name',
'can-control': True,
'need-authorization': True,
'partial-arm-enabled': False
}]
}