@careevolution/mydatahelps-ui 2.2.1-VB3.2 → 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.
@@ -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";
@@ -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';
package/dist/index.d.ts CHANGED
@@ -659,6 +659,7 @@ declare enum DailyDataType {
659
659
  AppleHealthStandMinutes = "AppleHealthStandMinutes",
660
660
  AppleHealthSteps = "AppleHealthSteps",
661
661
  AppleHealthWalkingHeartRateAverage = "AppleHealthWalkingHeartRateAverage",
662
+ FitbitSedentaryMinutes = "FitbitSedentaryMinutes",
662
663
  FitbitActiveMinutes = "FitbitActiveMinutes",
663
664
  FitbitLightlyActiveMinutes = "FitbitLightlyActiveMinutes",
664
665
  FitbitFairlyActiveMinutes = "FitbitFairlyActiveMinutes",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@careevolution/mydatahelps-ui",
3
- "version": "2.2.1-VB3.2",
3
+ "version": "2.2.1-VB3.3",
4
4
  "description": "MyDataHelps UI Library",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",