@microsoft/applicationinsights-web 2.7.1-nightly.202110-17 → 2.7.1
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/browser/{ai.2.7.1-nightly.202110-17.cjs.js → ai.2.7.1.cjs.js} +7 -6
- package/browser/ai.2.7.1.cjs.js.map +1 -0
- package/browser/ai.2.7.1.cjs.min.js +6 -0
- package/browser/ai.2.7.1.cjs.min.js.map +1 -0
- package/browser/{ai.2.7.1-nightly.202110-17.gbl.js → ai.2.7.1.gbl.js} +7 -6
- package/browser/ai.2.7.1.gbl.js.map +1 -0
- package/browser/ai.2.7.1.gbl.min.js +6 -0
- package/browser/ai.2.7.1.gbl.min.js.map +1 -0
- package/browser/ai.2.7.1.integrity.json +66 -0
- package/browser/{ai.2.7.1-nightly.202110-17.js → ai.2.7.1.js} +7 -6
- package/browser/ai.2.7.1.js.map +1 -0
- package/browser/ai.2.7.1.min.js +6 -0
- package/browser/ai.2.7.1.min.js.map +1 -0
- package/browser/ai.2.cjs.js +6 -5
- package/browser/ai.2.cjs.js.map +1 -1
- package/browser/ai.2.cjs.min.js +2 -2
- package/browser/ai.2.cjs.min.js.map +1 -1
- package/browser/ai.2.gbl.js +6 -5
- package/browser/ai.2.gbl.js.map +1 -1
- package/browser/ai.2.gbl.min.js +2 -2
- package/browser/ai.2.gbl.min.js.map +1 -1
- package/browser/ai.2.js +6 -5
- package/browser/ai.2.js.map +1 -1
- package/browser/ai.2.min.js +2 -2
- package/browser/ai.2.min.js.map +1 -1
- package/dist/applicationinsights-web.api.json +44 -3
- package/dist/applicationinsights-web.api.md +2 -1
- package/dist/applicationinsights-web.d.ts +6 -2
- package/dist/applicationinsights-web.js +6 -5
- package/dist/applicationinsights-web.js.map +1 -1
- package/dist/applicationinsights-web.min.js +2 -2
- package/dist/applicationinsights-web.min.js.map +1 -1
- package/dist/applicationinsights-web.rollup.d.ts +6 -2
- package/dist-esm/ApplicationInsightsContainer.js +1 -1
- package/dist-esm/ApplicationInsightsDeprecated.js +1 -1
- package/dist-esm/Init.js +1 -1
- package/dist-esm/Initialization.js +1 -1
- package/dist-esm/applicationinsights-web.js +1 -1
- package/package.json +76 -79
- package/types/tsdoc-metadata.json +1 -1
- package/browser/ai.2.7.1-nightly.202110-17.cjs.js.map +0 -1
- package/browser/ai.2.7.1-nightly.202110-17.cjs.min.js +0 -6
- package/browser/ai.2.7.1-nightly.202110-17.cjs.min.js.map +0 -1
- package/browser/ai.2.7.1-nightly.202110-17.gbl.js.map +0 -1
- package/browser/ai.2.7.1-nightly.202110-17.gbl.min.js +0 -6
- package/browser/ai.2.7.1-nightly.202110-17.gbl.min.js.map +0 -1
- package/browser/ai.2.7.1-nightly.202110-17.integrity.json +0 -66
- package/browser/ai.2.7.1-nightly.202110-17.js.map +0 -1
- package/browser/ai.2.7.1-nightly.202110-17.min.js +0 -6
- package/browser/ai.2.7.1-nightly.202110-17.min.js.map +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Microsoft.ApplicationInsights, 2.7.1
|
|
2
|
+
* Microsoft.ApplicationInsights, 2.7.1
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*
|
|
5
5
|
* Microsoft Application Insights Team
|
|
@@ -2473,6 +2473,10 @@ export declare interface IMetricTelemetry extends IPartC {
|
|
|
2473
2473
|
* @default max=average
|
|
2474
2474
|
*/
|
|
2475
2475
|
max?: number;
|
|
2476
|
+
/**
|
|
2477
|
+
* (optional) The standard deviation measurement in the sample, Defaults to undefined which results in zero.
|
|
2478
|
+
*/
|
|
2479
|
+
stdDev?: number;
|
|
2476
2480
|
/**
|
|
2477
2481
|
* @description custom defined iKey
|
|
2478
2482
|
* @type {string}
|
|
@@ -3705,7 +3709,7 @@ export declare class Metric extends MetricData implements ISerializable {
|
|
|
3705
3709
|
/**
|
|
3706
3710
|
* Constructs a new instance of the MetricTelemetry object
|
|
3707
3711
|
*/
|
|
3708
|
-
constructor(logger: IDiagnosticLogger, name: string, value: number, count?: number, min?: number, max?: number, properties?: any, measurements?: {
|
|
3712
|
+
constructor(logger: IDiagnosticLogger, name: string, value: number, count?: number, min?: number, max?: number, stdDev?: number, properties?: any, measurements?: {
|
|
3709
3713
|
[key: string]: number;
|
|
3710
3714
|
});
|
|
3711
3715
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Application Insights JavaScript SDK - Web, 2.7.1
|
|
2
|
+
* Application Insights JavaScript SDK - Web, 2.7.1
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*/
|
|
5
5
|
import { AppInsightsDeprecated } from "./ApplicationInsightsDeprecated";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Application Insights JavaScript SDK - Web, 2.7.1
|
|
2
|
+
* Application Insights JavaScript SDK - Web, 2.7.1
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*/
|
|
5
5
|
import { stringToBoolOrDefault, ProcessLegacy } from "@microsoft/applicationinsights-common";
|
package/dist-esm/Init.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Application Insights JavaScript SDK - Web, 2.7.1
|
|
2
|
+
* Application Insights JavaScript SDK - Web, 2.7.1
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*/
|
|
5
5
|
export { Initialization as ApplicationInsights, Telemetry } from "./Initialization";
|
package/package.json
CHANGED
|
@@ -1,79 +1,76 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@microsoft/applicationinsights-web",
|
|
3
|
-
"version": "2.7.1
|
|
4
|
-
"description": "Microsoft Application Insights JavaScript SDK - Web",
|
|
5
|
-
"homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme",
|
|
6
|
-
"author": "Microsoft Application Insights Team",
|
|
7
|
-
"main": "dist/applicationinsights-web.js",
|
|
8
|
-
"module": "dist-esm/applicationinsights-web.js",
|
|
9
|
-
"types": "types/applicationinsights-web.d.ts",
|
|
10
|
-
"sideEffects": false,
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "https://github.com/microsoft/ApplicationInsights-JS"
|
|
14
|
-
},
|
|
15
|
-
"scripts": {
|
|
16
|
-
"clean": "rm -rfv browser types dist-esm",
|
|
17
|
-
"build": "npm run build:esm && npm run build:browser && npm run sri && npm run dtsgen",
|
|
18
|
-
"build:esm": "grunt aisku",
|
|
19
|
-
"build:browser": "rollup -c rollup.config.js",
|
|
20
|
-
"build:snippet": "grunt snippetvnext",
|
|
21
|
-
"rebuild": "npm run build",
|
|
22
|
-
"test": "grunt aiskutests",
|
|
23
|
-
"lint": "tslint -p tsconfig.json",
|
|
24
|
-
"dtsgen": "api-extractor run --local && node ../scripts/dtsgen.js 'Microsoft.ApplicationInsights'",
|
|
25
|
-
"sri": "node ../tools/subResourceIntegrity/generateIntegrityFile.js",
|
|
26
|
-
"nightwatch:chrome": "nightwatch -c Tests/nightwatch/nightwatch.json Tests/nightwatch/run_nightwatch.js --env chrome",
|
|
27
|
-
"nightwatch:firefox": "nightwatch -c Tests/nightwatch/nightwatch.json Tests/nightwatch/run_nightwatch.js --env firefox",
|
|
28
|
-
"nightwatch:edge": "nightwatch -c Tests/nightwatch/nightwatch.json Tests/nightwatch/run_nightwatch.js --env edge",
|
|
29
|
-
"nightwatch:ie8": "nightwatch -c Tests/nightwatch/nightwatch.json Tests/nightwatch/run_nightwatch.js --env ie8",
|
|
30
|
-
"nightwatch:ie9": "nightwatch -c Tests/nightwatch/nightwatch.json Tests/nightwatch/run_nightwatch.js --env ie9",
|
|
31
|
-
"nightwatch:ie10": "nightwatch -c Tests/nightwatch/nightwatch.json Tests/nightwatch/run_nightwatch.js --env ie10",
|
|
32
|
-
"nightwatch:ie11": "nightwatch -c Tests/nightwatch/nightwatch.json Tests/nightwatch/run_nightwatch.js --env ie11",
|
|
33
|
-
"nightwatch": "start node Tests/nightwatch/serve_nightwatch.js && npx concurrently \"npm run nightwatch:chrome\" \"npm run nightwatch:ie11\" \"npm run nightwatch:ie10\" && npm run nightwatch:done || npm run nightwatch:done",
|
|
34
|
-
"nightwatch:done": "curl http://localhost:8000/_done"
|
|
35
|
-
},
|
|
36
|
-
"devDependencies": {
|
|
37
|
-
"@microsoft/applicationinsights-rollup-plugin-uglify3-js": "1.0.0",
|
|
38
|
-
"@microsoft/applicationinsights-rollup-es3": "1.1.3",
|
|
39
|
-
"sinon": "^7.3.1",
|
|
40
|
-
"chromedriver": "^2.45.0",
|
|
41
|
-
"@microsoft/api-extractor": "^7.18.1",
|
|
42
|
-
"finalhandler": "^1.1.1",
|
|
43
|
-
"grunt": "^1.4.1",
|
|
44
|
-
"grunt-cli": "^1.4.3",
|
|
45
|
-
"grunt-contrib-qunit": "^5.0.1",
|
|
46
|
-
"@nevware21/grunt-ts-plugin": "^0.4.3",
|
|
47
|
-
"@nevware21/grunt-eslint-ts": "^0.2.2",
|
|
48
|
-
"globby": "^11.0.0",
|
|
49
|
-
"magic-string": "^0.25.7",
|
|
50
|
-
"pako": "^2.0.3",
|
|
51
|
-
"@rollup/plugin-commonjs": "^18.0.0",
|
|
52
|
-
"@rollup/plugin-node-resolve": "^11.2.1",
|
|
53
|
-
"@rollup/plugin-replace": "^2.3.3",
|
|
54
|
-
"rollup-plugin-cleanup": "3.2.1",
|
|
55
|
-
"rollup": "^2.32.0",
|
|
56
|
-
"selenium-server-standalone-jar": "^3.141.5",
|
|
57
|
-
"serve-static": "^1.13.2",
|
|
58
|
-
"source-map-loader": "^0.2.3",
|
|
59
|
-
"typescript": "^4.3.4",
|
|
60
|
-
"tslib": "^2.0.0"
|
|
61
|
-
},
|
|
62
|
-
"peerDependencies": {
|
|
63
|
-
"tslib": "*"
|
|
64
|
-
},
|
|
65
|
-
"dependencies": {
|
|
66
|
-
"@microsoft/dynamicproto-js": "^1.1.4",
|
|
67
|
-
"@microsoft/applicationinsights-shims": "2.0.0",
|
|
68
|
-
"@microsoft/applicationinsights-analytics-js": "2.7.1
|
|
69
|
-
"@microsoft/applicationinsights-channel-js": "2.7.1
|
|
70
|
-
"@microsoft/applicationinsights-common": "2.7.1
|
|
71
|
-
"@microsoft/applicationinsights-core-js": "2.7.1
|
|
72
|
-
"@microsoft/applicationinsights-dependencies-js": "2.7.1
|
|
73
|
-
"@microsoft/applicationinsights-properties-js": "2.7.1
|
|
74
|
-
},
|
|
75
|
-
"license": "MIT"
|
|
76
|
-
|
|
77
|
-
"tag": "nightly"
|
|
78
|
-
}
|
|
79
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@microsoft/applicationinsights-web",
|
|
3
|
+
"version": "2.7.1",
|
|
4
|
+
"description": "Microsoft Application Insights JavaScript SDK - Web",
|
|
5
|
+
"homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme",
|
|
6
|
+
"author": "Microsoft Application Insights Team",
|
|
7
|
+
"main": "dist/applicationinsights-web.js",
|
|
8
|
+
"module": "dist-esm/applicationinsights-web.js",
|
|
9
|
+
"types": "types/applicationinsights-web.d.ts",
|
|
10
|
+
"sideEffects": false,
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/microsoft/ApplicationInsights-JS"
|
|
14
|
+
},
|
|
15
|
+
"scripts": {
|
|
16
|
+
"clean": "rm -rfv browser types dist-esm",
|
|
17
|
+
"build": "npm run build:esm && npm run build:browser && npm run sri && npm run dtsgen",
|
|
18
|
+
"build:esm": "grunt aisku",
|
|
19
|
+
"build:browser": "rollup -c rollup.config.js",
|
|
20
|
+
"build:snippet": "grunt snippetvnext",
|
|
21
|
+
"rebuild": "npm run build",
|
|
22
|
+
"test": "grunt aiskutests",
|
|
23
|
+
"lint": "tslint -p tsconfig.json",
|
|
24
|
+
"dtsgen": "api-extractor run --local && node ../scripts/dtsgen.js 'Microsoft.ApplicationInsights'",
|
|
25
|
+
"sri": "node ../tools/subResourceIntegrity/generateIntegrityFile.js",
|
|
26
|
+
"nightwatch:chrome": "nightwatch -c Tests/nightwatch/nightwatch.json Tests/nightwatch/run_nightwatch.js --env chrome",
|
|
27
|
+
"nightwatch:firefox": "nightwatch -c Tests/nightwatch/nightwatch.json Tests/nightwatch/run_nightwatch.js --env firefox",
|
|
28
|
+
"nightwatch:edge": "nightwatch -c Tests/nightwatch/nightwatch.json Tests/nightwatch/run_nightwatch.js --env edge",
|
|
29
|
+
"nightwatch:ie8": "nightwatch -c Tests/nightwatch/nightwatch.json Tests/nightwatch/run_nightwatch.js --env ie8",
|
|
30
|
+
"nightwatch:ie9": "nightwatch -c Tests/nightwatch/nightwatch.json Tests/nightwatch/run_nightwatch.js --env ie9",
|
|
31
|
+
"nightwatch:ie10": "nightwatch -c Tests/nightwatch/nightwatch.json Tests/nightwatch/run_nightwatch.js --env ie10",
|
|
32
|
+
"nightwatch:ie11": "nightwatch -c Tests/nightwatch/nightwatch.json Tests/nightwatch/run_nightwatch.js --env ie11",
|
|
33
|
+
"nightwatch": "start node Tests/nightwatch/serve_nightwatch.js && npx concurrently \"npm run nightwatch:chrome\" \"npm run nightwatch:ie11\" \"npm run nightwatch:ie10\" && npm run nightwatch:done || npm run nightwatch:done",
|
|
34
|
+
"nightwatch:done": "curl http://localhost:8000/_done"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@microsoft/applicationinsights-rollup-plugin-uglify3-js": "1.0.0",
|
|
38
|
+
"@microsoft/applicationinsights-rollup-es3": "1.1.3",
|
|
39
|
+
"sinon": "^7.3.1",
|
|
40
|
+
"chromedriver": "^2.45.0",
|
|
41
|
+
"@microsoft/api-extractor": "^7.18.1",
|
|
42
|
+
"finalhandler": "^1.1.1",
|
|
43
|
+
"grunt": "^1.4.1",
|
|
44
|
+
"grunt-cli": "^1.4.3",
|
|
45
|
+
"grunt-contrib-qunit": "^5.0.1",
|
|
46
|
+
"@nevware21/grunt-ts-plugin": "^0.4.3",
|
|
47
|
+
"@nevware21/grunt-eslint-ts": "^0.2.2",
|
|
48
|
+
"globby": "^11.0.0",
|
|
49
|
+
"magic-string": "^0.25.7",
|
|
50
|
+
"pako": "^2.0.3",
|
|
51
|
+
"@rollup/plugin-commonjs": "^18.0.0",
|
|
52
|
+
"@rollup/plugin-node-resolve": "^11.2.1",
|
|
53
|
+
"@rollup/plugin-replace": "^2.3.3",
|
|
54
|
+
"rollup-plugin-cleanup": "3.2.1",
|
|
55
|
+
"rollup": "^2.32.0",
|
|
56
|
+
"selenium-server-standalone-jar": "^3.141.5",
|
|
57
|
+
"serve-static": "^1.13.2",
|
|
58
|
+
"source-map-loader": "^0.2.3",
|
|
59
|
+
"typescript": "^4.3.4",
|
|
60
|
+
"tslib": "^2.0.0"
|
|
61
|
+
},
|
|
62
|
+
"peerDependencies": {
|
|
63
|
+
"tslib": "*"
|
|
64
|
+
},
|
|
65
|
+
"dependencies": {
|
|
66
|
+
"@microsoft/dynamicproto-js": "^1.1.4",
|
|
67
|
+
"@microsoft/applicationinsights-shims": "2.0.0",
|
|
68
|
+
"@microsoft/applicationinsights-analytics-js": "2.7.1",
|
|
69
|
+
"@microsoft/applicationinsights-channel-js": "2.7.1",
|
|
70
|
+
"@microsoft/applicationinsights-common": "2.7.1",
|
|
71
|
+
"@microsoft/applicationinsights-core-js": "2.7.1",
|
|
72
|
+
"@microsoft/applicationinsights-dependencies-js": "2.7.1",
|
|
73
|
+
"@microsoft/applicationinsights-properties-js": "2.7.1"
|
|
74
|
+
},
|
|
75
|
+
"license": "MIT"
|
|
76
|
+
}
|