@careevolution/mydatahelps-js 5.4.1 → 5.5.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/MyDataHelps.d.ts +5 -0
- package/MyDataHelps.js +82 -30
- package/MyDataHelps.min.js +1 -1
- package/MyDataHelps.min.js.map +1 -1
- package/package.json +3 -2
package/MyDataHelps.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export declare class MyDataHelps {
|
|
|
6
6
|
language: string;
|
|
7
7
|
token: Model.Token;
|
|
8
8
|
tokenExpires: number;
|
|
9
|
+
private _standaloneModeFinalRedirectPath;
|
|
9
10
|
startSurvey(surveyName: string, options?: Model.StartSurveyOptions): void;
|
|
10
11
|
completeStep(answer: any): void;
|
|
11
12
|
querySurveyAnswers(queryParameters: Model.SurveyAnswersQuery): Promise<Model.SurveyAnswersPage>;
|
|
@@ -65,6 +66,8 @@ export declare class MyDataHelps {
|
|
|
65
66
|
isStandaloneMode(): boolean;
|
|
66
67
|
isEmbeddedMode(): boolean;
|
|
67
68
|
enableStandaloneMode(embeddedMode?: boolean, baseUrl?: string): void;
|
|
69
|
+
get standaloneModeFinalRedirectPath(): string;
|
|
70
|
+
set standaloneModeFinalRedirectPath(path: string);
|
|
68
71
|
setStatusBarStyle(style: Model.StatusBarStyle): void;
|
|
69
72
|
getDeviceInfo(): Promise<Model.DeviceInfo>;
|
|
70
73
|
setSupportedLanguages(languages: string[]): void;
|
|
@@ -109,6 +112,8 @@ export declare class MyDataHelps {
|
|
|
109
112
|
private startDelegatedSurvey;
|
|
110
113
|
private handleConnectExternalAccountResponse;
|
|
111
114
|
private hasEmbeddedModeUrlParameter;
|
|
115
|
+
private static generateVerifier;
|
|
116
|
+
private static hashVerifier;
|
|
112
117
|
}
|
|
113
118
|
declare const mdh: MyDataHelps;
|
|
114
119
|
export default mdh;
|
package/MyDataHelps.js
CHANGED
|
@@ -662,8 +662,8 @@ class MyDataHelps {
|
|
|
662
662
|
}
|
|
663
663
|
};
|
|
664
664
|
if (this.standaloneMode) {
|
|
665
|
-
let standaloneModeFinalRedirectPath = options?.standaloneModeFinalRedirectPath || window.location.href;
|
|
666
665
|
const mdh = this;
|
|
666
|
+
let standaloneModeFinalRedirectPath = options?.standaloneModeFinalRedirectPath || mdh.standaloneModeFinalRedirectPath || window.location.href;
|
|
667
667
|
// DEV: Safari blocks popups in AJAX responses. Work-around is to open a blank window before the request and set the URL later
|
|
668
668
|
let providerAuthWindow;
|
|
669
669
|
if (options?.openNewWindow) {
|
|
@@ -676,32 +676,41 @@ class MyDataHelps {
|
|
|
676
676
|
const x = window.outerWidth / 2 + window.screenX - (w / 2);
|
|
677
677
|
windowFeatures = "width=" + w + ",height=" + h + ",top=" + y + ",left=" + x;
|
|
678
678
|
}
|
|
679
|
-
providerAuthWindow = window.open(
|
|
679
|
+
providerAuthWindow = window.open("", 'providerauth', windowFeatures);
|
|
680
|
+
providerAuthWindow.document.open();
|
|
681
|
+
providerAuthWindow.document.write(`<!DOCTYPE html><html><head><title>Loading</title><link href="${this.baseUrl}Content/Loading.css" rel="stylesheet"/></head><body><div id="fragment-redirect-content"></div></body></html>`);
|
|
682
|
+
providerAuthWindow.document.close();
|
|
680
683
|
}
|
|
681
|
-
const
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
.
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
684
|
+
const verifier = MyDataHelps.generateVerifier();
|
|
685
|
+
MyDataHelps.hashVerifier(verifier).then(verifierHash => {
|
|
686
|
+
const searchParameters = { finalRedirectPath: standaloneModeFinalRedirectPath, verifierHash: verifierHash };
|
|
687
|
+
const queryString = new URLSearchParams(searchParameters).toString();
|
|
688
|
+
const endpoint = "externalaccountproviders/" + externalAccountProviderID + "/connect?" + queryString;
|
|
689
|
+
this.connect()
|
|
690
|
+
.then(function () {
|
|
691
|
+
return mdh.makeRequest(endpoint, 'POST', null);
|
|
692
|
+
})
|
|
693
|
+
.then(function (response) {
|
|
694
|
+
return MyDataHelps.validateResponse(response);
|
|
695
|
+
})
|
|
696
|
+
.then(function (response) {
|
|
697
|
+
return response.text();
|
|
698
|
+
})
|
|
699
|
+
.then(function (redirectUrl) {
|
|
700
|
+
const url = new URL(redirectUrl.replace(/['"]+/g, ''));
|
|
701
|
+
const searchParams = new URLSearchParams();
|
|
702
|
+
searchParams.set('verifier', verifier);
|
|
703
|
+
redirectUrl = `${url}#${searchParams}`;
|
|
704
|
+
if (providerAuthWindow) {
|
|
705
|
+
providerAuthWindow.location = redirectUrl;
|
|
706
|
+
}
|
|
707
|
+
else {
|
|
708
|
+
window.top.location = redirectUrl;
|
|
709
|
+
}
|
|
710
|
+
})
|
|
711
|
+
.catch(function (error) {
|
|
712
|
+
reject(error);
|
|
713
|
+
});
|
|
705
714
|
});
|
|
706
715
|
}
|
|
707
716
|
else if (window.webkit.messageHandlers.ConnectExternalAccount) {
|
|
@@ -1067,6 +1076,12 @@ class MyDataHelps {
|
|
|
1067
1076
|
} : {};
|
|
1068
1077
|
}
|
|
1069
1078
|
}
|
|
1079
|
+
get standaloneModeFinalRedirectPath() {
|
|
1080
|
+
return this._standaloneModeFinalRedirectPath;
|
|
1081
|
+
}
|
|
1082
|
+
set standaloneModeFinalRedirectPath(path) {
|
|
1083
|
+
this._standaloneModeFinalRedirectPath = path;
|
|
1084
|
+
}
|
|
1070
1085
|
setStatusBarStyle(style) {
|
|
1071
1086
|
if (window.webkit.messageHandlers.SetStatusBarStyle) {
|
|
1072
1087
|
window.webkit.messageHandlers.SetStatusBarStyle.postMessage({ style: style });
|
|
@@ -1743,12 +1758,20 @@ class MyDataHelps {
|
|
|
1743
1758
|
}
|
|
1744
1759
|
handleConnectExternalAccountResponse() {
|
|
1745
1760
|
const params = new URLSearchParams(window.location.search);
|
|
1746
|
-
if (
|
|
1747
|
-
|
|
1761
|
+
if (params.get('connectExternalAccount') && params.get('messageID') && params.get('success')) {
|
|
1762
|
+
const message = {
|
|
1748
1763
|
name: 'ConnectExternalAccountResponse',
|
|
1749
1764
|
messageID: parseInt(params.get('messageID')),
|
|
1750
1765
|
success: params.get('success') === 'true'
|
|
1751
|
-
}
|
|
1766
|
+
};
|
|
1767
|
+
if (window.opener) {
|
|
1768
|
+
window.opener.postMessage(message, window.location.origin);
|
|
1769
|
+
}
|
|
1770
|
+
else {
|
|
1771
|
+
const bc = new BroadcastChannel("ConnectExternalAccount");
|
|
1772
|
+
bc.postMessage(message);
|
|
1773
|
+
bc.close();
|
|
1774
|
+
}
|
|
1752
1775
|
window.close();
|
|
1753
1776
|
return true;
|
|
1754
1777
|
}
|
|
@@ -1756,10 +1779,39 @@ class MyDataHelps {
|
|
|
1756
1779
|
hasEmbeddedModeUrlParameter() {
|
|
1757
1780
|
const embeddedModeKey = '_e';
|
|
1758
1781
|
const params = new URLSearchParams(window.location.search);
|
|
1759
|
-
|
|
1782
|
+
const embeddedModeValue = params.get(embeddedModeKey);
|
|
1783
|
+
if (params.has(embeddedModeKey) && embeddedModeValue !== 'false') {
|
|
1784
|
+
if (URL.canParse(embeddedModeValue)) {
|
|
1785
|
+
this.standaloneModeFinalRedirectPath = embeddedModeValue;
|
|
1786
|
+
}
|
|
1760
1787
|
return true;
|
|
1761
1788
|
}
|
|
1762
1789
|
}
|
|
1790
|
+
static generateVerifier() {
|
|
1791
|
+
const len = 32;
|
|
1792
|
+
const size = Math.ceil(len / 2);
|
|
1793
|
+
const buffer = new Uint8Array(size);
|
|
1794
|
+
window.crypto.getRandomValues(buffer);
|
|
1795
|
+
return Array.from(buffer)
|
|
1796
|
+
.map(b => b.toString(16).padStart(2, '0'))
|
|
1797
|
+
.join('')
|
|
1798
|
+
.slice(0, len);
|
|
1799
|
+
}
|
|
1800
|
+
static async hashVerifier(message) {
|
|
1801
|
+
// 1. Encode the message into bytes
|
|
1802
|
+
const encoder = new TextEncoder();
|
|
1803
|
+
const data = encoder.encode(message);
|
|
1804
|
+
// 2. Calculate the SHA-256 hash
|
|
1805
|
+
const hashBuffer = await crypto.subtle.digest('SHA-256', data);
|
|
1806
|
+
// 3. Convert ArrayBuffer to Base64
|
|
1807
|
+
const hashArray = Array.from(new Uint8Array(hashBuffer));
|
|
1808
|
+
const base64 = btoa(String.fromCharCode(...hashArray));
|
|
1809
|
+
// 4. Make it URL-safe
|
|
1810
|
+
return base64
|
|
1811
|
+
.replace(/\+/g, '-')
|
|
1812
|
+
.replace(/\//g, '_')
|
|
1813
|
+
.replace(/=+$/, '');
|
|
1814
|
+
}
|
|
1763
1815
|
}
|
|
1764
1816
|
//iOS/Android directly invoke window.MyDataHelps and window.RKStudioClient
|
|
1765
1817
|
//so it's necessary to explicitly ensure they are present on the window
|
package/MyDataHelps.min.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
class e{startSurvey(e,t){if(this.isStandaloneMode()){const n=new URLSearchParams;n.set("surveyName",e),t?.editResultID&&n.set("editResultID",t.editResultID),t?.event&&n.set("event",t.event),this.startDelegatedSurvey(`${this.baseUrl}/survey?${n.toString()}`)}else if(window.webkit.messageHandlers.StartParticipantSurvey){let n=this.nextMessageID();window.webkit.messageHandlers.StartParticipantSurvey.postMessage({messageID:n,surveyName:e,options:t})}}completeStep(e){if(null==e&&(e=""),"string"!=typeof e&&(e=JSON.stringify(e)),window.webkit.messageHandlers.ResearchKit)window.webkit.messageHandlers.ResearchKit.postMessage(e);else if(window.webkit.messageHandlers.CompleteStep){let t=this.nextMessageID();window.webkit.messageHandlers.CompleteStep.postMessage({messageID:t,answer:e})}}querySurveyAnswers(t){(t=Object.assign({},t)).hasOwnProperty("surveyName")&&(t.surveyName=e.reduceArrayAndEscape(t.surveyName)),t.hasOwnProperty("stepIdentifier")&&(t.stepIdentifier=e.reduceArrayAndEscape(t.stepIdentifier)),t.hasOwnProperty("resultIdentifier")&&(t.resultIdentifier=e.reduceArrayAndEscape(t.resultIdentifier)),t.hasOwnProperty("answer")&&(t.answer=e.reduceArrayAndEscape(t.answer)),t.hasOwnProperty("before")&&(t.before=e.convertDateToIsoString(t.before)),t.hasOwnProperty("after")&&(t.after=e.convertDateToIsoString(t.after)),t.hasOwnProperty("event")&&(t.event=e.reduceArrayAndEscape(t.event));const n="surveyanswers?"+new URLSearchParams(t).toString(),s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}querySurveyResults(t){(t={...t}).hasOwnProperty("surveyName")&&(t.surveyName=e.reduceArrayAndEscape(t.surveyName)),t.hasOwnProperty("event")&&(t.event=e.reduceArrayAndEscape(t.event)),t.hasOwnProperty("before")&&(t.before=e.convertDateToIsoString(t.before)),t.hasOwnProperty("after")&&(t.after=e.convertDateToIsoString(t.after)),t.hasOwnProperty("insertedBefore")&&(t.insertedBefore=e.convertDateToIsoString(t.insertedBefore)),t.hasOwnProperty("insertedAfter")&&(t.insertedAfter=e.convertDateToIsoString(t.insertedAfter));const n="surveyresults?"+new URLSearchParams(t).toString();return this.connect().then((()=>this.makeRequest(n,"GET",null))).then(e.validateResponse).then((e=>e.json()))}deleteSurveyResult(t){const n="surveyresults/"+encodeURIComponent(t),s=this;return this.connect().then((function(){return s.makeRequest(n,"DELETE",null)})).then((function(t){return e.validateResponse(t)})).then((function(){}))}querySurveyTasks(t){(t=Object.assign({},t)).hasOwnProperty("status")&&(t.status=e.reduceArrayAndEscape(t.status)),t.hasOwnProperty("surveyName")&&(t.surveyName=e.reduceArrayAndEscape(t.surveyName)),t.hasOwnProperty("event")&&(t.event=e.reduceArrayAndEscape(t.event));const n="surveytasks?"+new URLSearchParams(t).toString(),s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}queryInboxItems(t){(t=((e,t)=>{for(const n of Object.keys(t)){const s=t[n];void 0!==s&&(e[n]=s)}return e})({},t)).hasOwnProperty("type")&&(t.type=e.reduceArrayAndEscape(t.type)),t.hasOwnProperty("status")&&(t.status=e.reduceArrayAndEscape(t.status));const n="inbox?"+new URLSearchParams(t).toString(),s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}getInboxItem(t){const n=`inbox/${t}`,s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}updateInboxItem(t,n){const s=`inbox/${t}/${n}`,a=this;return this.connect().then((function(){return a.makeRequest(s,"PUT",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}startEmbeddedSurvey(e,t,n){n||(n=this.getCurrentLanguage());let s=this.baseUrl+"mydatahelps/"+e+"/surveylink/"+t+"?lang="+n;return this.startEmbeddedSurveyInternal(s)}openExternalUrl(e){window.webkit.messageHandlers.OpenExternalLink&&window.webkit.messageHandlers.OpenExternalLink.postMessage(e)}openEmbeddedUrl(e){window.webkit.messageHandlers.OpenEmbeddedLink&&window.webkit.messageHandlers.OpenEmbeddedLink.postMessage(e)}showTab(e){window.webkit.messageHandlers.ShowTab&&window.webkit.messageHandlers.ShowTab.postMessage(e)}openApplication(e,t){if(window.webkit.messageHandlers.OpenExternalApplication){let n=this.nextMessageID();window.webkit.messageHandlers.OpenExternalApplication.postMessage({messageID:n,url:e,modal:!(!t||!t.modal)})}}openSecondaryView(e,t,n){this.lookupSecondaryView(e,t).then((e=>this.openApplication(e.url,n)))}lookupSecondaryView(e,t){let n=this.baseUrl;n.endsWith("/")||(n+="/");return fetch(`${n}api/v1/public/projects/${e}/views/${t}`,{method:"GET",headers:{Accept:"application/json"}}).then((e=>e.ok?e.json():e.text().then((t=>{throw new Error(`Failed to fetch secondary view: ${e.status} ${e.statusText}${t?" - "+t:""}`)}))))}dismiss(){window.webkit.messageHandlers.Dismiss&&window.webkit.messageHandlers.Dismiss.postMessage({})}back(){window.webkit.messageHandlers.PopNavigation&&window.webkit.messageHandlers.PopNavigation.postMessage({})}showDashboard(e,t){window.webkit.messageHandlers.ShowParticipantDashboard&&window.webkit.messageHandlers.ShowParticipantDashboard.postMessage({dashboardKey:e,modal:!(!t||!t.modal),title:t&&t.title?t.title:void 0})}showWebVisualization(e,t,n){window.webkit.messageHandlers.ShowParticipantWebVisualization&&window.webkit.messageHandlers.ShowParticipantWebVisualization.postMessage({visualizationKey:e,parameters:t,modal:!(!n||!n.modal),title:n&&n.title?n.title:void 0})}showWebVisualizationPdf(e,t,n){window.webkit.messageHandlers.ShowParticipantWebVisualizationPDF&&window.webkit.messageHandlers.ShowParticipantWebVisualizationPDF.postMessage({visualizationKey:e,parameters:t,landscape:!(!n||!n.landscape),htmlViewerZoom:n&&n.htmlViewerZoom})}showProject(e){window.webkit.messageHandlers.ShowProject&&window.webkit.messageHandlers.ShowProject.postMessage({code:e})}joinProject(e){window.webkit.messageHandlers.JoinProject&&window.webkit.messageHandlers.JoinProject.postMessage({code:e})}on(e,t){if(!this.supportedEvents.includes(e))throw new Error(e+" is not a supported event type.");this.registeredEventHandlers[e]||(this.registeredEventHandlers[e]=[]),this.registeredEventHandlers[e].push(t)}off(e,t){if(!this.supportedEvents.includes(e))throw new Error(e+" is not a supported event type.");if(!this.registeredEventHandlers[e])return;let n=this.registeredEventHandlers[e].indexOf(t);-1!==n&&this.registeredEventHandlers[e].splice(n,1)}triggerEvent(e){let t=e.type;this.supportedEvents.includes(t)&&this.registeredEventHandlers[t]&&this.registeredEventHandlers[t].forEach((function(t){t(e)}))}setActionResult(e){Object.prototype.hasOwnProperty.call(this.messageHandlers,e.messageID)&&"function"==typeof this.messageHandlers[e.messageID]?this.messageHandlers[e.messageID](e):console.error(`Invalid messageID: ${e.messageID}`)}getParticipantInfo(){const t=this;return this.connect().then((function(){return t.makeRequest("participant","GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}persistParticipantInfo(e,t){const n=this;return this.connect().then((function(){return n.makeRequest("participant","PUT",{demographics:e,customFields:t})})).then((async function(e){if(!e.ok)throw(await e.json()).message;return e.json()})).catch((function(e){console.log("Unable to persist participant: "+e)}))}getProjectInfo(){const t=this;return this.connect().then((function(){return t.makeRequest("project","GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}getDeviceDataPoint(t){const n="devicedata/"+t,s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}deleteDeviceDataPoint(t){const n="devicedata/"+t,s=this;return this.connect().then((function(){return s.makeRequest(n,"DELETE",null)})).then((function(t){return e.validateResponse(t)})).then((function(){}))}queryDeviceData(t){(t=Object.assign({},t)).hasOwnProperty("type")&&(t.type=e.reduceArrayAndEscape(t.type)),t.hasOwnProperty("observedBefore")&&(t.observedBefore=e.convertDateToIsoString(t.observedBefore)),t.hasOwnProperty("observedAfter")&&(t.observedAfter=e.convertDateToIsoString(t.observedAfter));const n="devicedata?"+new URLSearchParams(t).toString(),s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}persistDeviceData(t){const n=this;return this.connect().then((function(){return n.makeRequest("devicedata","POST",t)})).then((function(t){return e.validateResponse(t)})).then((function(){}))}getDeviceDataAllDataTypes(t,n){const s={};void 0!==t&&(s.enabled=t.toString()),n&&(s.namespace=n);const a=`devicedata/allDataTypes?${new URLSearchParams(s).toString()}`;return this.connect().then((()=>this.makeRequest(a,"GET",null))).then(e.validateResponse).then((e=>e.json()))}queryDeviceDataV2(t){(t=Object.assign({},t)).hasOwnProperty("observedBefore")&&(t.observedBefore=e.convertDateToIsoString(t.observedBefore)),t.hasOwnProperty("observedAfter")&&(t.observedAfter=e.convertDateToIsoString(t.observedAfter)),t.hasOwnProperty("insertedBefore")&&(t.insertedBefore=e.convertDateToIsoString(t.insertedBefore)),t.hasOwnProperty("insertedAfter")&&(t.insertedAfter=e.convertDateToIsoString(t.insertedAfter)),t.hasOwnProperty("modifiedBefore")&&(t.modifiedBefore=e.convertDateToIsoString(t.modifiedBefore)),t.hasOwnProperty("modifiedAfter")&&(t.modifiedAfter=e.convertDateToIsoString(t.modifiedAfter)),e.flattenPropertyShallow(t,"dataSource"),e.flattenPropertyShallow(t,"properties");const n="devicedata?"+new URLSearchParams(t).toString(),s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null,"v2")})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}queryDeviceDataV2Aggregate(t){(t=Object.assign({},t)).hasOwnProperty("aggregateFunctions")&&(t.aggregateFunctions=e.reduceArrayAndEscape(t.aggregateFunctions)),t.hasOwnProperty("observedBefore")&&(t.observedBefore=e.convertDateToIsoString(t.observedBefore)),t.hasOwnProperty("observedAfter")&&(t.observedAfter=e.convertDateToIsoString(t.observedAfter)),t.hasOwnProperty("insertedBefore")&&(t.insertedBefore=e.convertDateToIsoString(t.insertedBefore)),t.hasOwnProperty("insertedAfter")&&(t.insertedAfter=e.convertDateToIsoString(t.insertedAfter)),t.hasOwnProperty("modifiedBefore")&&(t.modifiedBefore=e.convertDateToIsoString(t.modifiedBefore)),t.hasOwnProperty("modifiedAfter")&&(t.modifiedAfter=e.convertDateToIsoString(t.modifiedAfter)),e.flattenPropertyShallow(t,"dataSource"),e.flattenPropertyShallow(t,"properties");const n="devicedata/aggregate?"+new URLSearchParams(t).toString(),s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null,"v2")})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}queryDeviceDataV2DailySleep(t){(t=Object.assign({},t)).hasOwnProperty("observedBefore")&&(t.observedBefore=e.convertDateToIsoString(t.observedBefore)),t.hasOwnProperty("observedAfter")&&(t.observedAfter=e.convertDateToIsoString(t.observedAfter)),t.hasOwnProperty("insertedBefore")&&(t.insertedBefore=e.convertDateToIsoString(t.insertedBefore)),t.hasOwnProperty("insertedAfter")&&(t.insertedAfter=e.convertDateToIsoString(t.insertedAfter)),t.hasOwnProperty("modifiedBefore")&&(t.modifiedBefore=e.convertDateToIsoString(t.modifiedBefore)),t.hasOwnProperty("modifiedAfter")&&(t.modifiedAfter=e.convertDateToIsoString(t.modifiedAfter)),e.flattenPropertyShallow(t,"dataSource"),e.flattenPropertyShallow(t,"properties");const n="devicedata/aggregate/dailysleep?"+new URLSearchParams(t).toString(),s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null,"v2")})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}getDeviceDataV2AllDataTypes(t,n){const s={};void 0!==t&&(s.enabled=t.toString()),n&&(s.namespace=n);const a=`devicedata/allDataTypes?${new URLSearchParams(s).toString()}`,r=this;return this.connect().then((function(){return r.makeRequest(a,"GET",null,"v2")})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}getExternalAccountProviders(t,n,s,a){let r={};t&&(r.search=t),n&&(r.category=n),s&&(r.pageSize=s),a&&(r.pageNumber=a);const o="externalaccountproviders?"+new URLSearchParams(r).toString(),i=this;return this.connect().then((function(){return i.makeRequest(o,"GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}connectExternalAccount(n,s){return new Promise(((a,r)=>{const o=t.nextMessageID();if(t.messageHandlers[o]=function(e){e&&e.success?a():r(e.errorMessage)},this.standaloneMode){let t=s?.standaloneModeFinalRedirectPath||window.location.href;const a=this;let i;if(s?.openNewWindow){t=`${t.split("?")[0]}?connectExternalAccount=true&messageID=${o}&success=%SUCCESSVALUE%`;let e=null;if(s?.width&&s?.height){const t=s?.width,n=s?.height;e="width="+t+",height="+n+",top="+(window.outerHeight/2+window.screenY-n/2)+",left="+(window.outerWidth/2+window.screenX-t/2)}i=window.open(`${this.baseUrl}home/loading`,"providerauth",e)}const d=new URLSearchParams({finalRedirectPath:t}).toString(),c="externalaccountproviders/"+n+"/connect?"+d;this.connect().then((function(){return a.makeRequest(c,"POST",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.text()})).then((function(e){i?i.location=e.replace(/['"]+/g,""):window.top.location=e.replace(/['"]+/g,"")})).catch((function(e){r(e)}))}else window.webkit.messageHandlers.ConnectExternalAccount&&window.webkit.messageHandlers.ConnectExternalAccount.postMessage({externalAccountProviderID:n,messageID:o,...s})}))}getExternalAccounts(){const t=this;return this.connect().then((function(){return t.makeRequest("externalaccounts","GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}refreshExternalAccount(t){const n="externalaccounts/refresh/"+t,s=this;return this.connect().then((function(){return s.makeRequest(n,"POST",null)})).then((function(t){return e.validateResponse(t)})).then((function(){}))}deleteExternalAccount(t){const n="externalaccounts/delete/"+encodeURIComponent(t),s=this;return this.isStandaloneMode()?this.connect().then((function(){return s.makeRequest(n,"DELETE",null)})).then((function(t){return e.validateResponse(t)})):new Promise((function(e,n){if(window.webkit.messageHandlers.DeleteProviderAccount){const a=s.nextMessageID();s.messageHandlers[a]=function(t){t.success?e(t):n(t)},window.webkit.messageHandlers.DeleteProviderAccount.postMessage({messageID:a,accountID:t})}else n()}))}getFeaturedProviders(t){const n={};t&&(n.featuredProvidersContext=t);const s=`featuredexternalaccountproviders?${new URLSearchParams(n).toString()}`;return this.connect().then((()=>this.makeRequest(s,"GET",null))).then(e.validateResponse).then((e=>e.json()))}queryNotifications(t){(t=Object.assign({},t)).hasOwnProperty("sentBefore")&&(t.sentBefore=e.convertDateToIsoString(t.sentBefore)),t.hasOwnProperty("sentAfter")&&(t.sentAfter=e.convertDateToIsoString(t.sentAfter));const n="notifications?"+new URLSearchParams(t).toString(),s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}queryFitbitDailySummaries(t){(t=Object.assign({},t)).hasOwnProperty("startDate")&&(t.startDate=e.convertDateToIsoString(t.startDate)),t.hasOwnProperty("endDate")&&(t.endDate=e.convertDateToIsoString(t.endDate));const n="fitbit/dailySummaries?"+new URLSearchParams(t).toString(),s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}queryFitbitSleepLogs(t){(t=Object.assign({},t)).hasOwnProperty("startDate")&&(t.startDate=e.convertDateToIsoString(t.startDate)),t.hasOwnProperty("endDate")&&(t.endDate=e.convertDateToIsoString(t.endDate));const n="fitbit/sleepLogs?"+new URLSearchParams(t).toString(),s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}queryAppleHealthActivitySummaries(t){(t=Object.assign({},t)).hasOwnProperty("startDate")&&(t.startDate=e.convertDateToIsoString(t.startDate)),t.hasOwnProperty("endDate")&&(t.endDate=e.convertDateToIsoString(t.endDate));const n="appleHealth/activitySummaries?"+new URLSearchParams(t).toString(),s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}queryAppleHealthWorkouts(t){(t=Object.assign({},t)).hasOwnProperty("startDate")&&(t.startDate=e.convertDateToIsoString(t.startDate)),t.hasOwnProperty("endDate")&&(t.endDate=e.convertDateToIsoString(t.endDate));const n="appleHealth/workouts?"+new URLSearchParams(t).toString(),s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}uploadFile(t,n,s){if(t.size>209715200)throw new Error("File size exceeds the maximum allowed size of 200MB.");const a=this,r="files?category="+n+"&fileName="+encodeURIComponent(s??t.name);return this.connect().then((function(){return a.makeRequest(r,"POST",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()})).then((function(e){return fetch(e.preSignedUrl,{method:"PUT",body:t,headers:{"Content-Type":t.type,"x-amz-server-side-encryption":"AES256"}})})).then((function(t){return e.validateResponse(t)})).then((function(){}))}queryFiles(t){const n="files?"+new URLSearchParams(t).toString(),s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}getFileDownloadUrl(t){if(!t)throw new Error("Please specify the key of the file to download.");const n="files/download?key="+t,s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}deleteFile(t){if(!t)throw new Error("Please specify the key of the file to delete.");const n="files?key="+t,s=this;return this.connect().then((function(){return s.makeRequest(n,"DELETE",null)})).then((function(t){return e.validateResponse(t)})).then((function(){}))}connect(){const e=this;let t=function(){e.token=null,e.refreshTokenPromise=new Promise((function(n,s){let a=e.nextMessageID();e.messageHandlers[a]=function(r){r.success?(e.tokenExpires=Date.now()+1e3*r.data.expires_in,e.token=r.data,e.baseUrl=r.baseUrl,setTimeout(t,1e3*(r.data.expires_in-e.accessTokenRenewalBufferSeconds)),n(null)):(e.token=null,s(r.message)),e.messageHandlers[a]=null,e.refreshTokenPromise=null},window.webkit.messageHandlers.GetDelegatedAccessToken.postMessage({messageID:a})}))};if(this.token&&Date.now()<this.tokenExpires)return Promise.resolve();if(this.isStandaloneMode()&&!this.isEmbeddedMode()){let e=this.token?"access token is expired or invalid":"access token must be explicitly provided using the setParticipantAccess method";return console.log(e),Promise.reject(e)}return this.refreshTokenPromise||t(),this.refreshTokenPromise}setParticipantAccessToken(e,t){this.enableStandaloneMode(),this.token=e,t&&(this.baseUrl=t),this.tokenExpires=Date.now()+1e3*this.token.expires_in;const n=this;setTimeout((function(){n.triggerEvent({type:"tokenWillExpire"})}),1e3*(this.token.expires_in-this.accessTokenRenewalBufferSeconds))}isStandaloneMode(){return this.standaloneMode}isEmbeddedMode(){return this.embeddedMode}enableStandaloneMode(e=!1,t){this.standaloneMode=!0,this.embeddedMode=e,t&&(this.baseUrl=t),window.webkit&&(window.webkit.messageHandlers=e?{GetDelegatedAccessToken:window.webkit.messageHandlers.GetDelegatedAccessToken,OpenExternalLink:window.webkit.messageHandlers.OpenExternalLink,OpenEmbeddedLink:window.webkit.messageHandlers.OpenEmbeddedLink,OpenExternalApplication:window.webkit.messageHandlers.OpenExternalApplication,PopNavigation:window.webkit.messageHandlers.PopNavigation,Dismiss:window.webkit.messageHandlers.Dismiss}:{})}setStatusBarStyle(e){window.webkit.messageHandlers.SetStatusBarStyle&&window.webkit.messageHandlers.SetStatusBarStyle.postMessage({style:e})}getDeviceInfo(){let e=this;return new Promise((function(t,n){if(e.isStandaloneMode())t(null);else if(window.webkit.messageHandlers.GetDeviceInfo){let n=e.nextMessageID();e.messageHandlers[n]=function(e){t(e.data)},window.webkit.messageHandlers.GetDeviceInfo.postMessage({messageID:n})}else n()}))}setSupportedLanguages(e){this.supportedLanguages.length=0;for(let t=0;t<e.length;t++)this.supportedLanguages.push(e[t].replace("_","-"))}getStepConfiguration(){let e=this;return new Promise((function(t,n){if(e.isStandaloneMode())t(null);else if(window.webkit.messageHandlers.GetStepConfiguration){let n=e.nextMessageID();e.messageHandlers[n]=function(e){t(e.data)},window.webkit.messageHandlers.GetStepConfiguration.postMessage({messageID:n})}else n()}))}getSurveyContext(){let e=this;return new Promise((function(t,n){e.isStandaloneMode()&&t(null),e.getDeviceInfo().then((function(s){if("Web"!==s.platform)t({surveyMode:"Survey"});else if(window.webkit.messageHandlers.GetSurveyContext){let n=e.nextMessageID();e.messageHandlers[n]=function(e){t(e.data)},window.webkit.messageHandlers.GetSurveyContext.postMessage({messageID:n})}else n()})).catch((function(e){n()}))}))}getCurrentSurveyAnswers(){let e=this;return new Promise((function(t,n){if(e.isStandaloneMode())t(null);else if(window.webkit.messageHandlers.GetCurrentSurveyAnswers){let n=e.nextMessageID();e.messageHandlers[n]=function(e){t(e.data)},window.webkit.messageHandlers.GetCurrentSurveyAnswers.postMessage({messageID:n})}else n()}))}setCurrentLanguage(e){if(e){let t=this.getSupportedLanguage(e);t?this.language=t:console.warn(`language ${e} not supported`)}else this.language=e}getCurrentLanguage(){let e,t=new URLSearchParams(window.location.search);if(t.has("lang")){if(e=this.getSupportedLanguage(t.get("lang")),e)return e;console.warn(`language ${t.get("lang")} not supported`)}return this.language||navigator.language}showGoogleFitSettings(){window.webkit.messageHandlers.ShowGoogleFitSettings&&window.webkit.messageHandlers.ShowGoogleFitSettings.postMessage({})}showHealthConnectSettings(){window.webkit.messageHandlers.HealthConnectSettings&&window.webkit.messageHandlers.HealthConnectSettings.postMessage({})}showHealthConnectPrompt(){window.webkit.messageHandlers.HealthConnectPrompt&&window.webkit.messageHandlers.HealthConnectPrompt.postMessage({})}getHealthConnectStatus(){let e=this;return new Promise((function(t,n){if(e.isStandaloneMode())t(null);else if(window.webkit.messageHandlers.HealthConnectStatus){let n=e.nextMessageID();e.messageHandlers[n]=function(e){t(e.data)},window.webkit.messageHandlers.HealthConnectStatus.postMessage({messageID:n})}else n()}))}showHealthConnectPhrPrompt(){window.webkit.messageHandlers.HealthConnectPhrPrompt&&window.webkit.messageHandlers.HealthConnectPhrPrompt.postMessage({})}getHealthConnectPhrStatus(){let e=this;return new Promise((function(t,n){if(e.isStandaloneMode())t(null);else if(window.webkit.messageHandlers.HealthConnectPhrStatus){let n=e.nextMessageID();e.messageHandlers[n]=function(e){t(e.data)},window.webkit.messageHandlers.HealthConnectPhrStatus.postMessage({messageID:n})}else n()}))}requestReview(e){window.webkit.messageHandlers.RequestReview&&window.webkit.messageHandlers.RequestReview.postMessage({cooldownDays:e})}trackCustomEvent(t){const n=this;return this.connect().then((function(){return n.makeRequest("customevents","POST",t)})).then((function(t){return e.validateResponse(t)})).then((function(){}))}getDataCollectionSettings(){const t=this;return this.connect().then((function(){return t.makeRequest("datacollectionsettings","GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}getDataAvailability(){const t=this;return this.connect().then((function(){return t.makeRequest("dataavailability","GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}invokeCustomApi(t,n,s,a){if(t.includes("?"))throw new Error('Cannot include query parameters directly in the "customApi" string. Provide as an argument for "queryParameters" instead.');let r="custom/"+t;if(n=n.toUpperCase(),null!=s&&("GET"===n||"DELETE"===n)){let e=new URLSearchParams(s).toString();r+="?"+e,s=null}const o=this;return this.connect().then((function(){return o.makeRequest(r,n,s)})).then((function(t){return e.validateResponse(t)})).then((function(e){return a?e.json():void 0}))}constructor(){if(this.baseUrl="https://mydatahelps.org/",this.acceptableParentDomains=["localhost","careevolution.com","internal","b3-deploys.com","mydatahelps.org","platform.joinallofus.org","careevolution.dev","ce.dev","mydatahelps.dev"],this.accessTokenRenewalBufferSeconds=120,this.unsupportedActions=["SetHeight","ResearchKit"],this.supportedEvents=["surveyDidFinish","applicationDidBecomeVisible","externalAccountSyncComplete","tokenWillExpire","healthConnectSyncComplete","healthConnectPhrSyncComplete"],this.supportedLanguages=[],this.currentMessageID=1,this.messageHandlers=[],this.registeredEventHandlers={},this.refreshTokenPromise=null,this.standaloneMode=!1,this.embeddedMode=!1,this.handleConnectExternalAccountResponse())return;let e,t=this,n=function(){let e=document.location.ancestorOrigins;if(e&&e[0])return e[0];return"*"}();function s(e){if("*"===e)return!0;let n=new URL(e);for(let e=0;e<t.acceptableParentDomains.length;e++)if(n.hostname===t.acceptableParentDomains[e]||n.hostname.endsWith("."+t.acceptableParentDomains[e]))return!0;return!1}s(n)||console.log("Detected unsupported parent origin domain."),e=window.webkit&&window.webkit.messageHandlers&&window.webkit.messageHandlers.ResearchKit?{GetDelegatedAccessToken:function(e){window.parent.postMessage({name:"GetDelegatedAccessToken",messageID:e.messageID},n)},OpenExternalLink:function(e){window.parent.postMessage({name:"OpenExternalUrl",url:e},n)},OpenEmbeddedLink:function(e){window.parent.postMessage({name:"OpenEmbeddedUrl",url:e},n)},GetCurrentSurveyAnswers:function(e){window.parent.postMessage({name:"GetCurrentSurveyAnswers",messageID:e.messageID},n)},GetStepConfiguration:function(e){window.parent.postMessage({name:"GetStepConfiguration",messageID:e.messageID},n)},GetSurveyContext:function(e){window.parent.postMessage({name:"GetSurveyContext",messageID:e.messageID},n)},CompleteStep:function(e){window.parent.postMessage({name:"CompleteStep",messageID:e.messageID,answer:e.answer},n)}}:{GetDelegatedAccessToken:function(e){window.parent.postMessage({name:"GetDelegatedAccessToken",messageID:e.messageID},n)},GetDeviceInfo:function(e){window.parent.postMessage({name:"GetDeviceInfo",messageID:e.messageID},n)},StartParticipantSurvey:function(e){window.parent.postMessage({name:"StartParticipantSurvey",messageID:e.messageID,surveyName:e.surveyName,options:e.options},n)},OpenExternalLink:function(e){window.parent.postMessage({name:"OpenExternalUrl",url:e},n)},OpenEmbeddedLink:function(e){window.parent.postMessage({name:"OpenEmbeddedUrl",url:e},n)},OpenExternalApplication:function(e){window.parent.postMessage({name:"OpenApplication",messageID:e.messageID,url:e.url,modal:e.modal},n)},Dismiss:function(){window.parent.postMessage({name:"Dismiss"},n)},PopNavigation:function(){window.parent.postMessage({name:"Back"},n)},ShowTab:function(e){window.parent.postMessage({name:"ShowTab",tabKey:e},n)},ShowParticipantDashboard:function(e){window.parent.postMessage({name:"ShowParticipantDashboard",dashboardKey:e.dashboardKey,modal:e.modal},n)},ShowParticipantWebVisualization:function(e){window.parent.postMessage({name:"ShowParticipantWebVisualization",visualizationKey:e.visualizationKey,parameters:e.parameters,modal:e.modal},n)},ShowParticipantWebVisualizationPDF:function(e){window.parent.postMessage({name:"ShowParticipantWebVisualizationPDF",visualizationKey:e.visualizationKey,parameters:e.parameters,modal:e.modal,landscape:e.landscape,htmlViewerZoom:e.htmlViewerZoom},n)},DeleteProviderAccount:function(e){window.parent.postMessage({name:"DeleteProviderAccount",messageID:e.messageID,accountID:e.accountID},n)},ConnectExternalAccount:function(e){window.parent.postMessage({name:"ConnectExternalAccount",externalAccountProviderID:e.externalAccountProviderID,messageID:e.messageID,openNewWindow:e.openNewWindow,width:e.width,height:e.height},n)},ShowProject:function(e){window.parent.postMessage({name:"ShowProject",code:e.code},n)},JoinProject:function(e){window.parent.postMessage({name:"JoinProject",code:e.code},n)},GetCurrentSurveyAnswers:function(e){window.parent.postMessage({name:"GetCurrentSurveyAnswers",messageID:e.messageID},n)},GetStepConfiguration:function(e){window.parent.postMessage({name:"GetStepConfiguration",messageID:e.messageID},n)},CompleteStep:function(e){window.parent.postMessage({name:"CompleteStep",messageID:e.messageID,answer:e.answer},n)}},window.webkit&&window.webkit.messageHandlers&&function(){for(let t in e)if(window.webkit.messageHandlers[t])return!0;for(let e in t.unsupportedActions)if(window.webkit.messageHandlers[t.unsupportedActions[e]])return!0;return!1}()||(window.webkit={messageHandlers:{}}),function(e){for(let t in e)if(!window.webkit.messageHandlers[t])try{window.webkit.messageHandlers[t]={postMessage:e[t]}}catch(e){return void console.log("Unable to add missing actions on this platform: "+e)}}(e),window.addEventListener("message",(function(e){if(!function(e){return!(!t.isStandaloneMode()||e.origin!==window.location.origin)||("*"===n?s(e.origin):e.origin===n)}(e))throw console.error("message.origin '"+e.origin+"' is not allowed."),"message.origin '"+e.origin+"' is not allowed.";e.data.messageID?t.setActionResult(e.data):t.triggerEvent(e.data)}),!1),this.hasEmbeddedModeUrlParameter()&&t.enableStandaloneMode(!0)}nextMessageID(){return this.currentMessageID++}makeUrl(e,t){if(!this.baseUrl)throw console.error("Cannot use makeUrl without MyDataHelps.baseUrl."),"Cannot use makeUrl without MyDataHelps.baseUrl.";return this.baseUrl+"api/"+t+"/delegated/"+e}makeRequest(e,t,n,s="v1"){if(!this.token||!this.token.access_token)throw"No access_token available for request authorization.";let a=this.makeUrl(e,s),r=new Headers;r.append("Authorization","Bearer "+this.token.access_token),r.append("Accept","application/json, text/javascript, */*; q=0.01"),r.append("Accept-Language",this.getCurrentLanguage()),n&&r.append("Content-Type","application/json");let o={method:t,headers:r};return n&&(o.body=JSON.stringify(n)),fetch(a,o)}getSupportedLanguage(e){return e=e.replace("_","-"),0===this.supportedLanguages.length||this.supportedLanguages.find((t=>t===e))||e.indexOf("-")>0&&(e=e.substring(0,e.indexOf("-")),this.supportedLanguages.find((t=>t===e)))?e:void 0}static validateResponse(e){if(!e.ok)throw e.statusText;return e}static escapeParam(e){return String(e).replaceAll("\\","\\\\").replaceAll(",","\\,")}static reduceArrayAndEscape(t){if(Array.isArray(t)){return t.map((function(t){return e.escapeParam(t)})).join(",")}return this.escapeParam(t)}static convertDateToIsoString(e){let t=new Date(e);if(isNaN(t.getTime()))throw"Cannot interpret parameter as Date";return t.toISOString()}static flattenPropertyShallow(t,n){if(void 0!==t[n]&&null!==t[n]){for(var s in t[n])t[n].hasOwnProperty(s)&&(t[`${n}.${s}`]=e.escapeParam(t[n][s]));delete t[n]}}startEmbeddedSurveyInternal(e){let t="mydatahelps-survey-modal",n=this;return new Promise((function(s,a){if(document.getElementById(t))return void a("Survey already in progress");window.addEventListener("message",(function e(a){if(a.origin!==new URL(n.baseUrl).origin)return;let r=document.getElementById("mydatahelps-survey-frame").contentWindow;a.source===r&&("SurveyWindowInitialized"===a.data.name?document.getElementById(t).className+=" loaded":"SurveyFinished"===a.data.name&&(document.getElementById(t).remove(),document.body.className=document.body.className.replace("no-scroll",""),window.removeEventListener("message",e,!0),s(a.data)))}),!0);let r=document.createElement("div");r.className="mydatahelps-survey-modal",r.id=t,r.innerHTML="<div class='mydatahelps-survey'><div class='loader'>Loading...</div><iframe id='mydatahelps-survey-frame' allow='camera' sandbox='allow-forms allow-modals allow-popups allow-popups-to-escape-sandbox allow-presentation allow-same-origin allow-scripts' src='"+e+"'></iframe></div>",document.body.append(r),document.body.className+=" no-scroll"}))}startDelegatedSurvey(e){let t="mydatahelps-survey-modal",n=this;if(document.getElementById(t))return;window.addEventListener("message",(function e(s){if(s.origin!==new URL(n.baseUrl).origin)return;let a=document.getElementById("mydatahelps-survey-frame").contentWindow;s.source===a&&("GetDelegatedAccessToken"===s.data.name?n.getParticipantInfo().then((e=>{a.postMessage({name:"DelegatedAccessTokenResponse",accessToken:n.token,baseUrl:n.baseUrl,participantID:e.participantID},"*")})):"SurveyWindowInitialized"===s.data.name?document.getElementById(t).className+=" loaded":"SurveyFinished"===s.data.name&&(document.getElementById(t).remove(),document.body.className=document.body.className.replace("no-scroll",""),window.removeEventListener("message",e,!0),s.data.type="surveyDidFinish",n.triggerEvent(s.data)))}),!0);let s=document.createElement("div");s.className="mydatahelps-survey-modal",s.id=t,s.innerHTML=`<div class='mydatahelps-survey'><div class='loader'>Loading...</div><iframe id='mydatahelps-survey-frame' allow='camera' sandbox='allow-forms allow-modals allow-popups allow-popups-to-escape-sandbox allow-presentation allow-same-origin allow-scripts' src='${e}&lang=${n.getCurrentLanguage()}'></iframe></div>`,document.body.append(s),document.body.className+=" no-scroll"}handleConnectExternalAccountResponse(){const e=new URLSearchParams(window.location.search);if(window.opener&&e.get("connectExternalAccount")&&e.get("messageID")&&e.get("success"))return window.opener.postMessage({name:"ConnectExternalAccountResponse",messageID:parseInt(e.get("messageID")),success:"true"===e.get("success")},window.location.origin),window.close(),!0}hasEmbeddedModeUrlParameter(){const e=new URLSearchParams(window.location.search);if(e.has("_e")&&"false"!==e.get("_e"))return!0}}const t=new e;window.MyDataHelps=t,window.RKStudioClient={},window.RKStudioClient.setActionResult=function(e){window.MyDataHelps.setActionResult(e)};export{e as MyDataHelps,t as default};
|
|
1
|
+
class e{startSurvey(e,t){if(this.isStandaloneMode()){const n=new URLSearchParams;n.set("surveyName",e),t?.editResultID&&n.set("editResultID",t.editResultID),t?.event&&n.set("event",t.event),this.startDelegatedSurvey(`${this.baseUrl}/survey?${n.toString()}`)}else if(window.webkit.messageHandlers.StartParticipantSurvey){let n=this.nextMessageID();window.webkit.messageHandlers.StartParticipantSurvey.postMessage({messageID:n,surveyName:e,options:t})}}completeStep(e){if(null==e&&(e=""),"string"!=typeof e&&(e=JSON.stringify(e)),window.webkit.messageHandlers.ResearchKit)window.webkit.messageHandlers.ResearchKit.postMessage(e);else if(window.webkit.messageHandlers.CompleteStep){let t=this.nextMessageID();window.webkit.messageHandlers.CompleteStep.postMessage({messageID:t,answer:e})}}querySurveyAnswers(t){(t=Object.assign({},t)).hasOwnProperty("surveyName")&&(t.surveyName=e.reduceArrayAndEscape(t.surveyName)),t.hasOwnProperty("stepIdentifier")&&(t.stepIdentifier=e.reduceArrayAndEscape(t.stepIdentifier)),t.hasOwnProperty("resultIdentifier")&&(t.resultIdentifier=e.reduceArrayAndEscape(t.resultIdentifier)),t.hasOwnProperty("answer")&&(t.answer=e.reduceArrayAndEscape(t.answer)),t.hasOwnProperty("before")&&(t.before=e.convertDateToIsoString(t.before)),t.hasOwnProperty("after")&&(t.after=e.convertDateToIsoString(t.after)),t.hasOwnProperty("event")&&(t.event=e.reduceArrayAndEscape(t.event));const n="surveyanswers?"+new URLSearchParams(t).toString(),s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}querySurveyResults(t){(t={...t}).hasOwnProperty("surveyName")&&(t.surveyName=e.reduceArrayAndEscape(t.surveyName)),t.hasOwnProperty("event")&&(t.event=e.reduceArrayAndEscape(t.event)),t.hasOwnProperty("before")&&(t.before=e.convertDateToIsoString(t.before)),t.hasOwnProperty("after")&&(t.after=e.convertDateToIsoString(t.after)),t.hasOwnProperty("insertedBefore")&&(t.insertedBefore=e.convertDateToIsoString(t.insertedBefore)),t.hasOwnProperty("insertedAfter")&&(t.insertedAfter=e.convertDateToIsoString(t.insertedAfter));const n="surveyresults?"+new URLSearchParams(t).toString();return this.connect().then((()=>this.makeRequest(n,"GET",null))).then(e.validateResponse).then((e=>e.json()))}deleteSurveyResult(t){const n="surveyresults/"+encodeURIComponent(t),s=this;return this.connect().then((function(){return s.makeRequest(n,"DELETE",null)})).then((function(t){return e.validateResponse(t)})).then((function(){}))}querySurveyTasks(t){(t=Object.assign({},t)).hasOwnProperty("status")&&(t.status=e.reduceArrayAndEscape(t.status)),t.hasOwnProperty("surveyName")&&(t.surveyName=e.reduceArrayAndEscape(t.surveyName)),t.hasOwnProperty("event")&&(t.event=e.reduceArrayAndEscape(t.event));const n="surveytasks?"+new URLSearchParams(t).toString(),s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}queryInboxItems(t){(t=((e,t)=>{for(const n of Object.keys(t)){const s=t[n];void 0!==s&&(e[n]=s)}return e})({},t)).hasOwnProperty("type")&&(t.type=e.reduceArrayAndEscape(t.type)),t.hasOwnProperty("status")&&(t.status=e.reduceArrayAndEscape(t.status));const n="inbox?"+new URLSearchParams(t).toString(),s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}getInboxItem(t){const n=`inbox/${t}`,s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}updateInboxItem(t,n){const s=`inbox/${t}/${n}`,a=this;return this.connect().then((function(){return a.makeRequest(s,"PUT",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}startEmbeddedSurvey(e,t,n){n||(n=this.getCurrentLanguage());let s=this.baseUrl+"mydatahelps/"+e+"/surveylink/"+t+"?lang="+n;return this.startEmbeddedSurveyInternal(s)}openExternalUrl(e){window.webkit.messageHandlers.OpenExternalLink&&window.webkit.messageHandlers.OpenExternalLink.postMessage(e)}openEmbeddedUrl(e){window.webkit.messageHandlers.OpenEmbeddedLink&&window.webkit.messageHandlers.OpenEmbeddedLink.postMessage(e)}showTab(e){window.webkit.messageHandlers.ShowTab&&window.webkit.messageHandlers.ShowTab.postMessage(e)}openApplication(e,t){if(window.webkit.messageHandlers.OpenExternalApplication){let n=this.nextMessageID();window.webkit.messageHandlers.OpenExternalApplication.postMessage({messageID:n,url:e,modal:!(!t||!t.modal)})}}openSecondaryView(e,t,n){this.lookupSecondaryView(e,t).then((e=>this.openApplication(e.url,n)))}lookupSecondaryView(e,t){let n=this.baseUrl;n.endsWith("/")||(n+="/");return fetch(`${n}api/v1/public/projects/${e}/views/${t}`,{method:"GET",headers:{Accept:"application/json"}}).then((e=>e.ok?e.json():e.text().then((t=>{throw new Error(`Failed to fetch secondary view: ${e.status} ${e.statusText}${t?" - "+t:""}`)}))))}dismiss(){window.webkit.messageHandlers.Dismiss&&window.webkit.messageHandlers.Dismiss.postMessage({})}back(){window.webkit.messageHandlers.PopNavigation&&window.webkit.messageHandlers.PopNavigation.postMessage({})}showDashboard(e,t){window.webkit.messageHandlers.ShowParticipantDashboard&&window.webkit.messageHandlers.ShowParticipantDashboard.postMessage({dashboardKey:e,modal:!(!t||!t.modal),title:t&&t.title?t.title:void 0})}showWebVisualization(e,t,n){window.webkit.messageHandlers.ShowParticipantWebVisualization&&window.webkit.messageHandlers.ShowParticipantWebVisualization.postMessage({visualizationKey:e,parameters:t,modal:!(!n||!n.modal),title:n&&n.title?n.title:void 0})}showWebVisualizationPdf(e,t,n){window.webkit.messageHandlers.ShowParticipantWebVisualizationPDF&&window.webkit.messageHandlers.ShowParticipantWebVisualizationPDF.postMessage({visualizationKey:e,parameters:t,landscape:!(!n||!n.landscape),htmlViewerZoom:n&&n.htmlViewerZoom})}showProject(e){window.webkit.messageHandlers.ShowProject&&window.webkit.messageHandlers.ShowProject.postMessage({code:e})}joinProject(e){window.webkit.messageHandlers.JoinProject&&window.webkit.messageHandlers.JoinProject.postMessage({code:e})}on(e,t){if(!this.supportedEvents.includes(e))throw new Error(e+" is not a supported event type.");this.registeredEventHandlers[e]||(this.registeredEventHandlers[e]=[]),this.registeredEventHandlers[e].push(t)}off(e,t){if(!this.supportedEvents.includes(e))throw new Error(e+" is not a supported event type.");if(!this.registeredEventHandlers[e])return;let n=this.registeredEventHandlers[e].indexOf(t);-1!==n&&this.registeredEventHandlers[e].splice(n,1)}triggerEvent(e){let t=e.type;this.supportedEvents.includes(t)&&this.registeredEventHandlers[t]&&this.registeredEventHandlers[t].forEach((function(t){t(e)}))}setActionResult(e){Object.prototype.hasOwnProperty.call(this.messageHandlers,e.messageID)&&"function"==typeof this.messageHandlers[e.messageID]?this.messageHandlers[e.messageID](e):console.error(`Invalid messageID: ${e.messageID}`)}getParticipantInfo(){const t=this;return this.connect().then((function(){return t.makeRequest("participant","GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}persistParticipantInfo(e,t){const n=this;return this.connect().then((function(){return n.makeRequest("participant","PUT",{demographics:e,customFields:t})})).then((async function(e){if(!e.ok)throw(await e.json()).message;return e.json()})).catch((function(e){console.log("Unable to persist participant: "+e)}))}getProjectInfo(){const t=this;return this.connect().then((function(){return t.makeRequest("project","GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}getDeviceDataPoint(t){const n="devicedata/"+t,s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}deleteDeviceDataPoint(t){const n="devicedata/"+t,s=this;return this.connect().then((function(){return s.makeRequest(n,"DELETE",null)})).then((function(t){return e.validateResponse(t)})).then((function(){}))}queryDeviceData(t){(t=Object.assign({},t)).hasOwnProperty("type")&&(t.type=e.reduceArrayAndEscape(t.type)),t.hasOwnProperty("observedBefore")&&(t.observedBefore=e.convertDateToIsoString(t.observedBefore)),t.hasOwnProperty("observedAfter")&&(t.observedAfter=e.convertDateToIsoString(t.observedAfter));const n="devicedata?"+new URLSearchParams(t).toString(),s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}persistDeviceData(t){const n=this;return this.connect().then((function(){return n.makeRequest("devicedata","POST",t)})).then((function(t){return e.validateResponse(t)})).then((function(){}))}getDeviceDataAllDataTypes(t,n){const s={};void 0!==t&&(s.enabled=t.toString()),n&&(s.namespace=n);const a=`devicedata/allDataTypes?${new URLSearchParams(s).toString()}`;return this.connect().then((()=>this.makeRequest(a,"GET",null))).then(e.validateResponse).then((e=>e.json()))}queryDeviceDataV2(t){(t=Object.assign({},t)).hasOwnProperty("observedBefore")&&(t.observedBefore=e.convertDateToIsoString(t.observedBefore)),t.hasOwnProperty("observedAfter")&&(t.observedAfter=e.convertDateToIsoString(t.observedAfter)),t.hasOwnProperty("insertedBefore")&&(t.insertedBefore=e.convertDateToIsoString(t.insertedBefore)),t.hasOwnProperty("insertedAfter")&&(t.insertedAfter=e.convertDateToIsoString(t.insertedAfter)),t.hasOwnProperty("modifiedBefore")&&(t.modifiedBefore=e.convertDateToIsoString(t.modifiedBefore)),t.hasOwnProperty("modifiedAfter")&&(t.modifiedAfter=e.convertDateToIsoString(t.modifiedAfter)),e.flattenPropertyShallow(t,"dataSource"),e.flattenPropertyShallow(t,"properties");const n="devicedata?"+new URLSearchParams(t).toString(),s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null,"v2")})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}queryDeviceDataV2Aggregate(t){(t=Object.assign({},t)).hasOwnProperty("aggregateFunctions")&&(t.aggregateFunctions=e.reduceArrayAndEscape(t.aggregateFunctions)),t.hasOwnProperty("observedBefore")&&(t.observedBefore=e.convertDateToIsoString(t.observedBefore)),t.hasOwnProperty("observedAfter")&&(t.observedAfter=e.convertDateToIsoString(t.observedAfter)),t.hasOwnProperty("insertedBefore")&&(t.insertedBefore=e.convertDateToIsoString(t.insertedBefore)),t.hasOwnProperty("insertedAfter")&&(t.insertedAfter=e.convertDateToIsoString(t.insertedAfter)),t.hasOwnProperty("modifiedBefore")&&(t.modifiedBefore=e.convertDateToIsoString(t.modifiedBefore)),t.hasOwnProperty("modifiedAfter")&&(t.modifiedAfter=e.convertDateToIsoString(t.modifiedAfter)),e.flattenPropertyShallow(t,"dataSource"),e.flattenPropertyShallow(t,"properties");const n="devicedata/aggregate?"+new URLSearchParams(t).toString(),s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null,"v2")})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}queryDeviceDataV2DailySleep(t){(t=Object.assign({},t)).hasOwnProperty("observedBefore")&&(t.observedBefore=e.convertDateToIsoString(t.observedBefore)),t.hasOwnProperty("observedAfter")&&(t.observedAfter=e.convertDateToIsoString(t.observedAfter)),t.hasOwnProperty("insertedBefore")&&(t.insertedBefore=e.convertDateToIsoString(t.insertedBefore)),t.hasOwnProperty("insertedAfter")&&(t.insertedAfter=e.convertDateToIsoString(t.insertedAfter)),t.hasOwnProperty("modifiedBefore")&&(t.modifiedBefore=e.convertDateToIsoString(t.modifiedBefore)),t.hasOwnProperty("modifiedAfter")&&(t.modifiedAfter=e.convertDateToIsoString(t.modifiedAfter)),e.flattenPropertyShallow(t,"dataSource"),e.flattenPropertyShallow(t,"properties");const n="devicedata/aggregate/dailysleep?"+new URLSearchParams(t).toString(),s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null,"v2")})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}getDeviceDataV2AllDataTypes(t,n){const s={};void 0!==t&&(s.enabled=t.toString()),n&&(s.namespace=n);const a=`devicedata/allDataTypes?${new URLSearchParams(s).toString()}`,r=this;return this.connect().then((function(){return r.makeRequest(a,"GET",null,"v2")})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}getExternalAccountProviders(t,n,s,a){let r={};t&&(r.search=t),n&&(r.category=n),s&&(r.pageSize=s),a&&(r.pageNumber=a);const o="externalaccountproviders?"+new URLSearchParams(r).toString(),i=this;return this.connect().then((function(){return i.makeRequest(o,"GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}connectExternalAccount(n,s){return new Promise(((a,r)=>{const o=t.nextMessageID();if(t.messageHandlers[o]=function(e){e&&e.success?a():r(e.errorMessage)},this.standaloneMode){const t=this;let a,i=s?.standaloneModeFinalRedirectPath||t.standaloneModeFinalRedirectPath||window.location.href;if(s?.openNewWindow){i=`${i.split("?")[0]}?connectExternalAccount=true&messageID=${o}&success=%SUCCESSVALUE%`;let e=null;if(s?.width&&s?.height){const t=s?.width,n=s?.height;e="width="+t+",height="+n+",top="+(window.outerHeight/2+window.screenY-n/2)+",left="+(window.outerWidth/2+window.screenX-t/2)}a=window.open("","providerauth",e),a.document.open(),a.document.write(`<!DOCTYPE html><html><head><title>Loading</title><link href="${this.baseUrl}Content/Loading.css" rel="stylesheet"/></head><body><div id="fragment-redirect-content"></div></body></html>`),a.document.close()}const d=e.generateVerifier();e.hashVerifier(d).then((s=>{const o=new URLSearchParams({finalRedirectPath:i,verifierHash:s}).toString(),c="externalaccountproviders/"+n+"/connect?"+o;this.connect().then((function(){return t.makeRequest(c,"POST",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.text()})).then((function(e){const t=new URL(e.replace(/['"]+/g,"")),n=new URLSearchParams;n.set("verifier",d),e=`${t}#${n}`,a?a.location=e:window.top.location=e})).catch((function(e){r(e)}))}))}else window.webkit.messageHandlers.ConnectExternalAccount&&window.webkit.messageHandlers.ConnectExternalAccount.postMessage({externalAccountProviderID:n,messageID:o,...s})}))}getExternalAccounts(){const t=this;return this.connect().then((function(){return t.makeRequest("externalaccounts","GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}refreshExternalAccount(t){const n="externalaccounts/refresh/"+t,s=this;return this.connect().then((function(){return s.makeRequest(n,"POST",null)})).then((function(t){return e.validateResponse(t)})).then((function(){}))}deleteExternalAccount(t){const n="externalaccounts/delete/"+encodeURIComponent(t),s=this;return this.isStandaloneMode()?this.connect().then((function(){return s.makeRequest(n,"DELETE",null)})).then((function(t){return e.validateResponse(t)})):new Promise((function(e,n){if(window.webkit.messageHandlers.DeleteProviderAccount){const a=s.nextMessageID();s.messageHandlers[a]=function(t){t.success?e(t):n(t)},window.webkit.messageHandlers.DeleteProviderAccount.postMessage({messageID:a,accountID:t})}else n()}))}getFeaturedProviders(t){const n={};t&&(n.featuredProvidersContext=t);const s=`featuredexternalaccountproviders?${new URLSearchParams(n).toString()}`;return this.connect().then((()=>this.makeRequest(s,"GET",null))).then(e.validateResponse).then((e=>e.json()))}queryNotifications(t){(t=Object.assign({},t)).hasOwnProperty("sentBefore")&&(t.sentBefore=e.convertDateToIsoString(t.sentBefore)),t.hasOwnProperty("sentAfter")&&(t.sentAfter=e.convertDateToIsoString(t.sentAfter));const n="notifications?"+new URLSearchParams(t).toString(),s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}queryFitbitDailySummaries(t){(t=Object.assign({},t)).hasOwnProperty("startDate")&&(t.startDate=e.convertDateToIsoString(t.startDate)),t.hasOwnProperty("endDate")&&(t.endDate=e.convertDateToIsoString(t.endDate));const n="fitbit/dailySummaries?"+new URLSearchParams(t).toString(),s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}queryFitbitSleepLogs(t){(t=Object.assign({},t)).hasOwnProperty("startDate")&&(t.startDate=e.convertDateToIsoString(t.startDate)),t.hasOwnProperty("endDate")&&(t.endDate=e.convertDateToIsoString(t.endDate));const n="fitbit/sleepLogs?"+new URLSearchParams(t).toString(),s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}queryAppleHealthActivitySummaries(t){(t=Object.assign({},t)).hasOwnProperty("startDate")&&(t.startDate=e.convertDateToIsoString(t.startDate)),t.hasOwnProperty("endDate")&&(t.endDate=e.convertDateToIsoString(t.endDate));const n="appleHealth/activitySummaries?"+new URLSearchParams(t).toString(),s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}queryAppleHealthWorkouts(t){(t=Object.assign({},t)).hasOwnProperty("startDate")&&(t.startDate=e.convertDateToIsoString(t.startDate)),t.hasOwnProperty("endDate")&&(t.endDate=e.convertDateToIsoString(t.endDate));const n="appleHealth/workouts?"+new URLSearchParams(t).toString(),s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}uploadFile(t,n,s){if(t.size>209715200)throw new Error("File size exceeds the maximum allowed size of 200MB.");const a=this,r="files?category="+n+"&fileName="+encodeURIComponent(s??t.name);return this.connect().then((function(){return a.makeRequest(r,"POST",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()})).then((function(e){return fetch(e.preSignedUrl,{method:"PUT",body:t,headers:{"Content-Type":t.type,"x-amz-server-side-encryption":"AES256"}})})).then((function(t){return e.validateResponse(t)})).then((function(){}))}queryFiles(t){const n="files?"+new URLSearchParams(t).toString(),s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}getFileDownloadUrl(t){if(!t)throw new Error("Please specify the key of the file to download.");const n="files/download?key="+t,s=this;return this.connect().then((function(){return s.makeRequest(n,"GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}deleteFile(t){if(!t)throw new Error("Please specify the key of the file to delete.");const n="files?key="+t,s=this;return this.connect().then((function(){return s.makeRequest(n,"DELETE",null)})).then((function(t){return e.validateResponse(t)})).then((function(){}))}connect(){const e=this;let t=function(){e.token=null,e.refreshTokenPromise=new Promise((function(n,s){let a=e.nextMessageID();e.messageHandlers[a]=function(r){r.success?(e.tokenExpires=Date.now()+1e3*r.data.expires_in,e.token=r.data,e.baseUrl=r.baseUrl,setTimeout(t,1e3*(r.data.expires_in-e.accessTokenRenewalBufferSeconds)),n(null)):(e.token=null,s(r.message)),e.messageHandlers[a]=null,e.refreshTokenPromise=null},window.webkit.messageHandlers.GetDelegatedAccessToken.postMessage({messageID:a})}))};if(this.token&&Date.now()<this.tokenExpires)return Promise.resolve();if(this.isStandaloneMode()&&!this.isEmbeddedMode()){let e=this.token?"access token is expired or invalid":"access token must be explicitly provided using the setParticipantAccess method";return console.log(e),Promise.reject(e)}return this.refreshTokenPromise||t(),this.refreshTokenPromise}setParticipantAccessToken(e,t){this.enableStandaloneMode(),this.token=e,t&&(this.baseUrl=t),this.tokenExpires=Date.now()+1e3*this.token.expires_in;const n=this;setTimeout((function(){n.triggerEvent({type:"tokenWillExpire"})}),1e3*(this.token.expires_in-this.accessTokenRenewalBufferSeconds))}isStandaloneMode(){return this.standaloneMode}isEmbeddedMode(){return this.embeddedMode}enableStandaloneMode(e=!1,t){this.standaloneMode=!0,this.embeddedMode=e,t&&(this.baseUrl=t),window.webkit&&(window.webkit.messageHandlers=e?{GetDelegatedAccessToken:window.webkit.messageHandlers.GetDelegatedAccessToken,OpenExternalLink:window.webkit.messageHandlers.OpenExternalLink,OpenEmbeddedLink:window.webkit.messageHandlers.OpenEmbeddedLink,OpenExternalApplication:window.webkit.messageHandlers.OpenExternalApplication,PopNavigation:window.webkit.messageHandlers.PopNavigation,Dismiss:window.webkit.messageHandlers.Dismiss}:{})}get standaloneModeFinalRedirectPath(){return this._standaloneModeFinalRedirectPath}set standaloneModeFinalRedirectPath(e){this._standaloneModeFinalRedirectPath=e}setStatusBarStyle(e){window.webkit.messageHandlers.SetStatusBarStyle&&window.webkit.messageHandlers.SetStatusBarStyle.postMessage({style:e})}getDeviceInfo(){let e=this;return new Promise((function(t,n){if(e.isStandaloneMode())t(null);else if(window.webkit.messageHandlers.GetDeviceInfo){let n=e.nextMessageID();e.messageHandlers[n]=function(e){t(e.data)},window.webkit.messageHandlers.GetDeviceInfo.postMessage({messageID:n})}else n()}))}setSupportedLanguages(e){this.supportedLanguages.length=0;for(let t=0;t<e.length;t++)this.supportedLanguages.push(e[t].replace("_","-"))}getStepConfiguration(){let e=this;return new Promise((function(t,n){if(e.isStandaloneMode())t(null);else if(window.webkit.messageHandlers.GetStepConfiguration){let n=e.nextMessageID();e.messageHandlers[n]=function(e){t(e.data)},window.webkit.messageHandlers.GetStepConfiguration.postMessage({messageID:n})}else n()}))}getSurveyContext(){let e=this;return new Promise((function(t,n){e.isStandaloneMode()&&t(null),e.getDeviceInfo().then((function(s){if("Web"!==s.platform)t({surveyMode:"Survey"});else if(window.webkit.messageHandlers.GetSurveyContext){let n=e.nextMessageID();e.messageHandlers[n]=function(e){t(e.data)},window.webkit.messageHandlers.GetSurveyContext.postMessage({messageID:n})}else n()})).catch((function(e){n()}))}))}getCurrentSurveyAnswers(){let e=this;return new Promise((function(t,n){if(e.isStandaloneMode())t(null);else if(window.webkit.messageHandlers.GetCurrentSurveyAnswers){let n=e.nextMessageID();e.messageHandlers[n]=function(e){t(e.data)},window.webkit.messageHandlers.GetCurrentSurveyAnswers.postMessage({messageID:n})}else n()}))}setCurrentLanguage(e){if(e){let t=this.getSupportedLanguage(e);t?this.language=t:console.warn(`language ${e} not supported`)}else this.language=e}getCurrentLanguage(){let e,t=new URLSearchParams(window.location.search);if(t.has("lang")){if(e=this.getSupportedLanguage(t.get("lang")),e)return e;console.warn(`language ${t.get("lang")} not supported`)}return this.language||navigator.language}showGoogleFitSettings(){window.webkit.messageHandlers.ShowGoogleFitSettings&&window.webkit.messageHandlers.ShowGoogleFitSettings.postMessage({})}showHealthConnectSettings(){window.webkit.messageHandlers.HealthConnectSettings&&window.webkit.messageHandlers.HealthConnectSettings.postMessage({})}showHealthConnectPrompt(){window.webkit.messageHandlers.HealthConnectPrompt&&window.webkit.messageHandlers.HealthConnectPrompt.postMessage({})}getHealthConnectStatus(){let e=this;return new Promise((function(t,n){if(e.isStandaloneMode())t(null);else if(window.webkit.messageHandlers.HealthConnectStatus){let n=e.nextMessageID();e.messageHandlers[n]=function(e){t(e.data)},window.webkit.messageHandlers.HealthConnectStatus.postMessage({messageID:n})}else n()}))}showHealthConnectPhrPrompt(){window.webkit.messageHandlers.HealthConnectPhrPrompt&&window.webkit.messageHandlers.HealthConnectPhrPrompt.postMessage({})}getHealthConnectPhrStatus(){let e=this;return new Promise((function(t,n){if(e.isStandaloneMode())t(null);else if(window.webkit.messageHandlers.HealthConnectPhrStatus){let n=e.nextMessageID();e.messageHandlers[n]=function(e){t(e.data)},window.webkit.messageHandlers.HealthConnectPhrStatus.postMessage({messageID:n})}else n()}))}requestReview(e){window.webkit.messageHandlers.RequestReview&&window.webkit.messageHandlers.RequestReview.postMessage({cooldownDays:e})}trackCustomEvent(t){const n=this;return this.connect().then((function(){return n.makeRequest("customevents","POST",t)})).then((function(t){return e.validateResponse(t)})).then((function(){}))}getDataCollectionSettings(){const t=this;return this.connect().then((function(){return t.makeRequest("datacollectionsettings","GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}getDataAvailability(){const t=this;return this.connect().then((function(){return t.makeRequest("dataavailability","GET",null)})).then((function(t){return e.validateResponse(t)})).then((function(e){return e.json()}))}invokeCustomApi(t,n,s,a){if(t.includes("?"))throw new Error('Cannot include query parameters directly in the "customApi" string. Provide as an argument for "queryParameters" instead.');let r="custom/"+t;if(n=n.toUpperCase(),null!=s&&("GET"===n||"DELETE"===n)){let e=new URLSearchParams(s).toString();r+="?"+e,s=null}const o=this;return this.connect().then((function(){return o.makeRequest(r,n,s)})).then((function(t){return e.validateResponse(t)})).then((function(e){return a?e.json():void 0}))}constructor(){if(this.baseUrl="https://mydatahelps.org/",this.acceptableParentDomains=["localhost","careevolution.com","internal","b3-deploys.com","mydatahelps.org","platform.joinallofus.org","careevolution.dev","ce.dev","mydatahelps.dev"],this.accessTokenRenewalBufferSeconds=120,this.unsupportedActions=["SetHeight","ResearchKit"],this.supportedEvents=["surveyDidFinish","applicationDidBecomeVisible","externalAccountSyncComplete","tokenWillExpire","healthConnectSyncComplete","healthConnectPhrSyncComplete"],this.supportedLanguages=[],this.currentMessageID=1,this.messageHandlers=[],this.registeredEventHandlers={},this.refreshTokenPromise=null,this.standaloneMode=!1,this.embeddedMode=!1,this.handleConnectExternalAccountResponse())return;let e,t=this,n=function(){let e=document.location.ancestorOrigins;if(e&&e[0])return e[0];return"*"}();function s(e){if("*"===e)return!0;let n=new URL(e);for(let e=0;e<t.acceptableParentDomains.length;e++)if(n.hostname===t.acceptableParentDomains[e]||n.hostname.endsWith("."+t.acceptableParentDomains[e]))return!0;return!1}s(n)||console.log("Detected unsupported parent origin domain."),e=window.webkit&&window.webkit.messageHandlers&&window.webkit.messageHandlers.ResearchKit?{GetDelegatedAccessToken:function(e){window.parent.postMessage({name:"GetDelegatedAccessToken",messageID:e.messageID},n)},OpenExternalLink:function(e){window.parent.postMessage({name:"OpenExternalUrl",url:e},n)},OpenEmbeddedLink:function(e){window.parent.postMessage({name:"OpenEmbeddedUrl",url:e},n)},GetCurrentSurveyAnswers:function(e){window.parent.postMessage({name:"GetCurrentSurveyAnswers",messageID:e.messageID},n)},GetStepConfiguration:function(e){window.parent.postMessage({name:"GetStepConfiguration",messageID:e.messageID},n)},GetSurveyContext:function(e){window.parent.postMessage({name:"GetSurveyContext",messageID:e.messageID},n)},CompleteStep:function(e){window.parent.postMessage({name:"CompleteStep",messageID:e.messageID,answer:e.answer},n)}}:{GetDelegatedAccessToken:function(e){window.parent.postMessage({name:"GetDelegatedAccessToken",messageID:e.messageID},n)},GetDeviceInfo:function(e){window.parent.postMessage({name:"GetDeviceInfo",messageID:e.messageID},n)},StartParticipantSurvey:function(e){window.parent.postMessage({name:"StartParticipantSurvey",messageID:e.messageID,surveyName:e.surveyName,options:e.options},n)},OpenExternalLink:function(e){window.parent.postMessage({name:"OpenExternalUrl",url:e},n)},OpenEmbeddedLink:function(e){window.parent.postMessage({name:"OpenEmbeddedUrl",url:e},n)},OpenExternalApplication:function(e){window.parent.postMessage({name:"OpenApplication",messageID:e.messageID,url:e.url,modal:e.modal},n)},Dismiss:function(){window.parent.postMessage({name:"Dismiss"},n)},PopNavigation:function(){window.parent.postMessage({name:"Back"},n)},ShowTab:function(e){window.parent.postMessage({name:"ShowTab",tabKey:e},n)},ShowParticipantDashboard:function(e){window.parent.postMessage({name:"ShowParticipantDashboard",dashboardKey:e.dashboardKey,modal:e.modal},n)},ShowParticipantWebVisualization:function(e){window.parent.postMessage({name:"ShowParticipantWebVisualization",visualizationKey:e.visualizationKey,parameters:e.parameters,modal:e.modal},n)},ShowParticipantWebVisualizationPDF:function(e){window.parent.postMessage({name:"ShowParticipantWebVisualizationPDF",visualizationKey:e.visualizationKey,parameters:e.parameters,modal:e.modal,landscape:e.landscape,htmlViewerZoom:e.htmlViewerZoom},n)},DeleteProviderAccount:function(e){window.parent.postMessage({name:"DeleteProviderAccount",messageID:e.messageID,accountID:e.accountID},n)},ConnectExternalAccount:function(e){window.parent.postMessage({name:"ConnectExternalAccount",externalAccountProviderID:e.externalAccountProviderID,messageID:e.messageID,openNewWindow:e.openNewWindow,width:e.width,height:e.height},n)},ShowProject:function(e){window.parent.postMessage({name:"ShowProject",code:e.code},n)},JoinProject:function(e){window.parent.postMessage({name:"JoinProject",code:e.code},n)},GetCurrentSurveyAnswers:function(e){window.parent.postMessage({name:"GetCurrentSurveyAnswers",messageID:e.messageID},n)},GetStepConfiguration:function(e){window.parent.postMessage({name:"GetStepConfiguration",messageID:e.messageID},n)},CompleteStep:function(e){window.parent.postMessage({name:"CompleteStep",messageID:e.messageID,answer:e.answer},n)}},window.webkit&&window.webkit.messageHandlers&&function(){for(let t in e)if(window.webkit.messageHandlers[t])return!0;for(let e in t.unsupportedActions)if(window.webkit.messageHandlers[t.unsupportedActions[e]])return!0;return!1}()||(window.webkit={messageHandlers:{}}),function(e){for(let t in e)if(!window.webkit.messageHandlers[t])try{window.webkit.messageHandlers[t]={postMessage:e[t]}}catch(e){return void console.log("Unable to add missing actions on this platform: "+e)}}(e),window.addEventListener("message",(function(e){if(!function(e){return!(!t.isStandaloneMode()||e.origin!==window.location.origin)||("*"===n?s(e.origin):e.origin===n)}(e))throw console.error("message.origin '"+e.origin+"' is not allowed."),"message.origin '"+e.origin+"' is not allowed.";e.data.messageID?t.setActionResult(e.data):t.triggerEvent(e.data)}),!1),this.hasEmbeddedModeUrlParameter()&&t.enableStandaloneMode(!0)}nextMessageID(){return this.currentMessageID++}makeUrl(e,t){if(!this.baseUrl)throw console.error("Cannot use makeUrl without MyDataHelps.baseUrl."),"Cannot use makeUrl without MyDataHelps.baseUrl.";return this.baseUrl+"api/"+t+"/delegated/"+e}makeRequest(e,t,n,s="v1"){if(!this.token||!this.token.access_token)throw"No access_token available for request authorization.";let a=this.makeUrl(e,s),r=new Headers;r.append("Authorization","Bearer "+this.token.access_token),r.append("Accept","application/json, text/javascript, */*; q=0.01"),r.append("Accept-Language",this.getCurrentLanguage()),n&&r.append("Content-Type","application/json");let o={method:t,headers:r};return n&&(o.body=JSON.stringify(n)),fetch(a,o)}getSupportedLanguage(e){return e=e.replace("_","-"),0===this.supportedLanguages.length||this.supportedLanguages.find((t=>t===e))||e.indexOf("-")>0&&(e=e.substring(0,e.indexOf("-")),this.supportedLanguages.find((t=>t===e)))?e:void 0}static validateResponse(e){if(!e.ok)throw e.statusText;return e}static escapeParam(e){return String(e).replaceAll("\\","\\\\").replaceAll(",","\\,")}static reduceArrayAndEscape(t){if(Array.isArray(t)){return t.map((function(t){return e.escapeParam(t)})).join(",")}return this.escapeParam(t)}static convertDateToIsoString(e){let t=new Date(e);if(isNaN(t.getTime()))throw"Cannot interpret parameter as Date";return t.toISOString()}static flattenPropertyShallow(t,n){if(void 0!==t[n]&&null!==t[n]){for(var s in t[n])t[n].hasOwnProperty(s)&&(t[`${n}.${s}`]=e.escapeParam(t[n][s]));delete t[n]}}startEmbeddedSurveyInternal(e){let t="mydatahelps-survey-modal",n=this;return new Promise((function(s,a){if(document.getElementById(t))return void a("Survey already in progress");window.addEventListener("message",(function e(a){if(a.origin!==new URL(n.baseUrl).origin)return;let r=document.getElementById("mydatahelps-survey-frame").contentWindow;a.source===r&&("SurveyWindowInitialized"===a.data.name?document.getElementById(t).className+=" loaded":"SurveyFinished"===a.data.name&&(document.getElementById(t).remove(),document.body.className=document.body.className.replace("no-scroll",""),window.removeEventListener("message",e,!0),s(a.data)))}),!0);let r=document.createElement("div");r.className="mydatahelps-survey-modal",r.id=t,r.innerHTML="<div class='mydatahelps-survey'><div class='loader'>Loading...</div><iframe id='mydatahelps-survey-frame' allow='camera' sandbox='allow-forms allow-modals allow-popups allow-popups-to-escape-sandbox allow-presentation allow-same-origin allow-scripts' src='"+e+"'></iframe></div>",document.body.append(r),document.body.className+=" no-scroll"}))}startDelegatedSurvey(e){let t="mydatahelps-survey-modal",n=this;if(document.getElementById(t))return;window.addEventListener("message",(function e(s){if(s.origin!==new URL(n.baseUrl).origin)return;let a=document.getElementById("mydatahelps-survey-frame").contentWindow;s.source===a&&("GetDelegatedAccessToken"===s.data.name?n.getParticipantInfo().then((e=>{a.postMessage({name:"DelegatedAccessTokenResponse",accessToken:n.token,baseUrl:n.baseUrl,participantID:e.participantID},"*")})):"SurveyWindowInitialized"===s.data.name?document.getElementById(t).className+=" loaded":"SurveyFinished"===s.data.name&&(document.getElementById(t).remove(),document.body.className=document.body.className.replace("no-scroll",""),window.removeEventListener("message",e,!0),s.data.type="surveyDidFinish",n.triggerEvent(s.data)))}),!0);let s=document.createElement("div");s.className="mydatahelps-survey-modal",s.id=t,s.innerHTML=`<div class='mydatahelps-survey'><div class='loader'>Loading...</div><iframe id='mydatahelps-survey-frame' allow='camera' sandbox='allow-forms allow-modals allow-popups allow-popups-to-escape-sandbox allow-presentation allow-same-origin allow-scripts' src='${e}&lang=${n.getCurrentLanguage()}'></iframe></div>`,document.body.append(s),document.body.className+=" no-scroll"}handleConnectExternalAccountResponse(){const e=new URLSearchParams(window.location.search);if(e.get("connectExternalAccount")&&e.get("messageID")&&e.get("success")){const t={name:"ConnectExternalAccountResponse",messageID:parseInt(e.get("messageID")),success:"true"===e.get("success")};if(window.opener)window.opener.postMessage(t,window.location.origin);else{const e=new BroadcastChannel("ConnectExternalAccount");e.postMessage(t),e.close()}return window.close(),!0}}hasEmbeddedModeUrlParameter(){const e=new URLSearchParams(window.location.search),t=e.get("_e");if(e.has("_e")&&"false"!==t)return URL.canParse(t)&&(this.standaloneModeFinalRedirectPath=t),!0}static generateVerifier(){const e=Math.ceil(16),t=new Uint8Array(e);return window.crypto.getRandomValues(t),Array.from(t).map((e=>e.toString(16).padStart(2,"0"))).join("").slice(0,32)}static async hashVerifier(e){const t=(new TextEncoder).encode(e),n=await crypto.subtle.digest("SHA-256",t),s=Array.from(new Uint8Array(n));return btoa(String.fromCharCode(...s)).replace(/\+/g,"-").replace(/\//g,"_").replace(/=+$/,"")}}const t=new e;window.MyDataHelps=t,window.RKStudioClient={},window.RKStudioClient.setActionResult=function(e){window.MyDataHelps.setActionResult(e)};export{e as MyDataHelps,t as default};
|
|
2
2
|
//# sourceMappingURL=MyDataHelps.min.js.map
|
package/MyDataHelps.min.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MyDataHelps.min.js","sources":["../../src/MyDataHelps.ts"],"sourcesContent":["// @ts-ignore : let rollup handle CSS injection\nimport \"../MyDataHelps.css\";\n\nimport * as Model from \"./types\";\nimport { StringMap } from \"./types\";\n\nexport class MyDataHelps {\n\n\tbaseUrl: string = 'https://mydatahelps.org/';\n\tlanguage: string;\n\ttoken: Model.Token;\n\ttokenExpires: number;\n\n\t// Surveys\n\n\tstartSurvey(surveyName: string, options?: Model.StartSurveyOptions): void {\n\t\tif (this.isStandaloneMode()) {\n\t\t\tconst params = new URLSearchParams();\n\t\t\tparams.set('surveyName', surveyName);\n\t\t\tif (options?.editResultID) {\n\t\t\t\tparams.set('editResultID', options.editResultID);\n\t\t\t}\n\t\t\tif (options?.event) {\n\t\t\t\tparams.set('event', options.event);\n\t\t\t}\n\t\t\tthis.startDelegatedSurvey(`${this.baseUrl}/survey?${params.toString()}`);\n\t\t}\n\t\telse if (window.webkit.messageHandlers.StartParticipantSurvey) {\n\t\t\tlet messageID = this.nextMessageID();\n\t\t\twindow.webkit.messageHandlers.StartParticipantSurvey.postMessage({\n\t\t\t\tmessageID: messageID,\n\t\t\t\tsurveyName: surveyName,\n\t\t\t\toptions: options\n\t\t\t});\n\t\t}\n\t}\n\n\tcompleteStep(answer: any): void {\n\t\tif (answer === undefined || answer === null) answer = '';\n\t\tif (typeof answer !== 'string') {\n\t\t\tanswer = JSON.stringify(answer);\n\t\t}\n\t\tif (window.webkit.messageHandlers.ResearchKit) {\n\t\t\twindow.webkit.messageHandlers.ResearchKit.postMessage(answer);\n\t\t}\n\t\telse if (window.webkit.messageHandlers.CompleteStep) {\n\t\t\tlet messageID = this.nextMessageID();\n\t\t\twindow.webkit.messageHandlers.CompleteStep.postMessage({\n\t\t\t\tmessageID: messageID,\n\t\t\t\tanswer: answer\n\t\t\t});\n\t\t}\n\t}\n\n\tquerySurveyAnswers(queryParameters: Model.SurveyAnswersQuery): Promise<Model.SurveyAnswersPage> {\n\t\tqueryParameters = Object.assign({}, queryParameters);\n\n\t\tif (queryParameters.hasOwnProperty(\"surveyName\")) {\n\t\t\tqueryParameters.surveyName = MyDataHelps.reduceArrayAndEscape(queryParameters.surveyName);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"stepIdentifier\")) {\n\t\t\tqueryParameters.stepIdentifier = MyDataHelps.reduceArrayAndEscape(queryParameters.stepIdentifier);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"resultIdentifier\")) {\n\t\t\tqueryParameters.resultIdentifier = MyDataHelps.reduceArrayAndEscape(queryParameters.resultIdentifier);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"answer\")) {\n\t\t\tqueryParameters.answer = MyDataHelps.reduceArrayAndEscape(queryParameters.answer);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"before\")) {\n\t\t\tqueryParameters.before = MyDataHelps.convertDateToIsoString(queryParameters.before);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"after\")) {\n\t\t\tqueryParameters.after = MyDataHelps.convertDateToIsoString(queryParameters.after);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"event\")) {\n\t\t\tqueryParameters.event = MyDataHelps.reduceArrayAndEscape(queryParameters.event);\n\t\t}\n\n\t\tconst queryString = new URLSearchParams(queryParameters as Record<string, any>).toString();\n\t\tconst endpoint = 'surveyanswers?' + queryString;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tquerySurveyResults(queryParameters: Model.SurveyResultsQuery): Promise<Model.SurveyResultsPage> {\n\t\tqueryParameters = { ...queryParameters }\n\n\t\tif (queryParameters.hasOwnProperty(\"surveyName\")) {\n\t\t\tqueryParameters.surveyName = MyDataHelps.reduceArrayAndEscape(queryParameters.surveyName);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"event\")) {\n\t\t\tqueryParameters.event = MyDataHelps.reduceArrayAndEscape(queryParameters.event);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"before\")) {\n\t\t\tqueryParameters.before = MyDataHelps.convertDateToIsoString(queryParameters.before);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"after\")) {\n\t\t\tqueryParameters.after = MyDataHelps.convertDateToIsoString(queryParameters.after);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"insertedBefore\")) {\n\t\t\tqueryParameters.insertedBefore = MyDataHelps.convertDateToIsoString(queryParameters.insertedBefore);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"insertedAfter\")) {\n\t\t\tqueryParameters.insertedAfter = MyDataHelps.convertDateToIsoString(queryParameters.insertedAfter);\n\t\t}\n\n\t\tconst queryString = new URLSearchParams(queryParameters as Record<string, any>).toString();\n\t\tconst endpoint = 'surveyresults?' + queryString;\n\n\t\treturn this.connect()\n\t\t\t.then(() => this.makeRequest(endpoint, 'GET', null))\n\t\t\t.then(MyDataHelps.validateResponse)\n\t\t\t.then(response => response.json());\n\t}\n\n\tdeleteSurveyResult(resultID: string): Promise<void> {\n\t\tconst endpoint = 'surveyresults/' + encodeURIComponent(resultID);\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'DELETE', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function () {\n\t\t\t\treturn;\n\t\t\t});\n\t}\n\n\tquerySurveyTasks(queryParameters: Model.SurveyTaskQueryParameters): Promise<Model.SurveyTasksPage> {\n\t\tqueryParameters = Object.assign({}, queryParameters);\n\n\t\tif (queryParameters.hasOwnProperty(\"status\")) {\n\t\t\tqueryParameters.status = MyDataHelps.reduceArrayAndEscape(queryParameters.status) as Model.SurveyTaskStatus;\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"surveyName\")) {\n\t\t\tqueryParameters.surveyName = MyDataHelps.reduceArrayAndEscape(queryParameters.surveyName);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"event\")) {\n\t\t\tqueryParameters.event = MyDataHelps.reduceArrayAndEscape(queryParameters.event);\n\t\t}\n\n\t\tconst queryString = new URLSearchParams(queryParameters as Record<string, any>).toString();\n\t\tconst endpoint = 'surveytasks?' + queryString;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tqueryInboxItems(queryParameters: Model.InboxItemQueryParameters): Promise<Model.InboxItemsPage> {\n\t\tconst assignDefined = (target: any, source: any): any => {\n\t\t\tfor (const key of Object.keys(source)) {\n\t\t\t\tconst value = source[key];\n\t\t\t\tif (value !== undefined) {\n\t\t\t\t\ttarget[key] = value;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn target;\n\t\t};\n\n\t\tqueryParameters = assignDefined({}, queryParameters);\n\n\t\tif (queryParameters.hasOwnProperty(\"type\")) {\n\t\t\tqueryParameters.type = MyDataHelps.reduceArrayAndEscape(queryParameters.type) as Model.InboxItemType;\n\t\t}\n\n\t\tif (queryParameters.hasOwnProperty(\"status\")) {\n\t\t\tqueryParameters.status = MyDataHelps.reduceArrayAndEscape(queryParameters.status) as Model.InboxItemStatus;\n\t\t}\n\n\t\tconst queryString = new URLSearchParams(queryParameters as Record<string, any>).toString();\n\t\tconst endpoint = 'inbox?' + queryString;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tgetInboxItem(id: Model.Guid): Promise<Model.InboxItem> {\n\t\tconst endpoint = `inbox/${id}`;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tupdateInboxItem(id: Model.Guid, update: Model.InboxItemUpdate): Promise<Model.InboxItemUpdateResult> {\n\t\tconst endpoint = `inbox/${id}/${update}`;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'PUT', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tstartEmbeddedSurvey(linkIdentifier: string, surveyName: string, language: string): Promise<any> {\n\t\tif (!language) {\n\t\t\tlanguage = this.getCurrentLanguage();\n\t\t}\n\t\tlet surveyUrl = this.baseUrl + \"mydatahelps/\" + linkIdentifier + '/surveylink/' + surveyName + \"?lang=\" + language;\n\t\treturn this.startEmbeddedSurveyInternal(surveyUrl);\n\t}\n\n\t// Navigation\n\n\topenExternalUrl(url: string): void {\n\t\tif (window.webkit.messageHandlers.OpenExternalLink) {\n\t\t\twindow.webkit.messageHandlers.OpenExternalLink.postMessage(url);\n\t\t}\n\t}\n\n\topenEmbeddedUrl(url: string): void {\n\t\tif (window.webkit.messageHandlers.OpenEmbeddedLink) {\n\t\t\twindow.webkit.messageHandlers.OpenEmbeddedLink.postMessage(url);\n\t\t}\n\t}\n\n\tshowTab(tabKey: string): void {\n\t\tif (window.webkit.messageHandlers.ShowTab) {\n\t\t\twindow.webkit.messageHandlers.ShowTab.postMessage(tabKey);\n\t\t}\n\t}\n\n\topenApplication(url: string, options?: Model.OpenApplicationOptions): void {\n\t\tif (window.webkit.messageHandlers.OpenExternalApplication) {\n\t\t\tlet messageID = this.nextMessageID();\n\t\t\twindow.webkit.messageHandlers.OpenExternalApplication.postMessage({\n\t\t\t\tmessageID: messageID,\n\t\t\t\turl: url,\n\t\t\t\tmodal: !!(options && options.modal)\n\t\t\t});\n\t\t}\n\t}\n\n\topenSecondaryView(projectId: string, viewKey: string, options?: Model.OpenApplicationOptions): void {\n\t\tthis.lookupSecondaryView(projectId, viewKey).then(secondaryView => {\n\t\t\treturn this.openApplication(secondaryView.url, options);\n\t\t});\n\t};\n\n\tlookupSecondaryView(projectId: string, viewKey: string): Promise<Model.SecondaryView> {\n\t\tlet baseUrl = this.baseUrl;\n\t\tif (!baseUrl.endsWith(\"/\")) {\n\t\t\tbaseUrl += \"/\";\n\t\t}\n\t\tconst viewLookupUrl = `${baseUrl}api/v1/public/projects/${projectId}/views/${viewKey}`;\n\t\treturn fetch(viewLookupUrl, { method: 'GET', headers: { 'Accept': 'application/json' } })\n\t\t\t.then(response => {\n\t\t\t\tif (!response.ok) {\n\t\t\t\t\treturn response.text().then(text => {\n\t\t\t\t\t\tthrow new Error(`Failed to fetch secondary view: ${response.status} ${response.statusText}${text ? ' - ' + text : ''}`);\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tdismiss(): void {\n\t\tif (window.webkit.messageHandlers.Dismiss) {\n\t\t\twindow.webkit.messageHandlers.Dismiss.postMessage({});\n\t\t}\n\t}\n\n\tback(): void {\n\t\tif (window.webkit.messageHandlers.PopNavigation) {\n\t\t\twindow.webkit.messageHandlers.PopNavigation.postMessage({});\n\t\t}\n\t}\n\n\tshowDashboard(dashboardKey: string, options?: Model.ShowDashboardOptions): void {\n\t\tif (window.webkit.messageHandlers.ShowParticipantDashboard) {\n\t\t\twindow.webkit.messageHandlers.ShowParticipantDashboard.postMessage({\n\t\t\t\tdashboardKey: dashboardKey,\n\t\t\t\tmodal: !!(options && options.modal),\n\t\t\t\ttitle: options && options.title ? options.title : undefined\n\t\t\t});\n\t\t}\n\t}\n\n\tshowWebVisualization(visualizationKey: string, parameters: object, options: Model.ShowWebVisualizationOptions): void {\n\t\tif (window.webkit.messageHandlers.ShowParticipantWebVisualization) {\n\t\t\twindow.webkit.messageHandlers.ShowParticipantWebVisualization.postMessage({\n\t\t\t\tvisualizationKey: visualizationKey,\n\t\t\t\tparameters: parameters,\n\t\t\t\tmodal: !!(options && options.modal),\n\t\t\t\ttitle: options && options.title ? options.title : undefined\n\t\t\t});\n\t\t}\n\t}\n\n\tshowWebVisualizationPdf(visualizationKey: string, parameters: object, options: Model.ShowWebVisualizationPdfOptions): void {\n\t\tif (window.webkit.messageHandlers.ShowParticipantWebVisualizationPDF) {\n\t\t\twindow.webkit.messageHandlers.ShowParticipantWebVisualizationPDF.postMessage({\n\t\t\t\tvisualizationKey: visualizationKey,\n\t\t\t\tparameters: parameters,\n\t\t\t\tlandscape: !!(options && options.landscape),\n\t\t\t\thtmlViewerZoom: options && options.htmlViewerZoom\n\t\t\t});\n\t\t}\n\t}\n\n\tshowProject(projectCode: string): void {\n\t\tif (window.webkit.messageHandlers.ShowProject) {\n\t\t\twindow.webkit.messageHandlers.ShowProject.postMessage({ code: projectCode });\n\t\t}\n\t}\n\n\tjoinProject(projectCode: string): void {\n\t\tif (window.webkit.messageHandlers.JoinProject) {\n\t\t\twindow.webkit.messageHandlers.JoinProject.postMessage({ code: projectCode });\n\t\t}\n\t}\n\n\t//Events\n\n\ton(eventName: Model.EventName, callback: (EventData) => void): void {\n\n\t\tif (!this.supportedEvents.includes(eventName)) {\n\t\t\tthrow new Error(eventName + \" is not a supported event type.\");\n\t\t}\n\n\t\tif (!this.registeredEventHandlers[eventName]) {\n\t\t\tthis.registeredEventHandlers[eventName] = [];\n\t\t}\n\n\t\tthis.registeredEventHandlers[eventName].push(callback);\n\t}\n\n\toff(eventName: Model.EventName, callback: (EventData) => void): void {\n\n\t\tif (!this.supportedEvents.includes(eventName)) {\n\t\t\tthrow new Error(eventName + \" is not a supported event type.\");\n\t\t}\n\n\t\tif (!this.registeredEventHandlers[eventName]) return;\n\n\t\tlet eventHandlerIndex = this.registeredEventHandlers[eventName].indexOf(callback);\n\n\t\tif (eventHandlerIndex !== -1) {\n\t\t\tthis.registeredEventHandlers[eventName].splice(eventHandlerIndex, 1);\n\t\t}\n\t}\n\n\ttriggerEvent(event: Model.EventData): void {\n\t\tlet eventName = event.type;\n\t\tif (this.supportedEvents.includes(eventName) && this.registeredEventHandlers[eventName]) {\n\t\t\tthis.registeredEventHandlers[eventName].forEach(function (handler) {\n\t\t\t\thandler(event);\n\t\t\t});\n\t\t}\n\t}\n\n\tsetActionResult(data: Model.EventData): void {\n\t\tif (Object.prototype.hasOwnProperty.call(this.messageHandlers, data.messageID) &&\n\t\t\ttypeof this.messageHandlers[data.messageID] === 'function') {\n\t\t\tthis.messageHandlers[data.messageID](data);\n\t\t} else {\n\t\t\tconsole.error(`Invalid messageID: ${data.messageID}`);\n\t\t}\n\t}\n\n\t// Participant Info\n\n\tgetParticipantInfo(): Promise<Model.ParticipantInfo> {\n\t\tconst mdh = this;\n\t\tconst endpoint = 'participant';\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tpersistParticipantInfo(demographics: Partial<Model.ParticipantDemographics> | undefined, customFields: StringMap): Promise<Model.ParticipantInfo> {\n\t\tconst endpoint = 'participant';\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'PUT', { demographics, customFields });\n\t\t\t})\n\t\t\t.then(async function (response) {\n\t\t\t\tif (!response.ok) {\n\t\t\t\t\tvar errorJson = await response.json();\n\t\t\t\t\tthrow errorJson.message;\n\t\t\t\t}\n\t\t\t\treturn response.json();\n\t\t\t})\n\t\t\t.catch(function (error) {\n\t\t\t\tconsole.log(\"Unable to persist participant: \" + error);\n\t\t\t});\n\t}\n\n\tgetProjectInfo(): Promise<Model.ProjectInfo> {\n\t\tconst mdh = this;\n\t\tconst endpoint = 'project';\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\t// Device Data\n\n\tgetDeviceDataPoint(id: Model.Guid): Promise<Model.DeviceDataPoint> {\n\t\tconst endpoint = 'devicedata/' + id;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tdeleteDeviceDataPoint(id: Model.Guid): Promise<void> {\n\t\tconst endpoint = 'devicedata/' + id;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'DELETE', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function () {\n\t\t\t\treturn;\n\t\t\t});\n\t}\n\n\tqueryDeviceData(queryParameters: Model.DeviceDataPointQuery): Promise<Model.DeviceDataPointsPage> {\n\t\tqueryParameters = Object.assign({}, queryParameters);\n\n\t\tif (queryParameters.hasOwnProperty(\"type\")) {\n\t\t\tqueryParameters.type = MyDataHelps.reduceArrayAndEscape(queryParameters.type);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"observedBefore\")) {\n\t\t\tqueryParameters.observedBefore = MyDataHelps.convertDateToIsoString(queryParameters.observedBefore);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"observedAfter\")) {\n\t\t\tqueryParameters.observedAfter = MyDataHelps.convertDateToIsoString(queryParameters.observedAfter);\n\t\t}\n\n\t\tconst queryString = new URLSearchParams(queryParameters as Record<string, any>).toString();\n\t\tconst endpoint = 'devicedata?' + queryString;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tpersistDeviceData(deviceDataPoints: Model.PersistableDeviceDataPoint[]): Promise<void> {\n\t\tconst endpoint = 'devicedata';\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'POST', deviceDataPoints);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function () {\n\t\t\t\treturn;\n\t\t\t});\n\t}\n\n\tgetDeviceDataAllDataTypes(enabled?: boolean, namespace?: string): Promise<Model.SupportedDeviceDataType[]> {\n\t\tconst queryParameters: Record<string, string> = {};\n\n\t\tif (enabled !== undefined) {\n\t\t\tqueryParameters['enabled'] = enabled.toString();\n\t\t}\n\n\t\tif (namespace) {\n\t\t\tqueryParameters['namespace'] = namespace;\n\t\t}\n\n\t\tconst queryString = new URLSearchParams(queryParameters).toString();\n\t\tconst endpoint = `devicedata/allDataTypes?${queryString}`;\n\n\t\treturn this.connect()\n\t\t\t.then(() => this.makeRequest(endpoint, 'GET', null))\n\t\t\t.then(MyDataHelps.validateResponse)\n\t\t\t.then(response => response.json());\n\t}\n\n\t// Device Data V2\n\n\tqueryDeviceDataV2(queryParameters: Model.DeviceDataV2Query): Promise<Model.DeviceDataV2Page> {\n\t\tqueryParameters = Object.assign({}, queryParameters);\n\n\t\tif (queryParameters.hasOwnProperty(\"observedBefore\")) {\n\t\t\tqueryParameters.observedBefore = MyDataHelps.convertDateToIsoString(queryParameters.observedBefore);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"observedAfter\")) {\n\t\t\tqueryParameters.observedAfter = MyDataHelps.convertDateToIsoString(queryParameters.observedAfter);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"insertedBefore\")) {\n\t\t\tqueryParameters.insertedBefore = MyDataHelps.convertDateToIsoString(queryParameters.insertedBefore);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"insertedAfter\")) {\n\t\t\tqueryParameters.insertedAfter = MyDataHelps.convertDateToIsoString(queryParameters.insertedAfter);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"modifiedBefore\")) {\n\t\t\tqueryParameters.modifiedBefore = MyDataHelps.convertDateToIsoString(queryParameters.modifiedBefore);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"modifiedAfter\")) {\n\t\t\tqueryParameters.modifiedAfter = MyDataHelps.convertDateToIsoString(queryParameters.modifiedAfter);\n\t\t}\n\t\tMyDataHelps.flattenPropertyShallow(queryParameters, \"dataSource\");\n\t\tMyDataHelps.flattenPropertyShallow(queryParameters, \"properties\");\n\n\t\tconst queryString = new URLSearchParams(queryParameters as Record<string, any>).toString();\n\t\tconst endpoint = 'devicedata?' + queryString;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null, 'v2');\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tqueryDeviceDataV2Aggregate(queryParameters: Model.DeviceDataV2AggregateQuery): Promise<Model.DeviceDataV2AggregatePage> {\n\t\tqueryParameters = Object.assign({}, queryParameters);\n\n\t\tif (queryParameters.hasOwnProperty(\"aggregateFunctions\")) {\n\t\t\tqueryParameters.aggregateFunctions = MyDataHelps.reduceArrayAndEscape(queryParameters.aggregateFunctions);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"observedBefore\")) {\n\t\t\tqueryParameters.observedBefore = MyDataHelps.convertDateToIsoString(queryParameters.observedBefore);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"observedAfter\")) {\n\t\t\tqueryParameters.observedAfter = MyDataHelps.convertDateToIsoString(queryParameters.observedAfter);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"insertedBefore\")) {\n\t\t\tqueryParameters.insertedBefore = MyDataHelps.convertDateToIsoString(queryParameters.insertedBefore);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"insertedAfter\")) {\n\t\t\tqueryParameters.insertedAfter = MyDataHelps.convertDateToIsoString(queryParameters.insertedAfter);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"modifiedBefore\")) {\n\t\t\tqueryParameters.modifiedBefore = MyDataHelps.convertDateToIsoString(queryParameters.modifiedBefore);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"modifiedAfter\")) {\n\t\t\tqueryParameters.modifiedAfter = MyDataHelps.convertDateToIsoString(queryParameters.modifiedAfter);\n\t\t}\n\t\tMyDataHelps.flattenPropertyShallow(queryParameters, \"dataSource\");\n\t\tMyDataHelps.flattenPropertyShallow(queryParameters, \"properties\");\n\n\t\tconst queryString = new URLSearchParams(queryParameters as Record<string, any>).toString();\n\t\tconst endpoint = 'devicedata/aggregate?' + queryString;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null, 'v2');\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tqueryDeviceDataV2DailySleep(queryParameters: Model.DeviceDataV2AggregateQuery): Promise<Model.DeviceDataV2DailySleepPage> {\n\t\tqueryParameters = Object.assign({}, queryParameters);\n\n\t\tif (queryParameters.hasOwnProperty(\"observedBefore\")) {\n\t\t\tqueryParameters.observedBefore = MyDataHelps.convertDateToIsoString(queryParameters.observedBefore);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"observedAfter\")) {\n\t\t\tqueryParameters.observedAfter = MyDataHelps.convertDateToIsoString(queryParameters.observedAfter);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"insertedBefore\")) {\n\t\t\tqueryParameters.insertedBefore = MyDataHelps.convertDateToIsoString(queryParameters.insertedBefore);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"insertedAfter\")) {\n\t\t\tqueryParameters.insertedAfter = MyDataHelps.convertDateToIsoString(queryParameters.insertedAfter);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"modifiedBefore\")) {\n\t\t\tqueryParameters.modifiedBefore = MyDataHelps.convertDateToIsoString(queryParameters.modifiedBefore);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"modifiedAfter\")) {\n\t\t\tqueryParameters.modifiedAfter = MyDataHelps.convertDateToIsoString(queryParameters.modifiedAfter);\n\t\t}\n\t\tMyDataHelps.flattenPropertyShallow(queryParameters, \"dataSource\");\n\t\tMyDataHelps.flattenPropertyShallow(queryParameters, \"properties\");\n\n\t\tconst queryString = new URLSearchParams(queryParameters as Record<string, any>).toString();\n\t\tconst endpoint = 'devicedata/aggregate/dailysleep?' + queryString;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null, 'v2');\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tgetDeviceDataV2AllDataTypes(enabled?: boolean, namespace?: string): Promise<Model.SupportedDeviceDataV2DataType[]> {\n\t\tconst queryParameters: Record<string, string> = {};\n\n\t\tif (enabled !== undefined) {\n\t\t\tqueryParameters['enabled'] = enabled.toString();\n\t\t}\n\n\t\tif (namespace) {\n\t\t\tqueryParameters['namespace'] = namespace;\n\t\t}\n\n\t\tconst queryString = new URLSearchParams(queryParameters).toString();\n\t\tconst endpoint = `devicedata/allDataTypes?${queryString}`;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null, 'v2');\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\t// External Accounts\n\n\tgetExternalAccountProviders(search: string | null, category: string | null, pageSize: number, pageNumber: number): Promise<Model.ExternalAccountProvidersPage> {\n\t\tlet searchParameters: any = {};\n\t\tif (!!search) searchParameters.search = search;\n\t\tif (!!category) searchParameters.category = category;\n\t\tif (!!pageSize) searchParameters.pageSize = pageSize;\n\t\tif (!!pageNumber) searchParameters.pageNumber = pageNumber;\n\n\t\tconst queryString = new URLSearchParams(searchParameters).toString();\n\t\tconst endpoint = 'externalaccountproviders?' + queryString;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tconnectExternalAccount(externalAccountProviderID: number, options?: Model.ConnectExternalAccountOptions): Promise<void> {\n\t\treturn new Promise<void>((resolve, reject) => {\n\n\t\t\tconst messageID = mdh.nextMessageID();\n\t\t\tmdh.messageHandlers[messageID] = function (connectProviderAccountResponse) {\n\t\t\t\tif (connectProviderAccountResponse && connectProviderAccountResponse.success) {\n\t\t\t\t\tresolve();\n\t\t\t\t} else {\n\t\t\t\t\treject(connectProviderAccountResponse.errorMessage)\n\t\t\t\t}\n\t\t\t};\n\n\t\t\tif (this.standaloneMode) {\n\t\t\t\tlet standaloneModeFinalRedirectPath = options?.standaloneModeFinalRedirectPath || window.location.href;\n\t\t\t\tconst mdh = this;\n\n\t\t\t\t// DEV: Safari blocks popups in AJAX responses. Work-around is to open a blank window before the request and set the URL later\n\t\t\t\tlet providerAuthWindow;\n\t\t\t\tif (options?.openNewWindow) {\n\t\t\t\t\tstandaloneModeFinalRedirectPath = `${standaloneModeFinalRedirectPath.split('?')[0]}?connectExternalAccount=true&messageID=${messageID}&success=%SUCCESSVALUE%`;\n\t\t\t\t\tlet windowFeatures = null;\n\t\t\t\t\tif (options?.width && options?.height) {\n\t\t\t\t\t\tconst w = options?.width;\n\t\t\t\t\t\tconst h = options?.height;\n\t\t\t\t\t\tconst y = window.outerHeight / 2 + window.screenY - (h / 2);\n\t\t\t\t\t\tconst x = window.outerWidth / 2 + window.screenX - (w / 2);\n\t\t\t\t\t\twindowFeatures = \"width=\" + w + \",height=\" + h + \",top=\" + y + \",left=\" + x;\n\t\t\t\t\t}\n\t\t\t\t\tproviderAuthWindow = window.open(`${this.baseUrl}home/loading`, 'providerauth', windowFeatures);\n\t\t\t\t}\n\n\t\t\t\tconst searchParameters = { finalRedirectPath: standaloneModeFinalRedirectPath };\n\t\t\t\tconst queryString = new URLSearchParams(searchParameters).toString();\n\t\t\t\tconst endpoint = \"externalaccountproviders/\" + externalAccountProviderID + \"/connect?\" + queryString;\n\n\t\t\t\tthis\n\t\t\t\t\t.connect()\n\t\t\t\t\t.then(function () {\n\t\t\t\t\t\treturn mdh.makeRequest(endpoint, 'POST', null);\n\t\t\t\t\t})\n\t\t\t\t\t.then(function (response) {\n\t\t\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t\t\t})\n\t\t\t\t\t.then(function (response) {\n\t\t\t\t\t\treturn response.text();\n\t\t\t\t\t})\n\t\t\t\t\t.then(function (redirectUrl) {\n\t\t\t\t\t\tif (providerAuthWindow) {\n\t\t\t\t\t\t\tproviderAuthWindow.location = redirectUrl.replace(/['\"]+/g, '');\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\twindow.top.location = redirectUrl.replace(/['\"]+/g, '');\n\t\t\t\t\t\t}\n\t\t\t\t\t})\n\t\t\t\t\t.catch(function (error) {\n\t\t\t\t\t\treject(error);\n\t\t\t\t\t});\n\t\t\t} else if (window.webkit.messageHandlers.ConnectExternalAccount) {\n\t\t\t\twindow.webkit.messageHandlers.ConnectExternalAccount.postMessage({\n\t\t\t\t\texternalAccountProviderID: externalAccountProviderID,\n\t\t\t\t\tmessageID: messageID,\n\t\t\t\t\t...options\n\t\t\t\t});\n\t\t\t}\n\t\t});\n\t}\n\n\tgetExternalAccounts(): Promise<Model.ExternalAccount[]> {\n\t\tconst endpoint = 'externalaccounts';\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\trefreshExternalAccount(accountID: number): Promise<void> {\n\t\tconst endpoint = 'externalaccounts/refresh/' + accountID;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'POST', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function () {\n\t\t\t\treturn;\n\t\t\t});\n\t}\n\n\tdeleteExternalAccount(accountID: number): Promise<any> {\n\t\tconst endpoint = 'externalaccounts/delete/' + encodeURIComponent(accountID);\n\t\tconst mdh = this;\n\n\t\tif (this.isStandaloneMode()) {\n\t\t\treturn this\n\t\t\t\t.connect()\n\t\t\t\t.then(function () {\n\t\t\t\t\treturn mdh.makeRequest(endpoint, 'DELETE', null);\n\t\t\t\t})\n\t\t\t\t.then(function (response) {\n\t\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t\t});\n\t\t}\n\n\t\treturn new Promise(function (resolve, reject) {\n\t\t\tif (window.webkit.messageHandlers.DeleteProviderAccount) {\n\t\t\t\tconst messageID = mdh.nextMessageID();\n\t\t\t\tmdh.messageHandlers[messageID] = function (deleteProviderAccountResponse) {\n\t\t\t\t\tif (!deleteProviderAccountResponse.success) {\n\t\t\t\t\t\treject(deleteProviderAccountResponse)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tresolve(deleteProviderAccountResponse);\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t\twindow.webkit.messageHandlers.DeleteProviderAccount.postMessage({\n\t\t\t\t\tmessageID: messageID,\n\t\t\t\t\taccountID: accountID\n\t\t\t\t});\n\t\t\t} else {\n\t\t\t\treject();\n\t\t\t}\n\t\t});\n\t}\n\n\tgetFeaturedProviders(context?: string): Promise<Model.ExternalAccountProvider[]> {\n\t\tconst queryParameters: Record<string, string> = {};\n\n\t\tif (context) {\n\t\t\tqueryParameters['featuredProvidersContext'] = context;\n\t\t}\n\n\t\tconst queryString = new URLSearchParams(queryParameters).toString();\n\t\tconst endpoint = `featuredexternalaccountproviders?${queryString}`;\n\n\t\treturn this.connect()\n\t\t\t.then(() => this.makeRequest(endpoint, 'GET', null))\n\t\t\t.then(MyDataHelps.validateResponse)\n\t\t\t.then(response => response.json());\n\t}\n\n\t// Notifications\n\n\tqueryNotifications(queryParameters: Model.NotificationQueryParameters): Promise<Model.NotificationsPage> {\n\t\tqueryParameters = Object.assign({}, queryParameters);\n\n\t\tif (queryParameters.hasOwnProperty(\"sentBefore\")) {\n\t\t\tqueryParameters.sentBefore = MyDataHelps.convertDateToIsoString(queryParameters.sentBefore);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"sentAfter\")) {\n\t\t\tqueryParameters.sentAfter = MyDataHelps.convertDateToIsoString(queryParameters.sentAfter);\n\t\t}\n\n\t\tconst queryString = new URLSearchParams(queryParameters as Record<string, any>).toString();\n\t\tconst endpoint = 'notifications?' + queryString;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\t// Fitbit\n\n\tqueryFitbitDailySummaries(queryParameters: Model.FitbitQuery): Promise<Model.FitbitDailySummariesPage> {\n\t\tqueryParameters = Object.assign({}, queryParameters);\n\n\t\tif (queryParameters.hasOwnProperty(\"startDate\")) {\n\t\t\tqueryParameters.startDate = MyDataHelps.convertDateToIsoString(queryParameters.startDate);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"endDate\")) {\n\t\t\tqueryParameters.endDate = MyDataHelps.convertDateToIsoString(queryParameters.endDate);\n\t\t}\n\n\t\tconst queryString = new URLSearchParams(queryParameters as Record<string, any>).toString();\n\t\tconst endpoint = 'fitbit/dailySummaries?' + queryString;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tqueryFitbitSleepLogs(queryParameters: Model.FitbitQuery): Promise<Model.FitbitSleepLogsPage> {\n\t\tqueryParameters = Object.assign({}, queryParameters);\n\n\t\tif (queryParameters.hasOwnProperty(\"startDate\")) {\n\t\t\tqueryParameters.startDate = MyDataHelps.convertDateToIsoString(queryParameters.startDate);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"endDate\")) {\n\t\t\tqueryParameters.endDate = MyDataHelps.convertDateToIsoString(queryParameters.endDate);\n\t\t}\n\n\t\tconst queryString = new URLSearchParams(queryParameters as Record<string, any>).toString();\n\t\tconst endpoint = 'fitbit/sleepLogs?' + queryString;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\t// AppleHealth\n\n\tqueryAppleHealthActivitySummaries(queryParameters: Model.AppleHealthQuery): Promise<Model.AppleHealthActivitySummaryPage> {\n\t\tqueryParameters = Object.assign({}, queryParameters);\n\n\t\tif (queryParameters.hasOwnProperty(\"startDate\")) {\n\t\t\tqueryParameters.startDate = MyDataHelps.convertDateToIsoString(queryParameters.startDate);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"endDate\")) {\n\t\t\tqueryParameters.endDate = MyDataHelps.convertDateToIsoString(queryParameters.endDate);\n\t\t}\n\n\t\tconst queryString = new URLSearchParams(queryParameters as Record<string, any>).toString();\n\t\tconst endpoint = 'appleHealth/activitySummaries?' + queryString;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tqueryAppleHealthWorkouts(queryParameters: Model.AppleHealthQuery): Promise<Model.AppleHealthWorkoutPage> {\n\t\tqueryParameters = Object.assign({}, queryParameters);\n\n\t\tif (queryParameters.hasOwnProperty(\"startDate\")) {\n\t\t\tqueryParameters.startDate = MyDataHelps.convertDateToIsoString(queryParameters.startDate);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"endDate\")) {\n\t\t\tqueryParameters.endDate = MyDataHelps.convertDateToIsoString(queryParameters.endDate);\n\t\t}\n\n\t\tconst queryString = new URLSearchParams(queryParameters as Record<string, any>).toString();\n\t\tconst endpoint = 'appleHealth/workouts?' + queryString;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\t// Files\n\n\tuploadFile(file: File, category: string, fileName?: string): Promise<void> {\n\n\t\tif (file.size > 200 * 1024 * 1024) {\n\t\t\tthrow new Error(\"File size exceeds the maximum allowed size of 200MB.\");\n\t\t}\n\n\t\tconst mdh = this;\n\t\tconst endpoint = 'files?category=' + category + '&fileName=' + encodeURIComponent(fileName ?? file.name);\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'POST', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t})\n\t\t\t.then(function (json) {\n\t\t\t\treturn fetch(json.preSignedUrl, {\n\t\t\t\t\tmethod: 'PUT',\n\t\t\t\t\tbody: file,\n\t\t\t\t\theaders: {\n\t\t\t\t\t\t'Content-Type': file.type,\n\t\t\t\t\t\t'x-amz-server-side-encryption': 'AES256'\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function () {\n\t\t\t\treturn;\n\t\t\t});\n\t}\n\n\tqueryFiles(queryParameters: Model.UploadedFileQuery): Promise<Model.UploadedFilesPage> {\n\t\tconst queryString = new URLSearchParams(queryParameters as Record<string, any>).toString();\n\t\tconst endpoint = 'files?' + queryString;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tgetFileDownloadUrl(key: string): Promise<Model.DownloadedFile> {\n\n\t\tif (!key) throw new Error(\"Please specify the key of the file to download.\");\n\n\t\tconst endpoint = 'files/download?key=' + key;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tdeleteFile(key: string): Promise<void> {\n\n\t\tif (!key) throw new Error(\"Please specify the key of the file to delete.\");\n\n\t\tconst endpoint = 'files?key=' + key;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'DELETE', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function () {\n\t\t\t\treturn;\n\t\t\t});\n\t}\n\n\t// Authorization\n\n\tconnect(): Promise<void> {\n\t\tconst mdh = this;\n\t\tlet refreshDelegatedAccessToken = function () {\n\t\t\tmdh.token = null;\n\n\t\t\tmdh.refreshTokenPromise = new Promise(function (resolve, reject) {\n\t\t\t\tlet messageID = mdh.nextMessageID();\n\t\t\t\tmdh.messageHandlers[messageID] = function (tokenResponse) {\n\t\t\t\t\tif (tokenResponse.success) {\n\t\t\t\t\t\tmdh.tokenExpires = Date.now() + (tokenResponse.data.expires_in * 1000);\n\t\t\t\t\t\tmdh.token = tokenResponse.data;\n\t\t\t\t\t\tmdh.baseUrl = tokenResponse.baseUrl;\n\t\t\t\t\t\tsetTimeout(refreshDelegatedAccessToken, ((tokenResponse.data.expires_in - mdh.accessTokenRenewalBufferSeconds) * 1000));\n\t\t\t\t\t\tresolve(null);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tmdh.token = null;\n\t\t\t\t\t\treject(tokenResponse.message);\n\t\t\t\t\t}\n\t\t\t\t\tmdh.messageHandlers[messageID] = null;\n\t\t\t\t\tmdh.refreshTokenPromise = null;\n\t\t\t\t};\n\n\t\t\t\twindow.webkit.messageHandlers.GetDelegatedAccessToken.postMessage({ messageID: messageID });\n\t\t\t});\n\t\t};\n\n\t\tif (this.token && Date.now() < this.tokenExpires) {\n\t\t\treturn Promise.resolve();\n\t\t}\n\n\t\tif (this.isStandaloneMode() && !this.isEmbeddedMode()) {\n\t\t\tlet error = this.token ? \"access token is expired or invalid\" : \"access token must be explicitly provided using the setParticipantAccess method\";\n\t\t\tconsole.log(error);\n\t\t\treturn Promise.reject(error);\n\t\t}\n\n\t\tif (!this.refreshTokenPromise) {\n\t\t\trefreshDelegatedAccessToken();\n\t\t}\n\n\t\t// Re-use promise if refresh already in progress\n\t\treturn this.refreshTokenPromise;\n\t}\n\n\tsetParticipantAccessToken(token: Model.Token, baseUrl?: string): void {\n\t\tthis.enableStandaloneMode();\n\t\tthis.token = token;\n\t\tif (baseUrl) {\n\t\t\tthis.baseUrl = baseUrl;\n\t\t}\n\t\tthis.tokenExpires = Date.now() + (this.token.expires_in * 1000);\n\t\tconst mdh = this;\n\t\tsetTimeout(function () {\n\t\t\tmdh.triggerEvent({ type: \"tokenWillExpire\" });\n\t\t}, ((this.token.expires_in - this.accessTokenRenewalBufferSeconds) * 1000));\n\t}\n\n\t// Miscellaneous\n\n\tisStandaloneMode() {\n\t\treturn this.standaloneMode;\n\t}\n\n\tisEmbeddedMode() {\n\t\treturn this.embeddedMode;\n\t}\n\n\tenableStandaloneMode(embeddedMode: boolean = false, baseUrl?: string) {\n\t\tthis.standaloneMode = true;\n\t\tthis.embeddedMode = embeddedMode;\n\t\tif (baseUrl) {\n\t\t\tthis.baseUrl = baseUrl;\n\t\t}\n\t\tif (window.webkit) {\n\t\t\twindow.webkit.messageHandlers = embeddedMode ? {\n\t\t\t\tGetDelegatedAccessToken: window.webkit.messageHandlers.GetDelegatedAccessToken,\n\t\t\t\tOpenExternalLink: window.webkit.messageHandlers.OpenExternalLink,\n\t\t\t\tOpenEmbeddedLink: window.webkit.messageHandlers.OpenEmbeddedLink,\n\t\t\t\tOpenExternalApplication: window.webkit.messageHandlers.OpenExternalApplication,\n\t\t\t\tPopNavigation: window.webkit.messageHandlers.PopNavigation,\n\t\t\t\tDismiss: window.webkit.messageHandlers.Dismiss,\n\t\t\t} : {};\n\t\t}\n\t}\n\n\tsetStatusBarStyle(style: Model.StatusBarStyle): void {\n\t\tif (window.webkit.messageHandlers.SetStatusBarStyle) {\n\t\t\twindow.webkit.messageHandlers.SetStatusBarStyle.postMessage({ style: style });\n\t\t}\n\t}\n\n\tgetDeviceInfo(): Promise<Model.DeviceInfo> {\n\t\tlet mdh = this;\n\t\treturn new Promise<Model.DeviceInfo>(function (resolve, reject) {\n\t\t\tif (mdh.isStandaloneMode()) {\n\t\t\t\tresolve(null);\n\t\t\t} else if (window.webkit.messageHandlers.GetDeviceInfo) {\n\t\t\t\tlet messageID = mdh.nextMessageID();\n\t\t\t\tmdh.messageHandlers[messageID] = function (deviceInfoResponse) {\n\t\t\t\t\tresolve(deviceInfoResponse.data);\n\t\t\t\t};\n\t\t\t\twindow.webkit.messageHandlers.GetDeviceInfo.postMessage({ messageID: messageID });\n\t\t\t} else {\n\t\t\t\treject();\n\t\t\t}\n\t\t});\n\t}\n\n\tsetSupportedLanguages(languages: string[]) {\n\t\tthis.supportedLanguages.length = 0;\n\t\tfor (let i = 0; i < languages.length; i++) {\n\t\t\tthis.supportedLanguages.push(languages[i].replace(\"_\", \"-\"));\n\t\t}\n\t}\n\n\tgetStepConfiguration(): Promise<Model.StepConfiguration> {\n\t\tlet mdh = this;\n\t\treturn new Promise<Model.StepConfiguration>(function (resolve, reject) {\n\t\t\tif (mdh.isStandaloneMode()) {\n\t\t\t\tresolve(null);\n\t\t\t} else if (window.webkit.messageHandlers.GetStepConfiguration) {\n\t\t\t\tlet messageID = mdh.nextMessageID();\n\t\t\t\tmdh.messageHandlers[messageID] = function (stepConfigurationResponse) {\n\t\t\t\t\tresolve(stepConfigurationResponse.data);\n\t\t\t\t};\n\t\t\t\twindow.webkit.messageHandlers.GetStepConfiguration.postMessage({ messageID: messageID });\n\t\t\t} else {\n\t\t\t\treject();\n\t\t\t}\n\t\t});\n\t}\n\n\tgetSurveyContext(): Promise<Model.SurveyContext> {\n\t\tlet mdh = this;\n\t\treturn new Promise(function (resolve, reject) {\n\t\t\tif (mdh.isStandaloneMode()) {\n\t\t\t\tresolve(null);\n\t\t\t}\n\t\t\tmdh.getDeviceInfo().then(function (deviceInfo) {\n\t\t\t\tif (deviceInfo.platform !== \"Web\") {\n\t\t\t\t\tresolve({ surveyMode: \"Survey\" });\n\t\t\t\t}\n\t\t\t\telse if (window.webkit.messageHandlers.GetSurveyContext) {\n\t\t\t\t\tlet messageID = mdh.nextMessageID();\n\t\t\t\t\tmdh.messageHandlers[messageID] = function (surveyContextResponse) {\n\t\t\t\t\t\tresolve(surveyContextResponse.data);\n\t\t\t\t\t};\n\t\t\t\t\twindow.webkit.messageHandlers.GetSurveyContext.postMessage({ messageID: messageID });\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\treject();\n\t\t\t\t}\n\t\t\t}).catch(function (error) {\n\t\t\t\treject();\n\t\t\t});\n\t\t});\n\t}\n\n\tgetCurrentSurveyAnswers(): Promise<Model.CurrentSurveyAnswer[]> {\n\t\tlet mdh = this;\n\t\treturn new Promise<Model.CurrentSurveyAnswer[]>(function (resolve, reject) {\n\t\t\tif (mdh.isStandaloneMode()) {\n\t\t\t\tresolve(null);\n\t\t\t} else if (window.webkit.messageHandlers.GetCurrentSurveyAnswers) {\n\t\t\t\tlet messageID = mdh.nextMessageID();\n\t\t\t\tmdh.messageHandlers[messageID] = function (currentSurveyAnswersResponse) {\n\t\t\t\t\tresolve(currentSurveyAnswersResponse.data);\n\t\t\t\t};\n\t\t\t\twindow.webkit.messageHandlers.GetCurrentSurveyAnswers.postMessage({ messageID: messageID });\n\t\t\t} else {\n\t\t\t\treject();\n\t\t\t}\n\t\t});\n\t}\n\n\tsetCurrentLanguage(language: string) {\n\t\tif (language) {\n\t\t\tlet supportedLanguage = this.getSupportedLanguage(language);\n\t\t\tif (supportedLanguage) {\n\t\t\t\tthis.language = supportedLanguage;\n\t\t\t} else {\n\t\t\t\tconsole.warn(`language ${language} not supported`);\n\t\t\t}\n\t\t} else {\n\t\t\tthis.language = language;\n\t\t}\n\t}\n\n\tgetCurrentLanguage(): string {\n\t\tlet searchParams = new URLSearchParams(window.location.search);\n\t\tlet lang;\n\t\tif (searchParams.has(\"lang\")) {\n\t\t\tlang = this.getSupportedLanguage(searchParams.get(\"lang\"));\n\t\t\tif (lang) {\n\t\t\t\treturn lang;\n\t\t\t} else {\n\t\t\t\tconsole.warn(`language ${searchParams.get(\"lang\")} not supported`);\n\t\t\t}\n\t\t}\n\t\treturn this.language || navigator.language;\n\t}\n\n\tshowGoogleFitSettings(): void {\n\t\tif (window.webkit.messageHandlers.ShowGoogleFitSettings) {\n\t\t\twindow.webkit.messageHandlers.ShowGoogleFitSettings.postMessage({});\n\t\t}\n\t}\n\n\tshowHealthConnectSettings(): void {\n\t\tif (window.webkit.messageHandlers.HealthConnectSettings) {\n\t\t\twindow.webkit.messageHandlers.HealthConnectSettings.postMessage({});\n\t\t}\n\t}\n\n\tshowHealthConnectPrompt(): void {\n\t\tif (window.webkit.messageHandlers.HealthConnectPrompt) {\n\t\t\twindow.webkit.messageHandlers.HealthConnectPrompt.postMessage({});\n\t\t}\n\t}\n\n\tgetHealthConnectStatus(): Promise<Model.HealthConnectStatus> {\n\t\tlet mdh = this;\n\t\treturn new Promise<Model.HealthConnectStatus>(function (resolve, reject) {\n\t\t\tif (mdh.isStandaloneMode()) {\n\t\t\t\tresolve(null);\n\t\t\t} else if (window.webkit.messageHandlers.HealthConnectStatus) {\n\t\t\t\tlet messageID = mdh.nextMessageID();\n\t\t\t\tmdh.messageHandlers[messageID] = function (statusResponse) {\n\t\t\t\t\tresolve(statusResponse.data);\n\t\t\t\t};\n\t\t\t\twindow.webkit.messageHandlers.HealthConnectStatus.postMessage({ messageID: messageID });\n\t\t\t} else {\n\t\t\t\treject();\n\t\t\t}\n\t\t});\n\t}\n\n\tshowHealthConnectPhrPrompt(): void {\n\t\tif (window.webkit.messageHandlers.HealthConnectPhrPrompt) {\n\t\t\twindow.webkit.messageHandlers.HealthConnectPhrPrompt.postMessage({});\n\t\t}\n\t}\n\n\tgetHealthConnectPhrStatus(): Promise<Model.HealthConnectPhrStatus> {\n\t\tlet mdh = this;\n\t\treturn new Promise<Model.HealthConnectPhrStatus>(function (resolve, reject) {\n\t\t\tif (mdh.isStandaloneMode()) {\n\t\t\t\tresolve(null);\n\t\t\t} else if (window.webkit.messageHandlers.HealthConnectPhrStatus) {\n\t\t\t\tlet messageID = mdh.nextMessageID();\n\t\t\t\tmdh.messageHandlers[messageID] = function (statusResponse) {\n\t\t\t\t\tresolve(statusResponse.data);\n\t\t\t\t};\n\t\t\t\twindow.webkit.messageHandlers.HealthConnectPhrStatus.postMessage({ messageID: messageID });\n\t\t\t} else {\n\t\t\t\treject();\n\t\t\t}\n\t\t});\n\t}\n\n\trequestReview(cooldownDays?: number): void {\n\t\tif (window.webkit.messageHandlers.RequestReview) {\n\t\t\twindow.webkit.messageHandlers.RequestReview.postMessage({ cooldownDays: cooldownDays });\n\t\t}\n\t}\n\n\ttrackCustomEvent(event: Model.CustomEventInfo): Promise<void> {\n\t\tconst endpoint = 'customevents';\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'POST', event);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function () {\n\t\t\t\treturn;\n\t\t\t});\n\t}\n\n\tgetDataCollectionSettings(): Promise<Model.DataCollectionSettings> {\n\t\tconst mdh = this;\n\t\tconst endpoint = 'datacollectionsettings';\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tgetDataAvailability(): Promise<Model.DataAvailability> {\n\t\tconst mdh = this;\n\t\tconst endpoint = 'dataavailability';\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tinvokeCustomApi(customApi: string, method: string, queryParameters: string | string[][] | Record<string, string> | URLSearchParams | null | undefined, jsonResponse: boolean): Promise<any> {\n\t\tif (customApi.includes('?')) {\n\t\t\tthrow new Error(\"Cannot include query parameters directly in the \\\"customApi\\\" string. Provide as an argument for \\\"queryParameters\\\" instead.\");\n\t\t}\n\n\t\tlet endpoint = 'custom/' + customApi;\n\t\tmethod = method.toUpperCase();\n\t\tif (queryParameters !== null && queryParameters !== undefined && (method === 'GET' || method === 'DELETE')) {\n\t\t\tlet parameterString = new URLSearchParams(queryParameters).toString();\n\t\t\tendpoint += \"?\" + parameterString;\n\t\t\tqueryParameters = null;\n\t\t}\n\n\t\tconst mdh = this;\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, method, queryParameters);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn jsonResponse ? response.json() : undefined;\n\t\t\t});\n\t}\n\n\tconstructor() {\n\t\tif (this.handleConnectExternalAccountResponse()) {\n\t\t\treturn;\n\t\t}\n\n\t\tlet mdh = this;\n\t\tlet applicationHost = getParentOrigin();\n\t\tlet supportedActions;\n\n\t\tfunction getParentOrigin(): string {\n\t\t\tlet ancestorOrigins = document.location.ancestorOrigins;\n\t\t\tif (ancestorOrigins && ancestorOrigins[0]) {\n\t\t\t\treturn ancestorOrigins[0];\n\t\t\t}\n\n\t\t\treturn '*';\n\t\t}\n\n\t\tfunction acceptableOrigin(origin) {\n\t\t\tif (origin === '*') return true;\n\n\t\t\tlet sourceURL = new URL(origin);\n\t\t\tfor (let k = 0; k < mdh.acceptableParentDomains.length; k++) {\n\t\t\t\tif (sourceURL.hostname === mdh.acceptableParentDomains[k] || sourceURL.hostname.endsWith(\".\" + mdh.acceptableParentDomains[k])) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t}\n\n\t\tfunction validateWindowMessageOrigin(message) {\n\t\t\tif (mdh.isStandaloneMode() && message.origin === window.location.origin) {\n\t\t\t\treturn true;\n\t\t\t}\n\n\t\t\tif (applicationHost === \"*\") {\n\t\t\t\treturn acceptableOrigin(message.origin);\n\t\t\t}\n\n\t\t\treturn message.origin === applicationHost;\n\t\t}\n\n\t\tfunction addActions(actions) {\n\t\t\tfor (let action in actions) {\n\t\t\t\tif (!window.webkit.messageHandlers[action]) {\n\t\t\t\t\ttry {\n\t\t\t\t\t\twindow.webkit.messageHandlers[action] = { postMessage: actions[action] };\n\t\t\t\t\t} catch (error) {\n\t\t\t\t\t\tconsole.log(\"Unable to add missing actions on this platform: \" + error);\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tfunction receiveWindowMessage(message) {\n\t\t\tif (!validateWindowMessageOrigin(message)) {\n\t\t\t\t// todo: this can generate tons of console errors when hosting some apps within webappstep (youtube content, for example )\n\t\t\t\tconsole.error(\"message.origin '\" + message.origin + \"' is not allowed.\");\n\t\t\t\tthrow \"message.origin '\" + message.origin + \"' is not allowed.\";\n\t\t\t}\n\n\t\t\tif (message.data.messageID) {\n\t\t\t\tmdh.setActionResult(message.data);\n\t\t\t} else {\n\t\t\t\tmdh.triggerEvent(message.data);\n\t\t\t}\n\t\t}\n\n\t\tfunction windowHasAnyActions() {\n\t\t\tfor (let action in supportedActions) {\n\t\t\t\tif (window.webkit.messageHandlers[action]) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t\tfor (let action in mdh.unsupportedActions) {\n\t\t\t\tif (window.webkit.messageHandlers[mdh.unsupportedActions[action]]) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t}\n\n\t\tif (!acceptableOrigin(applicationHost)) {\n\t\t\tconsole.log(\"Detected unsupported parent origin domain.\");\n\t\t}\n\n\t\tif (window.webkit && window.webkit.messageHandlers && window.webkit.messageHandlers.ResearchKit) {\n\t\t\t// Presence of ResearchKit handler indicates the SDK is being used from within a WebViewStep. For pre-SDK backwards compatiblity,\n\t\t\t// WebViewStep setup registers the following handlers: GetDeviceInfo, DeleteProviderAccount, ConnectExternalAccount\n\t\t\t// ShowParticipantWebVisualizationPDF, ResearchKit\n\t\t\tsupportedActions = {\n\t\t\t\t\"GetDelegatedAccessToken\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'GetDelegatedAccessToken',\n\t\t\t\t\t\tmessageID: data.messageID\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"OpenExternalLink\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'OpenExternalUrl',\n\t\t\t\t\t\turl: data\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"OpenEmbeddedLink\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'OpenEmbeddedUrl',\n\t\t\t\t\t\turl: data\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"GetCurrentSurveyAnswers\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'GetCurrentSurveyAnswers',\n\t\t\t\t\t\tmessageID: data.messageID\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"GetStepConfiguration\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'GetStepConfiguration',\n\t\t\t\t\t\tmessageID: data.messageID\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"GetSurveyContext\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'GetSurveyContext',\n\t\t\t\t\t\tmessageID: data.messageID\n\t\t\t\t\t}, applicationHost);\n\t\t\t\t},\n\t\t\t\t\"CompleteStep\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'CompleteStep',\n\t\t\t\t\t\tmessageID: data.messageID,\n\t\t\t\t\t\tanswer: data.answer\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t}\n\t\t\t};\n\t\t} else {\n\t\t\tsupportedActions = {\n\t\t\t\t\"GetDelegatedAccessToken\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'GetDelegatedAccessToken',\n\t\t\t\t\t\tmessageID: data.messageID\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"GetDeviceInfo\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({ name: 'GetDeviceInfo', messageID: data.messageID }, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"StartParticipantSurvey\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'StartParticipantSurvey',\n\t\t\t\t\t\tmessageID: data.messageID,\n\t\t\t\t\t\tsurveyName: data.surveyName,\n\t\t\t\t\t\toptions: data.options\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"OpenExternalLink\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({ name: 'OpenExternalUrl', url: data }, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"OpenEmbeddedLink\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({ name: 'OpenEmbeddedUrl', url: data }, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"OpenExternalApplication\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'OpenApplication',\n\t\t\t\t\t\tmessageID: data.messageID,\n\t\t\t\t\t\turl: data.url,\n\t\t\t\t\t\tmodal: data.modal\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"Dismiss\": function () {\n\t\t\t\t\twindow.parent.postMessage({ name: 'Dismiss' }, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"PopNavigation\": function () {\n\t\t\t\t\twindow.parent.postMessage({ name: 'Back' }, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"ShowTab\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({ name: 'ShowTab', tabKey: data }, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"ShowParticipantDashboard\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'ShowParticipantDashboard',\n\t\t\t\t\t\tdashboardKey: data.dashboardKey,\n\t\t\t\t\t\tmodal: data.modal\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"ShowParticipantWebVisualization\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'ShowParticipantWebVisualization',\n\t\t\t\t\t\tvisualizationKey: data.visualizationKey,\n\t\t\t\t\t\tparameters: data.parameters,\n\t\t\t\t\t\tmodal: data.modal\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"ShowParticipantWebVisualizationPDF\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'ShowParticipantWebVisualizationPDF',\n\t\t\t\t\t\tvisualizationKey: data.visualizationKey,\n\t\t\t\t\t\tparameters: data.parameters,\n\t\t\t\t\t\tmodal: data.modal,\n\t\t\t\t\t\tlandscape: data.landscape,\n\t\t\t\t\t\thtmlViewerZoom: data.htmlViewerZoom\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"DeleteProviderAccount\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'DeleteProviderAccount',\n\t\t\t\t\t\tmessageID: data.messageID,\n\t\t\t\t\t\taccountID: data.accountID\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"ConnectExternalAccount\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'ConnectExternalAccount',\n\t\t\t\t\t\texternalAccountProviderID: data.externalAccountProviderID,\n\t\t\t\t\t\tmessageID: data.messageID,\n\t\t\t\t\t\topenNewWindow: data.openNewWindow,\n\t\t\t\t\t\twidth: data.width,\n\t\t\t\t\t\theight: data.height\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"ShowProject\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({ name: 'ShowProject', code: data.code }, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"JoinProject\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({ name: 'JoinProject', code: data.code }, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"GetCurrentSurveyAnswers\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'GetCurrentSurveyAnswers',\n\t\t\t\t\t\tmessageID: data.messageID\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"GetStepConfiguration\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'GetStepConfiguration',\n\t\t\t\t\t\tmessageID: data.messageID\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"CompleteStep\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'CompleteStep',\n\t\t\t\t\t\tmessageID: data.messageID,\n\t\t\t\t\t\tanswer: data.answer\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\n\t\tif (!window.webkit || !window.webkit.messageHandlers || !windowHasAnyActions()) {\n\t\t\twindow.webkit = {\n\t\t\t\tmessageHandlers: {}\n\t\t\t};\n\t\t}\n\n\t\taddActions(supportedActions);\n\n\t\twindow.addEventListener(\"message\", receiveWindowMessage, false);\n\n\t\tif (this.hasEmbeddedModeUrlParameter()) {\n\t\t\tmdh.enableStandaloneMode(true);\n\t\t}\n\t}\n\n\tprivate readonly acceptableParentDomains = [\n\t\t'localhost',\n\t\t'careevolution.com',\n\t\t'internal',\n\t\t'b3-deploys.com',\n\t\t'mydatahelps.org',\n\t\t'platform.joinallofus.org',\n\t\t'careevolution.dev',\n\t\t'ce.dev',\n\t\t'mydatahelps.dev'\n\t];\n\n\tprivate readonly accessTokenRenewalBufferSeconds = 120;\n\tprivate readonly unsupportedActions = [\"SetHeight\", \"ResearchKit\"];\n\tprivate readonly supportedEvents = [\"surveyDidFinish\", \"applicationDidBecomeVisible\", \"externalAccountSyncComplete\", \"tokenWillExpire\", \"healthConnectSyncComplete\", \"healthConnectPhrSyncComplete\"];\n\tprivate readonly supportedLanguages = [];\n\n\tprivate currentMessageID = 1;\n\tprivate messageHandlers = [];\n\tprivate registeredEventHandlers = {};\n\tprivate refreshTokenPromise = null;\n\tprivate standaloneMode = false;\n\tprivate embeddedMode = false;\n\n\tprivate nextMessageID() {\n\t\treturn this.currentMessageID++;\n\t}\n\n\tprivate makeUrl(endpoint, apiVersion) {\n\t\tif (!this.baseUrl) {\n\t\t\tconsole.error(\"Cannot use makeUrl without MyDataHelps.baseUrl.\");\n\t\t\tthrow \"Cannot use makeUrl without MyDataHelps.baseUrl.\";\n\t\t}\n\n\t\treturn this.baseUrl + 'api/' + apiVersion + '/delegated/' + endpoint;\n\t}\n\n\tprivate makeRequest(endpoint, method, body, apiVersion = \"v1\") {\n\t\tif (!this.token || !this.token.access_token) {\n\t\t\tthrow \"No access_token available for request authorization.\";\n\t\t}\n\n\t\tlet url = this.makeUrl(endpoint, apiVersion);\n\n\t\tlet headers = new Headers();\n\t\theaders.append('Authorization', 'Bearer ' + this.token.access_token);\n\t\theaders.append('Accept', 'application/json, text/javascript, */*; q=0.01');\n\t\theaders.append('Accept-Language', this.getCurrentLanguage());\n\t\tif (!!body) {\n\t\t\theaders.append('Content-Type', 'application/json');\n\t\t}\n\n\t\tlet init: any = {\n\t\t\tmethod: method,\n\t\t\theaders: headers\n\t\t};\n\t\tif (!!body) {\n\t\t\tinit.body = JSON.stringify(body);\n\t\t}\n\n\t\treturn fetch(url, init);\n\t}\n\n\tprivate getSupportedLanguage(language: string): string {\n\t\tlanguage = language.replace(\"_\", \"-\");\n\t\tif (this.supportedLanguages.length === 0) {\n\t\t\treturn language;\n\t\t} else {\n\t\t\tif (this.supportedLanguages.find((l) => l === language)) {\n\t\t\t\treturn language;\n\t\t\t} else if (language.indexOf(\"-\") > 0) {\n\t\t\t\tlanguage = language.substring(0, language.indexOf(\"-\"));\n\t\t\t\tif (this.supportedLanguages.find((l) => l === language)) {\n\t\t\t\t\treturn language;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\tprivate static validateResponse(response) {\n\t\tif (!response.ok) {\n\t\t\tthrow response.statusText;\n\t\t}\n\n\t\treturn response;\n\t}\n\n\tprivate static escapeParam(param) {\n\t\treturn String(param)\n\t\t\t.replaceAll(\"\\\\\", \"\\\\\\\\\")\n\t\t\t.replaceAll(\",\", \"\\\\,\");\n\t}\n\n\tprivate static reduceArrayAndEscape(param) {\n\t\tif (Array.isArray(param)) {\n\t\t\tlet escapedParams = param.map(function (elem) {\n\t\t\t\treturn MyDataHelps.escapeParam(elem);\n\t\t\t});\n\t\t\treturn escapedParams.join(\",\");\n\t\t}\n\n\t\treturn this.escapeParam(param);\n\t}\n\n\tprivate static convertDateToIsoString(date) {\n\t\tlet paramAsDate = new Date(date);\n\t\tif (isNaN(paramAsDate.getTime())) {\n\t\t\tthrow \"Cannot interpret parameter as Date\";\n\t\t}\n\n\t\treturn paramAsDate.toISOString();\n\t}\n\n\tprivate static flattenPropertyShallow(params, property) {\n\t\tif (params[property] === undefined || params[property] === null) return;\n\n\t\tfor (var key in params[property]) {\n\t\t\tif (params[property].hasOwnProperty(key)) {\n\t\t\t\tparams[`${property}.${key}`] = MyDataHelps.escapeParam(params[property][key]);\n\t\t\t}\n\t\t}\n\n\t\tdelete params[property];\n\t}\n\n\tprivate startEmbeddedSurveyInternal(surveyUrl) {\n\t\tlet mdhSurveyModalId = 'mydatahelps-survey-modal';\n\t\tlet mdh = this;\n\n\t\treturn new Promise(function (resolve, reject) {\n\t\t\tif (document.getElementById(mdhSurveyModalId)) {\n\t\t\t\treject(\"Survey already in progress\");\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\twindow.addEventListener(\"message\", function listener(message) {\n\t\t\t\tif (message.origin !== new URL(mdh.baseUrl).origin) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tlet frame = (document.getElementById('mydatahelps-survey-frame') as HTMLFrameElement).contentWindow;\n\t\t\t\tif (message.source !== frame) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tif (message.data.name === 'SurveyWindowInitialized') {\n\t\t\t\t\tdocument.getElementById(mdhSurveyModalId).className += \" loaded\";\n\t\t\t\t} else if (message.data.name === 'SurveyFinished') {\n\t\t\t\t\tdocument.getElementById(mdhSurveyModalId).remove();\n\t\t\t\t\tdocument.body.className = document.body.className.replace(\"no-scroll\", \"\");\n\t\t\t\t\twindow.removeEventListener(\"message\", listener, true);\n\t\t\t\t\tresolve(message.data);\n\t\t\t\t}\n\t\t\t}, true);\n\n\t\t\tlet surveyModal = document.createElement('div');\n\t\t\tsurveyModal.className = 'mydatahelps-survey-modal';\n\t\t\tsurveyModal.id = mdhSurveyModalId;\n\t\t\tsurveyModal.innerHTML = \"<div class='mydatahelps-survey'><div class='loader'>Loading...</div><iframe id='mydatahelps-survey-frame' allow='camera' sandbox='allow-forms allow-modals allow-popups allow-popups-to-escape-sandbox allow-presentation allow-same-origin allow-scripts' src='\" + surveyUrl + \"'></iframe></div>\";\n\t\t\tdocument.body.append(surveyModal);\n\t\t\tdocument.body.className += ' no-scroll';\n\t\t});\n\t}\n\n\tprivate startDelegatedSurvey(surveyUrl) {\n\t\tlet mdhSurveyModalId = 'mydatahelps-survey-modal';\n\t\tlet mdh = this;\n\n\t\tif (document.getElementById(mdhSurveyModalId)) {\n\t\t\treturn;\n\t\t}\n\n\t\twindow.addEventListener(\"message\", function listener(message) {\n\t\t\tif (message.origin !== new URL(mdh.baseUrl).origin) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tlet frame = (document.getElementById('mydatahelps-survey-frame') as HTMLFrameElement).contentWindow;\n\t\t\tif (message.source !== frame) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tif (message.data.name === 'GetDelegatedAccessToken') {\n\t\t\t\tmdh.getParticipantInfo().then((participant) => {\n\t\t\t\t\tframe.postMessage({ name: \"DelegatedAccessTokenResponse\", accessToken: mdh.token, baseUrl: mdh.baseUrl, participantID: participant.participantID }, '*');\n\t\t\t\t});\n\t\t\t}\n\t\t\telse if (message.data.name === 'SurveyWindowInitialized') {\n\t\t\t\tdocument.getElementById(mdhSurveyModalId).className += \" loaded\";\n\t\t\t}\n\t\t\telse if (message.data.name === 'SurveyFinished') {\n\t\t\t\tdocument.getElementById(mdhSurveyModalId).remove();\n\t\t\t\tdocument.body.className = document.body.className.replace(\"no-scroll\", \"\");\n\t\t\t\twindow.removeEventListener(\"message\", listener, true);\n\t\t\t\tmessage.data.type = 'surveyDidFinish';\n\t\t\t\tmdh.triggerEvent(message.data);\n\t\t\t}\n\t\t}, true);\n\n\t\tlet surveyModal = document.createElement('div');\n\t\tsurveyModal.className = 'mydatahelps-survey-modal';\n\t\tsurveyModal.id = mdhSurveyModalId;\n\t\tsurveyModal.innerHTML = `<div class='mydatahelps-survey'><div class='loader'>Loading...</div><iframe id='mydatahelps-survey-frame' allow='camera' sandbox='allow-forms allow-modals allow-popups allow-popups-to-escape-sandbox allow-presentation allow-same-origin allow-scripts' src='${surveyUrl}&lang=${mdh.getCurrentLanguage()}'></iframe></div>`;\n\t\tdocument.body.append(surveyModal);\n\t\tdocument.body.className += ' no-scroll';\n\t}\n\n\tprivate handleConnectExternalAccountResponse() {\n\t\tconst params = new URLSearchParams(window.location.search);\n\t\tif (window.opener && params.get('connectExternalAccount') && params.get('messageID') && params.get('success')) {\n\t\t\twindow.opener.postMessage({\n\t\t\t\tname: 'ConnectExternalAccountResponse',\n\t\t\t\tmessageID: parseInt(params.get('messageID')),\n\t\t\t\tsuccess: params.get('success') === 'true'\n\t\t\t}, window.location.origin);\n\t\t\twindow.close();\n\t\t\treturn true;\n\t\t}\n\t}\n\n\tprivate hasEmbeddedModeUrlParameter() {\n\t\tconst embeddedModeKey = '_e';\n\t\tconst params = new URLSearchParams(window.location.search);\n\t\tif (params.has(embeddedModeKey) && params.get(embeddedModeKey) !== 'false') {\n\t\t\treturn true;\n\t\t}\n\t}\n}\n\n//iOS/Android directly invoke window.MyDataHelps and window.RKStudioClient\n//so it's necessary to explicitly ensure they are present on the window\nconst mdh = new MyDataHelps();\n\nwindow.MyDataHelps = mdh;\n\n// For backwards compatibility\nwindow.RKStudioClient = {};\nwindow.RKStudioClient.setActionResult = function (data) {\n\twindow.MyDataHelps.setActionResult(data);\n};\n\nexport default mdh;\nexport * from './types';\n"],"names":["MyDataHelps","startSurvey","surveyName","options","this","isStandaloneMode","params","URLSearchParams","set","editResultID","event","startDelegatedSurvey","baseUrl","toString","window","webkit","messageHandlers","StartParticipantSurvey","messageID","nextMessageID","postMessage","completeStep","answer","JSON","stringify","ResearchKit","CompleteStep","querySurveyAnswers","queryParameters","Object","assign","hasOwnProperty","reduceArrayAndEscape","stepIdentifier","resultIdentifier","before","convertDateToIsoString","after","endpoint","mdh","connect","then","makeRequest","response","validateResponse","json","querySurveyResults","insertedBefore","insertedAfter","deleteSurveyResult","resultID","encodeURIComponent","querySurveyTasks","status","queryInboxItems","target","source","key","keys","value","undefined","assignDefined","type","getInboxItem","id","updateInboxItem","update","startEmbeddedSurvey","linkIdentifier","language","getCurrentLanguage","surveyUrl","startEmbeddedSurveyInternal","openExternalUrl","url","OpenExternalLink","openEmbeddedUrl","OpenEmbeddedLink","showTab","tabKey","ShowTab","openApplication","OpenExternalApplication","modal","openSecondaryView","projectId","viewKey","lookupSecondaryView","secondaryView","endsWith","fetch","method","headers","Accept","ok","text","Error","statusText","dismiss","Dismiss","back","PopNavigation","showDashboard","dashboardKey","ShowParticipantDashboard","title","showWebVisualization","visualizationKey","parameters","ShowParticipantWebVisualization","showWebVisualizationPdf","ShowParticipantWebVisualizationPDF","landscape","htmlViewerZoom","showProject","projectCode","ShowProject","code","joinProject","JoinProject","on","eventName","callback","supportedEvents","includes","registeredEventHandlers","push","off","eventHandlerIndex","indexOf","splice","triggerEvent","forEach","handler","setActionResult","data","prototype","call","console","error","getParticipantInfo","persistParticipantInfo","demographics","customFields","async","message","catch","log","getProjectInfo","getDeviceDataPoint","deleteDeviceDataPoint","queryDeviceData","observedBefore","observedAfter","persistDeviceData","deviceDataPoints","getDeviceDataAllDataTypes","enabled","namespace","queryDeviceDataV2","modifiedBefore","modifiedAfter","flattenPropertyShallow","queryDeviceDataV2Aggregate","aggregateFunctions","queryDeviceDataV2DailySleep","getDeviceDataV2AllDataTypes","getExternalAccountProviders","search","category","pageSize","pageNumber","searchParameters","connectExternalAccount","externalAccountProviderID","Promise","resolve","reject","connectProviderAccountResponse","success","errorMessage","standaloneMode","standaloneModeFinalRedirectPath","location","href","providerAuthWindow","openNewWindow","split","windowFeatures","width","height","w","h","outerHeight","screenY","outerWidth","screenX","open","queryString","finalRedirectPath","redirectUrl","replace","top","ConnectExternalAccount","getExternalAccounts","refreshExternalAccount","accountID","deleteExternalAccount","DeleteProviderAccount","deleteProviderAccountResponse","getFeaturedProviders","context","queryNotifications","sentBefore","sentAfter","queryFitbitDailySummaries","startDate","endDate","queryFitbitSleepLogs","queryAppleHealthActivitySummaries","queryAppleHealthWorkouts","uploadFile","file","fileName","size","name","preSignedUrl","body","queryFiles","getFileDownloadUrl","deleteFile","refreshDelegatedAccessToken","token","refreshTokenPromise","tokenResponse","tokenExpires","Date","now","expires_in","setTimeout","accessTokenRenewalBufferSeconds","GetDelegatedAccessToken","isEmbeddedMode","setParticipantAccessToken","enableStandaloneMode","embeddedMode","setStatusBarStyle","style","SetStatusBarStyle","getDeviceInfo","GetDeviceInfo","deviceInfoResponse","setSupportedLanguages","languages","supportedLanguages","length","i","getStepConfiguration","GetStepConfiguration","stepConfigurationResponse","getSurveyContext","deviceInfo","platform","surveyMode","GetSurveyContext","surveyContextResponse","getCurrentSurveyAnswers","GetCurrentSurveyAnswers","currentSurveyAnswersResponse","setCurrentLanguage","supportedLanguage","getSupportedLanguage","warn","lang","searchParams","has","get","navigator","showGoogleFitSettings","ShowGoogleFitSettings","showHealthConnectSettings","HealthConnectSettings","showHealthConnectPrompt","HealthConnectPrompt","getHealthConnectStatus","HealthConnectStatus","statusResponse","showHealthConnectPhrPrompt","HealthConnectPhrPrompt","getHealthConnectPhrStatus","HealthConnectPhrStatus","requestReview","cooldownDays","RequestReview","trackCustomEvent","getDataCollectionSettings","getDataAvailability","invokeCustomApi","customApi","jsonResponse","toUpperCase","parameterString","constructor","acceptableParentDomains","unsupportedActions","currentMessageID","handleConnectExternalAccountResponse","supportedActions","applicationHost","ancestorOrigins","document","getParentOrigin","acceptableOrigin","origin","sourceURL","URL","k","hostname","parent","action","windowHasAnyActions","actions","addActions","addEventListener","validateWindowMessageOrigin","hasEmbeddedModeUrlParameter","makeUrl","apiVersion","access_token","Headers","append","init","find","l","substring","escapeParam","param","String","replaceAll","Array","isArray","map","elem","join","date","paramAsDate","isNaN","getTime","toISOString","property","mdhSurveyModalId","getElementById","listener","frame","contentWindow","className","remove","removeEventListener","surveyModal","createElement","innerHTML","participant","accessToken","participantID","opener","parseInt","close","RKStudioClient"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"MyDataHelps.min.js","sources":["../../src/MyDataHelps.ts"],"sourcesContent":["// @ts-ignore : let rollup handle CSS injection\nimport \"../MyDataHelps.css\";\n\nimport * as Model from \"./types\";\nimport { StringMap } from \"./types\";\n\nexport class MyDataHelps {\n\n\tbaseUrl: string = 'https://mydatahelps.org/';\n\tlanguage: string;\n\ttoken: Model.Token;\n\ttokenExpires: number;\n\n\tprivate _standaloneModeFinalRedirectPath: string;\n\n\t// Surveys\n\n\tstartSurvey(surveyName: string, options?: Model.StartSurveyOptions): void {\n\t\tif (this.isStandaloneMode()) {\n\t\t\tconst params = new URLSearchParams();\n\t\t\tparams.set('surveyName', surveyName);\n\t\t\tif (options?.editResultID) {\n\t\t\t\tparams.set('editResultID', options.editResultID);\n\t\t\t}\n\t\t\tif (options?.event) {\n\t\t\t\tparams.set('event', options.event);\n\t\t\t}\n\t\t\tthis.startDelegatedSurvey(`${this.baseUrl}/survey?${params.toString()}`);\n\t\t}\n\t\telse if (window.webkit.messageHandlers.StartParticipantSurvey) {\n\t\t\tlet messageID = this.nextMessageID();\n\t\t\twindow.webkit.messageHandlers.StartParticipantSurvey.postMessage({\n\t\t\t\tmessageID: messageID,\n\t\t\t\tsurveyName: surveyName,\n\t\t\t\toptions: options\n\t\t\t});\n\t\t}\n\t}\n\n\tcompleteStep(answer: any): void {\n\t\tif (answer === undefined || answer === null) answer = '';\n\t\tif (typeof answer !== 'string') {\n\t\t\tanswer = JSON.stringify(answer);\n\t\t}\n\t\tif (window.webkit.messageHandlers.ResearchKit) {\n\t\t\twindow.webkit.messageHandlers.ResearchKit.postMessage(answer);\n\t\t}\n\t\telse if (window.webkit.messageHandlers.CompleteStep) {\n\t\t\tlet messageID = this.nextMessageID();\n\t\t\twindow.webkit.messageHandlers.CompleteStep.postMessage({\n\t\t\t\tmessageID: messageID,\n\t\t\t\tanswer: answer\n\t\t\t});\n\t\t}\n\t}\n\n\tquerySurveyAnswers(queryParameters: Model.SurveyAnswersQuery): Promise<Model.SurveyAnswersPage> {\n\t\tqueryParameters = Object.assign({}, queryParameters);\n\n\t\tif (queryParameters.hasOwnProperty(\"surveyName\")) {\n\t\t\tqueryParameters.surveyName = MyDataHelps.reduceArrayAndEscape(queryParameters.surveyName);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"stepIdentifier\")) {\n\t\t\tqueryParameters.stepIdentifier = MyDataHelps.reduceArrayAndEscape(queryParameters.stepIdentifier);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"resultIdentifier\")) {\n\t\t\tqueryParameters.resultIdentifier = MyDataHelps.reduceArrayAndEscape(queryParameters.resultIdentifier);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"answer\")) {\n\t\t\tqueryParameters.answer = MyDataHelps.reduceArrayAndEscape(queryParameters.answer);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"before\")) {\n\t\t\tqueryParameters.before = MyDataHelps.convertDateToIsoString(queryParameters.before);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"after\")) {\n\t\t\tqueryParameters.after = MyDataHelps.convertDateToIsoString(queryParameters.after);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"event\")) {\n\t\t\tqueryParameters.event = MyDataHelps.reduceArrayAndEscape(queryParameters.event);\n\t\t}\n\n\t\tconst queryString = new URLSearchParams(queryParameters as Record<string, any>).toString();\n\t\tconst endpoint = 'surveyanswers?' + queryString;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tquerySurveyResults(queryParameters: Model.SurveyResultsQuery): Promise<Model.SurveyResultsPage> {\n\t\tqueryParameters = { ...queryParameters }\n\n\t\tif (queryParameters.hasOwnProperty(\"surveyName\")) {\n\t\t\tqueryParameters.surveyName = MyDataHelps.reduceArrayAndEscape(queryParameters.surveyName);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"event\")) {\n\t\t\tqueryParameters.event = MyDataHelps.reduceArrayAndEscape(queryParameters.event);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"before\")) {\n\t\t\tqueryParameters.before = MyDataHelps.convertDateToIsoString(queryParameters.before);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"after\")) {\n\t\t\tqueryParameters.after = MyDataHelps.convertDateToIsoString(queryParameters.after);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"insertedBefore\")) {\n\t\t\tqueryParameters.insertedBefore = MyDataHelps.convertDateToIsoString(queryParameters.insertedBefore);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"insertedAfter\")) {\n\t\t\tqueryParameters.insertedAfter = MyDataHelps.convertDateToIsoString(queryParameters.insertedAfter);\n\t\t}\n\n\t\tconst queryString = new URLSearchParams(queryParameters as Record<string, any>).toString();\n\t\tconst endpoint = 'surveyresults?' + queryString;\n\n\t\treturn this.connect()\n\t\t\t.then(() => this.makeRequest(endpoint, 'GET', null))\n\t\t\t.then(MyDataHelps.validateResponse)\n\t\t\t.then(response => response.json());\n\t}\n\n\tdeleteSurveyResult(resultID: string): Promise<void> {\n\t\tconst endpoint = 'surveyresults/' + encodeURIComponent(resultID);\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'DELETE', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function () {\n\t\t\t\treturn;\n\t\t\t});\n\t}\n\n\tquerySurveyTasks(queryParameters: Model.SurveyTaskQueryParameters): Promise<Model.SurveyTasksPage> {\n\t\tqueryParameters = Object.assign({}, queryParameters);\n\n\t\tif (queryParameters.hasOwnProperty(\"status\")) {\n\t\t\tqueryParameters.status = MyDataHelps.reduceArrayAndEscape(queryParameters.status) as Model.SurveyTaskStatus;\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"surveyName\")) {\n\t\t\tqueryParameters.surveyName = MyDataHelps.reduceArrayAndEscape(queryParameters.surveyName);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"event\")) {\n\t\t\tqueryParameters.event = MyDataHelps.reduceArrayAndEscape(queryParameters.event);\n\t\t}\n\n\t\tconst queryString = new URLSearchParams(queryParameters as Record<string, any>).toString();\n\t\tconst endpoint = 'surveytasks?' + queryString;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tqueryInboxItems(queryParameters: Model.InboxItemQueryParameters): Promise<Model.InboxItemsPage> {\n\t\tconst assignDefined = (target: any, source: any): any => {\n\t\t\tfor (const key of Object.keys(source)) {\n\t\t\t\tconst value = source[key];\n\t\t\t\tif (value !== undefined) {\n\t\t\t\t\ttarget[key] = value;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn target;\n\t\t};\n\n\t\tqueryParameters = assignDefined({}, queryParameters);\n\n\t\tif (queryParameters.hasOwnProperty(\"type\")) {\n\t\t\tqueryParameters.type = MyDataHelps.reduceArrayAndEscape(queryParameters.type) as Model.InboxItemType;\n\t\t}\n\n\t\tif (queryParameters.hasOwnProperty(\"status\")) {\n\t\t\tqueryParameters.status = MyDataHelps.reduceArrayAndEscape(queryParameters.status) as Model.InboxItemStatus;\n\t\t}\n\n\t\tconst queryString = new URLSearchParams(queryParameters as Record<string, any>).toString();\n\t\tconst endpoint = 'inbox?' + queryString;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tgetInboxItem(id: Model.Guid): Promise<Model.InboxItem> {\n\t\tconst endpoint = `inbox/${id}`;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tupdateInboxItem(id: Model.Guid, update: Model.InboxItemUpdate): Promise<Model.InboxItemUpdateResult> {\n\t\tconst endpoint = `inbox/${id}/${update}`;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'PUT', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tstartEmbeddedSurvey(linkIdentifier: string, surveyName: string, language: string): Promise<any> {\n\t\tif (!language) {\n\t\t\tlanguage = this.getCurrentLanguage();\n\t\t}\n\t\tlet surveyUrl = this.baseUrl + \"mydatahelps/\" + linkIdentifier + '/surveylink/' + surveyName + \"?lang=\" + language;\n\t\treturn this.startEmbeddedSurveyInternal(surveyUrl);\n\t}\n\n\t// Navigation\n\n\topenExternalUrl(url: string): void {\n\t\tif (window.webkit.messageHandlers.OpenExternalLink) {\n\t\t\twindow.webkit.messageHandlers.OpenExternalLink.postMessage(url);\n\t\t}\n\t}\n\n\topenEmbeddedUrl(url: string): void {\n\t\tif (window.webkit.messageHandlers.OpenEmbeddedLink) {\n\t\t\twindow.webkit.messageHandlers.OpenEmbeddedLink.postMessage(url);\n\t\t}\n\t}\n\n\tshowTab(tabKey: string): void {\n\t\tif (window.webkit.messageHandlers.ShowTab) {\n\t\t\twindow.webkit.messageHandlers.ShowTab.postMessage(tabKey);\n\t\t}\n\t}\n\n\topenApplication(url: string, options?: Model.OpenApplicationOptions): void {\n\t\tif (window.webkit.messageHandlers.OpenExternalApplication) {\n\t\t\tlet messageID = this.nextMessageID();\n\t\t\twindow.webkit.messageHandlers.OpenExternalApplication.postMessage({\n\t\t\t\tmessageID: messageID,\n\t\t\t\turl: url,\n\t\t\t\tmodal: !!(options && options.modal)\n\t\t\t});\n\t\t}\n\t}\n\n\topenSecondaryView(projectId: string, viewKey: string, options?: Model.OpenApplicationOptions): void {\n\t\tthis.lookupSecondaryView(projectId, viewKey).then(secondaryView => {\n\t\t\treturn this.openApplication(secondaryView.url, options);\n\t\t});\n\t};\n\n\tlookupSecondaryView(projectId: string, viewKey: string): Promise<Model.SecondaryView> {\n\t\tlet baseUrl = this.baseUrl;\n\t\tif (!baseUrl.endsWith(\"/\")) {\n\t\t\tbaseUrl += \"/\";\n\t\t}\n\t\tconst viewLookupUrl = `${baseUrl}api/v1/public/projects/${projectId}/views/${viewKey}`;\n\t\treturn fetch(viewLookupUrl, { method: 'GET', headers: { 'Accept': 'application/json' } })\n\t\t\t.then(response => {\n\t\t\t\tif (!response.ok) {\n\t\t\t\t\treturn response.text().then(text => {\n\t\t\t\t\t\tthrow new Error(`Failed to fetch secondary view: ${response.status} ${response.statusText}${text ? ' - ' + text : ''}`);\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tdismiss(): void {\n\t\tif (window.webkit.messageHandlers.Dismiss) {\n\t\t\twindow.webkit.messageHandlers.Dismiss.postMessage({});\n\t\t}\n\t}\n\n\tback(): void {\n\t\tif (window.webkit.messageHandlers.PopNavigation) {\n\t\t\twindow.webkit.messageHandlers.PopNavigation.postMessage({});\n\t\t}\n\t}\n\n\tshowDashboard(dashboardKey: string, options?: Model.ShowDashboardOptions): void {\n\t\tif (window.webkit.messageHandlers.ShowParticipantDashboard) {\n\t\t\twindow.webkit.messageHandlers.ShowParticipantDashboard.postMessage({\n\t\t\t\tdashboardKey: dashboardKey,\n\t\t\t\tmodal: !!(options && options.modal),\n\t\t\t\ttitle: options && options.title ? options.title : undefined\n\t\t\t});\n\t\t}\n\t}\n\n\tshowWebVisualization(visualizationKey: string, parameters: object, options: Model.ShowWebVisualizationOptions): void {\n\t\tif (window.webkit.messageHandlers.ShowParticipantWebVisualization) {\n\t\t\twindow.webkit.messageHandlers.ShowParticipantWebVisualization.postMessage({\n\t\t\t\tvisualizationKey: visualizationKey,\n\t\t\t\tparameters: parameters,\n\t\t\t\tmodal: !!(options && options.modal),\n\t\t\t\ttitle: options && options.title ? options.title : undefined\n\t\t\t});\n\t\t}\n\t}\n\n\tshowWebVisualizationPdf(visualizationKey: string, parameters: object, options: Model.ShowWebVisualizationPdfOptions): void {\n\t\tif (window.webkit.messageHandlers.ShowParticipantWebVisualizationPDF) {\n\t\t\twindow.webkit.messageHandlers.ShowParticipantWebVisualizationPDF.postMessage({\n\t\t\t\tvisualizationKey: visualizationKey,\n\t\t\t\tparameters: parameters,\n\t\t\t\tlandscape: !!(options && options.landscape),\n\t\t\t\thtmlViewerZoom: options && options.htmlViewerZoom\n\t\t\t});\n\t\t}\n\t}\n\n\tshowProject(projectCode: string): void {\n\t\tif (window.webkit.messageHandlers.ShowProject) {\n\t\t\twindow.webkit.messageHandlers.ShowProject.postMessage({ code: projectCode });\n\t\t}\n\t}\n\n\tjoinProject(projectCode: string): void {\n\t\tif (window.webkit.messageHandlers.JoinProject) {\n\t\t\twindow.webkit.messageHandlers.JoinProject.postMessage({ code: projectCode });\n\t\t}\n\t}\n\n\t//Events\n\n\ton(eventName: Model.EventName, callback: (EventData) => void): void {\n\n\t\tif (!this.supportedEvents.includes(eventName)) {\n\t\t\tthrow new Error(eventName + \" is not a supported event type.\");\n\t\t}\n\n\t\tif (!this.registeredEventHandlers[eventName]) {\n\t\t\tthis.registeredEventHandlers[eventName] = [];\n\t\t}\n\n\t\tthis.registeredEventHandlers[eventName].push(callback);\n\t}\n\n\toff(eventName: Model.EventName, callback: (EventData) => void): void {\n\n\t\tif (!this.supportedEvents.includes(eventName)) {\n\t\t\tthrow new Error(eventName + \" is not a supported event type.\");\n\t\t}\n\n\t\tif (!this.registeredEventHandlers[eventName]) return;\n\n\t\tlet eventHandlerIndex = this.registeredEventHandlers[eventName].indexOf(callback);\n\n\t\tif (eventHandlerIndex !== -1) {\n\t\t\tthis.registeredEventHandlers[eventName].splice(eventHandlerIndex, 1);\n\t\t}\n\t}\n\n\ttriggerEvent(event: Model.EventData): void {\n\t\tlet eventName = event.type;\n\t\tif (this.supportedEvents.includes(eventName) && this.registeredEventHandlers[eventName]) {\n\t\t\tthis.registeredEventHandlers[eventName].forEach(function (handler) {\n\t\t\t\thandler(event);\n\t\t\t});\n\t\t}\n\t}\n\n\tsetActionResult(data: Model.EventData): void {\n\t\tif (Object.prototype.hasOwnProperty.call(this.messageHandlers, data.messageID) &&\n\t\t\ttypeof this.messageHandlers[data.messageID] === 'function') {\n\t\t\tthis.messageHandlers[data.messageID](data);\n\t\t} else {\n\t\t\tconsole.error(`Invalid messageID: ${data.messageID}`);\n\t\t}\n\t}\n\n\t// Participant Info\n\n\tgetParticipantInfo(): Promise<Model.ParticipantInfo> {\n\t\tconst mdh = this;\n\t\tconst endpoint = 'participant';\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tpersistParticipantInfo(demographics: Partial<Model.ParticipantDemographics> | undefined, customFields: StringMap): Promise<Model.ParticipantInfo> {\n\t\tconst endpoint = 'participant';\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'PUT', { demographics, customFields });\n\t\t\t})\n\t\t\t.then(async function (response) {\n\t\t\t\tif (!response.ok) {\n\t\t\t\t\tvar errorJson = await response.json();\n\t\t\t\t\tthrow errorJson.message;\n\t\t\t\t}\n\t\t\t\treturn response.json();\n\t\t\t})\n\t\t\t.catch(function (error) {\n\t\t\t\tconsole.log(\"Unable to persist participant: \" + error);\n\t\t\t});\n\t}\n\n\tgetProjectInfo(): Promise<Model.ProjectInfo> {\n\t\tconst mdh = this;\n\t\tconst endpoint = 'project';\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\t// Device Data\n\n\tgetDeviceDataPoint(id: Model.Guid): Promise<Model.DeviceDataPoint> {\n\t\tconst endpoint = 'devicedata/' + id;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tdeleteDeviceDataPoint(id: Model.Guid): Promise<void> {\n\t\tconst endpoint = 'devicedata/' + id;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'DELETE', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function () {\n\t\t\t\treturn;\n\t\t\t});\n\t}\n\n\tqueryDeviceData(queryParameters: Model.DeviceDataPointQuery): Promise<Model.DeviceDataPointsPage> {\n\t\tqueryParameters = Object.assign({}, queryParameters);\n\n\t\tif (queryParameters.hasOwnProperty(\"type\")) {\n\t\t\tqueryParameters.type = MyDataHelps.reduceArrayAndEscape(queryParameters.type);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"observedBefore\")) {\n\t\t\tqueryParameters.observedBefore = MyDataHelps.convertDateToIsoString(queryParameters.observedBefore);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"observedAfter\")) {\n\t\t\tqueryParameters.observedAfter = MyDataHelps.convertDateToIsoString(queryParameters.observedAfter);\n\t\t}\n\n\t\tconst queryString = new URLSearchParams(queryParameters as Record<string, any>).toString();\n\t\tconst endpoint = 'devicedata?' + queryString;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tpersistDeviceData(deviceDataPoints: Model.PersistableDeviceDataPoint[]): Promise<void> {\n\t\tconst endpoint = 'devicedata';\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'POST', deviceDataPoints);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function () {\n\t\t\t\treturn;\n\t\t\t});\n\t}\n\n\tgetDeviceDataAllDataTypes(enabled?: boolean, namespace?: string): Promise<Model.SupportedDeviceDataType[]> {\n\t\tconst queryParameters: Record<string, string> = {};\n\n\t\tif (enabled !== undefined) {\n\t\t\tqueryParameters['enabled'] = enabled.toString();\n\t\t}\n\n\t\tif (namespace) {\n\t\t\tqueryParameters['namespace'] = namespace;\n\t\t}\n\n\t\tconst queryString = new URLSearchParams(queryParameters).toString();\n\t\tconst endpoint = `devicedata/allDataTypes?${queryString}`;\n\n\t\treturn this.connect()\n\t\t\t.then(() => this.makeRequest(endpoint, 'GET', null))\n\t\t\t.then(MyDataHelps.validateResponse)\n\t\t\t.then(response => response.json());\n\t}\n\n\t// Device Data V2\n\n\tqueryDeviceDataV2(queryParameters: Model.DeviceDataV2Query): Promise<Model.DeviceDataV2Page> {\n\t\tqueryParameters = Object.assign({}, queryParameters);\n\n\t\tif (queryParameters.hasOwnProperty(\"observedBefore\")) {\n\t\t\tqueryParameters.observedBefore = MyDataHelps.convertDateToIsoString(queryParameters.observedBefore);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"observedAfter\")) {\n\t\t\tqueryParameters.observedAfter = MyDataHelps.convertDateToIsoString(queryParameters.observedAfter);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"insertedBefore\")) {\n\t\t\tqueryParameters.insertedBefore = MyDataHelps.convertDateToIsoString(queryParameters.insertedBefore);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"insertedAfter\")) {\n\t\t\tqueryParameters.insertedAfter = MyDataHelps.convertDateToIsoString(queryParameters.insertedAfter);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"modifiedBefore\")) {\n\t\t\tqueryParameters.modifiedBefore = MyDataHelps.convertDateToIsoString(queryParameters.modifiedBefore);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"modifiedAfter\")) {\n\t\t\tqueryParameters.modifiedAfter = MyDataHelps.convertDateToIsoString(queryParameters.modifiedAfter);\n\t\t}\n\t\tMyDataHelps.flattenPropertyShallow(queryParameters, \"dataSource\");\n\t\tMyDataHelps.flattenPropertyShallow(queryParameters, \"properties\");\n\n\t\tconst queryString = new URLSearchParams(queryParameters as Record<string, any>).toString();\n\t\tconst endpoint = 'devicedata?' + queryString;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null, 'v2');\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tqueryDeviceDataV2Aggregate(queryParameters: Model.DeviceDataV2AggregateQuery): Promise<Model.DeviceDataV2AggregatePage> {\n\t\tqueryParameters = Object.assign({}, queryParameters);\n\n\t\tif (queryParameters.hasOwnProperty(\"aggregateFunctions\")) {\n\t\t\tqueryParameters.aggregateFunctions = MyDataHelps.reduceArrayAndEscape(queryParameters.aggregateFunctions);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"observedBefore\")) {\n\t\t\tqueryParameters.observedBefore = MyDataHelps.convertDateToIsoString(queryParameters.observedBefore);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"observedAfter\")) {\n\t\t\tqueryParameters.observedAfter = MyDataHelps.convertDateToIsoString(queryParameters.observedAfter);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"insertedBefore\")) {\n\t\t\tqueryParameters.insertedBefore = MyDataHelps.convertDateToIsoString(queryParameters.insertedBefore);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"insertedAfter\")) {\n\t\t\tqueryParameters.insertedAfter = MyDataHelps.convertDateToIsoString(queryParameters.insertedAfter);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"modifiedBefore\")) {\n\t\t\tqueryParameters.modifiedBefore = MyDataHelps.convertDateToIsoString(queryParameters.modifiedBefore);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"modifiedAfter\")) {\n\t\t\tqueryParameters.modifiedAfter = MyDataHelps.convertDateToIsoString(queryParameters.modifiedAfter);\n\t\t}\n\t\tMyDataHelps.flattenPropertyShallow(queryParameters, \"dataSource\");\n\t\tMyDataHelps.flattenPropertyShallow(queryParameters, \"properties\");\n\n\t\tconst queryString = new URLSearchParams(queryParameters as Record<string, any>).toString();\n\t\tconst endpoint = 'devicedata/aggregate?' + queryString;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null, 'v2');\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tqueryDeviceDataV2DailySleep(queryParameters: Model.DeviceDataV2AggregateQuery): Promise<Model.DeviceDataV2DailySleepPage> {\n\t\tqueryParameters = Object.assign({}, queryParameters);\n\n\t\tif (queryParameters.hasOwnProperty(\"observedBefore\")) {\n\t\t\tqueryParameters.observedBefore = MyDataHelps.convertDateToIsoString(queryParameters.observedBefore);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"observedAfter\")) {\n\t\t\tqueryParameters.observedAfter = MyDataHelps.convertDateToIsoString(queryParameters.observedAfter);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"insertedBefore\")) {\n\t\t\tqueryParameters.insertedBefore = MyDataHelps.convertDateToIsoString(queryParameters.insertedBefore);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"insertedAfter\")) {\n\t\t\tqueryParameters.insertedAfter = MyDataHelps.convertDateToIsoString(queryParameters.insertedAfter);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"modifiedBefore\")) {\n\t\t\tqueryParameters.modifiedBefore = MyDataHelps.convertDateToIsoString(queryParameters.modifiedBefore);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"modifiedAfter\")) {\n\t\t\tqueryParameters.modifiedAfter = MyDataHelps.convertDateToIsoString(queryParameters.modifiedAfter);\n\t\t}\n\t\tMyDataHelps.flattenPropertyShallow(queryParameters, \"dataSource\");\n\t\tMyDataHelps.flattenPropertyShallow(queryParameters, \"properties\");\n\n\t\tconst queryString = new URLSearchParams(queryParameters as Record<string, any>).toString();\n\t\tconst endpoint = 'devicedata/aggregate/dailysleep?' + queryString;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null, 'v2');\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tgetDeviceDataV2AllDataTypes(enabled?: boolean, namespace?: string): Promise<Model.SupportedDeviceDataV2DataType[]> {\n\t\tconst queryParameters: Record<string, string> = {};\n\n\t\tif (enabled !== undefined) {\n\t\t\tqueryParameters['enabled'] = enabled.toString();\n\t\t}\n\n\t\tif (namespace) {\n\t\t\tqueryParameters['namespace'] = namespace;\n\t\t}\n\n\t\tconst queryString = new URLSearchParams(queryParameters).toString();\n\t\tconst endpoint = `devicedata/allDataTypes?${queryString}`;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null, 'v2');\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\t// External Accounts\n\n\tgetExternalAccountProviders(search: string | null, category: string | null, pageSize: number, pageNumber: number): Promise<Model.ExternalAccountProvidersPage> {\n\t\tlet searchParameters: any = {};\n\t\tif (!!search) searchParameters.search = search;\n\t\tif (!!category) searchParameters.category = category;\n\t\tif (!!pageSize) searchParameters.pageSize = pageSize;\n\t\tif (!!pageNumber) searchParameters.pageNumber = pageNumber;\n\n\t\tconst queryString = new URLSearchParams(searchParameters).toString();\n\t\tconst endpoint = 'externalaccountproviders?' + queryString;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tconnectExternalAccount(externalAccountProviderID: number, options?: Model.ConnectExternalAccountOptions): Promise<void> {\n\t\treturn new Promise<void>((resolve, reject) => {\n\n\t\t\tconst messageID = mdh.nextMessageID();\n\t\t\tmdh.messageHandlers[messageID] = function (connectProviderAccountResponse) {\n\t\t\t\tif (connectProviderAccountResponse && connectProviderAccountResponse.success) {\n\t\t\t\t\tresolve();\n\t\t\t\t} else {\n\t\t\t\t\treject(connectProviderAccountResponse.errorMessage)\n\t\t\t\t}\n\t\t\t};\n\n\t\t\tif (this.standaloneMode) {\n\t\t\t\tconst mdh = this;\n\t\t\t\tlet standaloneModeFinalRedirectPath = options?.standaloneModeFinalRedirectPath || mdh.standaloneModeFinalRedirectPath || window.location.href;\n\n\t\t\t\t// DEV: Safari blocks popups in AJAX responses. Work-around is to open a blank window before the request and set the URL later\n\t\t\t\tlet providerAuthWindow;\n\t\t\t\tif (options?.openNewWindow) {\n\t\t\t\t\tstandaloneModeFinalRedirectPath = `${standaloneModeFinalRedirectPath.split('?')[0]}?connectExternalAccount=true&messageID=${messageID}&success=%SUCCESSVALUE%`;\n\t\t\t\t\tlet windowFeatures = null;\n\t\t\t\t\tif (options?.width && options?.height) {\n\t\t\t\t\t\tconst w = options?.width;\n\t\t\t\t\t\tconst h = options?.height;\n\t\t\t\t\t\tconst y = window.outerHeight / 2 + window.screenY - (h / 2);\n\t\t\t\t\t\tconst x = window.outerWidth / 2 + window.screenX - (w / 2);\n\t\t\t\t\t\twindowFeatures = \"width=\" + w + \",height=\" + h + \",top=\" + y + \",left=\" + x;\n\t\t\t\t\t}\n\n\t\t\t\t\tproviderAuthWindow = window.open(\"\", 'providerauth', windowFeatures);\n\t\t\t\t\tproviderAuthWindow.document.open();\n\t\t\t\t\tproviderAuthWindow.document.write(`<!DOCTYPE html><html><head><title>Loading</title><link href=\"${this.baseUrl}Content/Loading.css\" rel=\"stylesheet\"/></head><body><div id=\"fragment-redirect-content\"></div></body></html>`);\n\t\t\t\t\tproviderAuthWindow.document.close();\n\t\t\t\t}\n\n\t\t\t\tconst verifier = MyDataHelps.generateVerifier();\n\t\t\t\tMyDataHelps.hashVerifier(verifier).then(verifierHash => {\n\t\t\t\t\tconst searchParameters = { finalRedirectPath: standaloneModeFinalRedirectPath, verifierHash: verifierHash };\n\t\t\t\t\tconst queryString = new URLSearchParams(searchParameters).toString();\n\t\t\t\t\tconst endpoint = \"externalaccountproviders/\" + externalAccountProviderID + \"/connect?\" + queryString;\n\n\t\t\t\t\tthis.connect()\n\t\t\t\t\t\t.then(function () {\n\t\t\t\t\t\t\treturn mdh.makeRequest(endpoint, 'POST', null);\n\t\t\t\t\t\t})\n\t\t\t\t\t\t.then(function (response) {\n\t\t\t\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t\t\t\t})\n\t\t\t\t\t\t.then(function (response) {\n\t\t\t\t\t\t\treturn response.text();\n\t\t\t\t\t\t})\n\t\t\t\t\t\t.then(function (redirectUrl) {\n\t\t\t\t\t\t\tconst url = new URL(redirectUrl.replace(/['\"]+/g, ''));\n\t\t\t\t\t\t\tconst searchParams = new URLSearchParams();\n\t\t\t\t\t\t\tsearchParams.set('verifier', verifier);\n\t\t\t\t\t\t\tredirectUrl = `${url}#${searchParams}`;\n\t\t\t\t\t\t\tif (providerAuthWindow) {\n\t\t\t\t\t\t\t\tproviderAuthWindow.location = redirectUrl;\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\twindow.top.location = redirectUrl;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t})\n\t\t\t\t\t\t.catch(function (error) {\n\t\t\t\t\t\t\treject(error);\n\t\t\t\t\t\t});\n\t\t\t\t})\n\t\t\t} else if (window.webkit.messageHandlers.ConnectExternalAccount) {\n\t\t\t\twindow.webkit.messageHandlers.ConnectExternalAccount.postMessage({\n\t\t\t\t\texternalAccountProviderID: externalAccountProviderID,\n\t\t\t\t\tmessageID: messageID,\n\t\t\t\t\t...options\n\t\t\t\t});\n\t\t\t}\n\t\t});\n\t}\n\n\tgetExternalAccounts(): Promise<Model.ExternalAccount[]> {\n\t\tconst endpoint = 'externalaccounts';\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\trefreshExternalAccount(accountID: number): Promise<void> {\n\t\tconst endpoint = 'externalaccounts/refresh/' + accountID;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'POST', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function () {\n\t\t\t\treturn;\n\t\t\t});\n\t}\n\n\tdeleteExternalAccount(accountID: number): Promise<any> {\n\t\tconst endpoint = 'externalaccounts/delete/' + encodeURIComponent(accountID);\n\t\tconst mdh = this;\n\n\t\tif (this.isStandaloneMode()) {\n\t\t\treturn this\n\t\t\t\t.connect()\n\t\t\t\t.then(function () {\n\t\t\t\t\treturn mdh.makeRequest(endpoint, 'DELETE', null);\n\t\t\t\t})\n\t\t\t\t.then(function (response) {\n\t\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t\t});\n\t\t}\n\n\t\treturn new Promise(function (resolve, reject) {\n\t\t\tif (window.webkit.messageHandlers.DeleteProviderAccount) {\n\t\t\t\tconst messageID = mdh.nextMessageID();\n\t\t\t\tmdh.messageHandlers[messageID] = function (deleteProviderAccountResponse) {\n\t\t\t\t\tif (!deleteProviderAccountResponse.success) {\n\t\t\t\t\t\treject(deleteProviderAccountResponse)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tresolve(deleteProviderAccountResponse);\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t\twindow.webkit.messageHandlers.DeleteProviderAccount.postMessage({\n\t\t\t\t\tmessageID: messageID,\n\t\t\t\t\taccountID: accountID\n\t\t\t\t});\n\t\t\t} else {\n\t\t\t\treject();\n\t\t\t}\n\t\t});\n\t}\n\n\tgetFeaturedProviders(context?: string): Promise<Model.ExternalAccountProvider[]> {\n\t\tconst queryParameters: Record<string, string> = {};\n\n\t\tif (context) {\n\t\t\tqueryParameters['featuredProvidersContext'] = context;\n\t\t}\n\n\t\tconst queryString = new URLSearchParams(queryParameters).toString();\n\t\tconst endpoint = `featuredexternalaccountproviders?${queryString}`;\n\n\t\treturn this.connect()\n\t\t\t.then(() => this.makeRequest(endpoint, 'GET', null))\n\t\t\t.then(MyDataHelps.validateResponse)\n\t\t\t.then(response => response.json());\n\t}\n\n\t// Notifications\n\n\tqueryNotifications(queryParameters: Model.NotificationQueryParameters): Promise<Model.NotificationsPage> {\n\t\tqueryParameters = Object.assign({}, queryParameters);\n\n\t\tif (queryParameters.hasOwnProperty(\"sentBefore\")) {\n\t\t\tqueryParameters.sentBefore = MyDataHelps.convertDateToIsoString(queryParameters.sentBefore);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"sentAfter\")) {\n\t\t\tqueryParameters.sentAfter = MyDataHelps.convertDateToIsoString(queryParameters.sentAfter);\n\t\t}\n\n\t\tconst queryString = new URLSearchParams(queryParameters as Record<string, any>).toString();\n\t\tconst endpoint = 'notifications?' + queryString;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\t// Fitbit\n\n\tqueryFitbitDailySummaries(queryParameters: Model.FitbitQuery): Promise<Model.FitbitDailySummariesPage> {\n\t\tqueryParameters = Object.assign({}, queryParameters);\n\n\t\tif (queryParameters.hasOwnProperty(\"startDate\")) {\n\t\t\tqueryParameters.startDate = MyDataHelps.convertDateToIsoString(queryParameters.startDate);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"endDate\")) {\n\t\t\tqueryParameters.endDate = MyDataHelps.convertDateToIsoString(queryParameters.endDate);\n\t\t}\n\n\t\tconst queryString = new URLSearchParams(queryParameters as Record<string, any>).toString();\n\t\tconst endpoint = 'fitbit/dailySummaries?' + queryString;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tqueryFitbitSleepLogs(queryParameters: Model.FitbitQuery): Promise<Model.FitbitSleepLogsPage> {\n\t\tqueryParameters = Object.assign({}, queryParameters);\n\n\t\tif (queryParameters.hasOwnProperty(\"startDate\")) {\n\t\t\tqueryParameters.startDate = MyDataHelps.convertDateToIsoString(queryParameters.startDate);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"endDate\")) {\n\t\t\tqueryParameters.endDate = MyDataHelps.convertDateToIsoString(queryParameters.endDate);\n\t\t}\n\n\t\tconst queryString = new URLSearchParams(queryParameters as Record<string, any>).toString();\n\t\tconst endpoint = 'fitbit/sleepLogs?' + queryString;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\t// AppleHealth\n\n\tqueryAppleHealthActivitySummaries(queryParameters: Model.AppleHealthQuery): Promise<Model.AppleHealthActivitySummaryPage> {\n\t\tqueryParameters = Object.assign({}, queryParameters);\n\n\t\tif (queryParameters.hasOwnProperty(\"startDate\")) {\n\t\t\tqueryParameters.startDate = MyDataHelps.convertDateToIsoString(queryParameters.startDate);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"endDate\")) {\n\t\t\tqueryParameters.endDate = MyDataHelps.convertDateToIsoString(queryParameters.endDate);\n\t\t}\n\n\t\tconst queryString = new URLSearchParams(queryParameters as Record<string, any>).toString();\n\t\tconst endpoint = 'appleHealth/activitySummaries?' + queryString;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tqueryAppleHealthWorkouts(queryParameters: Model.AppleHealthQuery): Promise<Model.AppleHealthWorkoutPage> {\n\t\tqueryParameters = Object.assign({}, queryParameters);\n\n\t\tif (queryParameters.hasOwnProperty(\"startDate\")) {\n\t\t\tqueryParameters.startDate = MyDataHelps.convertDateToIsoString(queryParameters.startDate);\n\t\t}\n\t\tif (queryParameters.hasOwnProperty(\"endDate\")) {\n\t\t\tqueryParameters.endDate = MyDataHelps.convertDateToIsoString(queryParameters.endDate);\n\t\t}\n\n\t\tconst queryString = new URLSearchParams(queryParameters as Record<string, any>).toString();\n\t\tconst endpoint = 'appleHealth/workouts?' + queryString;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\t// Files\n\n\tuploadFile(file: File, category: string, fileName?: string): Promise<void> {\n\n\t\tif (file.size > 200 * 1024 * 1024) {\n\t\t\tthrow new Error(\"File size exceeds the maximum allowed size of 200MB.\");\n\t\t}\n\n\t\tconst mdh = this;\n\t\tconst endpoint = 'files?category=' + category + '&fileName=' + encodeURIComponent(fileName ?? file.name);\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'POST', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t})\n\t\t\t.then(function (json) {\n\t\t\t\treturn fetch(json.preSignedUrl, {\n\t\t\t\t\tmethod: 'PUT',\n\t\t\t\t\tbody: file,\n\t\t\t\t\theaders: {\n\t\t\t\t\t\t'Content-Type': file.type,\n\t\t\t\t\t\t'x-amz-server-side-encryption': 'AES256'\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function () {\n\t\t\t\treturn;\n\t\t\t});\n\t}\n\n\tqueryFiles(queryParameters: Model.UploadedFileQuery): Promise<Model.UploadedFilesPage> {\n\t\tconst queryString = new URLSearchParams(queryParameters as Record<string, any>).toString();\n\t\tconst endpoint = 'files?' + queryString;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tgetFileDownloadUrl(key: string): Promise<Model.DownloadedFile> {\n\n\t\tif (!key) throw new Error(\"Please specify the key of the file to download.\");\n\n\t\tconst endpoint = 'files/download?key=' + key;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tdeleteFile(key: string): Promise<void> {\n\n\t\tif (!key) throw new Error(\"Please specify the key of the file to delete.\");\n\n\t\tconst endpoint = 'files?key=' + key;\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'DELETE', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function () {\n\t\t\t\treturn;\n\t\t\t});\n\t}\n\n\t// Authorization\n\n\tconnect(): Promise<void> {\n\t\tconst mdh = this;\n\t\tlet refreshDelegatedAccessToken = function () {\n\t\t\tmdh.token = null;\n\n\t\t\tmdh.refreshTokenPromise = new Promise(function (resolve, reject) {\n\t\t\t\tlet messageID = mdh.nextMessageID();\n\t\t\t\tmdh.messageHandlers[messageID] = function (tokenResponse) {\n\t\t\t\t\tif (tokenResponse.success) {\n\t\t\t\t\t\tmdh.tokenExpires = Date.now() + (tokenResponse.data.expires_in * 1000);\n\t\t\t\t\t\tmdh.token = tokenResponse.data;\n\t\t\t\t\t\tmdh.baseUrl = tokenResponse.baseUrl;\n\t\t\t\t\t\tsetTimeout(refreshDelegatedAccessToken, ((tokenResponse.data.expires_in - mdh.accessTokenRenewalBufferSeconds) * 1000));\n\t\t\t\t\t\tresolve(null);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tmdh.token = null;\n\t\t\t\t\t\treject(tokenResponse.message);\n\t\t\t\t\t}\n\t\t\t\t\tmdh.messageHandlers[messageID] = null;\n\t\t\t\t\tmdh.refreshTokenPromise = null;\n\t\t\t\t};\n\n\t\t\t\twindow.webkit.messageHandlers.GetDelegatedAccessToken.postMessage({ messageID: messageID });\n\t\t\t});\n\t\t};\n\n\t\tif (this.token && Date.now() < this.tokenExpires) {\n\t\t\treturn Promise.resolve();\n\t\t}\n\n\t\tif (this.isStandaloneMode() && !this.isEmbeddedMode()) {\n\t\t\tlet error = this.token ? \"access token is expired or invalid\" : \"access token must be explicitly provided using the setParticipantAccess method\";\n\t\t\tconsole.log(error);\n\t\t\treturn Promise.reject(error);\n\t\t}\n\n\t\tif (!this.refreshTokenPromise) {\n\t\t\trefreshDelegatedAccessToken();\n\t\t}\n\n\t\t// Re-use promise if refresh already in progress\n\t\treturn this.refreshTokenPromise;\n\t}\n\n\tsetParticipantAccessToken(token: Model.Token, baseUrl?: string): void {\n\t\tthis.enableStandaloneMode();\n\t\tthis.token = token;\n\t\tif (baseUrl) {\n\t\t\tthis.baseUrl = baseUrl;\n\t\t}\n\t\tthis.tokenExpires = Date.now() + (this.token.expires_in * 1000);\n\t\tconst mdh = this;\n\t\tsetTimeout(function () {\n\t\t\tmdh.triggerEvent({ type: \"tokenWillExpire\" });\n\t\t}, ((this.token.expires_in - this.accessTokenRenewalBufferSeconds) * 1000));\n\t}\n\n\t// Miscellaneous\n\n\tisStandaloneMode() {\n\t\treturn this.standaloneMode;\n\t}\n\n\tisEmbeddedMode() {\n\t\treturn this.embeddedMode;\n\t}\n\n\tenableStandaloneMode(embeddedMode: boolean = false, baseUrl?: string) {\n\t\tthis.standaloneMode = true;\n\t\tthis.embeddedMode = embeddedMode;\n\t\tif (baseUrl) {\n\t\t\tthis.baseUrl = baseUrl;\n\t\t}\n\t\tif (window.webkit) {\n\t\t\twindow.webkit.messageHandlers = embeddedMode ? {\n\t\t\t\tGetDelegatedAccessToken: window.webkit.messageHandlers.GetDelegatedAccessToken,\n\t\t\t\tOpenExternalLink: window.webkit.messageHandlers.OpenExternalLink,\n\t\t\t\tOpenEmbeddedLink: window.webkit.messageHandlers.OpenEmbeddedLink,\n\t\t\t\tOpenExternalApplication: window.webkit.messageHandlers.OpenExternalApplication,\n\t\t\t\tPopNavigation: window.webkit.messageHandlers.PopNavigation,\n\t\t\t\tDismiss: window.webkit.messageHandlers.Dismiss,\n\t\t\t} : {};\n\t\t}\n\t}\n\n\tget standaloneModeFinalRedirectPath(): string {\n\t\treturn this._standaloneModeFinalRedirectPath;\n\t}\n\n\tset standaloneModeFinalRedirectPath(path: string) {\n\t\tthis._standaloneModeFinalRedirectPath = path;\n\t}\n\n\tsetStatusBarStyle(style: Model.StatusBarStyle): void {\n\t\tif (window.webkit.messageHandlers.SetStatusBarStyle) {\n\t\t\twindow.webkit.messageHandlers.SetStatusBarStyle.postMessage({ style: style });\n\t\t}\n\t}\n\n\tgetDeviceInfo(): Promise<Model.DeviceInfo> {\n\t\tlet mdh = this;\n\t\treturn new Promise<Model.DeviceInfo>(function (resolve, reject) {\n\t\t\tif (mdh.isStandaloneMode()) {\n\t\t\t\tresolve(null);\n\t\t\t} else if (window.webkit.messageHandlers.GetDeviceInfo) {\n\t\t\t\tlet messageID = mdh.nextMessageID();\n\t\t\t\tmdh.messageHandlers[messageID] = function (deviceInfoResponse) {\n\t\t\t\t\tresolve(deviceInfoResponse.data);\n\t\t\t\t};\n\t\t\t\twindow.webkit.messageHandlers.GetDeviceInfo.postMessage({ messageID: messageID });\n\t\t\t} else {\n\t\t\t\treject();\n\t\t\t}\n\t\t});\n\t}\n\n\tsetSupportedLanguages(languages: string[]) {\n\t\tthis.supportedLanguages.length = 0;\n\t\tfor (let i = 0; i < languages.length; i++) {\n\t\t\tthis.supportedLanguages.push(languages[i].replace(\"_\", \"-\"));\n\t\t}\n\t}\n\n\tgetStepConfiguration(): Promise<Model.StepConfiguration> {\n\t\tlet mdh = this;\n\t\treturn new Promise<Model.StepConfiguration>(function (resolve, reject) {\n\t\t\tif (mdh.isStandaloneMode()) {\n\t\t\t\tresolve(null);\n\t\t\t} else if (window.webkit.messageHandlers.GetStepConfiguration) {\n\t\t\t\tlet messageID = mdh.nextMessageID();\n\t\t\t\tmdh.messageHandlers[messageID] = function (stepConfigurationResponse) {\n\t\t\t\t\tresolve(stepConfigurationResponse.data);\n\t\t\t\t};\n\t\t\t\twindow.webkit.messageHandlers.GetStepConfiguration.postMessage({ messageID: messageID });\n\t\t\t} else {\n\t\t\t\treject();\n\t\t\t}\n\t\t});\n\t}\n\n\tgetSurveyContext(): Promise<Model.SurveyContext> {\n\t\tlet mdh = this;\n\t\treturn new Promise(function (resolve, reject) {\n\t\t\tif (mdh.isStandaloneMode()) {\n\t\t\t\tresolve(null);\n\t\t\t}\n\t\t\tmdh.getDeviceInfo().then(function (deviceInfo) {\n\t\t\t\tif (deviceInfo.platform !== \"Web\") {\n\t\t\t\t\tresolve({ surveyMode: \"Survey\" });\n\t\t\t\t}\n\t\t\t\telse if (window.webkit.messageHandlers.GetSurveyContext) {\n\t\t\t\t\tlet messageID = mdh.nextMessageID();\n\t\t\t\t\tmdh.messageHandlers[messageID] = function (surveyContextResponse) {\n\t\t\t\t\t\tresolve(surveyContextResponse.data);\n\t\t\t\t\t};\n\t\t\t\t\twindow.webkit.messageHandlers.GetSurveyContext.postMessage({ messageID: messageID });\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\treject();\n\t\t\t\t}\n\t\t\t}).catch(function (error) {\n\t\t\t\treject();\n\t\t\t});\n\t\t});\n\t}\n\n\tgetCurrentSurveyAnswers(): Promise<Model.CurrentSurveyAnswer[]> {\n\t\tlet mdh = this;\n\t\treturn new Promise<Model.CurrentSurveyAnswer[]>(function (resolve, reject) {\n\t\t\tif (mdh.isStandaloneMode()) {\n\t\t\t\tresolve(null);\n\t\t\t} else if (window.webkit.messageHandlers.GetCurrentSurveyAnswers) {\n\t\t\t\tlet messageID = mdh.nextMessageID();\n\t\t\t\tmdh.messageHandlers[messageID] = function (currentSurveyAnswersResponse) {\n\t\t\t\t\tresolve(currentSurveyAnswersResponse.data);\n\t\t\t\t};\n\t\t\t\twindow.webkit.messageHandlers.GetCurrentSurveyAnswers.postMessage({ messageID: messageID });\n\t\t\t} else {\n\t\t\t\treject();\n\t\t\t}\n\t\t});\n\t}\n\n\tsetCurrentLanguage(language: string) {\n\t\tif (language) {\n\t\t\tlet supportedLanguage = this.getSupportedLanguage(language);\n\t\t\tif (supportedLanguage) {\n\t\t\t\tthis.language = supportedLanguage;\n\t\t\t} else {\n\t\t\t\tconsole.warn(`language ${language} not supported`);\n\t\t\t}\n\t\t} else {\n\t\t\tthis.language = language;\n\t\t}\n\t}\n\n\tgetCurrentLanguage(): string {\n\t\tlet searchParams = new URLSearchParams(window.location.search);\n\t\tlet lang;\n\t\tif (searchParams.has(\"lang\")) {\n\t\t\tlang = this.getSupportedLanguage(searchParams.get(\"lang\"));\n\t\t\tif (lang) {\n\t\t\t\treturn lang;\n\t\t\t} else {\n\t\t\t\tconsole.warn(`language ${searchParams.get(\"lang\")} not supported`);\n\t\t\t}\n\t\t}\n\t\treturn this.language || navigator.language;\n\t}\n\n\tshowGoogleFitSettings(): void {\n\t\tif (window.webkit.messageHandlers.ShowGoogleFitSettings) {\n\t\t\twindow.webkit.messageHandlers.ShowGoogleFitSettings.postMessage({});\n\t\t}\n\t}\n\n\tshowHealthConnectSettings(): void {\n\t\tif (window.webkit.messageHandlers.HealthConnectSettings) {\n\t\t\twindow.webkit.messageHandlers.HealthConnectSettings.postMessage({});\n\t\t}\n\t}\n\n\tshowHealthConnectPrompt(): void {\n\t\tif (window.webkit.messageHandlers.HealthConnectPrompt) {\n\t\t\twindow.webkit.messageHandlers.HealthConnectPrompt.postMessage({});\n\t\t}\n\t}\n\n\tgetHealthConnectStatus(): Promise<Model.HealthConnectStatus> {\n\t\tlet mdh = this;\n\t\treturn new Promise<Model.HealthConnectStatus>(function (resolve, reject) {\n\t\t\tif (mdh.isStandaloneMode()) {\n\t\t\t\tresolve(null);\n\t\t\t} else if (window.webkit.messageHandlers.HealthConnectStatus) {\n\t\t\t\tlet messageID = mdh.nextMessageID();\n\t\t\t\tmdh.messageHandlers[messageID] = function (statusResponse) {\n\t\t\t\t\tresolve(statusResponse.data);\n\t\t\t\t};\n\t\t\t\twindow.webkit.messageHandlers.HealthConnectStatus.postMessage({ messageID: messageID });\n\t\t\t} else {\n\t\t\t\treject();\n\t\t\t}\n\t\t});\n\t}\n\n\tshowHealthConnectPhrPrompt(): void {\n\t\tif (window.webkit.messageHandlers.HealthConnectPhrPrompt) {\n\t\t\twindow.webkit.messageHandlers.HealthConnectPhrPrompt.postMessage({});\n\t\t}\n\t}\n\n\tgetHealthConnectPhrStatus(): Promise<Model.HealthConnectPhrStatus> {\n\t\tlet mdh = this;\n\t\treturn new Promise<Model.HealthConnectPhrStatus>(function (resolve, reject) {\n\t\t\tif (mdh.isStandaloneMode()) {\n\t\t\t\tresolve(null);\n\t\t\t} else if (window.webkit.messageHandlers.HealthConnectPhrStatus) {\n\t\t\t\tlet messageID = mdh.nextMessageID();\n\t\t\t\tmdh.messageHandlers[messageID] = function (statusResponse) {\n\t\t\t\t\tresolve(statusResponse.data);\n\t\t\t\t};\n\t\t\t\twindow.webkit.messageHandlers.HealthConnectPhrStatus.postMessage({ messageID: messageID });\n\t\t\t} else {\n\t\t\t\treject();\n\t\t\t}\n\t\t});\n\t}\n\n\trequestReview(cooldownDays?: number): void {\n\t\tif (window.webkit.messageHandlers.RequestReview) {\n\t\t\twindow.webkit.messageHandlers.RequestReview.postMessage({ cooldownDays: cooldownDays });\n\t\t}\n\t}\n\n\ttrackCustomEvent(event: Model.CustomEventInfo): Promise<void> {\n\t\tconst endpoint = 'customevents';\n\t\tconst mdh = this;\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'POST', event);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function () {\n\t\t\t\treturn;\n\t\t\t});\n\t}\n\n\tgetDataCollectionSettings(): Promise<Model.DataCollectionSettings> {\n\t\tconst mdh = this;\n\t\tconst endpoint = 'datacollectionsettings';\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tgetDataAvailability(): Promise<Model.DataAvailability> {\n\t\tconst mdh = this;\n\t\tconst endpoint = 'dataavailability';\n\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, 'GET', null);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn response.json();\n\t\t\t});\n\t}\n\n\tinvokeCustomApi(customApi: string, method: string, queryParameters: string | string[][] | Record<string, string> | URLSearchParams | null | undefined, jsonResponse: boolean): Promise<any> {\n\t\tif (customApi.includes('?')) {\n\t\t\tthrow new Error(\"Cannot include query parameters directly in the \\\"customApi\\\" string. Provide as an argument for \\\"queryParameters\\\" instead.\");\n\t\t}\n\n\t\tlet endpoint = 'custom/' + customApi;\n\t\tmethod = method.toUpperCase();\n\t\tif (queryParameters !== null && queryParameters !== undefined && (method === 'GET' || method === 'DELETE')) {\n\t\t\tlet parameterString = new URLSearchParams(queryParameters).toString();\n\t\t\tendpoint += \"?\" + parameterString;\n\t\t\tqueryParameters = null;\n\t\t}\n\n\t\tconst mdh = this;\n\t\treturn this\n\t\t\t.connect()\n\t\t\t.then(function () {\n\t\t\t\treturn mdh.makeRequest(endpoint, method, queryParameters);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn MyDataHelps.validateResponse(response);\n\t\t\t})\n\t\t\t.then(function (response) {\n\t\t\t\treturn jsonResponse ? response.json() : undefined;\n\t\t\t});\n\t}\n\n\tconstructor() {\n\t\tif (this.handleConnectExternalAccountResponse()) {\n\t\t\treturn;\n\t\t}\n\n\t\tlet mdh = this;\n\t\tlet applicationHost = getParentOrigin();\n\t\tlet supportedActions;\n\n\t\tfunction getParentOrigin(): string {\n\t\t\tlet ancestorOrigins = document.location.ancestorOrigins;\n\t\t\tif (ancestorOrigins && ancestorOrigins[0]) {\n\t\t\t\treturn ancestorOrigins[0];\n\t\t\t}\n\n\t\t\treturn '*';\n\t\t}\n\n\t\tfunction acceptableOrigin(origin) {\n\t\t\tif (origin === '*') return true;\n\n\t\t\tlet sourceURL = new URL(origin);\n\t\t\tfor (let k = 0; k < mdh.acceptableParentDomains.length; k++) {\n\t\t\t\tif (sourceURL.hostname === mdh.acceptableParentDomains[k] || sourceURL.hostname.endsWith(\".\" + mdh.acceptableParentDomains[k])) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t}\n\n\t\tfunction validateWindowMessageOrigin(message) {\n\t\t\tif (mdh.isStandaloneMode() && message.origin === window.location.origin) {\n\t\t\t\treturn true;\n\t\t\t}\n\n\t\t\tif (applicationHost === \"*\") {\n\t\t\t\treturn acceptableOrigin(message.origin);\n\t\t\t}\n\n\t\t\treturn message.origin === applicationHost;\n\t\t}\n\n\t\tfunction addActions(actions) {\n\t\t\tfor (let action in actions) {\n\t\t\t\tif (!window.webkit.messageHandlers[action]) {\n\t\t\t\t\ttry {\n\t\t\t\t\t\twindow.webkit.messageHandlers[action] = { postMessage: actions[action] };\n\t\t\t\t\t} catch (error) {\n\t\t\t\t\t\tconsole.log(\"Unable to add missing actions on this platform: \" + error);\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tfunction receiveWindowMessage(message) {\n\t\t\tif (!validateWindowMessageOrigin(message)) {\n\t\t\t\t// todo: this can generate tons of console errors when hosting some apps within webappstep (youtube content, for example )\n\t\t\t\tconsole.error(\"message.origin '\" + message.origin + \"' is not allowed.\");\n\t\t\t\tthrow \"message.origin '\" + message.origin + \"' is not allowed.\";\n\t\t\t}\n\n\t\t\tif (message.data.messageID) {\n\t\t\t\tmdh.setActionResult(message.data);\n\t\t\t} else {\n\t\t\t\tmdh.triggerEvent(message.data);\n\t\t\t}\n\t\t}\n\n\t\tfunction windowHasAnyActions() {\n\t\t\tfor (let action in supportedActions) {\n\t\t\t\tif (window.webkit.messageHandlers[action]) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t\tfor (let action in mdh.unsupportedActions) {\n\t\t\t\tif (window.webkit.messageHandlers[mdh.unsupportedActions[action]]) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t}\n\n\t\tif (!acceptableOrigin(applicationHost)) {\n\t\t\tconsole.log(\"Detected unsupported parent origin domain.\");\n\t\t}\n\n\t\tif (window.webkit && window.webkit.messageHandlers && window.webkit.messageHandlers.ResearchKit) {\n\t\t\t// Presence of ResearchKit handler indicates the SDK is being used from within a WebViewStep. For pre-SDK backwards compatiblity,\n\t\t\t// WebViewStep setup registers the following handlers: GetDeviceInfo, DeleteProviderAccount, ConnectExternalAccount\n\t\t\t// ShowParticipantWebVisualizationPDF, ResearchKit\n\t\t\tsupportedActions = {\n\t\t\t\t\"GetDelegatedAccessToken\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'GetDelegatedAccessToken',\n\t\t\t\t\t\tmessageID: data.messageID\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"OpenExternalLink\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'OpenExternalUrl',\n\t\t\t\t\t\turl: data\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"OpenEmbeddedLink\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'OpenEmbeddedUrl',\n\t\t\t\t\t\turl: data\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"GetCurrentSurveyAnswers\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'GetCurrentSurveyAnswers',\n\t\t\t\t\t\tmessageID: data.messageID\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"GetStepConfiguration\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'GetStepConfiguration',\n\t\t\t\t\t\tmessageID: data.messageID\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"GetSurveyContext\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'GetSurveyContext',\n\t\t\t\t\t\tmessageID: data.messageID\n\t\t\t\t\t}, applicationHost);\n\t\t\t\t},\n\t\t\t\t\"CompleteStep\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'CompleteStep',\n\t\t\t\t\t\tmessageID: data.messageID,\n\t\t\t\t\t\tanswer: data.answer\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t}\n\t\t\t};\n\t\t} else {\n\t\t\tsupportedActions = {\n\t\t\t\t\"GetDelegatedAccessToken\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'GetDelegatedAccessToken',\n\t\t\t\t\t\tmessageID: data.messageID\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"GetDeviceInfo\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({ name: 'GetDeviceInfo', messageID: data.messageID }, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"StartParticipantSurvey\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'StartParticipantSurvey',\n\t\t\t\t\t\tmessageID: data.messageID,\n\t\t\t\t\t\tsurveyName: data.surveyName,\n\t\t\t\t\t\toptions: data.options\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"OpenExternalLink\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({ name: 'OpenExternalUrl', url: data }, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"OpenEmbeddedLink\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({ name: 'OpenEmbeddedUrl', url: data }, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"OpenExternalApplication\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'OpenApplication',\n\t\t\t\t\t\tmessageID: data.messageID,\n\t\t\t\t\t\turl: data.url,\n\t\t\t\t\t\tmodal: data.modal\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"Dismiss\": function () {\n\t\t\t\t\twindow.parent.postMessage({ name: 'Dismiss' }, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"PopNavigation\": function () {\n\t\t\t\t\twindow.parent.postMessage({ name: 'Back' }, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"ShowTab\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({ name: 'ShowTab', tabKey: data }, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"ShowParticipantDashboard\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'ShowParticipantDashboard',\n\t\t\t\t\t\tdashboardKey: data.dashboardKey,\n\t\t\t\t\t\tmodal: data.modal\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"ShowParticipantWebVisualization\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'ShowParticipantWebVisualization',\n\t\t\t\t\t\tvisualizationKey: data.visualizationKey,\n\t\t\t\t\t\tparameters: data.parameters,\n\t\t\t\t\t\tmodal: data.modal\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"ShowParticipantWebVisualizationPDF\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'ShowParticipantWebVisualizationPDF',\n\t\t\t\t\t\tvisualizationKey: data.visualizationKey,\n\t\t\t\t\t\tparameters: data.parameters,\n\t\t\t\t\t\tmodal: data.modal,\n\t\t\t\t\t\tlandscape: data.landscape,\n\t\t\t\t\t\thtmlViewerZoom: data.htmlViewerZoom\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"DeleteProviderAccount\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'DeleteProviderAccount',\n\t\t\t\t\t\tmessageID: data.messageID,\n\t\t\t\t\t\taccountID: data.accountID\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"ConnectExternalAccount\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'ConnectExternalAccount',\n\t\t\t\t\t\texternalAccountProviderID: data.externalAccountProviderID,\n\t\t\t\t\t\tmessageID: data.messageID,\n\t\t\t\t\t\topenNewWindow: data.openNewWindow,\n\t\t\t\t\t\twidth: data.width,\n\t\t\t\t\t\theight: data.height\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"ShowProject\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({ name: 'ShowProject', code: data.code }, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"JoinProject\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({ name: 'JoinProject', code: data.code }, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"GetCurrentSurveyAnswers\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'GetCurrentSurveyAnswers',\n\t\t\t\t\t\tmessageID: data.messageID\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"GetStepConfiguration\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'GetStepConfiguration',\n\t\t\t\t\t\tmessageID: data.messageID\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t},\n\t\t\t\t\"CompleteStep\": function (data) {\n\t\t\t\t\twindow.parent.postMessage({\n\t\t\t\t\t\tname: 'CompleteStep',\n\t\t\t\t\t\tmessageID: data.messageID,\n\t\t\t\t\t\tanswer: data.answer\n\t\t\t\t\t}, applicationHost)\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\n\t\tif (!window.webkit || !window.webkit.messageHandlers || !windowHasAnyActions()) {\n\t\t\twindow.webkit = {\n\t\t\t\tmessageHandlers: {}\n\t\t\t};\n\t\t}\n\n\t\taddActions(supportedActions);\n\n\t\twindow.addEventListener(\"message\", receiveWindowMessage, false);\n\n\t\tif (this.hasEmbeddedModeUrlParameter()) {\n\t\t\tmdh.enableStandaloneMode(true);\n\t\t}\n\t}\n\n\tprivate readonly acceptableParentDomains = [\n\t\t'localhost',\n\t\t'careevolution.com',\n\t\t'internal',\n\t\t'b3-deploys.com',\n\t\t'mydatahelps.org',\n\t\t'platform.joinallofus.org',\n\t\t'careevolution.dev',\n\t\t'ce.dev',\n\t\t'mydatahelps.dev'\n\t];\n\n\tprivate readonly accessTokenRenewalBufferSeconds = 120;\n\tprivate readonly unsupportedActions = [\"SetHeight\", \"ResearchKit\"];\n\tprivate readonly supportedEvents = [\"surveyDidFinish\", \"applicationDidBecomeVisible\", \"externalAccountSyncComplete\", \"tokenWillExpire\", \"healthConnectSyncComplete\", \"healthConnectPhrSyncComplete\"];\n\tprivate readonly supportedLanguages = [];\n\n\tprivate currentMessageID = 1;\n\tprivate messageHandlers = [];\n\tprivate registeredEventHandlers = {};\n\tprivate refreshTokenPromise = null;\n\tprivate standaloneMode = false;\n\tprivate embeddedMode = false;\n\n\tprivate nextMessageID() {\n\t\treturn this.currentMessageID++;\n\t}\n\n\tprivate makeUrl(endpoint, apiVersion) {\n\t\tif (!this.baseUrl) {\n\t\t\tconsole.error(\"Cannot use makeUrl without MyDataHelps.baseUrl.\");\n\t\t\tthrow \"Cannot use makeUrl without MyDataHelps.baseUrl.\";\n\t\t}\n\n\t\treturn this.baseUrl + 'api/' + apiVersion + '/delegated/' + endpoint;\n\t}\n\n\tprivate makeRequest(endpoint, method, body, apiVersion = \"v1\") {\n\t\tif (!this.token || !this.token.access_token) {\n\t\t\tthrow \"No access_token available for request authorization.\";\n\t\t}\n\n\t\tlet url = this.makeUrl(endpoint, apiVersion);\n\n\t\tlet headers = new Headers();\n\t\theaders.append('Authorization', 'Bearer ' + this.token.access_token);\n\t\theaders.append('Accept', 'application/json, text/javascript, */*; q=0.01');\n\t\theaders.append('Accept-Language', this.getCurrentLanguage());\n\t\tif (!!body) {\n\t\t\theaders.append('Content-Type', 'application/json');\n\t\t}\n\n\t\tlet init: any = {\n\t\t\tmethod: method,\n\t\t\theaders: headers\n\t\t};\n\t\tif (!!body) {\n\t\t\tinit.body = JSON.stringify(body);\n\t\t}\n\n\t\treturn fetch(url, init);\n\t}\n\n\tprivate getSupportedLanguage(language: string): string {\n\t\tlanguage = language.replace(\"_\", \"-\");\n\t\tif (this.supportedLanguages.length === 0) {\n\t\t\treturn language;\n\t\t} else {\n\t\t\tif (this.supportedLanguages.find((l) => l === language)) {\n\t\t\t\treturn language;\n\t\t\t} else if (language.indexOf(\"-\") > 0) {\n\t\t\t\tlanguage = language.substring(0, language.indexOf(\"-\"));\n\t\t\t\tif (this.supportedLanguages.find((l) => l === language)) {\n\t\t\t\t\treturn language;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\tprivate static validateResponse(response) {\n\t\tif (!response.ok) {\n\t\t\tthrow response.statusText;\n\t\t}\n\n\t\treturn response;\n\t}\n\n\tprivate static escapeParam(param) {\n\t\treturn String(param)\n\t\t\t.replaceAll(\"\\\\\", \"\\\\\\\\\")\n\t\t\t.replaceAll(\",\", \"\\\\,\");\n\t}\n\n\tprivate static reduceArrayAndEscape(param) {\n\t\tif (Array.isArray(param)) {\n\t\t\tlet escapedParams = param.map(function (elem) {\n\t\t\t\treturn MyDataHelps.escapeParam(elem);\n\t\t\t});\n\t\t\treturn escapedParams.join(\",\");\n\t\t}\n\n\t\treturn this.escapeParam(param);\n\t}\n\n\tprivate static convertDateToIsoString(date) {\n\t\tlet paramAsDate = new Date(date);\n\t\tif (isNaN(paramAsDate.getTime())) {\n\t\t\tthrow \"Cannot interpret parameter as Date\";\n\t\t}\n\n\t\treturn paramAsDate.toISOString();\n\t}\n\n\tprivate static flattenPropertyShallow(params, property) {\n\t\tif (params[property] === undefined || params[property] === null) return;\n\n\t\tfor (var key in params[property]) {\n\t\t\tif (params[property].hasOwnProperty(key)) {\n\t\t\t\tparams[`${property}.${key}`] = MyDataHelps.escapeParam(params[property][key]);\n\t\t\t}\n\t\t}\n\n\t\tdelete params[property];\n\t}\n\n\tprivate startEmbeddedSurveyInternal(surveyUrl) {\n\t\tlet mdhSurveyModalId = 'mydatahelps-survey-modal';\n\t\tlet mdh = this;\n\n\t\treturn new Promise(function (resolve, reject) {\n\t\t\tif (document.getElementById(mdhSurveyModalId)) {\n\t\t\t\treject(\"Survey already in progress\");\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\twindow.addEventListener(\"message\", function listener(message) {\n\t\t\t\tif (message.origin !== new URL(mdh.baseUrl).origin) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tlet frame = (document.getElementById('mydatahelps-survey-frame') as HTMLFrameElement).contentWindow;\n\t\t\t\tif (message.source !== frame) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tif (message.data.name === 'SurveyWindowInitialized') {\n\t\t\t\t\tdocument.getElementById(mdhSurveyModalId).className += \" loaded\";\n\t\t\t\t} else if (message.data.name === 'SurveyFinished') {\n\t\t\t\t\tdocument.getElementById(mdhSurveyModalId).remove();\n\t\t\t\t\tdocument.body.className = document.body.className.replace(\"no-scroll\", \"\");\n\t\t\t\t\twindow.removeEventListener(\"message\", listener, true);\n\t\t\t\t\tresolve(message.data);\n\t\t\t\t}\n\t\t\t}, true);\n\n\t\t\tlet surveyModal = document.createElement('div');\n\t\t\tsurveyModal.className = 'mydatahelps-survey-modal';\n\t\t\tsurveyModal.id = mdhSurveyModalId;\n\t\t\tsurveyModal.innerHTML = \"<div class='mydatahelps-survey'><div class='loader'>Loading...</div><iframe id='mydatahelps-survey-frame' allow='camera' sandbox='allow-forms allow-modals allow-popups allow-popups-to-escape-sandbox allow-presentation allow-same-origin allow-scripts' src='\" + surveyUrl + \"'></iframe></div>\";\n\t\t\tdocument.body.append(surveyModal);\n\t\t\tdocument.body.className += ' no-scroll';\n\t\t});\n\t}\n\n\tprivate startDelegatedSurvey(surveyUrl) {\n\t\tlet mdhSurveyModalId = 'mydatahelps-survey-modal';\n\t\tlet mdh = this;\n\n\t\tif (document.getElementById(mdhSurveyModalId)) {\n\t\t\treturn;\n\t\t}\n\n\t\twindow.addEventListener(\"message\", function listener(message) {\n\t\t\tif (message.origin !== new URL(mdh.baseUrl).origin) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tlet frame = (document.getElementById('mydatahelps-survey-frame') as HTMLFrameElement).contentWindow;\n\t\t\tif (message.source !== frame) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tif (message.data.name === 'GetDelegatedAccessToken') {\n\t\t\t\tmdh.getParticipantInfo().then((participant) => {\n\t\t\t\t\tframe.postMessage({ name: \"DelegatedAccessTokenResponse\", accessToken: mdh.token, baseUrl: mdh.baseUrl, participantID: participant.participantID }, '*');\n\t\t\t\t});\n\t\t\t}\n\t\t\telse if (message.data.name === 'SurveyWindowInitialized') {\n\t\t\t\tdocument.getElementById(mdhSurveyModalId).className += \" loaded\";\n\t\t\t}\n\t\t\telse if (message.data.name === 'SurveyFinished') {\n\t\t\t\tdocument.getElementById(mdhSurveyModalId).remove();\n\t\t\t\tdocument.body.className = document.body.className.replace(\"no-scroll\", \"\");\n\t\t\t\twindow.removeEventListener(\"message\", listener, true);\n\t\t\t\tmessage.data.type = 'surveyDidFinish';\n\t\t\t\tmdh.triggerEvent(message.data);\n\t\t\t}\n\t\t}, true);\n\n\t\tlet surveyModal = document.createElement('div');\n\t\tsurveyModal.className = 'mydatahelps-survey-modal';\n\t\tsurveyModal.id = mdhSurveyModalId;\n\t\tsurveyModal.innerHTML = `<div class='mydatahelps-survey'><div class='loader'>Loading...</div><iframe id='mydatahelps-survey-frame' allow='camera' sandbox='allow-forms allow-modals allow-popups allow-popups-to-escape-sandbox allow-presentation allow-same-origin allow-scripts' src='${surveyUrl}&lang=${mdh.getCurrentLanguage()}'></iframe></div>`;\n\t\tdocument.body.append(surveyModal);\n\t\tdocument.body.className += ' no-scroll';\n\t}\n\n\tprivate handleConnectExternalAccountResponse() {\n\t\tconst params = new URLSearchParams(window.location.search);\n\t\tif (params.get('connectExternalAccount') && params.get('messageID') && params.get('success')) {\n\t\t\tconst message = {\n\t\t\t\tname: 'ConnectExternalAccountResponse',\n\t\t\t\tmessageID: parseInt(params.get('messageID')),\n\t\t\t\tsuccess: params.get('success') === 'true'\n\t\t\t};\n\t\t\tif (window.opener) {\n\t\t\t\twindow.opener.postMessage(message, window.location.origin);\n\t\t\t} else {\n\t\t\t\tconst bc = new BroadcastChannel(\"ConnectExternalAccount\");\n\t\t\t\tbc.postMessage(message);\n\t\t\t\tbc.close();\n\t\t\t}\n\t\t\twindow.close();\n\t\t\treturn true;\n\t\t}\n\t}\n\n\tprivate hasEmbeddedModeUrlParameter() {\n\t\tconst embeddedModeKey = '_e';\n\t\tconst params = new URLSearchParams(window.location.search);\n\t\tconst embeddedModeValue = params.get(embeddedModeKey);\n\t\tif (params.has(embeddedModeKey) && embeddedModeValue !== 'false') {\n\t\t\tif (URL.canParse(embeddedModeValue)) {\n\t\t\t\tthis.standaloneModeFinalRedirectPath = embeddedModeValue;\n\t\t\t}\n\t\t\treturn true;\n\t\t}\n\t}\n\n\tprivate static generateVerifier() {\n\t\tconst len = 32;\n\t\tconst size = Math.ceil(len / 2);\n\t\tconst buffer = new Uint8Array(size);\n\t\twindow.crypto.getRandomValues(buffer);\n\n\t\treturn Array.from(buffer)\n\t\t\t.map(b => b.toString(16).padStart(2, '0'))\n\t\t\t.join('')\n\t\t\t.slice(0, len);\n\t}\n\n\tprivate static async hashVerifier(message: string) {\n\t\t// 1. Encode the message into bytes\n\t\tconst encoder = new TextEncoder();\n\t\tconst data = encoder.encode(message);\n\n\t\t// 2. Calculate the SHA-256 hash\n\t\tconst hashBuffer = await crypto.subtle.digest('SHA-256', data);\n\n\t\t// 3. Convert ArrayBuffer to Base64\n\t\tconst hashArray = Array.from(new Uint8Array(hashBuffer));\n\t\tconst base64 = btoa(String.fromCharCode(...hashArray));\n\n\t\t// 4. Make it URL-safe\n\t\treturn base64\n\t\t\t.replace(/\\+/g, '-')\n\t\t\t.replace(/\\//g, '_')\n\t\t\t.replace(/=+$/, '');\n\t}\n}\n\n//iOS/Android directly invoke window.MyDataHelps and window.RKStudioClient\n//so it's necessary to explicitly ensure they are present on the window\nconst mdh = new MyDataHelps();\n\nwindow.MyDataHelps = mdh;\n\n// For backwards compatibility\nwindow.RKStudioClient = {};\nwindow.RKStudioClient.setActionResult = function (data) {\n\twindow.MyDataHelps.setActionResult(data);\n};\n\nexport default mdh;\nexport * from './types';\n"],"names":["MyDataHelps","startSurvey","surveyName","options","this","isStandaloneMode","params","URLSearchParams","set","editResultID","event","startDelegatedSurvey","baseUrl","toString","window","webkit","messageHandlers","StartParticipantSurvey","messageID","nextMessageID","postMessage","completeStep","answer","JSON","stringify","ResearchKit","CompleteStep","querySurveyAnswers","queryParameters","Object","assign","hasOwnProperty","reduceArrayAndEscape","stepIdentifier","resultIdentifier","before","convertDateToIsoString","after","endpoint","mdh","connect","then","makeRequest","response","validateResponse","json","querySurveyResults","insertedBefore","insertedAfter","deleteSurveyResult","resultID","encodeURIComponent","querySurveyTasks","status","queryInboxItems","target","source","key","keys","value","undefined","assignDefined","type","getInboxItem","id","updateInboxItem","update","startEmbeddedSurvey","linkIdentifier","language","getCurrentLanguage","surveyUrl","startEmbeddedSurveyInternal","openExternalUrl","url","OpenExternalLink","openEmbeddedUrl","OpenEmbeddedLink","showTab","tabKey","ShowTab","openApplication","OpenExternalApplication","modal","openSecondaryView","projectId","viewKey","lookupSecondaryView","secondaryView","endsWith","fetch","method","headers","Accept","ok","text","Error","statusText","dismiss","Dismiss","back","PopNavigation","showDashboard","dashboardKey","ShowParticipantDashboard","title","showWebVisualization","visualizationKey","parameters","ShowParticipantWebVisualization","showWebVisualizationPdf","ShowParticipantWebVisualizationPDF","landscape","htmlViewerZoom","showProject","projectCode","ShowProject","code","joinProject","JoinProject","on","eventName","callback","supportedEvents","includes","registeredEventHandlers","push","off","eventHandlerIndex","indexOf","splice","triggerEvent","forEach","handler","setActionResult","data","prototype","call","console","error","getParticipantInfo","persistParticipantInfo","demographics","customFields","async","message","catch","log","getProjectInfo","getDeviceDataPoint","deleteDeviceDataPoint","queryDeviceData","observedBefore","observedAfter","persistDeviceData","deviceDataPoints","getDeviceDataAllDataTypes","enabled","namespace","queryDeviceDataV2","modifiedBefore","modifiedAfter","flattenPropertyShallow","queryDeviceDataV2Aggregate","aggregateFunctions","queryDeviceDataV2DailySleep","getDeviceDataV2AllDataTypes","getExternalAccountProviders","search","category","pageSize","pageNumber","searchParameters","connectExternalAccount","externalAccountProviderID","Promise","resolve","reject","connectProviderAccountResponse","success","errorMessage","standaloneMode","providerAuthWindow","standaloneModeFinalRedirectPath","location","href","openNewWindow","split","windowFeatures","width","height","w","h","outerHeight","screenY","outerWidth","screenX","open","document","write","close","verifier","generateVerifier","hashVerifier","verifierHash","queryString","finalRedirectPath","redirectUrl","URL","replace","searchParams","top","ConnectExternalAccount","getExternalAccounts","refreshExternalAccount","accountID","deleteExternalAccount","DeleteProviderAccount","deleteProviderAccountResponse","getFeaturedProviders","context","queryNotifications","sentBefore","sentAfter","queryFitbitDailySummaries","startDate","endDate","queryFitbitSleepLogs","queryAppleHealthActivitySummaries","queryAppleHealthWorkouts","uploadFile","file","fileName","size","name","preSignedUrl","body","queryFiles","getFileDownloadUrl","deleteFile","refreshDelegatedAccessToken","token","refreshTokenPromise","tokenResponse","tokenExpires","Date","now","expires_in","setTimeout","accessTokenRenewalBufferSeconds","GetDelegatedAccessToken","isEmbeddedMode","setParticipantAccessToken","enableStandaloneMode","embeddedMode","_standaloneModeFinalRedirectPath","path","setStatusBarStyle","style","SetStatusBarStyle","getDeviceInfo","GetDeviceInfo","deviceInfoResponse","setSupportedLanguages","languages","supportedLanguages","length","i","getStepConfiguration","GetStepConfiguration","stepConfigurationResponse","getSurveyContext","deviceInfo","platform","surveyMode","GetSurveyContext","surveyContextResponse","getCurrentSurveyAnswers","GetCurrentSurveyAnswers","currentSurveyAnswersResponse","setCurrentLanguage","supportedLanguage","getSupportedLanguage","warn","lang","has","get","navigator","showGoogleFitSettings","ShowGoogleFitSettings","showHealthConnectSettings","HealthConnectSettings","showHealthConnectPrompt","HealthConnectPrompt","getHealthConnectStatus","HealthConnectStatus","statusResponse","showHealthConnectPhrPrompt","HealthConnectPhrPrompt","getHealthConnectPhrStatus","HealthConnectPhrStatus","requestReview","cooldownDays","RequestReview","trackCustomEvent","getDataCollectionSettings","getDataAvailability","invokeCustomApi","customApi","jsonResponse","toUpperCase","parameterString","constructor","acceptableParentDomains","unsupportedActions","currentMessageID","handleConnectExternalAccountResponse","supportedActions","applicationHost","ancestorOrigins","getParentOrigin","acceptableOrigin","origin","sourceURL","k","hostname","parent","action","windowHasAnyActions","actions","addActions","addEventListener","validateWindowMessageOrigin","hasEmbeddedModeUrlParameter","makeUrl","apiVersion","access_token","Headers","append","init","find","l","substring","escapeParam","param","String","replaceAll","Array","isArray","map","elem","join","date","paramAsDate","isNaN","getTime","toISOString","property","mdhSurveyModalId","getElementById","listener","frame","contentWindow","className","remove","removeEventListener","surveyModal","createElement","innerHTML","participant","accessToken","participantID","parseInt","opener","bc","BroadcastChannel","embeddedModeValue","canParse","Math","ceil","len","buffer","Uint8Array","crypto","getRandomValues","from","b","padStart","slice","TextEncoder","encode","hashBuffer","subtle","digest","hashArray","btoa","fromCharCode","RKStudioClient"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@careevolution/mydatahelps-js",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.5.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",
|
|
@@ -15,10 +15,11 @@
|
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"@rollup/plugin-commonjs": "^26.0.1",
|
|
17
17
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
18
|
-
"@rollup/plugin-terser": "^0.
|
|
18
|
+
"@rollup/plugin-terser": "^1.0.0",
|
|
19
19
|
"@rollup/plugin-typescript": "^11.1.6",
|
|
20
20
|
"rollup": "^4.18.0",
|
|
21
21
|
"rollup-plugin-import-css": "^3.5.0",
|
|
22
|
+
"tslib": "^2.8.1",
|
|
22
23
|
"typescript": "^5.4.5"
|
|
23
24
|
},
|
|
24
25
|
"keywords": [
|