@microsoft/applicationinsights-web-basic 2.8.3 → 2.8.4-nightly.2205-07

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.8.3
2
+ * Microsoft.ApplicationInsights, 2.8.4-nightly.2205-07
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  *
5
5
  * Microsoft Application Insights Team
@@ -396,7 +396,8 @@ export declare const enum _eInternalMessageId {
396
396
  InvalidContentBlob = 102,
397
397
  TrackPageActionEventFailed = 103,
398
398
  FailedAddingCustomDefinedRequestContext = 104,
399
- InMemoryStorageBufferFull = 105
399
+ InMemoryStorageBufferFull = 105,
400
+ InstrumentationKeyDeprecation = 106
400
401
  }
401
402
 
402
403
  declare const enum eLoggingSeverity {
@@ -1005,6 +1006,11 @@ declare interface IConfig {
1005
1006
  * [Optional] The number of events that can be kept in memory before the SDK starts to drop events. By default, this is 10,000.
1006
1007
  */
1007
1008
  eventsLimitInMem?: number;
1009
+ /**
1010
+ * [Optional] Disable iKey deprecation error message.
1011
+ * @defaultValue true
1012
+ */
1013
+ disableIkeyDeprecationMessage?: boolean;
1008
1014
  }
1009
1015
 
1010
1016
  /**
package/dist-esm/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript Web SDK - Basic, 2.8.3
2
+ * Application Insights JavaScript Web SDK - Basic, 2.8.4-nightly.2205-07
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
package/package.json CHANGED
@@ -1,59 +1,62 @@
1
- {
2
- "name": "@microsoft/applicationinsights-web-basic",
3
- "version": "2.8.3",
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": "grunt aiskuliteunittests",
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/ai-test-framework": "0.0.1",
28
- "@microsoft/applicationinsights-rollup-plugin-uglify3-js": "1.0.0",
29
- "@microsoft/applicationinsights-rollup-es3": "1.1.3",
30
- "@microsoft/api-extractor": "^7.18.1",
31
- "grunt": "^1.4.1",
32
- "grunt-cli": "^1.4.3",
33
- "grunt-contrib-qunit": "^5.0.1",
34
- "@nevware21/grunt-ts-plugin": "^0.4.3",
35
- "@nevware21/grunt-eslint-ts": "^0.2.2",
36
- "globby": "^11.0.0",
37
- "magic-string": "^0.25.7",
38
- "pako": "^2.0.3",
39
- "@rollup/plugin-commonjs": "^18.0.0",
40
- "@rollup/plugin-node-resolve": "^11.2.1",
41
- "@rollup/plugin-replace": "^2.3.3",
42
- "rollup-plugin-cleanup": "^3.2.1",
43
- "rollup": "^2.32.0",
44
- "source-map-loader": "^0.2.3",
45
- "typescript": "^4.3.4",
46
- "tslib": "^2.0.0"
47
- },
48
- "peerDependencies": {
49
- "tslib": "*"
50
- },
51
- "dependencies": {
52
- "@microsoft/dynamicproto-js": "^1.1.6",
53
- "@microsoft/applicationinsights-shims": "2.0.1",
54
- "@microsoft/applicationinsights-common": "2.8.3",
55
- "@microsoft/applicationinsights-channel-js": "2.8.3",
56
- "@microsoft/applicationinsights-core-js": "2.8.3"
57
- },
58
- "license": "MIT"
59
- }
1
+ {
2
+ "name": "@microsoft/applicationinsights-web-basic",
3
+ "version": "2.8.4-nightly.2205-07",
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": "grunt aiskuliteunittests",
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/ai-test-framework": "0.0.1",
28
+ "@microsoft/applicationinsights-rollup-plugin-uglify3-js": "1.0.0",
29
+ "@microsoft/applicationinsights-rollup-es3": "1.1.3",
30
+ "@microsoft/api-extractor": "^7.18.1",
31
+ "grunt": "^1.4.1",
32
+ "grunt-cli": "^1.4.3",
33
+ "grunt-contrib-qunit": "^5.0.1",
34
+ "@nevware21/grunt-ts-plugin": "^0.4.3",
35
+ "@nevware21/grunt-eslint-ts": "^0.2.2",
36
+ "globby": "^11.0.0",
37
+ "magic-string": "^0.25.7",
38
+ "pako": "^2.0.3",
39
+ "@rollup/plugin-commonjs": "^18.0.0",
40
+ "@rollup/plugin-node-resolve": "^11.2.1",
41
+ "@rollup/plugin-replace": "^2.3.3",
42
+ "rollup-plugin-cleanup": "^3.2.1",
43
+ "rollup": "^2.32.0",
44
+ "source-map-loader": "^0.2.3",
45
+ "typescript": "^4.3.4",
46
+ "tslib": "^2.0.0"
47
+ },
48
+ "peerDependencies": {
49
+ "tslib": "*"
50
+ },
51
+ "dependencies": {
52
+ "@microsoft/dynamicproto-js": "^1.1.6",
53
+ "@microsoft/applicationinsights-shims": "2.0.1",
54
+ "@microsoft/applicationinsights-common": "2.8.4-nightly.2205-07",
55
+ "@microsoft/applicationinsights-channel-js": "2.8.4-nightly.2205-07",
56
+ "@microsoft/applicationinsights-core-js": "2.8.4-nightly.2205-07"
57
+ },
58
+ "license": "MIT",
59
+ "publishConfig": {
60
+ "tag": "nightly"
61
+ }
62
+ }
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.23.1"
8
+ "packageVersion": "7.23.2"
9
9
  }
10
10
  ]
11
11
  }
@@ -1,26 +0,0 @@
1
- {
2
- "name": "aib",
3
- "version": "2.8.3",
4
- "ext": {
5
- "@js": {
6
- "file": "aib.2.8.3.js",
7
- "type": "text/javascript; charset=utf-8",
8
- "integrity": "sha256-SayJvPYS3JyzOrtOSADzUeZFbeOSoYDvumkx5FJL9Ds= sha384-NBS3SLA8vbOlaC5muV0uSw0uqvXapwfd0kEA0unuBtk5HA+9mB8kg82QTMQGgqie sha512-MZSkWriTvf/q7h4BlpOtFs3TCxrP7w1+uUwkhpjap7god15a3oV8TeLC687RQzrUfCp7AScoWPfmFMosp4f83A==",
9
- "hashes": {
10
- "sha256": "SayJvPYS3JyzOrtOSADzUeZFbeOSoYDvumkx5FJL9Ds=",
11
- "sha384": "NBS3SLA8vbOlaC5muV0uSw0uqvXapwfd0kEA0unuBtk5HA+9mB8kg82QTMQGgqie",
12
- "sha512": "MZSkWriTvf/q7h4BlpOtFs3TCxrP7w1+uUwkhpjap7god15a3oV8TeLC687RQzrUfCp7AScoWPfmFMosp4f83A=="
13
- }
14
- },
15
- "@min.js": {
16
- "file": "aib.2.8.3.min.js",
17
- "type": "text/javascript; charset=utf-8",
18
- "integrity": "sha256-apAxcRhAwsMwPs9Y1Yy5z3gEVEPFWLXRRTlkRXxNhWs= sha384-4V43watjo8MtOqRzphTAA6OjSaEuZyp52eGnumqIWCbAhpR3jaDT1vL0oImg3Kzm sha512-vRLZK1P3haiW6FqHiDHw1iBR4vYZ1dRQRYLiM4rLPAk94K/qUQnfWBkqvcAdnw1jcHWalD5AlBymfQYUbJhXpg==",
19
- "hashes": {
20
- "sha256": "apAxcRhAwsMwPs9Y1Yy5z3gEVEPFWLXRRTlkRXxNhWs=",
21
- "sha384": "4V43watjo8MtOqRzphTAA6OjSaEuZyp52eGnumqIWCbAhpR3jaDT1vL0oImg3Kzm",
22
- "sha512": "vRLZK1P3haiW6FqHiDHw1iBR4vYZ1dRQRYLiM4rLPAk94K/qUQnfWBkqvcAdnw1jcHWalD5AlBymfQYUbJhXpg=="
23
- }
24
- }
25
- }
26
- }