@microsoft/applicationinsights-web-basic 2.8.4 → 2.8.5-nightly.2206-04
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.8.5-nightly.2206-04.integrity.json +26 -0
- package/browser/{aib.2.8.4.js → aib.2.8.5-nightly.2206-04.js} +17 -6
- package/browser/aib.2.8.5-nightly.2206-04.js.map +1 -0
- package/browser/aib.2.8.5-nightly.2206-04.min.js +6 -0
- package/browser/aib.2.8.5-nightly.2206-04.min.js.map +1 -0
- package/browser/aib.2.js +16 -5
- 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 +205 -63
- package/dist/applicationinsights-web-basic.d.ts +1 -1
- package/dist/applicationinsights-web-basic.js +16 -5
- 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 +1 -1
- package/dist-esm/index.js +6 -1
- package/dist-esm/index.js.map +1 -1
- package/package.json +62 -59
- package/types/tsdoc-metadata.json +1 -1
- package/browser/aib.2.8.4.integrity.json +0 -26
- package/browser/aib.2.8.4.js.map +0 -1
- package/browser/aib.2.8.4.min.js +0 -6
- package/browser/aib.2.8.4.min.js.map +0 -1
package/dist-esm/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Application Insights JavaScript Web SDK - Basic, 2.8.
|
|
2
|
+
* Application Insights JavaScript Web SDK - Basic, 2.8.5-nightly.2206-04
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -67,6 +67,11 @@ var ApplicationInsights = /** @class */ (function () {
|
|
|
67
67
|
// Removed Stub for ApplicationInsights.prototype.addPlugin.
|
|
68
68
|
// Removed Stub for ApplicationInsights.prototype.evtNamespace.
|
|
69
69
|
// Removed Stub for ApplicationInsights.prototype.addUnloadCb.
|
|
70
|
+
// This is a workaround for an IE8 bug when using dynamicProto() with classes that don't have any
|
|
71
|
+
// non-dynamic functions or static properties/functions when using uglify-js to minify the resulting code.
|
|
72
|
+
// this will be removed when ES3 support is dropped.
|
|
73
|
+
ApplicationInsights.__ieDyn=1;
|
|
74
|
+
|
|
70
75
|
return ApplicationInsights;
|
|
71
76
|
}());
|
|
72
77
|
export { ApplicationInsights };
|
package/dist-esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js.map","sources":["index.js"],"sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\nimport dynamicProto from \"@microsoft/dynamicproto-js\";\r\nimport { AppInsightsCore, isNullOrUndefined, throwError, proxyFunctions } from \"@microsoft/applicationinsights-core-js\";\r\nimport { Sender } from \"@microsoft/applicationinsights-channel-js\";\r\n/**\r\n * @export\r\n * @class ApplicationInsights\r\n */\r\nvar ApplicationInsights = /** @class */ (function () {\r\n /**\r\n * Creates an instance of ApplicationInsights.\r\n * @param {IConfiguration & IConfig} config\r\n * @memberof ApplicationInsights\r\n */\r\n function ApplicationInsights(config) {\r\n var core = new AppInsightsCore();\r\n // initialize the queue and config in case they are undefined\r\n if (isNullOrUndefined(config) ||\r\n isNullOrUndefined(config.instrumentationKey)) {\r\n throwError(\"Invalid input configuration\");\r\n }\r\n dynamicProto(ApplicationInsights, this, function (_self) {\r\n _self.config = config;\r\n _self.getSKUDefaults();\r\n _initialize();\r\n _self.initialize = _initialize;\r\n _self.getSKUDefaults = function () {\r\n _self.config.diagnosticLogInterval =\r\n _self.config.diagnosticLogInterval && _self.config.diagnosticLogInterval > 0 ? _self.config.diagnosticLogInterval : 10000;\r\n };\r\n proxyFunctions(_self, core, [\r\n \"track\",\r\n \"flush\",\r\n \"pollInternalLogs\",\r\n \"stopPollingInternalLogs\",\r\n \"unload\",\r\n \"getPlugin\",\r\n \"addPlugin\",\r\n \"evtNamespace\",\r\n \"addUnloadCb\"\r\n ]);\r\n function _initialize() {\r\n var extensions = [];\r\n var appInsightsChannel = new Sender();\r\n extensions.push(appInsightsChannel);\r\n // initialize core\r\n core.initialize(this.config, extensions);\r\n // initialize extensions\r\n appInsightsChannel.initialize(this.config, core, extensions);\r\n core.pollInternalLogs();\r\n }\r\n });\r\n }\r\n /**\r\n * Initialize this instance of ApplicationInsights\r\n *\r\n * @memberof ApplicationInsights\r\n */\r\n ApplicationInsights.prototype.initialize = function () {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n /**\r\n * Send a manually constructed custom event\r\n *\r\n * @param {ITelemetryItem} item\r\n * @memberof ApplicationInsights\r\n */\r\n ApplicationInsights.prototype.track = function (item) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n /**\r\n * Immediately send all batched telemetry\r\n * @param {boolean} [async=true]\r\n * @memberof ApplicationInsights\r\n */\r\n ApplicationInsights.prototype.flush = function (async) {\r\n if (async === void 0) { async = true; }\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n ApplicationInsights.prototype.pollInternalLogs = function () {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n ApplicationInsights.prototype.stopPollingInternalLogs = function () {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n ApplicationInsights.prototype.getSKUDefaults = function () {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n /**\r\n * Unload and Tear down the SDK and any initialized plugins, after calling this the SDK will be considered\r\n * to be un-initialized and non-operational, re-initializing the SDK should only be attempted if the previous\r\n * unload call return `true` stating that all plugins reported that they also unloaded, the recommended\r\n * approach is to create a new instance and initialize that instance.\r\n * This is due to possible unexpected side effects caused by plugins not supporting unload / teardown, unable\r\n * to successfully remove any global references or they may just be completing the unload process asynchronously.\r\n */\r\n ApplicationInsights.prototype.unload = function (isAsync, unloadComplete) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n return null;\r\n };\r\n /**\r\n * Find and return the (first) plugin with the specified identifier if present\r\n * @param pluginIdentifier\r\n */\r\n ApplicationInsights.prototype.getPlugin = function (pluginIdentifier) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n return null;\r\n };\r\n /**\r\n * Add a new plugin to the installation\r\n * @param plugin - The new plugin to add\r\n * @param replaceExisting - should any existing plugin be replaced\r\n * @param doAsync - Should the add be performed asynchronously\r\n */\r\n ApplicationInsights.prototype.addPlugin = function (plugin, replaceExisting, doAsync, addCb) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n /**\r\n * Returns the unique event namespace that should be used\r\n */\r\n ApplicationInsights.prototype.evtNamespace = function () {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n return null;\r\n };\r\n /**\r\n * Add an unload handler that will be called when the SDK is being unloaded\r\n * @param handler - the handler\r\n */\r\n ApplicationInsights.prototype.addUnloadCb = function (handler) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n return ApplicationInsights;\r\n}());\r\nexport { ApplicationInsights };\r\nexport { AppInsightsCore, CoreUtils, arrForEach, _InternalMessageId, isNullOrUndefined, throwError, proxyFunctions } from \"@microsoft/applicationinsights-core-js\";\r\nexport { SeverityLevel } from \"@microsoft/applicationinsights-common\";\r\nexport { Sender } from \"@microsoft/applicationinsights-channel-js\";\r\n//# sourceMappingURL=index.js.map"],"names":[],"mappings":";;;;AAA4D;AAC1B;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;8DA6EM;
|
|
1
|
+
{"version":3,"file":"index.js.map","sources":["index.js"],"sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\nimport dynamicProto from \"@microsoft/dynamicproto-js\";\r\nimport { AppInsightsCore, isNullOrUndefined, throwError, proxyFunctions } from \"@microsoft/applicationinsights-core-js\";\r\nimport { Sender } from \"@microsoft/applicationinsights-channel-js\";\r\n/**\r\n * @export\r\n * @class ApplicationInsights\r\n */\r\nvar ApplicationInsights = /** @class */ (function () {\r\n /**\r\n * Creates an instance of ApplicationInsights.\r\n * @param {IConfiguration & IConfig} config\r\n * @memberof ApplicationInsights\r\n */\r\n function ApplicationInsights(config) {\r\n var core = new AppInsightsCore();\r\n // initialize the queue and config in case they are undefined\r\n if (isNullOrUndefined(config) ||\r\n isNullOrUndefined(config.instrumentationKey)) {\r\n throwError(\"Invalid input configuration\");\r\n }\r\n dynamicProto(ApplicationInsights, this, function (_self) {\r\n _self.config = config;\r\n _self.getSKUDefaults();\r\n _initialize();\r\n _self.initialize = _initialize;\r\n _self.getSKUDefaults = function () {\r\n _self.config.diagnosticLogInterval =\r\n _self.config.diagnosticLogInterval && _self.config.diagnosticLogInterval > 0 ? _self.config.diagnosticLogInterval : 10000;\r\n };\r\n proxyFunctions(_self, core, [\r\n \"track\",\r\n \"flush\",\r\n \"pollInternalLogs\",\r\n \"stopPollingInternalLogs\",\r\n \"unload\",\r\n \"getPlugin\",\r\n \"addPlugin\",\r\n \"evtNamespace\",\r\n \"addUnloadCb\"\r\n ]);\r\n function _initialize() {\r\n var extensions = [];\r\n var appInsightsChannel = new Sender();\r\n extensions.push(appInsightsChannel);\r\n // initialize core\r\n core.initialize(this.config, extensions);\r\n // initialize extensions\r\n appInsightsChannel.initialize(this.config, core, extensions);\r\n core.pollInternalLogs();\r\n }\r\n });\r\n }\r\n /**\r\n * Initialize this instance of ApplicationInsights\r\n *\r\n * @memberof ApplicationInsights\r\n */\r\n ApplicationInsights.prototype.initialize = function () {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n /**\r\n * Send a manually constructed custom event\r\n *\r\n * @param {ITelemetryItem} item\r\n * @memberof ApplicationInsights\r\n */\r\n ApplicationInsights.prototype.track = function (item) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n /**\r\n * Immediately send all batched telemetry\r\n * @param {boolean} [async=true]\r\n * @memberof ApplicationInsights\r\n */\r\n ApplicationInsights.prototype.flush = function (async) {\r\n if (async === void 0) { async = true; }\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n ApplicationInsights.prototype.pollInternalLogs = function () {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n ApplicationInsights.prototype.stopPollingInternalLogs = function () {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n ApplicationInsights.prototype.getSKUDefaults = function () {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n /**\r\n * Unload and Tear down the SDK and any initialized plugins, after calling this the SDK will be considered\r\n * to be un-initialized and non-operational, re-initializing the SDK should only be attempted if the previous\r\n * unload call return `true` stating that all plugins reported that they also unloaded, the recommended\r\n * approach is to create a new instance and initialize that instance.\r\n * This is due to possible unexpected side effects caused by plugins not supporting unload / teardown, unable\r\n * to successfully remove any global references or they may just be completing the unload process asynchronously.\r\n */\r\n ApplicationInsights.prototype.unload = function (isAsync, unloadComplete) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n return null;\r\n };\r\n /**\r\n * Find and return the (first) plugin with the specified identifier if present\r\n * @param pluginIdentifier\r\n */\r\n ApplicationInsights.prototype.getPlugin = function (pluginIdentifier) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n return null;\r\n };\r\n /**\r\n * Add a new plugin to the installation\r\n * @param plugin - The new plugin to add\r\n * @param replaceExisting - should any existing plugin be replaced\r\n * @param doAsync - Should the add be performed asynchronously\r\n */\r\n ApplicationInsights.prototype.addPlugin = function (plugin, replaceExisting, doAsync, addCb) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n /**\r\n * Returns the unique event namespace that should be used\r\n */\r\n ApplicationInsights.prototype.evtNamespace = function () {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n return null;\r\n };\r\n /**\r\n * Add an unload handler that will be called when the SDK is being unloaded\r\n * @param handler - the handler\r\n */\r\n ApplicationInsights.prototype.addUnloadCb = function (handler) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n return ApplicationInsights;\r\n}());\r\nexport { ApplicationInsights };\r\nexport { AppInsightsCore, CoreUtils, arrForEach, _InternalMessageId, isNullOrUndefined, throwError, proxyFunctions } from \"@microsoft/applicationinsights-core-js\";\r\nexport { SeverityLevel } from \"@microsoft/applicationinsights-common\";\r\nexport { Sender } from \"@microsoft/applicationinsights-channel-js\";\r\n//# sourceMappingURL=index.js.map"],"names":[],"mappings":";;;;AAA4D;AAC1B;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;8DA6EM,CAAC;;;;;;+BACwB;AAC/B;AACA;AACA;AACA;AACA;AACA"}
|
package/package.json
CHANGED
|
@@ -1,59 +1,62 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@microsoft/applicationinsights-web-basic",
|
|
3
|
-
"version": "2.8.
|
|
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.5.3",
|
|
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.
|
|
55
|
-
"@microsoft/applicationinsights-channel-js": "2.8.
|
|
56
|
-
"@microsoft/applicationinsights-core-js": "2.8.
|
|
57
|
-
},
|
|
58
|
-
"license": "MIT"
|
|
59
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@microsoft/applicationinsights-web-basic",
|
|
3
|
+
"version": "2.8.5-nightly.2206-04",
|
|
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.5.3",
|
|
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.5-nightly.2206-04",
|
|
55
|
+
"@microsoft/applicationinsights-channel-js": "2.8.5-nightly.2206-04",
|
|
56
|
+
"@microsoft/applicationinsights-core-js": "2.8.5-nightly.2206-04"
|
|
57
|
+
},
|
|
58
|
+
"license": "MIT",
|
|
59
|
+
"publishConfig": {
|
|
60
|
+
"tag": "nightly"
|
|
61
|
+
}
|
|
62
|
+
}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "aib",
|
|
3
|
-
"version": "2.8.4",
|
|
4
|
-
"ext": {
|
|
5
|
-
"@js": {
|
|
6
|
-
"file": "aib.2.8.4.js",
|
|
7
|
-
"type": "text/javascript; charset=utf-8",
|
|
8
|
-
"integrity": "sha256-hAKpUiWZu2+8ff+/psx5RTl9QYkNxtNZrxemGFBVVBg= sha384-0p+TU1ofRBr+yMpVzSQdzv1rMYefxE7Q7QKVeFPDPKACHg5tTNmaeVEBMSABOL7/ sha512-JMdT8JJOYfGxqKbKXhnjSCTDHbJvXygKofr3lDsjP3we9xQyCKTbrwwdhyX4rjsaruBmXEx1cc7t/qZCfyKgsw==",
|
|
9
|
-
"hashes": {
|
|
10
|
-
"sha256": "hAKpUiWZu2+8ff+/psx5RTl9QYkNxtNZrxemGFBVVBg=",
|
|
11
|
-
"sha384": "0p+TU1ofRBr+yMpVzSQdzv1rMYefxE7Q7QKVeFPDPKACHg5tTNmaeVEBMSABOL7/",
|
|
12
|
-
"sha512": "JMdT8JJOYfGxqKbKXhnjSCTDHbJvXygKofr3lDsjP3we9xQyCKTbrwwdhyX4rjsaruBmXEx1cc7t/qZCfyKgsw=="
|
|
13
|
-
}
|
|
14
|
-
},
|
|
15
|
-
"@min.js": {
|
|
16
|
-
"file": "aib.2.8.4.min.js",
|
|
17
|
-
"type": "text/javascript; charset=utf-8",
|
|
18
|
-
"integrity": "sha256-PQAr/rEzxE784YBEFY8624dNQNkeSFxW9YuFEKBzSFc= sha384-xX5XkcA+9pCRWsXO8RjLGX1gxtJ4X+wLK7gaRguD6JwUklNc7K6bbt2sJzbMHibv sha512-3KUxlb2dTtielgvDmOHTHzslBZ5LN7CMxgK93MOJAA544ut/5HDJJoLbnLE66yl87u5srokY88c2idwkE2m80Q==",
|
|
19
|
-
"hashes": {
|
|
20
|
-
"sha256": "PQAr/rEzxE784YBEFY8624dNQNkeSFxW9YuFEKBzSFc=",
|
|
21
|
-
"sha384": "xX5XkcA+9pCRWsXO8RjLGX1gxtJ4X+wLK7gaRguD6JwUklNc7K6bbt2sJzbMHibv",
|
|
22
|
-
"sha512": "3KUxlb2dTtielgvDmOHTHzslBZ5LN7CMxgK93MOJAA544ut/5HDJJoLbnLE66yl87u5srokY88c2idwkE2m80Q=="
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
}
|