applicationinsights-js
Advanced tools
Comparing version 1.0.19-beta.1 to 1.0.19
@@ -283,2 +283,6 @@ <properties | ||
// If true, fetch API calls are not monitored. | ||
// Default true | ||
disableFetchTracking: boolean; | ||
// If true, default behavior of trackPageView is changed to record end of page view duration interval when | ||
@@ -285,0 +289,0 @@ // trackPageView is called. If false and no custom duration is provided to trackPageView, the page view |
@@ -185,4 +185,32 @@ "use strict"; | ||
})(Microsoft || (Microsoft = {})); | ||
var Microsoft; | ||
(function (Microsoft) { | ||
var ApplicationInsights; | ||
(function (ApplicationInsights) { | ||
"use strict"; | ||
var UtilHelpers = /** @class */ (function () { | ||
function UtilHelpers() { | ||
} | ||
/** | ||
* generate random id string | ||
*/ | ||
UtilHelpers.newId = function () { | ||
var base64chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; | ||
var result = ""; | ||
var random = Math.random() * 1073741824; //5 symbols in base64, almost maxint | ||
while (random > 0) { | ||
var char = base64chars.charAt(random % 64); | ||
result += char; | ||
random = Math.floor(random / 64); | ||
} | ||
return result; | ||
}; | ||
return UtilHelpers; | ||
}()); | ||
ApplicationInsights.UtilHelpers = UtilHelpers; | ||
})(ApplicationInsights = Microsoft.ApplicationInsights || (Microsoft.ApplicationInsights = {})); | ||
})(Microsoft || (Microsoft = {})); | ||
/// <reference path="../JavaScriptSDK.Interfaces/IConfig.ts"/> | ||
/// <reference path="../JavaScriptSDK.Interfaces/IAppInsights.ts"/> | ||
/// <reference path="../JavaScriptSDK/UtilHelpers.ts"/> | ||
define("JavaScriptSDK.Module/AppInsightsModule", ["require", "exports"], function (require, exports) { | ||
@@ -189,0 +217,0 @@ "use strict"; |
{ | ||
"name": "applicationinsights-js", | ||
"version": "1.0.19-beta.1", | ||
"description": "Microsoft Application Insights JavaScript SDK", | ||
"main": "bundle/ai.module.js", | ||
"keywords": [ | ||
"browser performance monitoring", | ||
"script errors", | ||
"application insights", | ||
"microsoft", | ||
"azure" | ||
], | ||
"scripts": { | ||
"test": "grunt test" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/Microsoft/ApplicationInsights-JS.git" | ||
}, | ||
"author": "Microsoft Application Insights Team", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/Microsoft/ApplicationInsights-JS/issues" | ||
}, | ||
"homepage": "https://github.com/Microsoft/ApplicationInsights-JS#readme", | ||
"devDependencies": { | ||
"grunt": "1.0.1", | ||
"grunt-contrib-qunit": "2.0.0", | ||
"grunt-contrib-uglify": "3.1.0", | ||
"grunt-ts": "^6.0.0-beta.15", | ||
"typescript": "2.5.3" | ||
} | ||
"name": "applicationinsights-js", | ||
"version": "1.0.19", | ||
"description": "Microsoft Application Insights JavaScript SDK", | ||
"main": "bundle/ai.module.js", | ||
"keywords": [ | ||
"browser performance monitoring", | ||
"script errors", | ||
"application insights", | ||
"microsoft", | ||
"azure" | ||
], | ||
"scripts": { | ||
"test": "grunt test" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/Microsoft/ApplicationInsights-JS.git" | ||
}, | ||
"author": "Microsoft Application Insights Team", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/Microsoft/ApplicationInsights-JS/issues" | ||
}, | ||
"homepage": "https://github.com/Microsoft/ApplicationInsights-JS#readme", | ||
"devDependencies": { | ||
"grunt": "1.0.1", | ||
"grunt-contrib-qunit": "2.0.0", | ||
"grunt-contrib-uglify": "3.1.0", | ||
"grunt-ts": "^6.0.0-beta.15", | ||
"typescript": "2.5.3" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
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
Deprecated
MaintenanceThe maintainer of the package marked it as deprecated. This could indicate that a single version should not be used, or that the package is no longer maintained and any new vulnerabilities will not be fixed.
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
Deprecated
MaintenanceThe maintainer of the package marked it as deprecated. This could indicate that a single version should not be used, or that the package is no longer maintained and any new vulnerabilities will not be fixed.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
1412162
6156
0