fix(healths): add missing attribute on HealthQueryOptionsAggregated (#2550)

This commit is contained in:
Gaetan Wcz 2018-06-13 20:04:32 +02:00 committed by Daniel Sogl
parent bb9c581f42
commit be370a4f99

View File

@ -76,6 +76,12 @@ export interface HealthQueryOptionsAggregated {
* supported values are: 'hour', 'day', 'week', 'month', 'year'.
*/
bucket: string;
/**
* In Android, it is possible to query for "raw" steps or to select those as filtered by the Google Fit app.
* In the latter case the query object must contain the field filtered: true.
*/
filtered?: boolean;
}
/**