When I make a API request using
auth_client.time_series('sleep', base_date=start_date, end_date=end_date)
, I do not get sleep summary data that contains
'summary': {'stages': {'deep': 84, 'light': 263, 'rem': 104, 'wake': 59},
'totalMinutesAsleep': 463,
'totalSleepRecords': 1,
'totalTimeInBed': 510}}
I was able to get the full sleep data including summary data using just auth_client.sleep() but not using auth_client.time_series('sleep')