@careevolution/mydatahelps-js 3.11.1 → 3.12.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 +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@careevolution/mydatahelps-js",
3
- "version": "3.11.1",
3
+ "version": "3.12.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
@@ -1,7 +1,7 @@
1
1
  export declare type SurveyTaskStatus = "incomplete" | "closed" | "complete";
2
2
  export declare type SortOrder = "descending" | "ascending";
3
3
  export declare type EventName = "applicationDidBecomeVisible" | "surveyDidFinish" | "externalAccountSyncComplete" | "tokenWillExpire";
4
- export declare type DeviceDataNamespace = "Project" | "Fitbit" | "AppleHealth" | "GoogleFit" | "AirNowApi" | "WeatherBit" | "Garmin";
4
+ export declare type DeviceDataNamespace = "Project" | "Fitbit" | "AppleHealth" | "GoogleFit" | "AirNowApi" | "WeatherBit" | "Garmin" | "Omron";
5
5
  export declare type ExternalAccountStatus = "unauthorized" | "fetchComplete" | "error" | "fetchingData";
6
6
  export declare type NotificationType = "Sms" | "Push" | "Email";
7
7
  export declare type NotificationStatusCode = "Succeeded" | "Unsubscribed" | "MissingContactInfo" | "NoRegisteredMobileDevice" | "NoAssociatedUser" | "ServiceError";
@@ -142,7 +142,7 @@ export interface Notification {
142
142
  };
143
143
  }
144
144
  export interface SurveyTaskQueryParameters extends QueryParameters {
145
- status?: SurveyTaskStatus;
145
+ status?: SurveyTaskStatus | SurveyTaskStatus[];
146
146
  surveyID?: Guid;
147
147
  surveyName?: string | string[];
148
148
  linkIdentifier?: string;
@@ -221,7 +221,7 @@ export interface InboxItemsPage {
221
221
  export interface CustomEventInfo {
222
222
  eventType: string;
223
223
  properties: {
224
- [key: string]: object;
224
+ [key: string]: any;
225
225
  };
226
226
  }
227
227
  export interface DeviceDataPointsPage {