testaugnitoambientsdk
Advanced tools
Comparing version 1.2.0 to 1.3.0
{ | ||
"name": "testaugnitoambientsdk", | ||
"version": "1.2.0", | ||
"version": "1.3.0", | ||
"description": "Use this typescript SDK to integrate Augnito’s Ambient Tech within your EMR. To get access credentials or know more about how Augnito Ambient can benefit you, please visit our website and connect with our sales team: https://augnito.ai/", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -39,3 +39,5 @@ "use strict"; | ||
} | ||
return yield this._ambientRestAPI.GetNoteParams(); | ||
var JsonData = yield this._ambientRestAPI.GetNoteParams(); | ||
var JsonData = JSON.parse(JsonData); | ||
return JsonData.Data; | ||
}); | ||
@@ -42,0 +44,0 @@ } |
@@ -49,3 +49,5 @@ import AmbientConfig from "./config/AmbientConfig"; | ||
} | ||
return await this._ambientRestAPI.GetNoteParams(); | ||
var JsonData = await this._ambientRestAPI.GetNoteParams(); | ||
var JsonData = JSON.parse(JsonData); | ||
return JsonData.Data; | ||
} | ||
@@ -52,0 +54,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
76263
1478