@microsoft/applicationinsights-dependencies-js 2.8.0-nightly.2202-06 → 2.8.0-nightly.2204-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.
package/src/ajaxRecord.ts CHANGED
@@ -141,7 +141,7 @@ function _populatePerfData(ajaxData:ajaxRecord, dependency:IDependencyTelemetry)
141
141
  arrForEach(serverTiming, (value, idx) => {
142
142
  let name = normalizeJsName(value[strName] || "" + idx);
143
143
  let newValue = server[name] || {};
144
- objForEachKey(value, (key, val) => {
144
+ objForEachKey(value, (key, val: any) => {
145
145
  if (key !== strName && isString(val) || isNumber(val)) {
146
146
  if (newValue[key]) {
147
147
  val = newValue[key] + ";" + val;
package/types/ajax.d.ts CHANGED
@@ -22,7 +22,6 @@ export declare class AjaxMonitor extends BaseTelemetryPlugin implements IDepende
22
22
  priority: number;
23
23
  constructor();
24
24
  initialize(config: IConfiguration & IConfig, core: IAppInsightsCore, extensions: IPlugin[], pluginChain?: ITelemetryPluginChain): void;
25
- teardown(): void;
26
25
  processTelemetry(item: ITelemetryItem, itemCtx?: IProcessTelemetryContext): void;
27
26
  /**
28
27
  * Logs dependency call
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.19.4"
8
+ "packageVersion": "7.20.0"
9
9
  }
10
10
  ]
11
11
  }