gitextract_pg2eyhpl/ ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── codeql.yml │ ├── hacs.yaml │ ├── hassfest.yaml │ ├── lint.yaml │ ├── o365release.yaml │ └── stale.yaml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── custom_components/ │ └── o365/ │ ├── __init__.py │ ├── calendar.py │ ├── classes/ │ │ ├── __init__.py │ │ ├── entity.py │ │ ├── mailsensor.py │ │ ├── permissions.py │ │ └── teamssensor.py │ ├── const.py │ ├── helpers/ │ │ ├── __init__.py │ │ ├── coordinator.py │ │ ├── migration.py │ │ └── setup.py │ ├── icons.json │ ├── manifest.json │ ├── notify.py │ ├── repairs.py │ ├── schema.py │ ├── sensor.py │ ├── services.yaml │ ├── strings.json │ ├── todo.py │ ├── translations/ │ │ ├── en.json │ │ └── sk.json │ └── utils/ │ ├── __init__.py │ ├── calendar_utils.py │ ├── filemgmt.py │ └── utils.py ├── docs/ │ ├── _config.yml │ ├── authentication.md │ ├── calendar_configuration.md │ ├── calendar_panel.md │ ├── errors.md │ ├── events.md │ ├── index.md │ ├── installation_and_configuration.md │ ├── migration.md │ ├── permissions.md │ ├── prerequisites.md │ ├── sensor.md │ ├── services.md │ ├── todo.md │ ├── todos_configuration.md │ └── token.md ├── hacs.json ├── requirements.txt └── requirements_release.txt