@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.
- package/package.json +1 -1
- package/types.d.ts +3 -3
package/package.json
CHANGED
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]:
|
|
224
|
+
[key: string]: any;
|
|
225
225
|
};
|
|
226
226
|
}
|
|
227
227
|
export interface DeviceDataPointsPage {
|