@microsoft/applicationinsights-web-basic 3.0.0-beta.2211-03 → 3.0.0-beta.2211-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.js +920 -1091
- 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/browser/aib.3.0.0-beta.2211-04.integrity.json +26 -0
- package/browser/{aib.3.0.0-beta.2211-03.js → aib.3.0.0-beta.2211-04.js} +921 -1092
- package/browser/aib.3.0.0-beta.2211-04.js.map +1 -0
- package/browser/aib.3.0.0-beta.2211-04.min.js +6 -0
- package/browser/aib.3.0.0-beta.2211-04.min.js.map +1 -0
- package/dist/applicationinsights-web-basic.api.json +69 -69
- package/dist/applicationinsights-web-basic.api.md +6 -6
- package/dist/applicationinsights-web-basic.d.ts +7 -7
- package/dist/applicationinsights-web-basic.js +920 -1091
- 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 +7 -7
- package/dist-esm/__DynamicConstants.js +1 -1
- package/dist-esm/index.js +1 -1
- package/package.json +4 -4
- package/browser/aib.3.0.0-beta.2211-03.integrity.json +0 -26
- package/browser/aib.3.0.0-beta.2211-03.js.map +0 -1
- package/browser/aib.3.0.0-beta.2211-03.min.js +0 -6
- package/browser/aib.3.0.0-beta.2211-03.min.js.map +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Microsoft.ApplicationInsights, 3.0.0-beta.2211-
|
|
2
|
+
* Microsoft.ApplicationInsights, 3.0.0-beta.2211-04
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*
|
|
5
5
|
* Microsoft Application Insights Team
|
|
@@ -41,7 +41,7 @@ export declare class AppInsightsCore implements IAppInsightsCore {
|
|
|
41
41
|
getWParam: () => number;
|
|
42
42
|
constructor();
|
|
43
43
|
initialize(config: IConfiguration, extensions: IPlugin[], logger?: IDiagnosticLogger, notificationManager?: INotificationManager): void;
|
|
44
|
-
|
|
44
|
+
getChannels(): IChannelControls[];
|
|
45
45
|
track(telemetryItem: ITelemetryItem): void;
|
|
46
46
|
getProcessTelContext(): IProcessTelemetryContext;
|
|
47
47
|
getNotifyMgr(): INotificationManager;
|
|
@@ -471,7 +471,7 @@ export declare interface IAppInsightsCore extends IPerfManagerProvider {
|
|
|
471
471
|
*/
|
|
472
472
|
isInitialized?: () => boolean;
|
|
473
473
|
initialize(config: IConfiguration, extensions: IPlugin[], logger?: IDiagnosticLogger, notificationManager?: INotificationManager): void;
|
|
474
|
-
|
|
474
|
+
getChannels(): IChannelControls[];
|
|
475
475
|
track(telemetryItem: ITelemetryItem): void;
|
|
476
476
|
/**
|
|
477
477
|
* Get the current notification manager
|
|
@@ -738,11 +738,11 @@ declare interface IChannelControls extends ITelemetryPlugin {
|
|
|
738
738
|
/**
|
|
739
739
|
* Pause sending data
|
|
740
740
|
*/
|
|
741
|
-
pause(): void;
|
|
741
|
+
pause?(): void;
|
|
742
742
|
/**
|
|
743
743
|
* Resume sending data
|
|
744
744
|
*/
|
|
745
|
-
resume(): void;
|
|
745
|
+
resume?(): void;
|
|
746
746
|
/**
|
|
747
747
|
* Tear down the plugin and remove any hooked value, the plugin should be removed so that it is no longer initialized and
|
|
748
748
|
* therefore could be re-initialized after being torn down. The plugin should ensure that once this has been called any further
|
|
@@ -751,7 +751,7 @@ declare interface IChannelControls extends ITelemetryPlugin {
|
|
|
751
751
|
* @param unloadState - The details / state of the unload process, it holds details like whether it should be unloaded synchronously or asynchronously and the reason for the unload.
|
|
752
752
|
* @returns boolean - true if the plugin has or will call processNext(), this for backward compatibility as previously teardown was synchronous and returned nothing.
|
|
753
753
|
*/
|
|
754
|
-
teardown
|
|
754
|
+
teardown?: (unloadCtx?: IProcessTelemetryUnloadContext, unloadState?: ITelemetryUnloadState) => void | boolean;
|
|
755
755
|
/**
|
|
756
756
|
* Flush to send data immediately; channel should default to sending data asynchronously
|
|
757
757
|
* @param async - send data asynchronously when true
|
|
@@ -760,7 +760,7 @@ declare interface IChannelControls extends ITelemetryPlugin {
|
|
|
760
760
|
* @param sendReason - specify the reason that you are calling "flush" defaults to ManualFlush (1) if not specified
|
|
761
761
|
* @returns - true if the callback will be return after the flush is complete otherwise the caller should assume that any provided callback will never be called
|
|
762
762
|
*/
|
|
763
|
-
flush(async: boolean, callBack?: (flushComplete?: boolean) => void, sendReason?: SendRequestReason): boolean | void;
|
|
763
|
+
flush?(async: boolean, callBack?: (flushComplete?: boolean) => void, sendReason?: SendRequestReason): boolean | void;
|
|
764
764
|
}
|
|
765
765
|
|
|
766
766
|
declare interface IChannelControlsAI extends IChannelControls {
|
package/dist-esm/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/applicationinsights-web-basic",
|
|
3
|
-
"version": "3.0.0-beta.2211-
|
|
3
|
+
"version": "3.0.0-beta.2211-04",
|
|
4
4
|
"description": "Microsoft Application Insights Javascript SDK core and channel",
|
|
5
5
|
"homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme",
|
|
6
6
|
"author": "Microsoft Application Insights Team",
|
|
@@ -53,9 +53,9 @@
|
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@microsoft/dynamicproto-js": "^1.1.7",
|
|
55
55
|
"@microsoft/applicationinsights-shims": "2.0.2",
|
|
56
|
-
"@microsoft/applicationinsights-common": "3.0.0-beta.2211-
|
|
57
|
-
"@microsoft/applicationinsights-channel-js": "3.0.0-beta.2211-
|
|
58
|
-
"@microsoft/applicationinsights-core-js": "3.0.0-beta.2211-
|
|
56
|
+
"@microsoft/applicationinsights-common": "3.0.0-beta.2211-04",
|
|
57
|
+
"@microsoft/applicationinsights-channel-js": "3.0.0-beta.2211-04",
|
|
58
|
+
"@microsoft/applicationinsights-core-js": "3.0.0-beta.2211-04",
|
|
59
59
|
"@nevware21/ts-utils": "^0.5.0"
|
|
60
60
|
},
|
|
61
61
|
"license": "MIT",
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "aib",
|
|
3
|
-
"version": "3.0.0-beta.2211-03",
|
|
4
|
-
"ext": {
|
|
5
|
-
"@js": {
|
|
6
|
-
"file": "aib.3.0.0-beta.2211-03.js",
|
|
7
|
-
"type": "text/javascript; charset=utf-8",
|
|
8
|
-
"integrity": "sha256-RKZPQzoiQarNNDgxSpFKdBpRu4ppSgVJQhaib6bEdRM= sha384-nopCpukIXp1vskjq/jO339yXj5qgDjphe5pvGvDHhjsAD46Qug1I0db15R7BDthe sha512-XhjlwLuHOUf6uNnQgd4636SCw++fW35mFr87hEHKCmU9RRw8/sYxxdlw4dp39BiyBJ2rUFM9vNYWYiC10/smYw==",
|
|
9
|
-
"hashes": {
|
|
10
|
-
"sha256": "RKZPQzoiQarNNDgxSpFKdBpRu4ppSgVJQhaib6bEdRM=",
|
|
11
|
-
"sha384": "nopCpukIXp1vskjq/jO339yXj5qgDjphe5pvGvDHhjsAD46Qug1I0db15R7BDthe",
|
|
12
|
-
"sha512": "XhjlwLuHOUf6uNnQgd4636SCw++fW35mFr87hEHKCmU9RRw8/sYxxdlw4dp39BiyBJ2rUFM9vNYWYiC10/smYw=="
|
|
13
|
-
}
|
|
14
|
-
},
|
|
15
|
-
"@min.js": {
|
|
16
|
-
"file": "aib.3.0.0-beta.2211-03.min.js",
|
|
17
|
-
"type": "text/javascript; charset=utf-8",
|
|
18
|
-
"integrity": "sha256-zmKTeHSD04LXPjh8ea7tNzBebXLL3ckTz3nqhq1senU= sha384-gilJl0JC3Ttkgn7M88KrsNrPJXBv9WpTSIR4CtcL5EB/wRrZ9sCjBi3GLYzztTeE sha512-AzCKUFKb2aU10FxxE5+7LJhFwFixKzFPy+wcLunGHvQ5i13yCrb5XLGoths6zirJ7li8lUK1/fTW2YLScTzlDg==",
|
|
19
|
-
"hashes": {
|
|
20
|
-
"sha256": "zmKTeHSD04LXPjh8ea7tNzBebXLL3ckTz3nqhq1senU=",
|
|
21
|
-
"sha384": "gilJl0JC3Ttkgn7M88KrsNrPJXBv9WpTSIR4CtcL5EB/wRrZ9sCjBi3GLYzztTeE",
|
|
22
|
-
"sha512": "AzCKUFKb2aU10FxxE5+7LJhFwFixKzFPy+wcLunGHvQ5i13yCrb5XLGoths6zirJ7li8lUK1/fTW2YLScTzlDg=="
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
}
|