@careevolution/mydatahelps-js 3.29.0 → 3.30.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": "3.29.0",
3
+ "version": "3.30.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";
5
+ export type DeviceDataV2Namespace = "Fitbit" | "AppleHealth" | "Garmin" | "Dexcom" | "HealthConnect" | "Oura";
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";
@@ -596,6 +596,7 @@ export interface DataCollectionSettings {
596
596
  appleHealthEnabled: boolean;
597
597
  googleFitEnabled: boolean;
598
598
  healthConnectEnabled: boolean;
599
+ ouraEnabled: boolean;
599
600
  }
600
601
  export interface QueryableDeviceDataType {
601
602
  namespace: DeviceDataNamespace;