@dynatrace/cordova-plugin
Advanced tools
Comparing version 1.227.3 to 1.227.4
@@ -33,6 +33,6 @@ "use strict"; | ||
enableInterceptor: function () { | ||
if (!dT_ && !dtrum) { | ||
if (typeof dT_ === "undefined" && typeof dtrum === "undefined") { | ||
console.log("Missing Dynatrace Javascript Agent API! MFP Interceptor not enabled!"); | ||
} | ||
if (!WLResourceRequest && !WL) { | ||
if (typeof WLResourceRequest === "undefined" && typeof WL === "undefined") { | ||
console.log("Missing Mobile First API! MFP Interceptor not enabled!"); | ||
@@ -39,0 +39,0 @@ return; |
@@ -26,3 +26,3 @@ "use strict"; | ||
var headers = {}; | ||
if (!dT_) { | ||
if (typeof dT_ === "undefined") { | ||
console.log("Missing Dynatrace Javascript Agent API!"); | ||
@@ -36,3 +36,3 @@ return headers; | ||
enterNativeRequestAction: function (url, webRequestFrameworkName, actionNameFallback) { | ||
if (!dtrum) { | ||
if (typeof dtrum === "undefined") { | ||
console.log("Missing Dynatrace Javascript Agent API!"); | ||
@@ -57,3 +57,3 @@ return -1; | ||
leaveNativeRequestAction: function (actionId) { | ||
if (!dtrum) { | ||
if (typeof dtrum === "undefined") { | ||
console.log("Missing Dynatrace Javascript Agent API!"); | ||
@@ -60,0 +60,0 @@ } |
{ | ||
"name": "@dynatrace/cordova-plugin", | ||
"version": "1.227.3", | ||
"version": "1.227.4", | ||
"description": "This plugin gives you the ability to use the Dynatrace instrumentation in your hybrid application (Cordova, Ionic, ..). It uses the Mobile Agent, the JavaScript Agent. The Mobile Agent will give you all device specific values containing lifecycle information and the Javascript Agent will allow you to manually instrument your JavaScript/TypeScript code out of the box (Typescript definitions included). The JavaScript Agent will cover the network calls and will automatically detect them.", | ||
@@ -5,0 +5,0 @@ "cordova": { |
@@ -685,3 +685,4 @@ [![N|Solid](https://assets.dynatrace.com/content/dam/dynatrace/misc/dynatrace_web.png)](https://dynatrace.com) | ||
1.227.3 | ||
1.227.4 | ||
* Fixed wrong check for missing dtrum | ||
* Fixed incorrectly reading cspURL value | ||
@@ -688,0 +689,0 @@ * Fixed waiting for async hooks to complete |
Sorry, the diff of this file is not supported yet
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
66838020
737