@microsoft/applicationinsights-web-basic 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/aib.2.7.1.integrity.json +26 -0
- package/browser/{aib.2.7.1-nightly.202110-17.js → aib.2.7.1.js} +5 -4
- package/browser/aib.2.7.1.js.map +1 -0
- package/browser/{aib.2.7.1-nightly.202110-17.min.js → aib.2.7.1.min.js} +3 -3
- package/browser/aib.2.7.1.min.js.map +1 -0
- package/browser/aib.2.js +4 -3
- package/browser/aib.2.js.map +1 -1
- package/browser/aib.2.min.js +2 -2
- package/browser/aib.2.min.js.map +1 -1
- package/dist/applicationinsights-web-basic.api.json +27 -1
- package/dist/applicationinsights-web-basic.api.md +1 -0
- package/dist/applicationinsights-web-basic.d.ts +5 -1
- package/dist/applicationinsights-web-basic.js +4 -3
- package/dist/applicationinsights-web-basic.js.map +1 -1
- package/dist/applicationinsights-web-basic.min.js +2 -2
- package/dist/applicationinsights-web-basic.min.js.map +1 -1
- package/dist/applicationinsights-web-basic.rollup.d.ts +5 -1
- package/dist-esm/index.js +1 -1
- package/package.json +57 -60
- package/types/tsdoc-metadata.json +1 -1
- package/browser/aib.2.7.1-nightly.202110-17.integrity.json +0 -26
- package/browser/aib.2.7.1-nightly.202110-17.js.map +0 -1
- package/browser/aib.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
|
|
@@ -1189,6 +1189,10 @@ export declare interface IMetricTelemetry extends IPartC {
|
|
|
1189
1189
|
* @default max=average
|
|
1190
1190
|
*/
|
|
1191
1191
|
max?: number;
|
|
1192
|
+
/**
|
|
1193
|
+
* (optional) The standard deviation measurement in the sample, Defaults to undefined which results in zero.
|
|
1194
|
+
*/
|
|
1195
|
+
stdDev?: number;
|
|
1192
1196
|
/**
|
|
1193
1197
|
* @description custom defined iKey
|
|
1194
1198
|
* @type {string}
|
package/dist-esm/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,60 +1,57 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@microsoft/applicationinsights-web-basic",
|
|
3
|
-
"version": "2.7.1
|
|
4
|
-
"description": "Microsoft Application Insights Javascript SDK core and channel",
|
|
5
|
-
"homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme",
|
|
6
|
-
"author": "Microsoft Application Insights Team",
|
|
7
|
-
"main": "dist/applicationinsights-web-basic.js",
|
|
8
|
-
"module": "dist-esm/index.js",
|
|
9
|
-
"types": "types/index.d.ts",
|
|
10
|
-
"sideEffects": false,
|
|
11
|
-
"scripts": {
|
|
12
|
-
"build": "npm run build:esm && npm run build:browser && npm run sri && npm run dtsgen",
|
|
13
|
-
"build:esm": "grunt aiskulite",
|
|
14
|
-
"build:browser": "rollup -c rollup.config.js",
|
|
15
|
-
"rebuild": "npm run build",
|
|
16
|
-
"test": "echo 'No tests'",
|
|
17
|
-
"lint": "tslint -p tsconfig.json",
|
|
18
|
-
"dtsgen": "api-extractor run --local && node ../scripts/dtsgen.js 'Microsoft.ApplicationInsights'",
|
|
19
|
-
"sri": "node ../tools/subResourceIntegrity/generateIntegrityFile.js"
|
|
20
|
-
},
|
|
21
|
-
"repository": {
|
|
22
|
-
"type": "git",
|
|
23
|
-
"url": "https://github.com/microsoft/ApplicationInsights-JS.git",
|
|
24
|
-
"directory": "AISKULight"
|
|
25
|
-
},
|
|
26
|
-
"devDependencies": {
|
|
27
|
-
"@microsoft/applicationinsights-rollup-plugin-uglify3-js": "1.0.0",
|
|
28
|
-
"@microsoft/applicationinsights-rollup-es3": "1.1.3",
|
|
29
|
-
"@microsoft/api-extractor": "^7.18.1",
|
|
30
|
-
"grunt": "^1.4.1",
|
|
31
|
-
"grunt-cli": "^1.4.3",
|
|
32
|
-
"grunt-contrib-qunit": "^5.0.1",
|
|
33
|
-
"@nevware21/grunt-ts-plugin": "^0.4.3",
|
|
34
|
-
"@nevware21/grunt-eslint-ts": "^0.2.2",
|
|
35
|
-
"globby": "^11.0.0",
|
|
36
|
-
"magic-string": "^0.25.7",
|
|
37
|
-
"@rollup/plugin-commonjs": "^18.0.0",
|
|
38
|
-
"@rollup/plugin-node-resolve": "^11.2.1",
|
|
39
|
-
"@rollup/plugin-replace": "^2.3.3",
|
|
40
|
-
"rollup-plugin-cleanup": "3.2.1",
|
|
41
|
-
"rollup": "^2.32.0",
|
|
42
|
-
"source-map-loader": "^0.2.3",
|
|
43
|
-
"typescript": "^4.3.4",
|
|
44
|
-
"tslib": "^2.0.0"
|
|
45
|
-
},
|
|
46
|
-
"peerDependencies": {
|
|
47
|
-
"tslib": "*"
|
|
48
|
-
},
|
|
49
|
-
"dependencies": {
|
|
50
|
-
"@microsoft/dynamicproto-js": "^1.1.4",
|
|
51
|
-
"@microsoft/applicationinsights-shims": "2.0.0",
|
|
52
|
-
"@microsoft/applicationinsights-common": "2.7.1
|
|
53
|
-
"@microsoft/applicationinsights-channel-js": "2.7.1
|
|
54
|
-
"@microsoft/applicationinsights-core-js": "2.7.1
|
|
55
|
-
},
|
|
56
|
-
"license": "MIT"
|
|
57
|
-
|
|
58
|
-
"tag": "nightly"
|
|
59
|
-
}
|
|
60
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@microsoft/applicationinsights-web-basic",
|
|
3
|
+
"version": "2.7.1",
|
|
4
|
+
"description": "Microsoft Application Insights Javascript SDK core and channel",
|
|
5
|
+
"homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme",
|
|
6
|
+
"author": "Microsoft Application Insights Team",
|
|
7
|
+
"main": "dist/applicationinsights-web-basic.js",
|
|
8
|
+
"module": "dist-esm/index.js",
|
|
9
|
+
"types": "types/index.d.ts",
|
|
10
|
+
"sideEffects": false,
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "npm run build:esm && npm run build:browser && npm run sri && npm run dtsgen",
|
|
13
|
+
"build:esm": "grunt aiskulite",
|
|
14
|
+
"build:browser": "rollup -c rollup.config.js",
|
|
15
|
+
"rebuild": "npm run build",
|
|
16
|
+
"test": "echo 'No tests'",
|
|
17
|
+
"lint": "tslint -p tsconfig.json",
|
|
18
|
+
"dtsgen": "api-extractor run --local && node ../scripts/dtsgen.js 'Microsoft.ApplicationInsights'",
|
|
19
|
+
"sri": "node ../tools/subResourceIntegrity/generateIntegrityFile.js"
|
|
20
|
+
},
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "https://github.com/microsoft/ApplicationInsights-JS.git",
|
|
24
|
+
"directory": "AISKULight"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@microsoft/applicationinsights-rollup-plugin-uglify3-js": "1.0.0",
|
|
28
|
+
"@microsoft/applicationinsights-rollup-es3": "1.1.3",
|
|
29
|
+
"@microsoft/api-extractor": "^7.18.1",
|
|
30
|
+
"grunt": "^1.4.1",
|
|
31
|
+
"grunt-cli": "^1.4.3",
|
|
32
|
+
"grunt-contrib-qunit": "^5.0.1",
|
|
33
|
+
"@nevware21/grunt-ts-plugin": "^0.4.3",
|
|
34
|
+
"@nevware21/grunt-eslint-ts": "^0.2.2",
|
|
35
|
+
"globby": "^11.0.0",
|
|
36
|
+
"magic-string": "^0.25.7",
|
|
37
|
+
"@rollup/plugin-commonjs": "^18.0.0",
|
|
38
|
+
"@rollup/plugin-node-resolve": "^11.2.1",
|
|
39
|
+
"@rollup/plugin-replace": "^2.3.3",
|
|
40
|
+
"rollup-plugin-cleanup": "3.2.1",
|
|
41
|
+
"rollup": "^2.32.0",
|
|
42
|
+
"source-map-loader": "^0.2.3",
|
|
43
|
+
"typescript": "^4.3.4",
|
|
44
|
+
"tslib": "^2.0.0"
|
|
45
|
+
},
|
|
46
|
+
"peerDependencies": {
|
|
47
|
+
"tslib": "*"
|
|
48
|
+
},
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"@microsoft/dynamicproto-js": "^1.1.4",
|
|
51
|
+
"@microsoft/applicationinsights-shims": "2.0.0",
|
|
52
|
+
"@microsoft/applicationinsights-common": "2.7.1",
|
|
53
|
+
"@microsoft/applicationinsights-channel-js": "2.7.1",
|
|
54
|
+
"@microsoft/applicationinsights-core-js": "2.7.1"
|
|
55
|
+
},
|
|
56
|
+
"license": "MIT"
|
|
57
|
+
}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "aib",
|
|
3
|
-
"version": "2.7.1-nightly.202110-17",
|
|
4
|
-
"ext": {
|
|
5
|
-
"@js": {
|
|
6
|
-
"file": "aib.2.7.1-nightly.202110-17.js",
|
|
7
|
-
"type": "text/javascript; charset=utf-8",
|
|
8
|
-
"integrity": "sha256-r5p/EPipTCHmDg3AnzdqOk8r7P5ZB0zsNqNt1rMMgng= sha384-CiYa/Ryrz8tlRCkSTKtS5DuuB6aSUtCK8DN5HuivxtQ0lhPZjrQkVQROY4a/MeHK sha512-LCiw+Pu7rFH059s7P5TfFBlIhBROP3nyHAKno3cHEUwRtjCkXuRb+MnvMDWcLLRgmmGS1CQtz4GpOcwkL2Yg5w==",
|
|
9
|
-
"hashes": {
|
|
10
|
-
"sha256": "r5p/EPipTCHmDg3AnzdqOk8r7P5ZB0zsNqNt1rMMgng=",
|
|
11
|
-
"sha384": "CiYa/Ryrz8tlRCkSTKtS5DuuB6aSUtCK8DN5HuivxtQ0lhPZjrQkVQROY4a/MeHK",
|
|
12
|
-
"sha512": "LCiw+Pu7rFH059s7P5TfFBlIhBROP3nyHAKno3cHEUwRtjCkXuRb+MnvMDWcLLRgmmGS1CQtz4GpOcwkL2Yg5w=="
|
|
13
|
-
}
|
|
14
|
-
},
|
|
15
|
-
"@min.js": {
|
|
16
|
-
"file": "aib.2.7.1-nightly.202110-17.min.js",
|
|
17
|
-
"type": "text/javascript; charset=utf-8",
|
|
18
|
-
"integrity": "sha256-yUUL+/E4mzZTydmg5COrA7VlrNM4Hj+nj97zHnhFE58= sha384-t3wtJxTR554FVD4VT8MIzvL1xAV6wBpi7EcY6ZxGyxHYdMwiBivVKMthkAGAJX9O sha512-eKPiIX/n+bGQhG9Q5FAfQdTvlX6kzufjGMRoVsVqPkjaqQv2rzHwWXbNO0I115/W+Nlg7xshDAKtqtK87TTncw==",
|
|
19
|
-
"hashes": {
|
|
20
|
-
"sha256": "yUUL+/E4mzZTydmg5COrA7VlrNM4Hj+nj97zHnhFE58=",
|
|
21
|
-
"sha384": "t3wtJxTR554FVD4VT8MIzvL1xAV6wBpi7EcY6ZxGyxHYdMwiBivVKMthkAGAJX9O",
|
|
22
|
-
"sha512": "eKPiIX/n+bGQhG9Q5FAfQdTvlX6kzufjGMRoVsVqPkjaqQv2rzHwWXbNO0I115/W+Nlg7xshDAKtqtK87TTncw=="
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
}
|