From be370a4f997026a52ea5b67a7f3269309d0b78d7 Mon Sep 17 00:00:00 2001 From: Gaetan Wcz <33718051+GaetanWi@users.noreply.github.com> Date: Wed, 13 Jun 2018 20:04:32 +0200 Subject: [PATCH] fix(healths): add missing attribute on HealthQueryOptionsAggregated (#2550) --- src/@ionic-native/plugins/health/index.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/@ionic-native/plugins/health/index.ts b/src/@ionic-native/plugins/health/index.ts index 85b09fe97..62da3e1c8 100644 --- a/src/@ionic-native/plugins/health/index.ts +++ b/src/@ionic-native/plugins/health/index.ts @@ -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; } /**