@careevolution/mydatahelps-js 5.6.0 → 5.7.0

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@careevolution/mydatahelps-js",
3
- "version": "5.6.0",
3
+ "version": "5.7.0",
4
4
  "description": "MyDataHelps client to be used by external applications for integrations inside the MyDataHelps platform",
5
5
  "type": "module",
6
6
  "types": "MyDataHelps.d.ts",
package/types.d.ts CHANGED
@@ -2,7 +2,7 @@ export type SurveyTaskStatus = "incomplete" | "closed" | "complete";
2
2
  export type SortOrder = "descending" | "ascending";
3
3
  export type EventName = "applicationDidBecomeVisible" | "surveyDidFinish" | "externalAccountSyncComplete" | "tokenWillExpire" | "healthConnectSyncComplete" | "healthConnectPhrSyncComplete";
4
4
  export type DeviceDataNamespace = "Project" | "Fitbit" | "AppleHealth" | "GoogleFit" | "AirNowApi" | "WeatherBit" | "Garmin" | "Omron";
5
- export type DeviceDataV2Namespace = "Fitbit" | "AppleHealth" | "Garmin" | "Dexcom" | "HealthConnect" | "Oura";
5
+ export type DeviceDataV2Namespace = "Fitbit" | "AppleHealth" | "Garmin" | "Dexcom" | "HealthConnect" | "Oura" | "GoogleHealth";
6
6
  export type DeviceDataV2AggregateIntervalType = "Minutes" | "Hours" | "Days" | "Weeks" | "Months";
7
7
  export type ExternalAccountStatus = "unauthorized" | "fetchComplete" | "error" | "fetchingData";
8
8
  export type NotificationType = "Sms" | "Push" | "Email";
@@ -658,6 +658,7 @@ export interface ShowWebVisualizationPdfOptions {
658
658
  }
659
659
  export interface DataCollectionSettings {
660
660
  fitbitEnabled: boolean;
661
+ googleHealthEnabled: boolean;
661
662
  ehrEnabled: boolean;
662
663
  garminEnabled: boolean;
663
664
  dexcomEnabled: boolean;