gitextract_fszsclw1/ ├── .devcontainer.json ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ └── config.yml │ ├── dependabot.yaml │ └── workflows/ │ ├── HACS_validate.yaml │ ├── hassfest.yaml │ └── publish.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .yamllint.yaml ├── CLAUDE.md ├── LICENSE ├── README.md ├── SECURITY.md ├── custom_components/ │ └── mbapi2020/ │ ├── __init__.py │ ├── binary_sensor.py │ ├── button.py │ ├── car.py │ ├── client.py │ ├── config_flow.py │ ├── const.py │ ├── coordinator.py │ ├── device_tracker.py │ ├── diagnostics.py │ ├── errors.py │ ├── helper.py │ ├── icons.json │ ├── lock.py │ ├── manifest.json │ ├── oauth.py │ ├── proto/ │ │ ├── acp_pb2.py │ │ ├── client_pb2.py │ │ ├── cluster_pb2.py │ │ ├── eventpush_pb2.py │ │ ├── gogo_pb2.py │ │ ├── protos_pb2.py │ │ ├── service_activation_pb2.py │ │ ├── user_events_pb2.py │ │ ├── vehicle_commands_pb2.py │ │ ├── vehicle_events_pb2.py │ │ ├── vehicleapi_pb2.py │ │ └── vin_events_pb2.py │ ├── repairs.py │ ├── sensor.py │ ├── services.py │ ├── services.yaml │ ├── switch.py │ ├── system_health.py │ ├── translations/ │ │ ├── cs.json │ │ ├── da.json │ │ ├── de.json │ │ ├── en.json │ │ ├── es.json │ │ ├── fi.json │ │ ├── fr.json │ │ ├── he.json │ │ ├── it.json │ │ ├── nb_NO.json │ │ ├── nl.json │ │ ├── pl.json │ │ ├── pt.json │ │ ├── sv.json │ │ └── ta.json │ ├── webapi.py │ └── websocket.py ├── hacs.json ├── mypi.ini ├── pyproject.toml ├── requirements.txt ├── scripts/ │ ├── burp-redirector.py │ ├── https-bff.py │ ├── https-ws-case-429.py │ └── setup └── token-requester/ ├── macOS/ │ ├── .gitignore │ └── MBAPI2020 Token Helper/ │ ├── MBAPI2020 Token Helper/ │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AccentColor.colorset/ │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ └── Main.storyboard │ │ ├── MBAPI2020_Token_Helper.entitlements │ │ └── ViewController.swift │ ├── MBAPI2020 Token Helper.xcodeproj/ │ │ ├── project.pbxproj │ │ └── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── MBAPI2020-Token-Helper-Info.plist └── net-core/ └── mb-token-requester/ ├── CallbackManager.cs ├── DesktopEntryHandler.cs ├── Program.cs ├── RegistryConfig.cs ├── appsettings.json ├── callback.bat ├── mb-shortcut-handler.desktop ├── mb-token-requester.csproj └── mb-token-requester.sln