@microsoft/applicationinsights-web-basic 3.0.5-nightly3.2310-10 → 3.0.5
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/es5/{aib.3.0.5-nightly3.2310-10.cjs.js → aib.3.0.5.cjs.js} +12 -5
- package/browser/es5/aib.3.0.5.cjs.js.map +1 -0
- package/browser/es5/aib.3.0.5.cjs.min.js +6 -0
- package/browser/es5/aib.3.0.5.cjs.min.js.map +1 -0
- package/browser/es5/{aib.3.0.5-nightly3.2310-10.gbl.js → aib.3.0.5.gbl.js} +14 -7
- package/browser/es5/aib.3.0.5.gbl.js.map +1 -0
- package/browser/es5/aib.3.0.5.gbl.min.js +6 -0
- package/browser/es5/aib.3.0.5.gbl.min.js.map +1 -0
- package/browser/es5/aib.3.0.5.integrity.json +66 -0
- package/browser/es5/{aib.3.0.5-nightly3.2310-10.js → aib.3.0.5.js} +14 -7
- package/browser/es5/aib.3.0.5.js.map +1 -0
- package/browser/es5/aib.3.0.5.min.js +6 -0
- package/browser/es5/aib.3.0.5.min.js.map +1 -0
- package/browser/es5/aib.3.cjs.js +11 -4
- package/browser/es5/aib.3.cjs.js.map +1 -1
- package/browser/es5/aib.3.cjs.min.js +2 -2
- package/browser/es5/aib.3.cjs.min.js.map +1 -1
- package/browser/es5/aib.3.gbl.js +13 -6
- package/browser/es5/aib.3.gbl.js.map +1 -1
- package/browser/es5/aib.3.gbl.min.js +2 -2
- package/browser/es5/aib.3.gbl.min.js.map +1 -1
- package/browser/es5/aib.3.integrity.json +25 -25
- package/browser/es5/aib.3.js +13 -6
- package/browser/es5/aib.3.js.map +1 -1
- package/browser/es5/aib.3.min.js +2 -2
- package/browser/es5/aib.3.min.js.map +1 -1
- package/dist/es5/applicationinsights-web-basic.js +11 -4
- package/dist/es5/applicationinsights-web-basic.js.map +1 -1
- package/dist/es5/applicationinsights-web-basic.min.js +2 -2
- package/dist/es5/applicationinsights-web-basic.min.js.map +1 -1
- package/dist-es5/__DynamicConstants.js +1 -1
- package/dist-es5/index.js +10 -2
- package/dist-es5/index.js.map +1 -1
- package/package.json +67 -70
- package/types/applicationinsights-web-basic.d.ts +3 -1
- package/types/applicationinsights-web-basic.namespaced.d.ts +3 -1
- package/browser/es5/aib.3.0.5-nightly3.2310-10.cjs.js.map +0 -1
- package/browser/es5/aib.3.0.5-nightly3.2310-10.cjs.min.js +0 -6
- package/browser/es5/aib.3.0.5-nightly3.2310-10.cjs.min.js.map +0 -1
- package/browser/es5/aib.3.0.5-nightly3.2310-10.gbl.js.map +0 -1
- package/browser/es5/aib.3.0.5-nightly3.2310-10.gbl.min.js +0 -6
- package/browser/es5/aib.3.0.5-nightly3.2310-10.gbl.min.js.map +0 -1
- package/browser/es5/aib.3.0.5-nightly3.2310-10.integrity.json +0 -66
- package/browser/es5/aib.3.0.5-nightly3.2310-10.js.map +0 -1
- package/browser/es5/aib.3.0.5-nightly3.2310-10.min.js +0 -6
- package/browser/es5/aib.3.0.5-nightly3.2310-10.min.js.map +0 -1
package/dist-es5/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Application Insights JavaScript Web SDK - Basic, 3.0.5
|
|
2
|
+
* Application Insights JavaScript Web SDK - Basic, 3.0.5
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -42,8 +42,8 @@ var ApplicationInsights = /** @class */ (function () {
|
|
|
42
42
|
});
|
|
43
43
|
_initialize();
|
|
44
44
|
_self.initialize = _initialize;
|
|
45
|
+
_self.track = _track;
|
|
45
46
|
proxyFunctions(_self, core, [
|
|
46
|
-
"track",
|
|
47
47
|
"flush",
|
|
48
48
|
"pollInternalLogs",
|
|
49
49
|
"stopPollingInternalLogs",
|
|
@@ -69,6 +69,14 @@ var ApplicationInsights = /** @class */ (function () {
|
|
|
69
69
|
core.initialize(_config, [new Sender()]);
|
|
70
70
|
}
|
|
71
71
|
});
|
|
72
|
+
function _track(item) {
|
|
73
|
+
if (item) {
|
|
74
|
+
// to pass sender.processTelemetry()
|
|
75
|
+
item.baseData = item.baseData || {};
|
|
76
|
+
item.baseType = item.baseType || "EventData";
|
|
77
|
+
}
|
|
78
|
+
core.track(item);
|
|
79
|
+
}
|
|
72
80
|
}
|
|
73
81
|
// Removed Stub for ApplicationInsights.prototype.initialize.
|
|
74
82
|
// Removed Stub for ApplicationInsights.prototype.track.
|
package/dist-es5/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 { Sender } from \"@microsoft/applicationinsights-channel-js\";\r\nimport { DEFAULT_BREEZE_PATH, parseConnectionString } from \"@microsoft/applicationinsights-common\";\r\nimport { AppInsightsCore, cfgDfValidate, createDynamicConfig, onConfigChange, proxyFunctions } from \"@microsoft/applicationinsights-core-js\";\r\nimport { isNullOrUndefined, objDefine, throwError } from \"@nevware21/ts-utils\";\r\nimport { _DYN_CONNECTION_STRING, _DYN_INSTRUMENTATION_KEY } from \"./__DynamicConstants\";\r\nvar defaultConfigValues = {\r\n diagnosticLogInterval: cfgDfValidate(_chkDiagLevel, 10000)\r\n};\r\nfunction _chkDiagLevel(value) {\r\n // Make sure we have a value > 0\r\n return value && value > 0;\r\n}\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 config\r\n * @memberof ApplicationInsights\r\n */\r\n function ApplicationInsights(config) {\r\n var core = new AppInsightsCore();\r\n var _config;\r\n // initialize the queue and config in case they are undefined\r\n if (isNullOrUndefined(config) ||\r\n (isNullOrUndefined(config[_DYN_INSTRUMENTATION_KEY /* @min:%2einstrumentationKey */]) && isNullOrUndefined(config[_DYN_CONNECTION_STRING /* @min:%2econnectionString */]))) {\r\n throwError(\"Invalid input configuration\");\r\n }\r\n dynamicProto(ApplicationInsights, this, function (_self) {\r\n // Define _self.config\r\n objDefine(_self, \"config\", {\r\n g: function () { return _config; }\r\n });\r\n _initialize();\r\n _self.initialize = _initialize;\r\n proxyFunctions(_self, core, [\r\n \"
|
|
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 { Sender } from \"@microsoft/applicationinsights-channel-js\";\r\nimport { DEFAULT_BREEZE_PATH, parseConnectionString } from \"@microsoft/applicationinsights-common\";\r\nimport { AppInsightsCore, cfgDfValidate, createDynamicConfig, onConfigChange, proxyFunctions } from \"@microsoft/applicationinsights-core-js\";\r\nimport { isNullOrUndefined, objDefine, throwError } from \"@nevware21/ts-utils\";\r\nimport { _DYN_CONNECTION_STRING, _DYN_INSTRUMENTATION_KEY } from \"./__DynamicConstants\";\r\nvar defaultConfigValues = {\r\n diagnosticLogInterval: cfgDfValidate(_chkDiagLevel, 10000)\r\n};\r\nfunction _chkDiagLevel(value) {\r\n // Make sure we have a value > 0\r\n return value && value > 0;\r\n}\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 config\r\n * @memberof ApplicationInsights\r\n */\r\n function ApplicationInsights(config) {\r\n var core = new AppInsightsCore();\r\n var _config;\r\n // initialize the queue and config in case they are undefined\r\n if (isNullOrUndefined(config) ||\r\n (isNullOrUndefined(config[_DYN_INSTRUMENTATION_KEY /* @min:%2einstrumentationKey */]) && isNullOrUndefined(config[_DYN_CONNECTION_STRING /* @min:%2econnectionString */]))) {\r\n throwError(\"Invalid input configuration\");\r\n }\r\n dynamicProto(ApplicationInsights, this, function (_self) {\r\n // Define _self.config\r\n objDefine(_self, \"config\", {\r\n g: function () { return _config; }\r\n });\r\n _initialize();\r\n _self.initialize = _initialize;\r\n _self.track = _track;\r\n proxyFunctions(_self, core, [\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 \"onCfgChange\"\r\n ]);\r\n function _initialize() {\r\n var cfgHandler = createDynamicConfig(config || {}, defaultConfigValues);\r\n _config = cfgHandler.cfg;\r\n core.addUnloadHook(onConfigChange(cfgHandler, function () {\r\n if (_config[_DYN_CONNECTION_STRING /* @min:%2econnectionString */]) {\r\n var cs = parseConnectionString(_config[_DYN_CONNECTION_STRING /* @min:%2econnectionString */]);\r\n var ingest = cs.ingestionendpoint;\r\n _config.endpointUrl = ingest ? (ingest + DEFAULT_BREEZE_PATH) : _config.endpointUrl; // only add /v2/track when from connectionstring\r\n _config[_DYN_INSTRUMENTATION_KEY /* @min:%2einstrumentationKey */] = cs.instrumentationkey || _config[_DYN_INSTRUMENTATION_KEY /* @min:%2einstrumentationKey */];\r\n }\r\n }));\r\n // initialize core\r\n core.initialize(_config, [new Sender()]);\r\n }\r\n });\r\n function _track(item) {\r\n if (item) {\r\n // to pass sender.processTelemetry()\r\n item.baseData = item.baseData || {};\r\n item.baseType = item.baseType || \"EventData\";\r\n }\r\n core.track(item);\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 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 [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 /**\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 * @param isAsync - Can the unload be performed asynchronously (default)\r\n * @param unloadComplete - An optional callback that will be called once the unload has completed\r\n * @param cbTimeout - An optional timeout to wait for any flush operations to complete before proceeding with the\r\n * unload. Defaults to 5 seconds.\r\n * @return Nothing or if occurring asynchronously a [IPromise](https://nevware21.github.io/ts-async/typedoc/interfaces/IPromise.html)\r\n * which will be resolved once the unload is complete, the [IPromise](https://nevware21.github.io/ts-async/typedoc/interfaces/IPromise.html)\r\n * will only be returned when no callback is provided and isAsync is true\r\n */\r\n ApplicationInsights.prototype.unload = function (isAsync, unloadComplete, cbTimeout) {\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 /**\r\n * Watches and tracks changes for accesses to the current config, and if the accessed config changes the\r\n * handler will be recalled.\r\n * @param handler\r\n * @returns A watcher handler instance that can be used to remove itself when being unloaded\r\n */\r\n ApplicationInsights.prototype.onCfgChange = function (handler) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n return null;\r\n };\r\n return ApplicationInsights;\r\n}());\r\nexport { ApplicationInsights };\r\nexport { AppInsightsCore, arrForEach, 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;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;8DA2FM,CAAC;;;;;+BACwB;AAC/B;AACA;AACA;AACA;AACA;AACA"}
|
package/package.json
CHANGED
|
@@ -1,70 +1,67 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@microsoft/applicationinsights-web-basic",
|
|
3
|
-
"version": "3.0.5
|
|
4
|
-
"description": "Microsoft Application Insights JavaScript SDK - Web Basic",
|
|
5
|
-
"homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme",
|
|
6
|
-
"author": "Microsoft Application Insights Team",
|
|
7
|
-
"main": "dist/es5/applicationinsights-web-basic.js",
|
|
8
|
-
"module": "dist-es5/index.js",
|
|
9
|
-
"types": "types/applicationinsights-web-basic.d.ts",
|
|
10
|
-
"sideEffects": false,
|
|
11
|
-
"scripts": {
|
|
12
|
-
"clean": "git clean -xdf",
|
|
13
|
-
"build": "npm run build:esm && npm run build:browser && npm run sri && npm run dtsgen",
|
|
14
|
-
"build:esm": "grunt aiskulite",
|
|
15
|
-
"build:browser": "rollup -c rollup.config.js --bundleConfigAsCjs",
|
|
16
|
-
"rebuild": "npm run build",
|
|
17
|
-
"test": "grunt aiskuliteunittests",
|
|
18
|
-
"mintest": "grunt aiskulite-mintests",
|
|
19
|
-
"lint": "tslint -p tsconfig.json",
|
|
20
|
-
"dtsgen": "api-extractor run --local && node ../scripts/dtsgen.js 'Microsoft.ApplicationInsights'",
|
|
21
|
-
"sri": "node ../tools/subResourceIntegrity/generateIntegrityFile.js",
|
|
22
|
-
"ai-min": "grunt aiskulite-min",
|
|
23
|
-
"ai-restore": "grunt aiskulite-restore",
|
|
24
|
-
"npm-pack": "npm pack",
|
|
25
|
-
"api-docs": "typedoc"
|
|
26
|
-
},
|
|
27
|
-
"repository": {
|
|
28
|
-
"type": "git",
|
|
29
|
-
"url": "https://github.com/microsoft/ApplicationInsights-JS.git",
|
|
30
|
-
"directory": "AISKULight"
|
|
31
|
-
},
|
|
32
|
-
"devDependencies": {
|
|
33
|
-
"@microsoft/ai-test-framework": "0.0.1",
|
|
34
|
-
"@microsoft/applicationinsights-rollup-plugin-uglify3-js": "1.0.0",
|
|
35
|
-
"@microsoft/applicationinsights-rollup-es5": "1.0.2",
|
|
36
|
-
"@microsoft/api-extractor": "^7.18.19",
|
|
37
|
-
"grunt": "^1.5.3",
|
|
38
|
-
"grunt-cli": "^1.4.3",
|
|
39
|
-
"grunt-contrib-qunit": "^6.2.1",
|
|
40
|
-
"@nevware21/grunt-ts-plugin": "^0.4.3",
|
|
41
|
-
"@nevware21/grunt-eslint-ts": "^0.2.2",
|
|
42
|
-
"globby": "^11.0.0",
|
|
43
|
-
"magic-string": "^0.25.7",
|
|
44
|
-
"pako": "^2.0.3",
|
|
45
|
-
"@rollup/plugin-commonjs": "^24.0.0",
|
|
46
|
-
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
47
|
-
"@rollup/plugin-replace": "^5.0.2",
|
|
48
|
-
"rollup-plugin-cleanup": "^3.2.1",
|
|
49
|
-
"rollup": "^3.20.0",
|
|
50
|
-
"typescript": "^4.9.3",
|
|
51
|
-
"typedoc": "^0.24.8",
|
|
52
|
-
"tslib": "^2.0.0"
|
|
53
|
-
},
|
|
54
|
-
"peerDependencies": {
|
|
55
|
-
"tslib": "*"
|
|
56
|
-
},
|
|
57
|
-
"dependencies": {
|
|
58
|
-
"@microsoft/dynamicproto-js": "^2.0.2",
|
|
59
|
-
"@microsoft/applicationinsights-shims": "3.0.1",
|
|
60
|
-
"@microsoft/applicationinsights-common": "3.0.5
|
|
61
|
-
"@microsoft/applicationinsights-channel-js": "3.0.5
|
|
62
|
-
"@microsoft/applicationinsights-core-js": "3.0.5
|
|
63
|
-
"@nevware21/ts-utils": ">= 0.10.1 < 2.x",
|
|
64
|
-
"@nevware21/ts-async": ">= 0.3.0 < 2.x"
|
|
65
|
-
},
|
|
66
|
-
"license": "MIT"
|
|
67
|
-
|
|
68
|
-
"tag": "nightly3"
|
|
69
|
-
}
|
|
70
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@microsoft/applicationinsights-web-basic",
|
|
3
|
+
"version": "3.0.5",
|
|
4
|
+
"description": "Microsoft Application Insights JavaScript SDK - Web Basic",
|
|
5
|
+
"homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme",
|
|
6
|
+
"author": "Microsoft Application Insights Team",
|
|
7
|
+
"main": "dist/es5/applicationinsights-web-basic.js",
|
|
8
|
+
"module": "dist-es5/index.js",
|
|
9
|
+
"types": "types/applicationinsights-web-basic.d.ts",
|
|
10
|
+
"sideEffects": false,
|
|
11
|
+
"scripts": {
|
|
12
|
+
"clean": "git clean -xdf",
|
|
13
|
+
"build": "npm run build:esm && npm run build:browser && npm run sri && npm run dtsgen",
|
|
14
|
+
"build:esm": "grunt aiskulite",
|
|
15
|
+
"build:browser": "rollup -c rollup.config.js --bundleConfigAsCjs",
|
|
16
|
+
"rebuild": "npm run build",
|
|
17
|
+
"test": "grunt aiskuliteunittests",
|
|
18
|
+
"mintest": "grunt aiskulite-mintests",
|
|
19
|
+
"lint": "tslint -p tsconfig.json",
|
|
20
|
+
"dtsgen": "api-extractor run --local && node ../scripts/dtsgen.js 'Microsoft.ApplicationInsights'",
|
|
21
|
+
"sri": "node ../tools/subResourceIntegrity/generateIntegrityFile.js",
|
|
22
|
+
"ai-min": "grunt aiskulite-min",
|
|
23
|
+
"ai-restore": "grunt aiskulite-restore",
|
|
24
|
+
"npm-pack": "npm pack",
|
|
25
|
+
"api-docs": "typedoc"
|
|
26
|
+
},
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "https://github.com/microsoft/ApplicationInsights-JS.git",
|
|
30
|
+
"directory": "AISKULight"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@microsoft/ai-test-framework": "0.0.1",
|
|
34
|
+
"@microsoft/applicationinsights-rollup-plugin-uglify3-js": "1.0.0",
|
|
35
|
+
"@microsoft/applicationinsights-rollup-es5": "1.0.2",
|
|
36
|
+
"@microsoft/api-extractor": "^7.18.19",
|
|
37
|
+
"grunt": "^1.5.3",
|
|
38
|
+
"grunt-cli": "^1.4.3",
|
|
39
|
+
"grunt-contrib-qunit": "^6.2.1",
|
|
40
|
+
"@nevware21/grunt-ts-plugin": "^0.4.3",
|
|
41
|
+
"@nevware21/grunt-eslint-ts": "^0.2.2",
|
|
42
|
+
"globby": "^11.0.0",
|
|
43
|
+
"magic-string": "^0.25.7",
|
|
44
|
+
"pako": "^2.0.3",
|
|
45
|
+
"@rollup/plugin-commonjs": "^24.0.0",
|
|
46
|
+
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
47
|
+
"@rollup/plugin-replace": "^5.0.2",
|
|
48
|
+
"rollup-plugin-cleanup": "^3.2.1",
|
|
49
|
+
"rollup": "^3.20.0",
|
|
50
|
+
"typescript": "^4.9.3",
|
|
51
|
+
"typedoc": "^0.24.8",
|
|
52
|
+
"tslib": "^2.0.0"
|
|
53
|
+
},
|
|
54
|
+
"peerDependencies": {
|
|
55
|
+
"tslib": "*"
|
|
56
|
+
},
|
|
57
|
+
"dependencies": {
|
|
58
|
+
"@microsoft/dynamicproto-js": "^2.0.2",
|
|
59
|
+
"@microsoft/applicationinsights-shims": "3.0.1",
|
|
60
|
+
"@microsoft/applicationinsights-common": "3.0.5",
|
|
61
|
+
"@microsoft/applicationinsights-channel-js": "3.0.5",
|
|
62
|
+
"@microsoft/applicationinsights-core-js": "3.0.5",
|
|
63
|
+
"@nevware21/ts-utils": ">= 0.10.1 < 2.x",
|
|
64
|
+
"@nevware21/ts-async": ">= 0.3.0 < 2.x"
|
|
65
|
+
},
|
|
66
|
+
"license": "MIT"
|
|
67
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Microsoft.ApplicationInsights, 3.0.5
|
|
2
|
+
* Microsoft.ApplicationInsights, 3.0.5
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*
|
|
5
5
|
* Microsoft Application Insights Team
|
|
@@ -28,6 +28,7 @@ import { IPageViewPerformanceTelemetry } from '@microsoft/applicationinsights-co
|
|
|
28
28
|
import { IPageViewTelemetry } from '@microsoft/applicationinsights-common';
|
|
29
29
|
import { IPlugin } from '@microsoft/applicationinsights-core-js';
|
|
30
30
|
import { IPromise } from '@nevware21/ts-async';
|
|
31
|
+
import { ISenderConfig } from '@microsoft/applicationinsights-channel-js';
|
|
31
32
|
import { isNullOrUndefined } from '@microsoft/applicationinsights-core-js';
|
|
32
33
|
import { ITelemetryItem } from '@microsoft/applicationinsights-core-js';
|
|
33
34
|
import { ITelemetryPlugin } from '@microsoft/applicationinsights-core-js';
|
|
@@ -135,6 +136,7 @@ export { IMetricTelemetry }
|
|
|
135
136
|
export { IPageViewPerformanceTelemetry }
|
|
136
137
|
export { IPageViewTelemetry }
|
|
137
138
|
export { IPlugin }
|
|
139
|
+
export { ISenderConfig }
|
|
138
140
|
export { isNullOrUndefined }
|
|
139
141
|
export { ITelemetryItem }
|
|
140
142
|
export { ITelemetryPlugin }
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Microsoft.ApplicationInsights, 3.0.5
|
|
2
|
+
* Microsoft.ApplicationInsights, 3.0.5
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*
|
|
5
5
|
* Microsoft Application Insights Team
|
|
@@ -23,6 +23,7 @@ declare namespace ApplicationInsights {
|
|
|
23
23
|
import { IPageViewTelemetry } from '@microsoft/applicationinsights-common';
|
|
24
24
|
import { IPlugin } from '@microsoft/applicationinsights-core-js';
|
|
25
25
|
import { IPromise } from '@nevware21/ts-async';
|
|
26
|
+
import { ISenderConfig } from '@microsoft/applicationinsights-channel-js';
|
|
26
27
|
import { isNullOrUndefined } from '@microsoft/applicationinsights-core-js';
|
|
27
28
|
import { ITelemetryItem } from '@microsoft/applicationinsights-core-js';
|
|
28
29
|
import { ITelemetryPlugin } from '@microsoft/applicationinsights-core-js';
|
|
@@ -138,6 +139,7 @@ declare namespace ApplicationInsights {
|
|
|
138
139
|
|
|
139
140
|
|
|
140
141
|
|
|
142
|
+
|
|
141
143
|
|
|
142
144
|
|
|
143
145
|
}
|