@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.
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Microsoft.ApplicationInsights, 2.7.1-nightly.202110-17
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
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript Web SDK - Basic, 2.7.1-nightly.202110-17
2
+ * Application Insights JavaScript Web SDK - Basic, 2.7.1
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
package/package.json CHANGED
@@ -1,60 +1,57 @@
1
- {
2
- "name": "@microsoft/applicationinsights-web-basic",
3
- "version": "2.7.1-nightly.202110-17",
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-nightly.202110-17",
53
- "@microsoft/applicationinsights-channel-js": "2.7.1-nightly.202110-17",
54
- "@microsoft/applicationinsights-core-js": "2.7.1-nightly.202110-17"
55
- },
56
- "license": "MIT",
57
- "publishConfig": {
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
+ }
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.18.16"
8
+ "packageVersion": "7.18.17"
9
9
  }
10
10
  ]
11
11
  }
@@ -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
- }