Nest Hello Automation

I’ve had a nest hello working with my home assistant setup for over a year now. I have only recently decided to automate the front door light. I am trying to get the light to turn on when a person is detected at the door, before sunrise but after sunset, for one minute.

I can see the stream in HA and the nest app on my phone shows a person is detected at the door, but the light doesn’t turn on! Is there a way to see if the nest integration is receiving the person alert, as I can’t seem to find it anywhere?

  alias: Front Door Light
  description: ''
  trigger:
  - platform: device
    device_id: 472218ed9a5979dc8369eb070ca2f321
    domain: nest
    type: camera_person
  condition:
  - condition: sun
    before: sunrise
    after: sunset
  action:
  - type: turn_on
    device_id: ad6b15e821a0e27e6541e4d13cceb10e
    entity_id: switch.front_door
    domain: switch
  - delay:
      hours: 0
      minutes: 1
      seconds: 0
      milliseconds: 0
  - type: turn_off
    device_id: ad6b15e821a0e27e6541e4d13cceb10e
    entity_id: switch.front_door
    domain: switch
  mode: single