@careevolution/mydatahelps-ui 2.2.1-VB3.1 → 2.2.1-VB3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10,8 +10,8 @@ export interface LayoutProps {
10
10
  noGlobalStyles?: boolean;
11
11
  colorScheme?: "light" | "dark" | "auto";
12
12
  /**
13
- * @deprecated
14
- */
13
+ * @deprecated
14
+ */
15
15
  stylesheetPath?: string;
16
16
  }
17
17
  export interface LayoutContext {
@@ -1,3 +1,6 @@
1
+ export declare function sedentaryMinutes(startDate: Date, endDate: Date): Promise<{
2
+ [key: string]: number;
3
+ }>;
1
4
  export declare function totalActiveMinutes(startDate: Date, endDate: Date): Promise<{
2
5
  [key: string]: number;
3
6
  }>;
@@ -8,6 +8,7 @@ export { inBedTime as appleHealthInBedDataProvider } from "./apple-health-sleep"
8
8
  export { default as appleHealthStandTimeDataProvider } from "./apple-health-stand-time";
9
9
  export { default as appleHealthStepsDataProvider } from "./apple-health-steps";
10
10
  export { default as appleHealthWalkingHeartRateAverageDataProvider } from "./apple-health-walking-heart-rate-average";
11
+ export { sedentaryMinutes as fitbitSedentaryMinutesDataProvider } from "./fitbit-activity-minutes";
11
12
  export { totalActiveMinutes as fitbitTotalActiveMinutesDataProvider } from "./fitbit-activity-minutes";
12
13
  export { lightlyActiveMinutes as fitbitLightlyActiveMinutesDataProvider } from "./fitbit-activity-minutes";
13
14
  export { fairlyActiveMinutes as fitbitFairlyActiveMinutesDataProvider } from "./fitbit-activity-minutes";
@@ -1,4 +1,2 @@
1
- declare const _default: {
2
- [key: string]: string;
3
- };
4
- export default _default;
1
+ declare var language: (key: string) => string;
2
+ export default language;
@@ -18,6 +18,7 @@ export declare enum DailyDataType {
18
18
  AppleHealthStandMinutes = "AppleHealthStandMinutes",
19
19
  AppleHealthSteps = "AppleHealthSteps",
20
20
  AppleHealthWalkingHeartRateAverage = "AppleHealthWalkingHeartRateAverage",
21
+ FitbitSedentaryMinutes = "FitbitSedentaryMinutes",
21
22
  FitbitActiveMinutes = "FitbitActiveMinutes",
22
23
  FitbitLightlyActiveMinutes = "FitbitLightlyActiveMinutes",
23
24
  FitbitFairlyActiveMinutes = "FitbitFairlyActiveMinutes",
@@ -1,3 +1,4 @@
1
1
  export * from './components';
2
2
  export * from './hooks';
3
3
  export * from './helpers/query-daily-data';
4
+ export * from './helpers/language';