@microsoft/applicationinsights-core-js 2.8.0-beta.2203-02 → 2.8.0-beta.2203-03
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 +197 -10
- 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 +751 -33
- package/dist/applicationinsights-core-js.api.md +26 -0
- package/dist/applicationinsights-core-js.d.ts +73 -2
- package/dist/applicationinsights-core-js.js +197 -10
- 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 +73 -2
- package/dist-esm/JavaScriptSDK/AppInsightsCore.js +1 -1
- package/dist-esm/JavaScriptSDK/BaseCore.js +183 -10
- package/dist-esm/JavaScriptSDK/BaseCore.js.map +1 -1
- package/dist-esm/JavaScriptSDK/BaseTelemetryPlugin.js +8 -2
- package/dist-esm/JavaScriptSDK/BaseTelemetryPlugin.js.map +1 -1
- package/dist-esm/JavaScriptSDK/ChannelController.js +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 +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 +1 -1
- package/dist-esm/JavaScriptSDK/HelperFuncs.js +2 -2
- 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 +16 -2
- package/dist-esm/JavaScriptSDK/ProcessTelemetryContext.js.map +1 -1
- package/dist-esm/JavaScriptSDK/RandomHelper.js +1 -1
- package/dist-esm/JavaScriptSDK/TelemetryHelpers.js +1 -1
- package/dist-esm/JavaScriptSDK/TelemetryInitializerPlugin.js +1 -1
- package/dist-esm/JavaScriptSDK/UnloadHandlerContainer.js +32 -0
- package/dist-esm/JavaScriptSDK/UnloadHandlerContainer.js.map +1 -0
- 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.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/applicationinsights-core-js.js +2 -1
- package/dist-esm/applicationinsights-core-js.js.map +1 -1
- package/package.json +1 -1
- package/src/JavaScriptSDK/BaseCore.ts +233 -10
- package/src/JavaScriptSDK/BaseTelemetryPlugin.ts +16 -2
- package/src/JavaScriptSDK/HelperFuncs.ts +1 -1
- package/src/JavaScriptSDK/ProcessTelemetryContext.ts +16 -2
- package/src/JavaScriptSDK/UnloadHandlerContainer.ts +44 -0
- package/src/JavaScriptSDK.Enums/SendRequestReason.ts +5 -0
- package/src/JavaScriptSDK.Enums/TelemetryUnloadReason.ts +3 -3
- package/src/JavaScriptSDK.Interfaces/IAppInsightsCore.ts +29 -2
- package/types/JavaScriptSDK/BaseCore.d.ts +17 -1
- package/types/JavaScriptSDK/BaseTelemetryPlugin.d.ts +6 -0
- package/types/JavaScriptSDK/ProcessTelemetryContext.d.ts +2 -0
- package/types/JavaScriptSDK/UnloadHandlerContainer.d.ts +11 -0
- package/types/JavaScriptSDK.Enums/SendRequestReason.d.ts +4 -0
- package/types/JavaScriptSDK.Enums/TelemetryUnloadReason.d.ts +13 -1
- package/types/JavaScriptSDK.Interfaces/IAppInsightsCore.d.ts +24 -1
- package/types/applicationinsights-core-js.d.ts +1 -0
|
@@ -3529,6 +3529,131 @@
|
|
|
3529
3529
|
],
|
|
3530
3530
|
"name": "addNotificationListener"
|
|
3531
3531
|
},
|
|
3532
|
+
{
|
|
3533
|
+
"kind": "Method",
|
|
3534
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!BaseCore#addPlugin:member(1)",
|
|
3535
|
+
"docComment": "",
|
|
3536
|
+
"excerptTokens": [
|
|
3537
|
+
{
|
|
3538
|
+
"kind": "Content",
|
|
3539
|
+
"text": "addPlugin<T extends "
|
|
3540
|
+
},
|
|
3541
|
+
{
|
|
3542
|
+
"kind": "Reference",
|
|
3543
|
+
"text": "IPlugin",
|
|
3544
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!IPlugin:interface"
|
|
3545
|
+
},
|
|
3546
|
+
{
|
|
3547
|
+
"kind": "Content",
|
|
3548
|
+
"text": " "
|
|
3549
|
+
},
|
|
3550
|
+
{
|
|
3551
|
+
"kind": "Content",
|
|
3552
|
+
"text": "= "
|
|
3553
|
+
},
|
|
3554
|
+
{
|
|
3555
|
+
"kind": "Reference",
|
|
3556
|
+
"text": "ITelemetryPlugin",
|
|
3557
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!ITelemetryPlugin:interface"
|
|
3558
|
+
},
|
|
3559
|
+
{
|
|
3560
|
+
"kind": "Content",
|
|
3561
|
+
"text": ">(plugin: "
|
|
3562
|
+
},
|
|
3563
|
+
{
|
|
3564
|
+
"kind": "Content",
|
|
3565
|
+
"text": "T"
|
|
3566
|
+
},
|
|
3567
|
+
{
|
|
3568
|
+
"kind": "Content",
|
|
3569
|
+
"text": ", replaceExisting: "
|
|
3570
|
+
},
|
|
3571
|
+
{
|
|
3572
|
+
"kind": "Content",
|
|
3573
|
+
"text": "boolean"
|
|
3574
|
+
},
|
|
3575
|
+
{
|
|
3576
|
+
"kind": "Content",
|
|
3577
|
+
"text": ", doAsync: "
|
|
3578
|
+
},
|
|
3579
|
+
{
|
|
3580
|
+
"kind": "Content",
|
|
3581
|
+
"text": "boolean"
|
|
3582
|
+
},
|
|
3583
|
+
{
|
|
3584
|
+
"kind": "Content",
|
|
3585
|
+
"text": ", addCb?: "
|
|
3586
|
+
},
|
|
3587
|
+
{
|
|
3588
|
+
"kind": "Content",
|
|
3589
|
+
"text": "(added?: boolean) => void"
|
|
3590
|
+
},
|
|
3591
|
+
{
|
|
3592
|
+
"kind": "Content",
|
|
3593
|
+
"text": "): "
|
|
3594
|
+
},
|
|
3595
|
+
{
|
|
3596
|
+
"kind": "Content",
|
|
3597
|
+
"text": "void"
|
|
3598
|
+
},
|
|
3599
|
+
{
|
|
3600
|
+
"kind": "Content",
|
|
3601
|
+
"text": ";"
|
|
3602
|
+
}
|
|
3603
|
+
],
|
|
3604
|
+
"isOptional": false,
|
|
3605
|
+
"isStatic": false,
|
|
3606
|
+
"returnTypeTokenRange": {
|
|
3607
|
+
"startIndex": 14,
|
|
3608
|
+
"endIndex": 15
|
|
3609
|
+
},
|
|
3610
|
+
"releaseTag": "Public",
|
|
3611
|
+
"overloadIndex": 1,
|
|
3612
|
+
"parameters": [
|
|
3613
|
+
{
|
|
3614
|
+
"parameterName": "plugin",
|
|
3615
|
+
"parameterTypeTokenRange": {
|
|
3616
|
+
"startIndex": 6,
|
|
3617
|
+
"endIndex": 7
|
|
3618
|
+
}
|
|
3619
|
+
},
|
|
3620
|
+
{
|
|
3621
|
+
"parameterName": "replaceExisting",
|
|
3622
|
+
"parameterTypeTokenRange": {
|
|
3623
|
+
"startIndex": 8,
|
|
3624
|
+
"endIndex": 9
|
|
3625
|
+
}
|
|
3626
|
+
},
|
|
3627
|
+
{
|
|
3628
|
+
"parameterName": "doAsync",
|
|
3629
|
+
"parameterTypeTokenRange": {
|
|
3630
|
+
"startIndex": 10,
|
|
3631
|
+
"endIndex": 11
|
|
3632
|
+
}
|
|
3633
|
+
},
|
|
3634
|
+
{
|
|
3635
|
+
"parameterName": "addCb",
|
|
3636
|
+
"parameterTypeTokenRange": {
|
|
3637
|
+
"startIndex": 12,
|
|
3638
|
+
"endIndex": 13
|
|
3639
|
+
}
|
|
3640
|
+
}
|
|
3641
|
+
],
|
|
3642
|
+
"typeParameters": [
|
|
3643
|
+
{
|
|
3644
|
+
"typeParameterName": "T",
|
|
3645
|
+
"constraintTokenRange": {
|
|
3646
|
+
"startIndex": 1,
|
|
3647
|
+
"endIndex": 3
|
|
3648
|
+
},
|
|
3649
|
+
"defaultTypeTokenRange": {
|
|
3650
|
+
"startIndex": 4,
|
|
3651
|
+
"endIndex": 5
|
|
3652
|
+
}
|
|
3653
|
+
}
|
|
3654
|
+
],
|
|
3655
|
+
"name": "addPlugin"
|
|
3656
|
+
},
|
|
3532
3657
|
{
|
|
3533
3658
|
"kind": "Method",
|
|
3534
3659
|
"canonicalReference": "@microsoft/applicationinsights-core-js!BaseCore#addTelemetryInitializer:member(1)",
|
|
@@ -3580,6 +3705,52 @@
|
|
|
3580
3705
|
],
|
|
3581
3706
|
"name": "addTelemetryInitializer"
|
|
3582
3707
|
},
|
|
3708
|
+
{
|
|
3709
|
+
"kind": "Method",
|
|
3710
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!BaseCore#addUnloadCb:member(1)",
|
|
3711
|
+
"docComment": "/**\n * Add an unload handler that will be called when the SDK is being unloaded\n *\n * @param handler - the handler\n */\n",
|
|
3712
|
+
"excerptTokens": [
|
|
3713
|
+
{
|
|
3714
|
+
"kind": "Content",
|
|
3715
|
+
"text": "addUnloadCb(handler: "
|
|
3716
|
+
},
|
|
3717
|
+
{
|
|
3718
|
+
"kind": "Reference",
|
|
3719
|
+
"text": "UnloadHandler",
|
|
3720
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!UnloadHandler:type"
|
|
3721
|
+
},
|
|
3722
|
+
{
|
|
3723
|
+
"kind": "Content",
|
|
3724
|
+
"text": "): "
|
|
3725
|
+
},
|
|
3726
|
+
{
|
|
3727
|
+
"kind": "Content",
|
|
3728
|
+
"text": "void"
|
|
3729
|
+
},
|
|
3730
|
+
{
|
|
3731
|
+
"kind": "Content",
|
|
3732
|
+
"text": ";"
|
|
3733
|
+
}
|
|
3734
|
+
],
|
|
3735
|
+
"isOptional": false,
|
|
3736
|
+
"isStatic": false,
|
|
3737
|
+
"returnTypeTokenRange": {
|
|
3738
|
+
"startIndex": 3,
|
|
3739
|
+
"endIndex": 4
|
|
3740
|
+
},
|
|
3741
|
+
"releaseTag": "Public",
|
|
3742
|
+
"overloadIndex": 1,
|
|
3743
|
+
"parameters": [
|
|
3744
|
+
{
|
|
3745
|
+
"parameterName": "handler",
|
|
3746
|
+
"parameterTypeTokenRange": {
|
|
3747
|
+
"startIndex": 1,
|
|
3748
|
+
"endIndex": 2
|
|
3749
|
+
}
|
|
3750
|
+
}
|
|
3751
|
+
],
|
|
3752
|
+
"name": "addUnloadCb"
|
|
3753
|
+
},
|
|
3583
3754
|
{
|
|
3584
3755
|
"kind": "Property",
|
|
3585
3756
|
"canonicalReference": "@microsoft/applicationinsights-core-js!BaseCore#config:member",
|
|
@@ -4372,6 +4543,66 @@
|
|
|
4372
4543
|
}
|
|
4373
4544
|
],
|
|
4374
4545
|
"name": "track"
|
|
4546
|
+
},
|
|
4547
|
+
{
|
|
4548
|
+
"kind": "Method",
|
|
4549
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!BaseCore#unload:member(1)",
|
|
4550
|
+
"docComment": "/**\n * Unload and Tear down the SDK and any initialized plugins, after calling this the SDK will be considered to be un-initialized and non-operational, re-initializing the SDK should only be attempted if the previous unload call return `true` stating that all plugins reported that they also unloaded, the recommended approach is to create a new instance and initialize that instance. This is due to possible unexpected side effects caused by plugins not supporting unload / teardown, unable to successfully remove any global references or they may just be completing the unload process asynchronously.\n */\n",
|
|
4551
|
+
"excerptTokens": [
|
|
4552
|
+
{
|
|
4553
|
+
"kind": "Content",
|
|
4554
|
+
"text": "unload(isAsync?: "
|
|
4555
|
+
},
|
|
4556
|
+
{
|
|
4557
|
+
"kind": "Content",
|
|
4558
|
+
"text": "boolean"
|
|
4559
|
+
},
|
|
4560
|
+
{
|
|
4561
|
+
"kind": "Content",
|
|
4562
|
+
"text": ", unloadComplete?: "
|
|
4563
|
+
},
|
|
4564
|
+
{
|
|
4565
|
+
"kind": "Content",
|
|
4566
|
+
"text": "() => void"
|
|
4567
|
+
},
|
|
4568
|
+
{
|
|
4569
|
+
"kind": "Content",
|
|
4570
|
+
"text": "): "
|
|
4571
|
+
},
|
|
4572
|
+
{
|
|
4573
|
+
"kind": "Content",
|
|
4574
|
+
"text": "void"
|
|
4575
|
+
},
|
|
4576
|
+
{
|
|
4577
|
+
"kind": "Content",
|
|
4578
|
+
"text": ";"
|
|
4579
|
+
}
|
|
4580
|
+
],
|
|
4581
|
+
"isOptional": false,
|
|
4582
|
+
"isStatic": false,
|
|
4583
|
+
"returnTypeTokenRange": {
|
|
4584
|
+
"startIndex": 5,
|
|
4585
|
+
"endIndex": 6
|
|
4586
|
+
},
|
|
4587
|
+
"releaseTag": "Public",
|
|
4588
|
+
"overloadIndex": 1,
|
|
4589
|
+
"parameters": [
|
|
4590
|
+
{
|
|
4591
|
+
"parameterName": "isAsync",
|
|
4592
|
+
"parameterTypeTokenRange": {
|
|
4593
|
+
"startIndex": 1,
|
|
4594
|
+
"endIndex": 2
|
|
4595
|
+
}
|
|
4596
|
+
},
|
|
4597
|
+
{
|
|
4598
|
+
"parameterName": "unloadComplete",
|
|
4599
|
+
"parameterTypeTokenRange": {
|
|
4600
|
+
"startIndex": 3,
|
|
4601
|
+
"endIndex": 4
|
|
4602
|
+
}
|
|
4603
|
+
}
|
|
4604
|
+
],
|
|
4605
|
+
"name": "unload"
|
|
4375
4606
|
}
|
|
4376
4607
|
],
|
|
4377
4608
|
"implementsTokenRanges": [
|
|
@@ -4462,6 +4693,52 @@
|
|
|
4462
4693
|
],
|
|
4463
4694
|
"name": "_addHook"
|
|
4464
4695
|
},
|
|
4696
|
+
{
|
|
4697
|
+
"kind": "Method",
|
|
4698
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!BaseTelemetryPlugin#_addUnloadCb:member(1)",
|
|
4699
|
+
"docComment": "/**\n * Add an unload handler that will be called when the SDK is being unloaded\n *\n * @param handler - the handler\n */\n",
|
|
4700
|
+
"excerptTokens": [
|
|
4701
|
+
{
|
|
4702
|
+
"kind": "Content",
|
|
4703
|
+
"text": "protected _addUnloadCb(handler: "
|
|
4704
|
+
},
|
|
4705
|
+
{
|
|
4706
|
+
"kind": "Reference",
|
|
4707
|
+
"text": "UnloadHandler",
|
|
4708
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!UnloadHandler:type"
|
|
4709
|
+
},
|
|
4710
|
+
{
|
|
4711
|
+
"kind": "Content",
|
|
4712
|
+
"text": "): "
|
|
4713
|
+
},
|
|
4714
|
+
{
|
|
4715
|
+
"kind": "Content",
|
|
4716
|
+
"text": "void"
|
|
4717
|
+
},
|
|
4718
|
+
{
|
|
4719
|
+
"kind": "Content",
|
|
4720
|
+
"text": ";"
|
|
4721
|
+
}
|
|
4722
|
+
],
|
|
4723
|
+
"isOptional": false,
|
|
4724
|
+
"isStatic": false,
|
|
4725
|
+
"returnTypeTokenRange": {
|
|
4726
|
+
"startIndex": 3,
|
|
4727
|
+
"endIndex": 4
|
|
4728
|
+
},
|
|
4729
|
+
"releaseTag": "Public",
|
|
4730
|
+
"overloadIndex": 1,
|
|
4731
|
+
"parameters": [
|
|
4732
|
+
{
|
|
4733
|
+
"parameterName": "handler",
|
|
4734
|
+
"parameterTypeTokenRange": {
|
|
4735
|
+
"startIndex": 1,
|
|
4736
|
+
"endIndex": 2
|
|
4737
|
+
}
|
|
4738
|
+
}
|
|
4739
|
+
],
|
|
4740
|
+
"name": "_addUnloadCb"
|
|
4741
|
+
},
|
|
4465
4742
|
{
|
|
4466
4743
|
"kind": "Property",
|
|
4467
4744
|
"canonicalReference": "@microsoft/applicationinsights-core-js!BaseTelemetryPlugin#_doTeardown:member",
|
|
@@ -5328,7 +5605,7 @@
|
|
|
5328
5605
|
{
|
|
5329
5606
|
"kind": "Function",
|
|
5330
5607
|
"canonicalReference": "@microsoft/applicationinsights-core-js!createProcessTelemetryContext:function(1)",
|
|
5331
|
-
"docComment": "/**\n * Creates a new Telemetry Item context with the current config, core and plugin execution chain\n *\n * @param plugins - The plugin instances that will be executed\n *\n * @param config - The current config\n *\n * @param core - The current core instance\n */\n",
|
|
5608
|
+
"docComment": "/**\n * Creates a new Telemetry Item context with the current config, core and plugin execution chain\n *\n * @param plugins - The plugin instances that will be executed\n *\n * @param config - The current config\n *\n * @param core - The current core instance\n *\n * @param startAt - Identifies the next plugin to execute, if null there is no \"next\" plugin and if undefined it should assume the start of the chain\n */\n",
|
|
5332
5609
|
"excerptTokens": [
|
|
5333
5610
|
{
|
|
5334
5611
|
"kind": "Content",
|
|
@@ -5476,6 +5753,60 @@
|
|
|
5476
5753
|
],
|
|
5477
5754
|
"name": "createUniqueNamespace"
|
|
5478
5755
|
},
|
|
5756
|
+
{
|
|
5757
|
+
"kind": "Function",
|
|
5758
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!createUnloadHandlerContainer:function(1)",
|
|
5759
|
+
"docComment": "",
|
|
5760
|
+
"excerptTokens": [
|
|
5761
|
+
{
|
|
5762
|
+
"kind": "Content",
|
|
5763
|
+
"text": "export declare function createUnloadHandlerContainer(): "
|
|
5764
|
+
},
|
|
5765
|
+
{
|
|
5766
|
+
"kind": "Content",
|
|
5767
|
+
"text": "{\n add: (handler: "
|
|
5768
|
+
},
|
|
5769
|
+
{
|
|
5770
|
+
"kind": "Reference",
|
|
5771
|
+
"text": "UnloadHandler",
|
|
5772
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!UnloadHandler:type"
|
|
5773
|
+
},
|
|
5774
|
+
{
|
|
5775
|
+
"kind": "Content",
|
|
5776
|
+
"text": ") => void;\n run: (unloadCtx: "
|
|
5777
|
+
},
|
|
5778
|
+
{
|
|
5779
|
+
"kind": "Reference",
|
|
5780
|
+
"text": "IProcessTelemetryUnloadContext",
|
|
5781
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!IProcessTelemetryUnloadContext:interface"
|
|
5782
|
+
},
|
|
5783
|
+
{
|
|
5784
|
+
"kind": "Content",
|
|
5785
|
+
"text": ", unloadState: "
|
|
5786
|
+
},
|
|
5787
|
+
{
|
|
5788
|
+
"kind": "Reference",
|
|
5789
|
+
"text": "ITelemetryUnloadState",
|
|
5790
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!ITelemetryUnloadState:interface"
|
|
5791
|
+
},
|
|
5792
|
+
{
|
|
5793
|
+
"kind": "Content",
|
|
5794
|
+
"text": ") => void;\n}"
|
|
5795
|
+
},
|
|
5796
|
+
{
|
|
5797
|
+
"kind": "Content",
|
|
5798
|
+
"text": ";"
|
|
5799
|
+
}
|
|
5800
|
+
],
|
|
5801
|
+
"returnTypeTokenRange": {
|
|
5802
|
+
"startIndex": 1,
|
|
5803
|
+
"endIndex": 8
|
|
5804
|
+
},
|
|
5805
|
+
"releaseTag": "Public",
|
|
5806
|
+
"overloadIndex": 1,
|
|
5807
|
+
"parameters": [],
|
|
5808
|
+
"name": "createUnloadHandlerContainer"
|
|
5809
|
+
},
|
|
5479
5810
|
{
|
|
5480
5811
|
"kind": "Function",
|
|
5481
5812
|
"canonicalReference": "@microsoft/applicationinsights-core-js!dateNow:function(1)",
|
|
@@ -7784,85 +8115,254 @@
|
|
|
7784
8115
|
"text": "IPerfManagerProvider",
|
|
7785
8116
|
"canonicalReference": "@microsoft/applicationinsights-core-js!IPerfManagerProvider:interface"
|
|
7786
8117
|
},
|
|
7787
|
-
{
|
|
7788
|
-
"kind": "Content",
|
|
7789
|
-
"text": " "
|
|
7790
|
-
}
|
|
7791
|
-
],
|
|
7792
|
-
"releaseTag": "Public",
|
|
7793
|
-
"name": "IAppInsightsCore",
|
|
7794
|
-
"members": [
|
|
8118
|
+
{
|
|
8119
|
+
"kind": "Content",
|
|
8120
|
+
"text": " "
|
|
8121
|
+
}
|
|
8122
|
+
],
|
|
8123
|
+
"releaseTag": "Public",
|
|
8124
|
+
"name": "IAppInsightsCore",
|
|
8125
|
+
"members": [
|
|
8126
|
+
{
|
|
8127
|
+
"kind": "MethodSignature",
|
|
8128
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!IAppInsightsCore#addNotificationListener:member(1)",
|
|
8129
|
+
"docComment": "/**\n * Adds a notification listener. The SDK calls methods on the listener when an appropriate notification is raised. The added plugins must raise notifications. If the plugins do not implement the notifications, then no methods will be called.\n *\n * @param listener - An INotificationListener object.\n */\n",
|
|
8130
|
+
"excerptTokens": [
|
|
8131
|
+
{
|
|
8132
|
+
"kind": "Content",
|
|
8133
|
+
"text": "addNotificationListener?(listener: "
|
|
8134
|
+
},
|
|
8135
|
+
{
|
|
8136
|
+
"kind": "Reference",
|
|
8137
|
+
"text": "INotificationListener",
|
|
8138
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!INotificationListener:interface"
|
|
8139
|
+
},
|
|
8140
|
+
{
|
|
8141
|
+
"kind": "Content",
|
|
8142
|
+
"text": "): "
|
|
8143
|
+
},
|
|
8144
|
+
{
|
|
8145
|
+
"kind": "Content",
|
|
8146
|
+
"text": "void"
|
|
8147
|
+
},
|
|
8148
|
+
{
|
|
8149
|
+
"kind": "Content",
|
|
8150
|
+
"text": ";"
|
|
8151
|
+
}
|
|
8152
|
+
],
|
|
8153
|
+
"isOptional": true,
|
|
8154
|
+
"returnTypeTokenRange": {
|
|
8155
|
+
"startIndex": 3,
|
|
8156
|
+
"endIndex": 4
|
|
8157
|
+
},
|
|
8158
|
+
"releaseTag": "Public",
|
|
8159
|
+
"overloadIndex": 1,
|
|
8160
|
+
"parameters": [
|
|
8161
|
+
{
|
|
8162
|
+
"parameterName": "listener",
|
|
8163
|
+
"parameterTypeTokenRange": {
|
|
8164
|
+
"startIndex": 1,
|
|
8165
|
+
"endIndex": 2
|
|
8166
|
+
}
|
|
8167
|
+
}
|
|
8168
|
+
],
|
|
8169
|
+
"name": "addNotificationListener"
|
|
8170
|
+
},
|
|
8171
|
+
{
|
|
8172
|
+
"kind": "MethodSignature",
|
|
8173
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!IAppInsightsCore#addPlugin:member(1)",
|
|
8174
|
+
"docComment": "/**\n * Add a new plugin to the installation\n *\n * @param plugin - The new plugin to add\n *\n * @param replaceExisting - should any existing plugin be replaced\n *\n * @param doAsync - Should the add be performed asynchronously\n */\n",
|
|
8175
|
+
"excerptTokens": [
|
|
8176
|
+
{
|
|
8177
|
+
"kind": "Content",
|
|
8178
|
+
"text": "addPlugin<T extends "
|
|
8179
|
+
},
|
|
8180
|
+
{
|
|
8181
|
+
"kind": "Reference",
|
|
8182
|
+
"text": "IPlugin",
|
|
8183
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!IPlugin:interface"
|
|
8184
|
+
},
|
|
8185
|
+
{
|
|
8186
|
+
"kind": "Content",
|
|
8187
|
+
"text": " "
|
|
8188
|
+
},
|
|
8189
|
+
{
|
|
8190
|
+
"kind": "Content",
|
|
8191
|
+
"text": "= "
|
|
8192
|
+
},
|
|
8193
|
+
{
|
|
8194
|
+
"kind": "Reference",
|
|
8195
|
+
"text": "ITelemetryPlugin",
|
|
8196
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!ITelemetryPlugin:interface"
|
|
8197
|
+
},
|
|
8198
|
+
{
|
|
8199
|
+
"kind": "Content",
|
|
8200
|
+
"text": ">(plugin: "
|
|
8201
|
+
},
|
|
8202
|
+
{
|
|
8203
|
+
"kind": "Content",
|
|
8204
|
+
"text": "T"
|
|
8205
|
+
},
|
|
8206
|
+
{
|
|
8207
|
+
"kind": "Content",
|
|
8208
|
+
"text": ", replaceExisting: "
|
|
8209
|
+
},
|
|
8210
|
+
{
|
|
8211
|
+
"kind": "Content",
|
|
8212
|
+
"text": "boolean"
|
|
8213
|
+
},
|
|
8214
|
+
{
|
|
8215
|
+
"kind": "Content",
|
|
8216
|
+
"text": ", doAsync: "
|
|
8217
|
+
},
|
|
8218
|
+
{
|
|
8219
|
+
"kind": "Content",
|
|
8220
|
+
"text": "boolean"
|
|
8221
|
+
},
|
|
8222
|
+
{
|
|
8223
|
+
"kind": "Content",
|
|
8224
|
+
"text": ", addCb?: "
|
|
8225
|
+
},
|
|
8226
|
+
{
|
|
8227
|
+
"kind": "Content",
|
|
8228
|
+
"text": "(added?: boolean) => void"
|
|
8229
|
+
},
|
|
8230
|
+
{
|
|
8231
|
+
"kind": "Content",
|
|
8232
|
+
"text": "): "
|
|
8233
|
+
},
|
|
8234
|
+
{
|
|
8235
|
+
"kind": "Content",
|
|
8236
|
+
"text": "void"
|
|
8237
|
+
},
|
|
8238
|
+
{
|
|
8239
|
+
"kind": "Content",
|
|
8240
|
+
"text": ";"
|
|
8241
|
+
}
|
|
8242
|
+
],
|
|
8243
|
+
"isOptional": false,
|
|
8244
|
+
"returnTypeTokenRange": {
|
|
8245
|
+
"startIndex": 14,
|
|
8246
|
+
"endIndex": 15
|
|
8247
|
+
},
|
|
8248
|
+
"releaseTag": "Public",
|
|
8249
|
+
"overloadIndex": 1,
|
|
8250
|
+
"parameters": [
|
|
8251
|
+
{
|
|
8252
|
+
"parameterName": "plugin",
|
|
8253
|
+
"parameterTypeTokenRange": {
|
|
8254
|
+
"startIndex": 6,
|
|
8255
|
+
"endIndex": 7
|
|
8256
|
+
}
|
|
8257
|
+
},
|
|
8258
|
+
{
|
|
8259
|
+
"parameterName": "replaceExisting",
|
|
8260
|
+
"parameterTypeTokenRange": {
|
|
8261
|
+
"startIndex": 8,
|
|
8262
|
+
"endIndex": 9
|
|
8263
|
+
}
|
|
8264
|
+
},
|
|
8265
|
+
{
|
|
8266
|
+
"parameterName": "doAsync",
|
|
8267
|
+
"parameterTypeTokenRange": {
|
|
8268
|
+
"startIndex": 10,
|
|
8269
|
+
"endIndex": 11
|
|
8270
|
+
}
|
|
8271
|
+
},
|
|
8272
|
+
{
|
|
8273
|
+
"parameterName": "addCb",
|
|
8274
|
+
"parameterTypeTokenRange": {
|
|
8275
|
+
"startIndex": 12,
|
|
8276
|
+
"endIndex": 13
|
|
8277
|
+
}
|
|
8278
|
+
}
|
|
8279
|
+
],
|
|
8280
|
+
"typeParameters": [
|
|
8281
|
+
{
|
|
8282
|
+
"typeParameterName": "T",
|
|
8283
|
+
"constraintTokenRange": {
|
|
8284
|
+
"startIndex": 1,
|
|
8285
|
+
"endIndex": 3
|
|
8286
|
+
},
|
|
8287
|
+
"defaultTypeTokenRange": {
|
|
8288
|
+
"startIndex": 4,
|
|
8289
|
+
"endIndex": 5
|
|
8290
|
+
}
|
|
8291
|
+
}
|
|
8292
|
+
],
|
|
8293
|
+
"name": "addPlugin"
|
|
8294
|
+
},
|
|
7795
8295
|
{
|
|
7796
8296
|
"kind": "MethodSignature",
|
|
7797
|
-
"canonicalReference": "@microsoft/applicationinsights-core-js!IAppInsightsCore#
|
|
7798
|
-
"docComment": "/**\n *
|
|
8297
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!IAppInsightsCore#addTelemetryInitializer:member(1)",
|
|
8298
|
+
"docComment": "/**\n * Add a telemetry processor to decorate or drop telemetry events.\n *\n * @param telemetryInitializer - The Telemetry Initializer function\n *\n * @returns - A ITelemetryInitializerHandler to enable the initializer to be removed\n */\n",
|
|
7799
8299
|
"excerptTokens": [
|
|
7800
8300
|
{
|
|
7801
8301
|
"kind": "Content",
|
|
7802
|
-
"text": "
|
|
8302
|
+
"text": "addTelemetryInitializer(telemetryInitializer: "
|
|
7803
8303
|
},
|
|
7804
8304
|
{
|
|
7805
8305
|
"kind": "Reference",
|
|
7806
|
-
"text": "
|
|
7807
|
-
"canonicalReference": "@microsoft/applicationinsights-core-js!
|
|
8306
|
+
"text": "TelemetryInitializerFunction",
|
|
8307
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!TelemetryInitializerFunction:type"
|
|
7808
8308
|
},
|
|
7809
8309
|
{
|
|
7810
8310
|
"kind": "Content",
|
|
7811
8311
|
"text": "): "
|
|
7812
8312
|
},
|
|
8313
|
+
{
|
|
8314
|
+
"kind": "Reference",
|
|
8315
|
+
"text": "ITelemetryInitializerHandler",
|
|
8316
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!ITelemetryInitializerHandler:interface"
|
|
8317
|
+
},
|
|
7813
8318
|
{
|
|
7814
8319
|
"kind": "Content",
|
|
7815
|
-
"text": "void"
|
|
8320
|
+
"text": " | void"
|
|
7816
8321
|
},
|
|
7817
8322
|
{
|
|
7818
8323
|
"kind": "Content",
|
|
7819
8324
|
"text": ";"
|
|
7820
8325
|
}
|
|
7821
8326
|
],
|
|
7822
|
-
"isOptional":
|
|
8327
|
+
"isOptional": false,
|
|
7823
8328
|
"returnTypeTokenRange": {
|
|
7824
8329
|
"startIndex": 3,
|
|
7825
|
-
"endIndex":
|
|
8330
|
+
"endIndex": 5
|
|
7826
8331
|
},
|
|
7827
8332
|
"releaseTag": "Public",
|
|
7828
8333
|
"overloadIndex": 1,
|
|
7829
8334
|
"parameters": [
|
|
7830
8335
|
{
|
|
7831
|
-
"parameterName": "
|
|
8336
|
+
"parameterName": "telemetryInitializer",
|
|
7832
8337
|
"parameterTypeTokenRange": {
|
|
7833
8338
|
"startIndex": 1,
|
|
7834
8339
|
"endIndex": 2
|
|
7835
8340
|
}
|
|
7836
8341
|
}
|
|
7837
8342
|
],
|
|
7838
|
-
"name": "
|
|
8343
|
+
"name": "addTelemetryInitializer"
|
|
7839
8344
|
},
|
|
7840
8345
|
{
|
|
7841
8346
|
"kind": "MethodSignature",
|
|
7842
|
-
"canonicalReference": "@microsoft/applicationinsights-core-js!IAppInsightsCore#
|
|
7843
|
-
"docComment": "/**\n * Add a
|
|
8347
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!IAppInsightsCore#addUnloadCb:member(1)",
|
|
8348
|
+
"docComment": "/**\n * Add a handler that will be called when the SDK is being unloaded\n *\n * @param handler - the handler\n */\n",
|
|
7844
8349
|
"excerptTokens": [
|
|
7845
8350
|
{
|
|
7846
8351
|
"kind": "Content",
|
|
7847
|
-
"text": "
|
|
8352
|
+
"text": "addUnloadCb(handler: "
|
|
7848
8353
|
},
|
|
7849
8354
|
{
|
|
7850
8355
|
"kind": "Reference",
|
|
7851
|
-
"text": "
|
|
7852
|
-
"canonicalReference": "@microsoft/applicationinsights-core-js!
|
|
8356
|
+
"text": "UnloadHandler",
|
|
8357
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!UnloadHandler:type"
|
|
7853
8358
|
},
|
|
7854
8359
|
{
|
|
7855
8360
|
"kind": "Content",
|
|
7856
8361
|
"text": "): "
|
|
7857
8362
|
},
|
|
7858
|
-
{
|
|
7859
|
-
"kind": "Reference",
|
|
7860
|
-
"text": "ITelemetryInitializerHandler",
|
|
7861
|
-
"canonicalReference": "@microsoft/applicationinsights-core-js!ITelemetryInitializerHandler:interface"
|
|
7862
|
-
},
|
|
7863
8363
|
{
|
|
7864
8364
|
"kind": "Content",
|
|
7865
|
-
"text": "
|
|
8365
|
+
"text": "void"
|
|
7866
8366
|
},
|
|
7867
8367
|
{
|
|
7868
8368
|
"kind": "Content",
|
|
@@ -7872,20 +8372,20 @@
|
|
|
7872
8372
|
"isOptional": false,
|
|
7873
8373
|
"returnTypeTokenRange": {
|
|
7874
8374
|
"startIndex": 3,
|
|
7875
|
-
"endIndex":
|
|
8375
|
+
"endIndex": 4
|
|
7876
8376
|
},
|
|
7877
8377
|
"releaseTag": "Public",
|
|
7878
8378
|
"overloadIndex": 1,
|
|
7879
8379
|
"parameters": [
|
|
7880
8380
|
{
|
|
7881
|
-
"parameterName": "
|
|
8381
|
+
"parameterName": "handler",
|
|
7882
8382
|
"parameterTypeTokenRange": {
|
|
7883
8383
|
"startIndex": 1,
|
|
7884
8384
|
"endIndex": 2
|
|
7885
8385
|
}
|
|
7886
8386
|
}
|
|
7887
8387
|
],
|
|
7888
|
-
"name": "
|
|
8388
|
+
"name": "addUnloadCb"
|
|
7889
8389
|
},
|
|
7890
8390
|
{
|
|
7891
8391
|
"kind": "PropertySignature",
|
|
@@ -8502,6 +9002,65 @@
|
|
|
8502
9002
|
}
|
|
8503
9003
|
],
|
|
8504
9004
|
"name": "track"
|
|
9005
|
+
},
|
|
9006
|
+
{
|
|
9007
|
+
"kind": "MethodSignature",
|
|
9008
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!IAppInsightsCore#unload:member(1)",
|
|
9009
|
+
"docComment": "/**\n * Unload and Tear down the SDK and any initialized plugins, after calling this the SDK will be considered to be un-initialized and non-operational, re-initializing the SDK should only be attempted if the previous unload call return `true` stating that all plugins reported that they also unloaded, the recommended approach is to create a new instance and initialize that instance. This is due to possible unexpected side effects caused by plugins not supporting unload / teardown, unable to successfully remove any global references or they may just be completing the unload process asynchronously.\n */\n",
|
|
9010
|
+
"excerptTokens": [
|
|
9011
|
+
{
|
|
9012
|
+
"kind": "Content",
|
|
9013
|
+
"text": "unload(isAsync?: "
|
|
9014
|
+
},
|
|
9015
|
+
{
|
|
9016
|
+
"kind": "Content",
|
|
9017
|
+
"text": "boolean"
|
|
9018
|
+
},
|
|
9019
|
+
{
|
|
9020
|
+
"kind": "Content",
|
|
9021
|
+
"text": ", unloadComplete?: "
|
|
9022
|
+
},
|
|
9023
|
+
{
|
|
9024
|
+
"kind": "Content",
|
|
9025
|
+
"text": "() => void"
|
|
9026
|
+
},
|
|
9027
|
+
{
|
|
9028
|
+
"kind": "Content",
|
|
9029
|
+
"text": "): "
|
|
9030
|
+
},
|
|
9031
|
+
{
|
|
9032
|
+
"kind": "Content",
|
|
9033
|
+
"text": "void"
|
|
9034
|
+
},
|
|
9035
|
+
{
|
|
9036
|
+
"kind": "Content",
|
|
9037
|
+
"text": ";"
|
|
9038
|
+
}
|
|
9039
|
+
],
|
|
9040
|
+
"isOptional": false,
|
|
9041
|
+
"returnTypeTokenRange": {
|
|
9042
|
+
"startIndex": 5,
|
|
9043
|
+
"endIndex": 6
|
|
9044
|
+
},
|
|
9045
|
+
"releaseTag": "Public",
|
|
9046
|
+
"overloadIndex": 1,
|
|
9047
|
+
"parameters": [
|
|
9048
|
+
{
|
|
9049
|
+
"parameterName": "isAsync",
|
|
9050
|
+
"parameterTypeTokenRange": {
|
|
9051
|
+
"startIndex": 1,
|
|
9052
|
+
"endIndex": 2
|
|
9053
|
+
}
|
|
9054
|
+
},
|
|
9055
|
+
{
|
|
9056
|
+
"parameterName": "unloadComplete",
|
|
9057
|
+
"parameterTypeTokenRange": {
|
|
9058
|
+
"startIndex": 3,
|
|
9059
|
+
"endIndex": 4
|
|
9060
|
+
}
|
|
9061
|
+
}
|
|
9062
|
+
],
|
|
9063
|
+
"name": "unload"
|
|
8505
9064
|
}
|
|
8506
9065
|
],
|
|
8507
9066
|
"extendsTokenRanges": [
|
|
@@ -15808,6 +16367,101 @@
|
|
|
15808
16367
|
],
|
|
15809
16368
|
"extendsTokenRanges": []
|
|
15810
16369
|
},
|
|
16370
|
+
{
|
|
16371
|
+
"kind": "Interface",
|
|
16372
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!IUnloadHandlerContainer:interface",
|
|
16373
|
+
"docComment": "",
|
|
16374
|
+
"excerptTokens": [
|
|
16375
|
+
{
|
|
16376
|
+
"kind": "Content",
|
|
16377
|
+
"text": "export interface IUnloadHandlerContainer "
|
|
16378
|
+
}
|
|
16379
|
+
],
|
|
16380
|
+
"releaseTag": "Public",
|
|
16381
|
+
"name": "IUnloadHandlerContainer",
|
|
16382
|
+
"members": [
|
|
16383
|
+
{
|
|
16384
|
+
"kind": "PropertySignature",
|
|
16385
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!IUnloadHandlerContainer#add:member",
|
|
16386
|
+
"docComment": "",
|
|
16387
|
+
"excerptTokens": [
|
|
16388
|
+
{
|
|
16389
|
+
"kind": "Content",
|
|
16390
|
+
"text": "add: "
|
|
16391
|
+
},
|
|
16392
|
+
{
|
|
16393
|
+
"kind": "Content",
|
|
16394
|
+
"text": "(handler: "
|
|
16395
|
+
},
|
|
16396
|
+
{
|
|
16397
|
+
"kind": "Reference",
|
|
16398
|
+
"text": "UnloadHandler",
|
|
16399
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!UnloadHandler:type"
|
|
16400
|
+
},
|
|
16401
|
+
{
|
|
16402
|
+
"kind": "Content",
|
|
16403
|
+
"text": ") => void"
|
|
16404
|
+
},
|
|
16405
|
+
{
|
|
16406
|
+
"kind": "Content",
|
|
16407
|
+
"text": ";"
|
|
16408
|
+
}
|
|
16409
|
+
],
|
|
16410
|
+
"isOptional": false,
|
|
16411
|
+
"releaseTag": "Public",
|
|
16412
|
+
"name": "add",
|
|
16413
|
+
"propertyTypeTokenRange": {
|
|
16414
|
+
"startIndex": 1,
|
|
16415
|
+
"endIndex": 4
|
|
16416
|
+
}
|
|
16417
|
+
},
|
|
16418
|
+
{
|
|
16419
|
+
"kind": "PropertySignature",
|
|
16420
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!IUnloadHandlerContainer#run:member",
|
|
16421
|
+
"docComment": "",
|
|
16422
|
+
"excerptTokens": [
|
|
16423
|
+
{
|
|
16424
|
+
"kind": "Content",
|
|
16425
|
+
"text": "run: "
|
|
16426
|
+
},
|
|
16427
|
+
{
|
|
16428
|
+
"kind": "Content",
|
|
16429
|
+
"text": "(itemCtx: "
|
|
16430
|
+
},
|
|
16431
|
+
{
|
|
16432
|
+
"kind": "Reference",
|
|
16433
|
+
"text": "IProcessTelemetryUnloadContext",
|
|
16434
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!IProcessTelemetryUnloadContext:interface"
|
|
16435
|
+
},
|
|
16436
|
+
{
|
|
16437
|
+
"kind": "Content",
|
|
16438
|
+
"text": ", unloadState: "
|
|
16439
|
+
},
|
|
16440
|
+
{
|
|
16441
|
+
"kind": "Reference",
|
|
16442
|
+
"text": "ITelemetryUnloadState",
|
|
16443
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!ITelemetryUnloadState:interface"
|
|
16444
|
+
},
|
|
16445
|
+
{
|
|
16446
|
+
"kind": "Content",
|
|
16447
|
+
"text": ") => void"
|
|
16448
|
+
},
|
|
16449
|
+
{
|
|
16450
|
+
"kind": "Content",
|
|
16451
|
+
"text": ";"
|
|
16452
|
+
}
|
|
16453
|
+
],
|
|
16454
|
+
"isOptional": false,
|
|
16455
|
+
"releaseTag": "Public",
|
|
16456
|
+
"name": "run",
|
|
16457
|
+
"propertyTypeTokenRange": {
|
|
16458
|
+
"startIndex": 1,
|
|
16459
|
+
"endIndex": 6
|
|
16460
|
+
}
|
|
16461
|
+
}
|
|
16462
|
+
],
|
|
16463
|
+
"extendsTokenRanges": []
|
|
16464
|
+
},
|
|
15811
16465
|
{
|
|
15812
16466
|
"kind": "TypeAlias",
|
|
15813
16467
|
"canonicalReference": "@microsoft/applicationinsights-core-js!LoggingSeverity:type",
|
|
@@ -19249,6 +19903,27 @@
|
|
|
19249
19903
|
"endIndex": 2
|
|
19250
19904
|
}
|
|
19251
19905
|
},
|
|
19906
|
+
{
|
|
19907
|
+
"kind": "EnumMember",
|
|
19908
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!SendRequestReason.SdkUnload:member",
|
|
19909
|
+
"docComment": "/**\n * The SDK is unloading\n */\n",
|
|
19910
|
+
"excerptTokens": [
|
|
19911
|
+
{
|
|
19912
|
+
"kind": "Content",
|
|
19913
|
+
"text": "SdkUnload = "
|
|
19914
|
+
},
|
|
19915
|
+
{
|
|
19916
|
+
"kind": "Content",
|
|
19917
|
+
"text": "6"
|
|
19918
|
+
}
|
|
19919
|
+
],
|
|
19920
|
+
"releaseTag": "Public",
|
|
19921
|
+
"name": "SdkUnload",
|
|
19922
|
+
"initializerTokenRange": {
|
|
19923
|
+
"startIndex": 1,
|
|
19924
|
+
"endIndex": 2
|
|
19925
|
+
}
|
|
19926
|
+
},
|
|
19252
19927
|
{
|
|
19253
19928
|
"kind": "EnumMember",
|
|
19254
19929
|
"canonicalReference": "@microsoft/applicationinsights-core-js!SendRequestReason.SyncEvent:member",
|
|
@@ -20180,6 +20855,49 @@
|
|
|
20180
20855
|
"endIndex": 0
|
|
20181
20856
|
}
|
|
20182
20857
|
},
|
|
20858
|
+
{
|
|
20859
|
+
"kind": "TypeAlias",
|
|
20860
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!UnloadHandler:type",
|
|
20861
|
+
"docComment": "",
|
|
20862
|
+
"excerptTokens": [
|
|
20863
|
+
{
|
|
20864
|
+
"kind": "Content",
|
|
20865
|
+
"text": "export declare type UnloadHandler = "
|
|
20866
|
+
},
|
|
20867
|
+
{
|
|
20868
|
+
"kind": "Content",
|
|
20869
|
+
"text": "(itemCtx: "
|
|
20870
|
+
},
|
|
20871
|
+
{
|
|
20872
|
+
"kind": "Reference",
|
|
20873
|
+
"text": "IProcessTelemetryUnloadContext",
|
|
20874
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!IProcessTelemetryUnloadContext:interface"
|
|
20875
|
+
},
|
|
20876
|
+
{
|
|
20877
|
+
"kind": "Content",
|
|
20878
|
+
"text": ", unloadState: "
|
|
20879
|
+
},
|
|
20880
|
+
{
|
|
20881
|
+
"kind": "Reference",
|
|
20882
|
+
"text": "ITelemetryUnloadState",
|
|
20883
|
+
"canonicalReference": "@microsoft/applicationinsights-core-js!ITelemetryUnloadState:interface"
|
|
20884
|
+
},
|
|
20885
|
+
{
|
|
20886
|
+
"kind": "Content",
|
|
20887
|
+
"text": ") => void"
|
|
20888
|
+
},
|
|
20889
|
+
{
|
|
20890
|
+
"kind": "Content",
|
|
20891
|
+
"text": ";"
|
|
20892
|
+
}
|
|
20893
|
+
],
|
|
20894
|
+
"releaseTag": "Public",
|
|
20895
|
+
"name": "UnloadHandler",
|
|
20896
|
+
"typeTokenRange": {
|
|
20897
|
+
"startIndex": 1,
|
|
20898
|
+
"endIndex": 6
|
|
20899
|
+
}
|
|
20900
|
+
},
|
|
20183
20901
|
{
|
|
20184
20902
|
"kind": "Function",
|
|
20185
20903
|
"canonicalReference": "@microsoft/applicationinsights-core-js!useXDomainRequest:function(1)",
|