@careevolution/mydatahelps-js 3.22.0 → 3.24.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 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -147,6 +147,7 @@ export interface SurveyTaskQueryParameters extends QueryParameters {
|
|
|
147
147
|
status?: SurveyTaskStatus | SurveyTaskStatus[];
|
|
148
148
|
surveyID?: Guid;
|
|
149
149
|
surveyName?: string | string[];
|
|
150
|
+
surveyCategory?: string;
|
|
150
151
|
linkIdentifier?: string;
|
|
151
152
|
sortOrder?: SortOrder;
|
|
152
153
|
}
|
|
@@ -159,6 +160,7 @@ export interface SurveyTask {
|
|
|
159
160
|
linkIdentifier: string;
|
|
160
161
|
surveyID: Guid;
|
|
161
162
|
surveyName: string;
|
|
163
|
+
surveyCategory?: string;
|
|
162
164
|
surveyDisplayName?: string;
|
|
163
165
|
surveyDescription?: string;
|
|
164
166
|
startDate?: string;
|
|
@@ -582,6 +584,7 @@ export interface DataCollectionSettings {
|
|
|
582
584
|
fitbitEnabled: boolean;
|
|
583
585
|
ehrEnabled: boolean;
|
|
584
586
|
garminEnabled: boolean;
|
|
587
|
+
dexcomEnabled: boolean;
|
|
585
588
|
airQualityEnabled: boolean;
|
|
586
589
|
weatherEnabled: boolean;
|
|
587
590
|
queryableDeviceDataTypes: QueryableDeviceDataType[];
|