@microsoft/applicationinsights-react-js 19.3.6-nightly.2504-03 → 19.3.6-nightly.2504-06

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "metadata": {
3
3
  "toolPackage": "@microsoft/api-extractor",
4
- "toolVersion": "7.52.3",
4
+ "toolVersion": "7.52.5",
5
5
  "schemaVersion": 1011,
6
6
  "oldestForwardsCompatibleVersion": 1001,
7
7
  "tsdocConfig": {
@@ -993,6 +993,37 @@
993
993
  "overloadIndex": 1,
994
994
  "parameters": []
995
995
  },
996
+ {
997
+ "kind": "Property",
998
+ "canonicalReference": "@microsoft/applicationinsights-react-js!ReactPlugin#context:member",
999
+ "docComment": "",
1000
+ "excerptTokens": [
1001
+ {
1002
+ "kind": "Content",
1003
+ "text": "readonly context: "
1004
+ },
1005
+ {
1006
+ "kind": "Reference",
1007
+ "text": "Common_ITelemetryContext",
1008
+ "canonicalReference": "@microsoft/applicationinsights-common!ITelemetryContext:interface"
1009
+ },
1010
+ {
1011
+ "kind": "Content",
1012
+ "text": ";"
1013
+ }
1014
+ ],
1015
+ "isReadonly": true,
1016
+ "isOptional": false,
1017
+ "releaseTag": "Public",
1018
+ "name": "context",
1019
+ "propertyTypeTokenRange": {
1020
+ "startIndex": 1,
1021
+ "endIndex": 2
1022
+ },
1023
+ "isStatic": false,
1024
+ "isProtected": false,
1025
+ "isAbstract": false
1026
+ },
996
1027
  {
997
1028
  "kind": "Method",
998
1029
  "canonicalReference": "@microsoft/applicationinsights-react-js!ReactPlugin#getAppInsights:member(1)",
@@ -20,6 +20,7 @@ import { IMetricTelemetry } from '@microsoft/applicationinsights-common';
20
20
  import { IPageViewTelemetry } from '@microsoft/applicationinsights-common';
21
21
  import { IPlugin } from '@microsoft/applicationinsights-core-js';
22
22
  import { IProcessTelemetryContext } from '@microsoft/applicationinsights-core-js';
23
+ import { ITelemetryContext } from '@microsoft/applicationinsights-common';
23
24
  import { ITelemetryItem } from '@microsoft/applicationinsights-core-js';
24
25
  import { ITelemetryPluginChain } from '@microsoft/applicationinsights-core-js';
25
26
  import { ITraceTelemetry } from '@microsoft/applicationinsights-common';
@@ -86,6 +87,8 @@ export interface IReactExtensionConfig {
86
87
  // @public (undocumented)
87
88
  export class ReactPlugin extends BaseTelemetryPlugin {
88
89
  constructor();
90
+ // (undocumented)
91
+ readonly context: ITelemetryContext;
89
92
  getAppInsights(): IAppInsights;
90
93
  getCookieMgr(): ICookieMgr;
91
94
  // (undocumented)
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Microsoft Application Insights react plugin, 19.3.6-nightly.2504-03
2
+ * Microsoft Application Insights react plugin, 19.3.6-nightly.2504-06
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 { IProcessTelemetryContext } from '@microsoft/applicationinsights-core-js';
26
+ import { ITelemetryContext } from '@microsoft/applicationinsights-common';
26
27
  import { ITelemetryItem } from '@microsoft/applicationinsights-core-js';
27
28
  import { ITelemetryPluginChain } from '@microsoft/applicationinsights-core-js';
28
29
  import { ITraceTelemetry } from '@microsoft/applicationinsights-common';
@@ -92,6 +93,7 @@ declare namespace ApplicationInsights {
92
93
  class ReactPlugin extends BaseTelemetryPlugin {
93
94
  priority: number;
94
95
  identifier: string;
96
+ readonly context: ITelemetryContext;
95
97
  constructor();
96
98
  initialize(config: IConfiguration & IConfig, core: IAppInsightsCore, extensions: IPlugin[], pluginChain?: ITelemetryPluginChain): void;
97
99
  /**