Xiaomi Aqara "new" tilt/shock/vibration sensor not showing up on hass.io

Yup! Docs say it should be in 0.80 but it isn’t. And it works great for my garage door since I can’t use a reed switch. This is what I did and it works flawlessly.

 - platform: template
sensors:
  garage_door:
    friendly_name: Garage Door
    value_template: '{{ states.sensor.coordination_158d0002a923d5.state.split(",")[0] | int  < 40 }}'
    icon_template: >-
        {%- if states.sensor.coordination_158d0002a923d5.state.split(",")[0] | int < 40 -%}   
        mdi:garage-open
        {%- else -%}
        mdi:garage
        {%- endif -%}

I also notice it exposes an activity sensor which I assume means the greater the number the greater the activity. It also exposes a tilt value which I could have also used I guess to detect the garage door open. But the coordinate sensor seems to provide a big variance so that is what I used.