@microsoft/applicationinsights-core-js 2.8.0-beta.2203-09 → 2.8.0-beta.2203-12
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/applicationinsights-core-js.integrity.json +9 -9
- package/browser/applicationinsights-core-js.js +47 -14
- package/browser/applicationinsights-core-js.js.map +1 -1
- package/browser/applicationinsights-core-js.min.js +2 -2
- package/browser/applicationinsights-core-js.min.js.map +1 -1
- package/dist/applicationinsights-core-js.api.json +493 -58
- package/dist/applicationinsights-core-js.api.md +42 -23
- package/dist/applicationinsights-core-js.d.ts +47 -22
- package/dist/applicationinsights-core-js.js +47 -14
- package/dist/applicationinsights-core-js.js.map +1 -1
- package/dist/applicationinsights-core-js.min.js +2 -2
- package/dist/applicationinsights-core-js.min.js.map +1 -1
- package/dist/applicationinsights-core-js.rollup.d.ts +48 -23
- package/dist-esm/JavaScriptSDK/AppInsightsCore.js +1 -1
- package/dist-esm/JavaScriptSDK/BaseCore.js +11 -9
- package/dist-esm/JavaScriptSDK/BaseCore.js.map +1 -1
- package/dist-esm/JavaScriptSDK/BaseTelemetryPlugin.js +1 -1
- package/dist-esm/JavaScriptSDK/ChannelController.js +4 -2
- package/dist-esm/JavaScriptSDK/ChannelController.js.map +1 -1
- package/dist-esm/JavaScriptSDK/Constants.js +1 -1
- package/dist-esm/JavaScriptSDK/CookieMgr.js +1 -1
- package/dist-esm/JavaScriptSDK/CoreUtils.js +1 -1
- package/dist-esm/JavaScriptSDK/DataCacheHelper.js +2 -2
- package/dist-esm/JavaScriptSDK/DataCacheHelper.js.map +1 -1
- package/dist-esm/JavaScriptSDK/DbgExtensionUtils.js +1 -1
- package/dist-esm/JavaScriptSDK/DiagnosticLogger.js +1 -1
- package/dist-esm/JavaScriptSDK/EnvUtils.js +1 -1
- package/dist-esm/JavaScriptSDK/EventHelpers.js +2 -6
- package/dist-esm/JavaScriptSDK/EventHelpers.js.map +1 -1
- package/dist-esm/JavaScriptSDK/HelperFuncs.js +7 -7
- package/dist-esm/JavaScriptSDK/HelperFuncs.js.map +1 -1
- package/dist-esm/JavaScriptSDK/InstrumentHooks.js +1 -1
- package/dist-esm/JavaScriptSDK/InternalConstants.js +1 -1
- package/dist-esm/JavaScriptSDK/NotificationManager.js +1 -1
- package/dist-esm/JavaScriptSDK/PerfManager.js +1 -1
- package/dist-esm/JavaScriptSDK/ProcessTelemetryContext.js +4 -2
- package/dist-esm/JavaScriptSDK/ProcessTelemetryContext.js.map +1 -1
- package/dist-esm/JavaScriptSDK/RandomHelper.js +1 -1
- package/dist-esm/JavaScriptSDK/TelemetryHelpers.js +29 -2
- package/dist-esm/JavaScriptSDK/TelemetryHelpers.js.map +1 -1
- package/dist-esm/JavaScriptSDK/TelemetryInitializerPlugin.js +1 -1
- package/dist-esm/JavaScriptSDK/UnloadHandlerContainer.js +1 -1
- package/dist-esm/JavaScriptSDK.Enums/EventsDiscardedReason.js +1 -1
- package/dist-esm/JavaScriptSDK.Enums/LoggingEnums.js +1 -1
- package/dist-esm/JavaScriptSDK.Enums/SendRequestReason.js +1 -1
- package/dist-esm/JavaScriptSDK.Enums/TelemetryUnloadReason.js +1 -1
- package/dist-esm/JavaScriptSDK.Enums/TelemetryUpdateReason.js +1 -1
- package/dist-esm/JavaScriptSDK.Interfaces/IAppInsightsCore.js +1 -1
- package/dist-esm/JavaScriptSDK.Interfaces/IChannelControls.js +1 -1
- package/dist-esm/JavaScriptSDK.Interfaces/IConfiguration.js +1 -1
- package/dist-esm/JavaScriptSDK.Interfaces/ICookieMgr.js +1 -1
- package/dist-esm/JavaScriptSDK.Interfaces/IDbgExtension.js +1 -1
- package/dist-esm/JavaScriptSDK.Interfaces/IDiagnosticLogger.js +1 -1
- package/dist-esm/JavaScriptSDK.Interfaces/IInstrumentHooks.js +1 -1
- package/dist-esm/JavaScriptSDK.Interfaces/INotificationListener.js +1 -1
- package/dist-esm/JavaScriptSDK.Interfaces/INotificationManager.js +1 -1
- package/dist-esm/JavaScriptSDK.Interfaces/IPerfEvent.js +1 -1
- package/dist-esm/JavaScriptSDK.Interfaces/IPerfManager.js +1 -1
- package/dist-esm/JavaScriptSDK.Interfaces/IProcessTelemetryContext.js +1 -1
- package/dist-esm/JavaScriptSDK.Interfaces/ITelemetryInitializers.js +1 -1
- package/dist-esm/JavaScriptSDK.Interfaces/ITelemetryItem.js +1 -1
- package/dist-esm/JavaScriptSDK.Interfaces/ITelemetryPlugin.js +1 -1
- package/dist-esm/JavaScriptSDK.Interfaces/ITelemetryPluginChain.js +1 -1
- package/dist-esm/JavaScriptSDK.Interfaces/ITelemetryUnloadState.js +1 -1
- package/dist-esm/JavaScriptSDK.Interfaces/ITelemetryUpdateState.js +1 -1
- package/dist-esm/JavaScriptSDK.Interfaces/IUnloadableComponent.js +6 -0
- package/dist-esm/JavaScriptSDK.Interfaces/IUnloadableComponent.js.map +1 -0
- package/dist-esm/applicationinsights-core-js.js +3 -3
- package/dist-esm/applicationinsights-core-js.js.map +1 -1
- package/package.json +2 -2
- package/src/JavaScriptSDK/BaseCore.ts +27 -25
- package/src/JavaScriptSDK/BaseTelemetryPlugin.ts +1 -1
- package/src/JavaScriptSDK/ChannelController.ts +4 -2
- package/src/JavaScriptSDK/CoreUtils.ts +1 -1
- package/src/JavaScriptSDK/DataCacheHelper.ts +1 -1
- package/src/JavaScriptSDK/DiagnosticLogger.ts +1 -1
- package/src/JavaScriptSDK/EnvUtils.ts +1 -1
- package/src/JavaScriptSDK/EventHelpers.ts +14 -18
- package/src/JavaScriptSDK/HelperFuncs.ts +30 -30
- package/src/JavaScriptSDK/InstrumentHooks.ts +1 -1
- package/src/JavaScriptSDK/PerfManager.ts +3 -6
- package/src/JavaScriptSDK/ProcessTelemetryContext.ts +16 -14
- package/src/JavaScriptSDK/RandomHelper.ts +1 -1
- package/src/JavaScriptSDK/TelemetryHelpers.ts +34 -2
- package/src/JavaScriptSDK.Enums/TelemetryUnloadReason.ts +1 -1
- package/src/JavaScriptSDK.Enums/TelemetryUpdateReason.ts +1 -1
- package/src/JavaScriptSDK.Interfaces/IProcessTelemetryContext.ts +1 -1
- package/src/JavaScriptSDK.Interfaces/ITelemetryUpdateState.ts +1 -1
- package/src/JavaScriptSDK.Interfaces/IUnloadableComponent.ts +17 -0
- package/types/JavaScriptSDK/EventHelpers.d.ts +10 -10
- package/types/JavaScriptSDK/HelperFuncs.d.ts +10 -10
- package/types/JavaScriptSDK/PerfManager.d.ts +1 -1
- package/types/JavaScriptSDK/ProcessTelemetryContext.d.ts +2 -2
- package/types/JavaScriptSDK/TelemetryHelpers.d.ts +13 -1
- package/types/JavaScriptSDK.Interfaces/IProcessTelemetryContext.d.ts +1 -1
- package/types/JavaScriptSDK.Interfaces/IUnloadableComponent.d.ts +13 -0
- package/types/applicationinsights-core-js.d.ts +4 -3
- package/types/tsdoc-metadata.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"metadata": {
|
|
3
3
|
"toolPackage": "@microsoft/api-extractor",
|
|
4
|
-
"toolVersion": "7.19.
|
|
4
|
+
"toolVersion": "7.19.5",
|
|
5
5
|
"schemaVersion": 1004,
|
|
6
6
|
"oldestForwardsCompatibleVersion": 1001,
|
|
7
7
|
"tsdocConfig": {
|
|
@@ -2488,7 +2488,7 @@
|
|
|
2488
2488
|
},
|
|
2489
2489
|
{
|
|
2490
2490
|
"kind": "Content",
|
|
2491
|
-
"text": "string | string[]"
|
|
2491
|
+
"text": "string | string[] | null"
|
|
2492
2492
|
},
|
|
2493
2493
|
{
|
|
2494
2494
|
"kind": "Content",
|
|
@@ -2637,11 +2637,11 @@
|
|
|
2637
2637
|
},
|
|
2638
2638
|
{
|
|
2639
2639
|
"kind": "Content",
|
|
2640
|
-
"text": ", excludeEvents
|
|
2640
|
+
"text": ", excludeEvents?: "
|
|
2641
2641
|
},
|
|
2642
2642
|
{
|
|
2643
2643
|
"kind": "Content",
|
|
2644
|
-
"text": "string[]"
|
|
2644
|
+
"text": "string[] | null"
|
|
2645
2645
|
},
|
|
2646
2646
|
{
|
|
2647
2647
|
"kind": "Content",
|
|
@@ -2649,7 +2649,7 @@
|
|
|
2649
2649
|
},
|
|
2650
2650
|
{
|
|
2651
2651
|
"kind": "Content",
|
|
2652
|
-
"text": "string | string[]"
|
|
2652
|
+
"text": "string | string[] | null"
|
|
2653
2653
|
},
|
|
2654
2654
|
{
|
|
2655
2655
|
"kind": "Content",
|
|
@@ -2710,11 +2710,11 @@
|
|
|
2710
2710
|
},
|
|
2711
2711
|
{
|
|
2712
2712
|
"kind": "Content",
|
|
2713
|
-
"text": ", excludeEvents
|
|
2713
|
+
"text": ", excludeEvents?: "
|
|
2714
2714
|
},
|
|
2715
2715
|
{
|
|
2716
2716
|
"kind": "Content",
|
|
2717
|
-
"text": "string[]"
|
|
2717
|
+
"text": "string[] | null"
|
|
2718
2718
|
},
|
|
2719
2719
|
{
|
|
2720
2720
|
"kind": "Content",
|
|
@@ -2722,7 +2722,7 @@
|
|
|
2722
2722
|
},
|
|
2723
2723
|
{
|
|
2724
2724
|
"kind": "Content",
|
|
2725
|
-
"text": "string | string[]"
|
|
2725
|
+
"text": "string | string[] | null"
|
|
2726
2726
|
},
|
|
2727
2727
|
{
|
|
2728
2728
|
"kind": "Content",
|
|
@@ -2783,7 +2783,7 @@
|
|
|
2783
2783
|
},
|
|
2784
2784
|
{
|
|
2785
2785
|
"kind": "Content",
|
|
2786
|
-
"text": ", excludeEvents
|
|
2786
|
+
"text": ", excludeEvents?: "
|
|
2787
2787
|
},
|
|
2788
2788
|
{
|
|
2789
2789
|
"kind": "Content",
|
|
@@ -3117,7 +3117,7 @@
|
|
|
3117
3117
|
},
|
|
3118
3118
|
{
|
|
3119
3119
|
"kind": "Content",
|
|
3120
|
-
"text": "(value: T, index?: number, array?: T[]) => void | number"
|
|
3120
|
+
"text": "(value: T, index?: number, array?: T[]) => undefined | void | number"
|
|
3121
3121
|
},
|
|
3122
3122
|
{
|
|
3123
3123
|
"kind": "Content",
|
|
@@ -6022,6 +6022,10 @@
|
|
|
6022
6022
|
"text": "ITelemetryPluginChain",
|
|
6023
6023
|
"canonicalReference": "@microsoft/applicationinsights-core-js!ITelemetryPluginChain:interface"
|
|
6024
6024
|
},
|
|
6025
|
+
{
|
|
6026
|
+
"kind": "Content",
|
|
6027
|
+
"text": " | null"
|
|
6028
|
+
},
|
|
6025
6029
|
{
|
|
6026
6030
|
"kind": "Content",
|
|
6027
6031
|
"text": ", config: "
|
|
@@ -6064,8 +6068,8 @@
|
|
|
6064
6068
|
}
|
|
6065
6069
|
],
|
|
6066
6070
|
"returnTypeTokenRange": {
|
|
6067
|
-
"startIndex":
|
|
6068
|
-
"endIndex":
|
|
6071
|
+
"startIndex": 10,
|
|
6072
|
+
"endIndex": 11
|
|
6069
6073
|
},
|
|
6070
6074
|
"releaseTag": "Public",
|
|
6071
6075
|
"overloadIndex": 1,
|
|
@@ -6074,28 +6078,28 @@
|
|
|
6074
6078
|
"parameterName": "telemetryChain",
|
|
6075
6079
|
"parameterTypeTokenRange": {
|
|
6076
6080
|
"startIndex": 1,
|
|
6077
|
-
"endIndex":
|
|
6081
|
+
"endIndex": 3
|
|
6078
6082
|
}
|
|
6079
6083
|
},
|
|
6080
6084
|
{
|
|
6081
6085
|
"parameterName": "config",
|
|
6082
6086
|
"parameterTypeTokenRange": {
|
|
6083
|
-
"startIndex":
|
|
6084
|
-
"endIndex":
|
|
6087
|
+
"startIndex": 4,
|
|
6088
|
+
"endIndex": 5
|
|
6085
6089
|
}
|
|
6086
6090
|
},
|
|
6087
6091
|
{
|
|
6088
6092
|
"parameterName": "core",
|
|
6089
6093
|
"parameterTypeTokenRange": {
|
|
6090
|
-
"startIndex":
|
|
6091
|
-
"endIndex":
|
|
6094
|
+
"startIndex": 6,
|
|
6095
|
+
"endIndex": 7
|
|
6092
6096
|
}
|
|
6093
6097
|
},
|
|
6094
6098
|
{
|
|
6095
6099
|
"parameterName": "startAt",
|
|
6096
6100
|
"parameterTypeTokenRange": {
|
|
6097
|
-
"startIndex":
|
|
6098
|
-
"endIndex":
|
|
6101
|
+
"startIndex": 8,
|
|
6102
|
+
"endIndex": 9
|
|
6099
6103
|
}
|
|
6100
6104
|
}
|
|
6101
6105
|
],
|
|
@@ -7231,7 +7235,7 @@
|
|
|
7231
7235
|
},
|
|
7232
7236
|
{
|
|
7233
7237
|
"kind": "Content",
|
|
7234
|
-
"text": "string | string[]"
|
|
7238
|
+
"text": "string | string[] | null"
|
|
7235
7239
|
},
|
|
7236
7240
|
{
|
|
7237
7241
|
"kind": "Content",
|
|
@@ -7347,7 +7351,7 @@
|
|
|
7347
7351
|
},
|
|
7348
7352
|
{
|
|
7349
7353
|
"kind": "Content",
|
|
7350
|
-
"text": "string | string[]"
|
|
7354
|
+
"text": "string | string[] | null"
|
|
7351
7355
|
},
|
|
7352
7356
|
{
|
|
7353
7357
|
"kind": "Content",
|
|
@@ -9959,16 +9963,7 @@
|
|
|
9959
9963
|
},
|
|
9960
9964
|
{
|
|
9961
9965
|
"kind": "Content",
|
|
9962
|
-
"text": "(onComplete: "
|
|
9963
|
-
},
|
|
9964
|
-
{
|
|
9965
|
-
"kind": "Reference",
|
|
9966
|
-
"text": "Function",
|
|
9967
|
-
"canonicalReference": "!Function:interface"
|
|
9968
|
-
},
|
|
9969
|
-
{
|
|
9970
|
-
"kind": "Content",
|
|
9971
|
-
"text": ", that?: any, ...args: any[]) => void"
|
|
9966
|
+
"text": "(onComplete: () => void, that?: any, ...args: any[]) => void"
|
|
9972
9967
|
},
|
|
9973
9968
|
{
|
|
9974
9969
|
"kind": "Content",
|
|
@@ -9980,7 +9975,7 @@
|
|
|
9980
9975
|
"name": "onComplete",
|
|
9981
9976
|
"propertyTypeTokenRange": {
|
|
9982
9977
|
"startIndex": 1,
|
|
9983
|
-
"endIndex":
|
|
9978
|
+
"endIndex": 2
|
|
9984
9979
|
}
|
|
9985
9980
|
},
|
|
9986
9981
|
{
|
|
@@ -13760,6 +13755,148 @@
|
|
|
13760
13755
|
],
|
|
13761
13756
|
"extendsTokenRanges": []
|
|
13762
13757
|
},
|
|
13758
|
+
{
|
|
13759
|
+
"kind": "Interface",
|
|
13760
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!ILoadedPlugin:interface",
|
|
13761
|
+
"docComment": "",
|
|
13762
|
+
"excerptTokens": [
|
|
13763
|
+
{
|
|
13764
|
+
"kind": "Content",
|
|
13765
|
+
"text": "export interface ILoadedPlugin<T extends "
|
|
13766
|
+
},
|
|
13767
|
+
{
|
|
13768
|
+
"kind": "Reference",
|
|
13769
|
+
"text": "IPlugin",
|
|
13770
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!IPlugin:interface"
|
|
13771
|
+
},
|
|
13772
|
+
{
|
|
13773
|
+
"kind": "Content",
|
|
13774
|
+
"text": "> "
|
|
13775
|
+
}
|
|
13776
|
+
],
|
|
13777
|
+
"releaseTag": "Public",
|
|
13778
|
+
"typeParameters": [
|
|
13779
|
+
{
|
|
13780
|
+
"typeParameterName": "T",
|
|
13781
|
+
"constraintTokenRange": {
|
|
13782
|
+
"startIndex": 1,
|
|
13783
|
+
"endIndex": 2
|
|
13784
|
+
},
|
|
13785
|
+
"defaultTypeTokenRange": {
|
|
13786
|
+
"startIndex": 0,
|
|
13787
|
+
"endIndex": 0
|
|
13788
|
+
}
|
|
13789
|
+
}
|
|
13790
|
+
],
|
|
13791
|
+
"name": "ILoadedPlugin",
|
|
13792
|
+
"members": [
|
|
13793
|
+
{
|
|
13794
|
+
"kind": "PropertySignature",
|
|
13795
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!ILoadedPlugin#isEnabled:member",
|
|
13796
|
+
"docComment": "/**\n * Identifies whether the plugin is enabled and can process events. This is slightly different from isInitialized as the plugin may be initialized but disabled via the setEnabled() or it may be a shared plugin which has had it's teardown function called from another instance..\n *\n * @returns boolean = true if the plugin is in a state where it is operational.\n */\n",
|
|
13797
|
+
"excerptTokens": [
|
|
13798
|
+
{
|
|
13799
|
+
"kind": "Content",
|
|
13800
|
+
"text": "isEnabled: "
|
|
13801
|
+
},
|
|
13802
|
+
{
|
|
13803
|
+
"kind": "Content",
|
|
13804
|
+
"text": "() => boolean"
|
|
13805
|
+
},
|
|
13806
|
+
{
|
|
13807
|
+
"kind": "Content",
|
|
13808
|
+
"text": ";"
|
|
13809
|
+
}
|
|
13810
|
+
],
|
|
13811
|
+
"isOptional": false,
|
|
13812
|
+
"releaseTag": "Public",
|
|
13813
|
+
"name": "isEnabled",
|
|
13814
|
+
"propertyTypeTokenRange": {
|
|
13815
|
+
"startIndex": 1,
|
|
13816
|
+
"endIndex": 2
|
|
13817
|
+
}
|
|
13818
|
+
},
|
|
13819
|
+
{
|
|
13820
|
+
"kind": "PropertySignature",
|
|
13821
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!ILoadedPlugin#plugin:member",
|
|
13822
|
+
"docComment": "",
|
|
13823
|
+
"excerptTokens": [
|
|
13824
|
+
{
|
|
13825
|
+
"kind": "Content",
|
|
13826
|
+
"text": "plugin: "
|
|
13827
|
+
},
|
|
13828
|
+
{
|
|
13829
|
+
"kind": "Content",
|
|
13830
|
+
"text": "T"
|
|
13831
|
+
},
|
|
13832
|
+
{
|
|
13833
|
+
"kind": "Content",
|
|
13834
|
+
"text": ";"
|
|
13835
|
+
}
|
|
13836
|
+
],
|
|
13837
|
+
"isOptional": false,
|
|
13838
|
+
"releaseTag": "Public",
|
|
13839
|
+
"name": "plugin",
|
|
13840
|
+
"propertyTypeTokenRange": {
|
|
13841
|
+
"startIndex": 1,
|
|
13842
|
+
"endIndex": 2
|
|
13843
|
+
}
|
|
13844
|
+
},
|
|
13845
|
+
{
|
|
13846
|
+
"kind": "PropertySignature",
|
|
13847
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!ILoadedPlugin#remove:member",
|
|
13848
|
+
"docComment": "",
|
|
13849
|
+
"excerptTokens": [
|
|
13850
|
+
{
|
|
13851
|
+
"kind": "Content",
|
|
13852
|
+
"text": "remove: "
|
|
13853
|
+
},
|
|
13854
|
+
{
|
|
13855
|
+
"kind": "Content",
|
|
13856
|
+
"text": "(isAsync?: boolean, removeCb?: (removed?: boolean) => void) => void"
|
|
13857
|
+
},
|
|
13858
|
+
{
|
|
13859
|
+
"kind": "Content",
|
|
13860
|
+
"text": ";"
|
|
13861
|
+
}
|
|
13862
|
+
],
|
|
13863
|
+
"isOptional": false,
|
|
13864
|
+
"releaseTag": "Public",
|
|
13865
|
+
"name": "remove",
|
|
13866
|
+
"propertyTypeTokenRange": {
|
|
13867
|
+
"startIndex": 1,
|
|
13868
|
+
"endIndex": 2
|
|
13869
|
+
}
|
|
13870
|
+
},
|
|
13871
|
+
{
|
|
13872
|
+
"kind": "PropertySignature",
|
|
13873
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!ILoadedPlugin#setEnabled:member",
|
|
13874
|
+
"docComment": "/**\n * You can optionally enable / disable a plugin from processing events. Setting enabled to true will not necessarily cause the `isEnabled()` to also return true as the plugin must also have been successfully initialized and not had it's `teardown` method called (unless it's also been re-initialized)\n */\n",
|
|
13875
|
+
"excerptTokens": [
|
|
13876
|
+
{
|
|
13877
|
+
"kind": "Content",
|
|
13878
|
+
"text": "setEnabled: "
|
|
13879
|
+
},
|
|
13880
|
+
{
|
|
13881
|
+
"kind": "Content",
|
|
13882
|
+
"text": "(isEnabled: boolean) => void"
|
|
13883
|
+
},
|
|
13884
|
+
{
|
|
13885
|
+
"kind": "Content",
|
|
13886
|
+
"text": ";"
|
|
13887
|
+
}
|
|
13888
|
+
],
|
|
13889
|
+
"isOptional": false,
|
|
13890
|
+
"releaseTag": "Public",
|
|
13891
|
+
"name": "setEnabled",
|
|
13892
|
+
"propertyTypeTokenRange": {
|
|
13893
|
+
"startIndex": 1,
|
|
13894
|
+
"endIndex": 2
|
|
13895
|
+
}
|
|
13896
|
+
}
|
|
13897
|
+
],
|
|
13898
|
+
"extendsTokenRanges": []
|
|
13899
|
+
},
|
|
13763
13900
|
{
|
|
13764
13901
|
"kind": "Function",
|
|
13765
13902
|
"canonicalReference": "@microsoft/applicationinsights-core-js!initializePlugins:function(1)",
|
|
@@ -16283,19 +16420,24 @@
|
|
|
16283
16420
|
"excerptTokens": [
|
|
16284
16421
|
{
|
|
16285
16422
|
"kind": "Content",
|
|
16286
|
-
"text": "export declare function isNotNullOrUndefined(value: "
|
|
16423
|
+
"text": "export declare function isNotNullOrUndefined<T>(value: "
|
|
16287
16424
|
},
|
|
16288
16425
|
{
|
|
16289
16426
|
"kind": "Content",
|
|
16290
|
-
"text": "
|
|
16427
|
+
"text": "T"
|
|
16291
16428
|
},
|
|
16292
16429
|
{
|
|
16293
16430
|
"kind": "Content",
|
|
16294
16431
|
"text": "): "
|
|
16295
16432
|
},
|
|
16433
|
+
{
|
|
16434
|
+
"kind": "Reference",
|
|
16435
|
+
"text": "value",
|
|
16436
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!~value"
|
|
16437
|
+
},
|
|
16296
16438
|
{
|
|
16297
16439
|
"kind": "Content",
|
|
16298
|
-
"text": "
|
|
16440
|
+
"text": " is T"
|
|
16299
16441
|
},
|
|
16300
16442
|
{
|
|
16301
16443
|
"kind": "Content",
|
|
@@ -16304,7 +16446,7 @@
|
|
|
16304
16446
|
],
|
|
16305
16447
|
"returnTypeTokenRange": {
|
|
16306
16448
|
"startIndex": 3,
|
|
16307
|
-
"endIndex":
|
|
16449
|
+
"endIndex": 5
|
|
16308
16450
|
},
|
|
16309
16451
|
"releaseTag": "Public",
|
|
16310
16452
|
"overloadIndex": 1,
|
|
@@ -16317,6 +16459,19 @@
|
|
|
16317
16459
|
}
|
|
16318
16460
|
}
|
|
16319
16461
|
],
|
|
16462
|
+
"typeParameters": [
|
|
16463
|
+
{
|
|
16464
|
+
"typeParameterName": "T",
|
|
16465
|
+
"constraintTokenRange": {
|
|
16466
|
+
"startIndex": 0,
|
|
16467
|
+
"endIndex": 0
|
|
16468
|
+
},
|
|
16469
|
+
"defaultTypeTokenRange": {
|
|
16470
|
+
"startIndex": 0,
|
|
16471
|
+
"endIndex": 0
|
|
16472
|
+
}
|
|
16473
|
+
}
|
|
16474
|
+
],
|
|
16320
16475
|
"name": "isNotNullOrUndefined"
|
|
16321
16476
|
},
|
|
16322
16477
|
{
|
|
@@ -16369,19 +16524,24 @@
|
|
|
16369
16524
|
"excerptTokens": [
|
|
16370
16525
|
{
|
|
16371
16526
|
"kind": "Content",
|
|
16372
|
-
"text": "export declare function isNotUndefined(value: "
|
|
16527
|
+
"text": "export declare function isNotUndefined<T>(value: "
|
|
16373
16528
|
},
|
|
16374
16529
|
{
|
|
16375
16530
|
"kind": "Content",
|
|
16376
|
-
"text": "
|
|
16531
|
+
"text": "T"
|
|
16377
16532
|
},
|
|
16378
16533
|
{
|
|
16379
16534
|
"kind": "Content",
|
|
16380
16535
|
"text": "): "
|
|
16381
16536
|
},
|
|
16537
|
+
{
|
|
16538
|
+
"kind": "Reference",
|
|
16539
|
+
"text": "value",
|
|
16540
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!~value"
|
|
16541
|
+
},
|
|
16382
16542
|
{
|
|
16383
16543
|
"kind": "Content",
|
|
16384
|
-
"text": "
|
|
16544
|
+
"text": " is T"
|
|
16385
16545
|
},
|
|
16386
16546
|
{
|
|
16387
16547
|
"kind": "Content",
|
|
@@ -16390,7 +16550,7 @@
|
|
|
16390
16550
|
],
|
|
16391
16551
|
"returnTypeTokenRange": {
|
|
16392
16552
|
"startIndex": 3,
|
|
16393
|
-
"endIndex":
|
|
16553
|
+
"endIndex": 5
|
|
16394
16554
|
},
|
|
16395
16555
|
"releaseTag": "Public",
|
|
16396
16556
|
"overloadIndex": 1,
|
|
@@ -16403,6 +16563,19 @@
|
|
|
16403
16563
|
}
|
|
16404
16564
|
}
|
|
16405
16565
|
],
|
|
16566
|
+
"typeParameters": [
|
|
16567
|
+
{
|
|
16568
|
+
"typeParameterName": "T",
|
|
16569
|
+
"constraintTokenRange": {
|
|
16570
|
+
"startIndex": 0,
|
|
16571
|
+
"endIndex": 0
|
|
16572
|
+
},
|
|
16573
|
+
"defaultTypeTokenRange": {
|
|
16574
|
+
"startIndex": 0,
|
|
16575
|
+
"endIndex": 0
|
|
16576
|
+
}
|
|
16577
|
+
}
|
|
16578
|
+
],
|
|
16406
16579
|
"name": "isNotUndefined"
|
|
16407
16580
|
},
|
|
16408
16581
|
{
|
|
@@ -16422,9 +16595,14 @@
|
|
|
16422
16595
|
"kind": "Content",
|
|
16423
16596
|
"text": "): "
|
|
16424
16597
|
},
|
|
16598
|
+
{
|
|
16599
|
+
"kind": "Reference",
|
|
16600
|
+
"text": "value",
|
|
16601
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!~value"
|
|
16602
|
+
},
|
|
16425
16603
|
{
|
|
16426
16604
|
"kind": "Content",
|
|
16427
|
-
"text": "
|
|
16605
|
+
"text": " is null | undefined"
|
|
16428
16606
|
},
|
|
16429
16607
|
{
|
|
16430
16608
|
"kind": "Content",
|
|
@@ -16433,7 +16611,7 @@
|
|
|
16433
16611
|
],
|
|
16434
16612
|
"returnTypeTokenRange": {
|
|
16435
16613
|
"startIndex": 3,
|
|
16436
|
-
"endIndex":
|
|
16614
|
+
"endIndex": 5
|
|
16437
16615
|
},
|
|
16438
16616
|
"releaseTag": "Public",
|
|
16439
16617
|
"overloadIndex": 1,
|
|
@@ -16503,19 +16681,24 @@
|
|
|
16503
16681
|
"excerptTokens": [
|
|
16504
16682
|
{
|
|
16505
16683
|
"kind": "Content",
|
|
16506
|
-
"text": "export declare function isObject(value: "
|
|
16684
|
+
"text": "export declare function isObject<T>(value: "
|
|
16507
16685
|
},
|
|
16508
16686
|
{
|
|
16509
16687
|
"kind": "Content",
|
|
16510
|
-
"text": "
|
|
16688
|
+
"text": "T"
|
|
16511
16689
|
},
|
|
16512
16690
|
{
|
|
16513
16691
|
"kind": "Content",
|
|
16514
16692
|
"text": "): "
|
|
16515
16693
|
},
|
|
16694
|
+
{
|
|
16695
|
+
"kind": "Reference",
|
|
16696
|
+
"text": "value",
|
|
16697
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!~value"
|
|
16698
|
+
},
|
|
16516
16699
|
{
|
|
16517
16700
|
"kind": "Content",
|
|
16518
|
-
"text": "
|
|
16701
|
+
"text": " is T"
|
|
16519
16702
|
},
|
|
16520
16703
|
{
|
|
16521
16704
|
"kind": "Content",
|
|
@@ -16524,7 +16707,7 @@
|
|
|
16524
16707
|
],
|
|
16525
16708
|
"returnTypeTokenRange": {
|
|
16526
16709
|
"startIndex": 3,
|
|
16527
|
-
"endIndex":
|
|
16710
|
+
"endIndex": 5
|
|
16528
16711
|
},
|
|
16529
16712
|
"releaseTag": "Public",
|
|
16530
16713
|
"overloadIndex": 1,
|
|
@@ -16537,6 +16720,19 @@
|
|
|
16537
16720
|
}
|
|
16538
16721
|
}
|
|
16539
16722
|
],
|
|
16723
|
+
"typeParameters": [
|
|
16724
|
+
{
|
|
16725
|
+
"typeParameterName": "T",
|
|
16726
|
+
"constraintTokenRange": {
|
|
16727
|
+
"startIndex": 0,
|
|
16728
|
+
"endIndex": 0
|
|
16729
|
+
},
|
|
16730
|
+
"defaultTypeTokenRange": {
|
|
16731
|
+
"startIndex": 0,
|
|
16732
|
+
"endIndex": 0
|
|
16733
|
+
}
|
|
16734
|
+
}
|
|
16735
|
+
],
|
|
16540
16736
|
"name": "isObject"
|
|
16541
16737
|
},
|
|
16542
16738
|
{
|
|
@@ -16818,9 +17014,14 @@
|
|
|
16818
17014
|
"kind": "Content",
|
|
16819
17015
|
"text": "): "
|
|
16820
17016
|
},
|
|
17017
|
+
{
|
|
17018
|
+
"kind": "Reference",
|
|
17019
|
+
"text": "value",
|
|
17020
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!~value"
|
|
17021
|
+
},
|
|
16821
17022
|
{
|
|
16822
17023
|
"kind": "Content",
|
|
16823
|
-
"text": "
|
|
17024
|
+
"text": " is undefined"
|
|
16824
17025
|
},
|
|
16825
17026
|
{
|
|
16826
17027
|
"kind": "Content",
|
|
@@ -16829,7 +17030,7 @@
|
|
|
16829
17030
|
],
|
|
16830
17031
|
"returnTypeTokenRange": {
|
|
16831
17032
|
"startIndex": 3,
|
|
16832
|
-
"endIndex":
|
|
17033
|
+
"endIndex": 5
|
|
16833
17034
|
},
|
|
16834
17035
|
"releaseTag": "Public",
|
|
16835
17036
|
"overloadIndex": 1,
|
|
@@ -17695,6 +17896,66 @@
|
|
|
17695
17896
|
],
|
|
17696
17897
|
"extendsTokenRanges": []
|
|
17697
17898
|
},
|
|
17899
|
+
{
|
|
17900
|
+
"kind": "Interface",
|
|
17901
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!IUnloadableComponent:interface",
|
|
17902
|
+
"docComment": "",
|
|
17903
|
+
"excerptTokens": [
|
|
17904
|
+
{
|
|
17905
|
+
"kind": "Content",
|
|
17906
|
+
"text": "export interface IUnloadableComponent "
|
|
17907
|
+
}
|
|
17908
|
+
],
|
|
17909
|
+
"releaseTag": "Public",
|
|
17910
|
+
"name": "IUnloadableComponent",
|
|
17911
|
+
"members": [
|
|
17912
|
+
{
|
|
17913
|
+
"kind": "PropertySignature",
|
|
17914
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!IUnloadableComponent#_doUnload:member",
|
|
17915
|
+
"docComment": "/**\n * Teardown / Unload hook to allow implementations to perform some additional unload operations before the BaseTelemetryPlugin finishes it's removal.\n *\n * @param unloadCtx - This is the context that should be used during unloading.\n *\n * @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.\n *\n * @param asyncCallback - An optional callback that the plugin must call if it returns true to inform the caller that it has completed any async unload/teardown operations.\n *\n * @returns boolean - true if the plugin has or will call asyncCallback, this allows the plugin to perform any asynchronous operations.\n */\n",
|
|
17916
|
+
"excerptTokens": [
|
|
17917
|
+
{
|
|
17918
|
+
"kind": "Content",
|
|
17919
|
+
"text": "_doUnload?: "
|
|
17920
|
+
},
|
|
17921
|
+
{
|
|
17922
|
+
"kind": "Content",
|
|
17923
|
+
"text": "(unloadCtx?: "
|
|
17924
|
+
},
|
|
17925
|
+
{
|
|
17926
|
+
"kind": "Reference",
|
|
17927
|
+
"text": "IProcessTelemetryUnloadContext",
|
|
17928
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!IProcessTelemetryUnloadContext:interface"
|
|
17929
|
+
},
|
|
17930
|
+
{
|
|
17931
|
+
"kind": "Content",
|
|
17932
|
+
"text": ", unloadState?: "
|
|
17933
|
+
},
|
|
17934
|
+
{
|
|
17935
|
+
"kind": "Reference",
|
|
17936
|
+
"text": "ITelemetryUnloadState",
|
|
17937
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!ITelemetryUnloadState:interface"
|
|
17938
|
+
},
|
|
17939
|
+
{
|
|
17940
|
+
"kind": "Content",
|
|
17941
|
+
"text": ", asyncCallback?: () => void) => void | boolean"
|
|
17942
|
+
},
|
|
17943
|
+
{
|
|
17944
|
+
"kind": "Content",
|
|
17945
|
+
"text": ";"
|
|
17946
|
+
}
|
|
17947
|
+
],
|
|
17948
|
+
"isOptional": true,
|
|
17949
|
+
"releaseTag": "Public",
|
|
17950
|
+
"name": "_doUnload",
|
|
17951
|
+
"propertyTypeTokenRange": {
|
|
17952
|
+
"startIndex": 1,
|
|
17953
|
+
"endIndex": 6
|
|
17954
|
+
}
|
|
17955
|
+
}
|
|
17956
|
+
],
|
|
17957
|
+
"extendsTokenRanges": []
|
|
17958
|
+
},
|
|
17698
17959
|
{
|
|
17699
17960
|
"kind": "Interface",
|
|
17700
17961
|
"canonicalReference": "@microsoft/applicationinsights-core-js!IUnloadHandlerContainer:interface",
|
|
@@ -17856,11 +18117,11 @@
|
|
|
17856
18117
|
},
|
|
17857
18118
|
{
|
|
17858
18119
|
"kind": "Content",
|
|
17859
|
-
"text": ", namespaces
|
|
18120
|
+
"text": ", namespaces?: "
|
|
17860
18121
|
},
|
|
17861
18122
|
{
|
|
17862
18123
|
"kind": "Content",
|
|
17863
|
-
"text": "string | string[]"
|
|
18124
|
+
"text": "string | string[] | null"
|
|
17864
18125
|
},
|
|
17865
18126
|
{
|
|
17866
18127
|
"kind": "Content",
|
|
@@ -19151,6 +19412,49 @@
|
|
|
19151
19412
|
"endIndex": 2
|
|
19152
19413
|
}
|
|
19153
19414
|
},
|
|
19415
|
+
{
|
|
19416
|
+
"kind": "Function",
|
|
19417
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!objToString:function(1)",
|
|
19418
|
+
"docComment": "",
|
|
19419
|
+
"excerptTokens": [
|
|
19420
|
+
{
|
|
19421
|
+
"kind": "Content",
|
|
19422
|
+
"text": "export declare function objToString(obj: "
|
|
19423
|
+
},
|
|
19424
|
+
{
|
|
19425
|
+
"kind": "Content",
|
|
19426
|
+
"text": "any"
|
|
19427
|
+
},
|
|
19428
|
+
{
|
|
19429
|
+
"kind": "Content",
|
|
19430
|
+
"text": "): "
|
|
19431
|
+
},
|
|
19432
|
+
{
|
|
19433
|
+
"kind": "Content",
|
|
19434
|
+
"text": "any"
|
|
19435
|
+
},
|
|
19436
|
+
{
|
|
19437
|
+
"kind": "Content",
|
|
19438
|
+
"text": ";"
|
|
19439
|
+
}
|
|
19440
|
+
],
|
|
19441
|
+
"returnTypeTokenRange": {
|
|
19442
|
+
"startIndex": 3,
|
|
19443
|
+
"endIndex": 4
|
|
19444
|
+
},
|
|
19445
|
+
"releaseTag": "Public",
|
|
19446
|
+
"overloadIndex": 1,
|
|
19447
|
+
"parameters": [
|
|
19448
|
+
{
|
|
19449
|
+
"parameterName": "obj",
|
|
19450
|
+
"parameterTypeTokenRange": {
|
|
19451
|
+
"startIndex": 1,
|
|
19452
|
+
"endIndex": 2
|
|
19453
|
+
}
|
|
19454
|
+
}
|
|
19455
|
+
],
|
|
19456
|
+
"name": "objToString"
|
|
19457
|
+
},
|
|
19154
19458
|
{
|
|
19155
19459
|
"kind": "Function",
|
|
19156
19460
|
"canonicalReference": "@microsoft/applicationinsights-core-js!optimizeObject:function(1)",
|
|
@@ -19650,7 +19954,7 @@
|
|
|
19650
19954
|
"excerptTokens": [
|
|
19651
19955
|
{
|
|
19652
19956
|
"kind": "Content",
|
|
19653
|
-
"text": "constructor(manager
|
|
19957
|
+
"text": "constructor(manager?: "
|
|
19654
19958
|
},
|
|
19655
19959
|
{
|
|
19656
19960
|
"kind": "Reference",
|
|
@@ -20207,7 +20511,39 @@
|
|
|
20207
20511
|
},
|
|
20208
20512
|
{
|
|
20209
20513
|
"kind": "Content",
|
|
20210
|
-
"text": "(identifier: string, field: string, defaultValue?: number | string | boolean
|
|
20514
|
+
"text": "(identifier: string, field: string, defaultValue?: number | string | boolean | string[] | "
|
|
20515
|
+
},
|
|
20516
|
+
{
|
|
20517
|
+
"kind": "Reference",
|
|
20518
|
+
"text": "RegExp",
|
|
20519
|
+
"canonicalReference": "!RegExp:interface"
|
|
20520
|
+
},
|
|
20521
|
+
{
|
|
20522
|
+
"kind": "Content",
|
|
20523
|
+
"text": "[] | "
|
|
20524
|
+
},
|
|
20525
|
+
{
|
|
20526
|
+
"kind": "Reference",
|
|
20527
|
+
"text": "Function",
|
|
20528
|
+
"canonicalReference": "!Function:interface"
|
|
20529
|
+
},
|
|
20530
|
+
{
|
|
20531
|
+
"kind": "Content",
|
|
20532
|
+
"text": ") => number | string | boolean | string[] | "
|
|
20533
|
+
},
|
|
20534
|
+
{
|
|
20535
|
+
"kind": "Reference",
|
|
20536
|
+
"text": "RegExp",
|
|
20537
|
+
"canonicalReference": "!RegExp:interface"
|
|
20538
|
+
},
|
|
20539
|
+
{
|
|
20540
|
+
"kind": "Content",
|
|
20541
|
+
"text": "[] | "
|
|
20542
|
+
},
|
|
20543
|
+
{
|
|
20544
|
+
"kind": "Reference",
|
|
20545
|
+
"text": "Function",
|
|
20546
|
+
"canonicalReference": "!Function:interface"
|
|
20211
20547
|
},
|
|
20212
20548
|
{
|
|
20213
20549
|
"kind": "Content",
|
|
@@ -20219,7 +20555,7 @@
|
|
|
20219
20555
|
"name": "getConfig",
|
|
20220
20556
|
"propertyTypeTokenRange": {
|
|
20221
20557
|
"startIndex": 1,
|
|
20222
|
-
"endIndex":
|
|
20558
|
+
"endIndex": 9
|
|
20223
20559
|
},
|
|
20224
20560
|
"isStatic": false
|
|
20225
20561
|
},
|
|
@@ -20910,7 +21246,7 @@
|
|
|
20910
21246
|
},
|
|
20911
21247
|
{
|
|
20912
21248
|
"kind": "Content",
|
|
20913
|
-
"text": "string | string[]"
|
|
21249
|
+
"text": "string | string[] | null"
|
|
20914
21250
|
},
|
|
20915
21251
|
{
|
|
20916
21252
|
"kind": "Content",
|
|
@@ -21048,7 +21384,7 @@
|
|
|
21048
21384
|
},
|
|
21049
21385
|
{
|
|
21050
21386
|
"kind": "Content",
|
|
21051
|
-
"text": "string | string[]"
|
|
21387
|
+
"text": "string | string[] | null"
|
|
21052
21388
|
},
|
|
21053
21389
|
{
|
|
21054
21390
|
"kind": "Content",
|
|
@@ -21106,7 +21442,7 @@
|
|
|
21106
21442
|
},
|
|
21107
21443
|
{
|
|
21108
21444
|
"kind": "Content",
|
|
21109
|
-
"text": "string | string[]"
|
|
21445
|
+
"text": "string | string[] | null"
|
|
21110
21446
|
},
|
|
21111
21447
|
{
|
|
21112
21448
|
"kind": "Content",
|
|
@@ -21769,7 +22105,7 @@
|
|
|
21769
22105
|
},
|
|
21770
22106
|
{
|
|
21771
22107
|
"kind": "Content",
|
|
21772
|
-
"text": "(value: T[K]) => boolean"
|
|
22108
|
+
"text": "((value: T[K]) => boolean) | null"
|
|
21773
22109
|
},
|
|
21774
22110
|
{
|
|
21775
22111
|
"kind": "Content",
|
|
@@ -21777,7 +22113,7 @@
|
|
|
21777
22113
|
},
|
|
21778
22114
|
{
|
|
21779
22115
|
"kind": "Content",
|
|
21780
|
-
"text": "(value: T[K]) => boolean"
|
|
22116
|
+
"text": "((value: T[K]) => boolean) | null"
|
|
21781
22117
|
},
|
|
21782
22118
|
{
|
|
21783
22119
|
"kind": "Content",
|
|
@@ -22593,6 +22929,105 @@
|
|
|
22593
22929
|
"endIndex": 0
|
|
22594
22930
|
}
|
|
22595
22931
|
},
|
|
22932
|
+
{
|
|
22933
|
+
"kind": "Function",
|
|
22934
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!unloadComponents:function(1)",
|
|
22935
|
+
"docComment": "/**\n * Teardown / Unload helper to perform teardown/unloading operations for the provided components synchronously or asynchronously, this will call any _doTeardown() or _doUnload() functions on the provided components to allow them to finish removal.\n *\n * @param components - The components you want to unload\n *\n * @param unloadCtx - This is the context that should be used during unloading.\n *\n * @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.\n *\n * @param asyncCallback - An optional callback that the plugin must call if it returns true to inform the caller that it has completed any async unload/teardown operations.\n *\n * @returns boolean - true if the plugin has or will call asyncCallback, this allows the plugin to perform any asynchronous operations.\n */\n",
|
|
22936
|
+
"excerptTokens": [
|
|
22937
|
+
{
|
|
22938
|
+
"kind": "Content",
|
|
22939
|
+
"text": "export declare function unloadComponents(components: "
|
|
22940
|
+
},
|
|
22941
|
+
{
|
|
22942
|
+
"kind": "Content",
|
|
22943
|
+
"text": "any | "
|
|
22944
|
+
},
|
|
22945
|
+
{
|
|
22946
|
+
"kind": "Reference",
|
|
22947
|
+
"text": "IUnloadableComponent",
|
|
22948
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!IUnloadableComponent:interface"
|
|
22949
|
+
},
|
|
22950
|
+
{
|
|
22951
|
+
"kind": "Content",
|
|
22952
|
+
"text": "[]"
|
|
22953
|
+
},
|
|
22954
|
+
{
|
|
22955
|
+
"kind": "Content",
|
|
22956
|
+
"text": ", unloadCtx?: "
|
|
22957
|
+
},
|
|
22958
|
+
{
|
|
22959
|
+
"kind": "Reference",
|
|
22960
|
+
"text": "IProcessTelemetryUnloadContext",
|
|
22961
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!IProcessTelemetryUnloadContext:interface"
|
|
22962
|
+
},
|
|
22963
|
+
{
|
|
22964
|
+
"kind": "Content",
|
|
22965
|
+
"text": ", unloadState?: "
|
|
22966
|
+
},
|
|
22967
|
+
{
|
|
22968
|
+
"kind": "Reference",
|
|
22969
|
+
"text": "ITelemetryUnloadState",
|
|
22970
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!ITelemetryUnloadState:interface"
|
|
22971
|
+
},
|
|
22972
|
+
{
|
|
22973
|
+
"kind": "Content",
|
|
22974
|
+
"text": ", asyncCallback?: "
|
|
22975
|
+
},
|
|
22976
|
+
{
|
|
22977
|
+
"kind": "Content",
|
|
22978
|
+
"text": "() => void"
|
|
22979
|
+
},
|
|
22980
|
+
{
|
|
22981
|
+
"kind": "Content",
|
|
22982
|
+
"text": "): "
|
|
22983
|
+
},
|
|
22984
|
+
{
|
|
22985
|
+
"kind": "Content",
|
|
22986
|
+
"text": "void | boolean"
|
|
22987
|
+
},
|
|
22988
|
+
{
|
|
22989
|
+
"kind": "Content",
|
|
22990
|
+
"text": ";"
|
|
22991
|
+
}
|
|
22992
|
+
],
|
|
22993
|
+
"returnTypeTokenRange": {
|
|
22994
|
+
"startIndex": 11,
|
|
22995
|
+
"endIndex": 12
|
|
22996
|
+
},
|
|
22997
|
+
"releaseTag": "Public",
|
|
22998
|
+
"overloadIndex": 1,
|
|
22999
|
+
"parameters": [
|
|
23000
|
+
{
|
|
23001
|
+
"parameterName": "components",
|
|
23002
|
+
"parameterTypeTokenRange": {
|
|
23003
|
+
"startIndex": 1,
|
|
23004
|
+
"endIndex": 4
|
|
23005
|
+
}
|
|
23006
|
+
},
|
|
23007
|
+
{
|
|
23008
|
+
"parameterName": "unloadCtx",
|
|
23009
|
+
"parameterTypeTokenRange": {
|
|
23010
|
+
"startIndex": 5,
|
|
23011
|
+
"endIndex": 6
|
|
23012
|
+
}
|
|
23013
|
+
},
|
|
23014
|
+
{
|
|
23015
|
+
"parameterName": "unloadState",
|
|
23016
|
+
"parameterTypeTokenRange": {
|
|
23017
|
+
"startIndex": 7,
|
|
23018
|
+
"endIndex": 8
|
|
23019
|
+
}
|
|
23020
|
+
},
|
|
23021
|
+
{
|
|
23022
|
+
"parameterName": "asyncCallback",
|
|
23023
|
+
"parameterTypeTokenRange": {
|
|
23024
|
+
"startIndex": 9,
|
|
23025
|
+
"endIndex": 10
|
|
23026
|
+
}
|
|
23027
|
+
}
|
|
23028
|
+
],
|
|
23029
|
+
"name": "unloadComponents"
|
|
23030
|
+
},
|
|
22596
23031
|
{
|
|
22597
23032
|
"kind": "TypeAlias",
|
|
22598
23033
|
"canonicalReference": "@microsoft/applicationinsights-core-js!UnloadHandler:type",
|