@microsoft/applicationinsights-dependencies-js 3.0.0-beta.2208-19 → 3.0.0-beta.2209-01

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.
Files changed (37) hide show
  1. package/browser/applicationinsights-dependencies-js.integrity.json +9 -9
  2. package/browser/applicationinsights-dependencies-js.js +149 -102
  3. package/browser/applicationinsights-dependencies-js.js.map +1 -1
  4. package/browser/applicationinsights-dependencies-js.min.js +2 -2
  5. package/browser/applicationinsights-dependencies-js.min.js.map +1 -1
  6. package/dist/applicationinsights-dependencies-js.api.json +667 -30
  7. package/dist/applicationinsights-dependencies-js.api.md +63 -9
  8. package/dist/applicationinsights-dependencies-js.d.ts +73 -8
  9. package/dist/applicationinsights-dependencies-js.js +149 -102
  10. package/dist/applicationinsights-dependencies-js.js.map +1 -1
  11. package/dist/applicationinsights-dependencies-js.min.js +2 -2
  12. package/dist/applicationinsights-dependencies-js.min.js.map +1 -1
  13. package/dist/applicationinsights-dependencies-js.rollup.d.ts +75 -10
  14. package/dist-esm/DependencyInitializer.js +6 -0
  15. package/dist-esm/DependencyInitializer.js.map +1 -0
  16. package/dist-esm/DependencyListener.js +1 -1
  17. package/dist-esm/InternalConstants.js +1 -1
  18. package/dist-esm/__DynamicConstants.js +6 -6
  19. package/dist-esm/__DynamicConstants.js.map +1 -1
  20. package/dist-esm/ajax.js +153 -98
  21. package/dist-esm/ajax.js.map +1 -1
  22. package/dist-esm/ajaxRecord.js +1 -1
  23. package/dist-esm/ajaxUtils.js +1 -1
  24. package/dist-esm/applicationinsights-dependencies-js.js +1 -1
  25. package/package.json +3 -3
  26. package/src/DependencyInitializer.ts +44 -0
  27. package/src/DependencyListener.ts +13 -3
  28. package/src/__DynamicConstants.ts +5 -5
  29. package/src/ajax.ts +183 -106
  30. package/src/ajaxRecord.ts +5 -0
  31. package/src/applicationinsights-dependencies-js.ts +5 -1
  32. package/types/DependencyInitializer.d.ts +41 -0
  33. package/types/DependencyListener.d.ts +14 -3
  34. package/types/__DynamicConstants.d.ts +4 -4
  35. package/types/ajax.d.ts +18 -5
  36. package/types/ajaxRecord.d.ts +6 -0
  37. package/types/applicationinsights-dependencies-js.d.ts +2 -0
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Microsoft Application Insights XHR dependencies plugin, 3.0.0-beta.2208-19
2
+ * Microsoft Application Insights XHR dependencies plugin, 3.0.0-beta.2209-01
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  *
5
5
  * Microsoft Application Insights Team
@@ -26,10 +26,10 @@ import { IProcessTelemetryContext } from '@microsoft/applicationinsights-core-js
26
26
  import { ITelemetryItem } from '@microsoft/applicationinsights-core-js';
27
27
  import { ITelemetryPluginChain } from '@microsoft/applicationinsights-core-js';
28
28
 
29
- export declare class AjaxPlugin extends BaseTelemetryPlugin implements IDependenciesPlugin, IInstrumentationRequirements {
29
+ export declare class AjaxPlugin extends BaseTelemetryPlugin implements IDependenciesPlugin, IInstrumentationRequirements, IDependencyListenerContainer {
30
30
  static identifier: string;
31
- static getDefaultConfig(): ICorrelationConfig;
32
- static getEmptyConfig(): ICorrelationConfig;
31
+ static getDefaultConfig: typeof _getDefaultConfig;
32
+ static getEmptyConfig: typeof _getEmptyConfig;
33
33
  identifier: string;
34
34
  priority: number;
35
35
  constructor();
@@ -50,6 +50,15 @@ export declare class AjaxPlugin extends BaseTelemetryPlugin implements IDependen
50
50
  * @returns - A IDependencyListenerHandler to enable the initializer to be removed
51
51
  */
52
52
  addDependencyListener(dependencyListener: DependencyListenerFunction): IDependencyListenerHandler;
53
+ /**
54
+ * Add an dependency telemetry initializer callback function to allow populating additional properties or drop the request.
55
+ * It is called after the dependency call has completed and any available performance details are available. A dependency
56
+ * initializer is similar to the TelemetryInitializer function but it allows you to block the reporting of the dependency
57
+ * request so that it doesn't count against the `maxAjaxCallsPerView`.
58
+ * @param dependencyInitializer - The Dependency Telemetry Initializer function
59
+ * @returns - A IDependencyInitializerHandler to enable the initializer to be removed
60
+ */
61
+ addDependencyInitializer(dependencyInitializer: DependencyInitializerFunction): IDependencyInitializerHandler;
53
62
  /**
54
63
  * Protected function to allow sub classes the chance to add additional properties to the dependency event
55
64
  * before it's sent. This function calls track, so sub-classes must call this function after they have
@@ -104,6 +113,12 @@ export declare class ajaxRecord {
104
113
  * The trace context to use for reporting the remote dependency call
105
114
  */
106
115
  eventTraceCtx: ITraceCtx;
116
+ /**
117
+ * The listener assigned context values that will be passed to any dependency initializer
118
+ */
119
+ context?: {
120
+ [key: string]: any;
121
+ };
107
122
  constructor(traceId: string, spanId: string, logger: IDiagnosticLogger, traceCtx?: IDistributedTraceContext);
108
123
  getAbsoluteUrl(): string;
109
124
  getPathName(): string;
@@ -113,13 +128,26 @@ export declare class ajaxRecord {
113
128
  };
114
129
  }
115
130
 
116
- declare type DependencyListenerFunction = (dependencyDetails: IDependencyListenerDetails) => void;
131
+ /**
132
+ * The initializer function that will be called, if it returns false the event will be dropped and not reported
133
+ * or counted against the `maxAjaxCallsPerView`.
134
+ */
135
+ export declare type DependencyInitializerFunction = (item: IDependencyInitializerDetails) => boolean | void;
136
+
137
+ /**
138
+ * The function that will get called when the ajax request is about to occur.
139
+ */
140
+ export declare type DependencyListenerFunction = (dependencyDetails: IDependencyListenerDetails) => void;
117
141
 
118
142
  export declare const DfltAjaxCorrelationHeaderExDomains: string[];
119
143
 
120
144
  declare const _DYN_HEADER_MAP = "headerMap";
121
145
 
122
- declare const _DYN_INCLUDE_CORRELATION_3 = "includeCorrelationHeaders";
146
+ declare const _DYN_INCLUDE_CORRELATION_2 = "includeCorrelationHeaders";
147
+
148
+ declare function _getDefaultConfig(): ICorrelationConfig;
149
+
150
+ declare function _getEmptyConfig(): ICorrelationConfig;
123
151
 
124
152
  declare interface IAjaxRecordResponse {
125
153
  statusText: string;
@@ -138,6 +166,38 @@ export declare interface IDependenciesPlugin extends IDependencyListenerContaine
138
166
  trackDependencyData(dependency: IDependencyTelemetry): void;
139
167
  }
140
168
 
169
+ export declare interface IDependencyHandler {
170
+ remove(): void;
171
+ }
172
+
173
+ export declare interface IDependencyInitializerDetails {
174
+ /**
175
+ * The DependencyTelemetry event that will be passed to the `trackDependencyDataInternal` function.
176
+ */
177
+ item: IDependencyTelemetry;
178
+ /**
179
+ * Additional properties to be added to the event
180
+ */
181
+ properties?: {
182
+ [key: string]: any;
183
+ };
184
+ /**
185
+ * Additional system properties to be added to the event.
186
+ */
187
+ sysProperties?: {
188
+ [key: string]: any;
189
+ };
190
+ /**
191
+ * The context that the application can assigned via the dependency listener(s)
192
+ */
193
+ context?: {
194
+ [key: string]: any;
195
+ };
196
+ }
197
+
198
+ export declare interface IDependencyInitializerHandler extends IDependencyHandler {
199
+ }
200
+
141
201
  declare interface IDependencyListenerContainer {
142
202
  /**
143
203
  * Add an ajax listener which is called just prior to the request being sent and before the correlation headers are added, to allow you
@@ -148,7 +208,7 @@ declare interface IDependencyListenerContainer {
148
208
  addDependencyListener(dependencyListener: DependencyListenerFunction): IDependencyListenerHandler;
149
209
  }
150
210
 
151
- declare interface IDependencyListenerDetails {
211
+ export declare interface IDependencyListenerDetails {
152
212
  /**
153
213
  * The current core instance
154
214
  */
@@ -185,14 +245,19 @@ declare interface IDependencyListenerDetails {
185
245
  * https://www.w3.org/TR/trace-context/#trace-flags
186
246
  */
187
247
  traceFlags?: number;
248
+ /**
249
+ * [Optional] Context that the application can assign that will also be passed to any dependency initializer
250
+ */
251
+ context?: {
252
+ [key: string]: any;
253
+ };
188
254
  }
189
255
 
190
- declare interface IDependencyListenerHandler {
191
- remove(): void;
256
+ export declare interface IDependencyListenerHandler extends IDependencyHandler {
192
257
  }
193
258
 
194
259
  export declare interface IInstrumentationRequirements extends IDependenciesPlugin {
195
- [_DYN_INCLUDE_CORRELATION_3]: (ajaxData: ajaxRecord, input?: Request | string, init?: RequestInit, xhr?: XMLHttpRequestInstrumented) => any;
260
+ [_DYN_INCLUDE_CORRELATION_2]: (ajaxData: ajaxRecord, input?: Request | string, init?: RequestInit, xhr?: XMLHttpRequestInstrumented) => any;
196
261
  }
197
262
 
198
263
  declare interface ITraceCtx {
@@ -0,0 +1,6 @@
1
+ /*
2
+ * Application Insights JavaScript SDK - Dependencies Plugin, 3.0.0-beta.2209-01
3
+ * Copyright (c) Microsoft and contributors. All rights reserved.
4
+ */
5
+ export {};
6
+ //# sourceMappingURL=DependencyInitializer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DependencyInitializer.js.map","sources":["DependencyInitializer.js"],"sourcesContent":["export {};\r\n//# sourceMappingURL=DependencyInitializer.js.map"],"names":[],"mappings":";;;;AAAA;AACA"}
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Dependencies Plugin, 3.0.0-beta.2208-19
2
+ * Application Insights JavaScript SDK - Dependencies Plugin, 3.0.0-beta.2209-01
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Dependencies Plugin, 3.0.0-beta.2208-19
2
+ * Application Insights JavaScript SDK - Dependencies Plugin, 3.0.0-beta.2209-01
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - Dependencies Plugin, 3.0.0-beta.2208-19
2
+ * Application Insights JavaScript SDK - Dependencies Plugin, 3.0.0-beta.2209-01
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
 
@@ -13,21 +13,21 @@
13
13
  // ###########################################################################################################################################
14
14
  export var _DYN_REQUEST_URL = "requestUrl"; // Count: 12
15
15
  export var _DYN_INST = "inst"; // Count: 5
16
- export var _DYN_LENGTH = "length"; // Count: 9
16
+ export var _DYN_LENGTH = "length"; // Count: 10
17
17
  export var _DYN_TRACE_ID = "traceID"; // Count: 9
18
18
  export var _DYN_SPAN_ID = "spanID"; // Count: 8
19
19
  export var _DYN_TRACE_FLAGS = "traceFlags"; // Count: 13
20
- export var _DYN_CORE = "core"; // Count: 6
20
+ export var _DYN_CONTEXT = "context"; // Count: 7
21
21
  export var _DYN_TRACE_ID0 = "traceId"; // Count: 5
22
22
  export var _DYN_SPAN_ID1 = "spanId"; // Count: 5
23
- export var _DYN_GET_DEFAULT_CONFIG = "getDefaultConfig"; // Count: 2
24
- export var _DYN_TRACK_DEPENDENCY_DAT2 = "trackDependencyDataInternal"; // Count: 4
25
- export var _DYN_INCLUDE_CORRELATION_3 = "includeCorrelationHeaders"; // Count: 4
23
+ export var _DYN_CORE = "core"; // Count: 8
24
+ export var _DYN_INCLUDE_CORRELATION_2 = "includeCorrelationHeaders"; // Count: 4
26
25
  export var _DYN_GET_ABSOLUTE_URL = "getAbsoluteUrl"; // Count: 3
27
26
  export var _DYN_HEADERS = "headers"; // Count: 6
28
27
  export var _DYN_REQUEST_HEADERS = "requestHeaders"; // Count: 13
29
28
  export var _DYN_APP_ID = "appId"; // Count: 5
30
29
  export var _DYN_SET_REQUEST_HEADER = "setRequestHeader"; // Count: 3
30
+ export var _DYN_TRACK_DEPENDENCY_DAT3 = "trackDependencyDataInternal"; // Count: 2
31
31
  export var _DYN_DISTRIBUTED_TRACING_4 = "distributedTracingMode"; // Count: 3
32
32
  export var _DYN_START_TIME = "startTime"; // Count: 6
33
33
  export var _DYN_TO_LOWER_CASE = "toLowerCase"; // Count: 6
@@ -1 +1 @@
1
- {"version":3,"file":"__DynamicConstants.js.map","sources":["__DynamicConstants.js"],"sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n// @skip-file-minify\r\n// ##############################################################\r\n// AUTO GENERATED FILE: This file is Auto Generated during build.\r\n// ##############################################################\r\n// ###########################################################################################################################################\r\n// Note: DON'T Export these const from the package as we are still targeting IE this will export a mutable variables that someone could change\r\n// ###########################################################################################################################################\r\nexport var _DYN_REQUEST_URL = \"requestUrl\"; // Count: 12\r\nexport var _DYN_INST = \"inst\"; // Count: 5\r\nexport var _DYN_LENGTH = \"length\"; // Count: 9\r\nexport var _DYN_TRACE_ID = \"traceID\"; // Count: 9\r\nexport var _DYN_SPAN_ID = \"spanID\"; // Count: 8\r\nexport var _DYN_TRACE_FLAGS = \"traceFlags\"; // Count: 13\r\nexport var _DYN_CORE = \"core\"; // Count: 6\r\nexport var _DYN_TRACE_ID0 = \"traceId\"; // Count: 5\r\nexport var _DYN_SPAN_ID1 = \"spanId\"; // Count: 5\r\nexport var _DYN_GET_DEFAULT_CONFIG = \"getDefaultConfig\"; // Count: 2\r\nexport var _DYN_TRACK_DEPENDENCY_DAT2 = \"trackDependencyDataInternal\"; // Count: 4\r\nexport var _DYN_INCLUDE_CORRELATION_3 = \"includeCorrelationHeaders\"; // Count: 4\r\nexport var _DYN_GET_ABSOLUTE_URL = \"getAbsoluteUrl\"; // Count: 3\r\nexport var _DYN_HEADERS = \"headers\"; // Count: 6\r\nexport var _DYN_REQUEST_HEADERS = \"requestHeaders\"; // Count: 13\r\nexport var _DYN_APP_ID = \"appId\"; // Count: 5\r\nexport var _DYN_SET_REQUEST_HEADER = \"setRequestHeader\"; // Count: 3\r\nexport var _DYN_DISTRIBUTED_TRACING_4 = \"distributedTracingMode\"; // Count: 3\r\nexport var _DYN_START_TIME = \"startTime\"; // Count: 6\r\nexport var _DYN_TO_LOWER_CASE = \"toLowerCase\"; // Count: 6\r\nexport var _DYN_ENABLE_REQUEST_HEADE5 = \"enableRequestHeaderTracking\"; // Count: 2\r\nexport var _DYN_ENABLE_AJAX_ERROR_ST6 = \"enableAjaxErrorStatusText\"; // Count: 2\r\nexport var _DYN_ENABLE_AJAX_PERF_TRA7 = \"enableAjaxPerfTracking\"; // Count: 2\r\nexport var _DYN_MAX_AJAX_CALLS_PER_V8 = \"maxAjaxCallsPerView\"; // Count: 2\r\nexport var _DYN_ENABLE_RESPONSE_HEAD9 = \"enableResponseHeaderTracking\"; // Count: 2\r\nexport var _DYN_EXCLUDE_REQUEST_FROM10 = \"excludeRequestFromAutoTrackingPatterns\"; // Count: 2\r\nexport var _DYN_ADD_REQUEST_CONTEXT = \"addRequestContext\"; // Count: 2\r\nexport var _DYN_DISABLE_AJAX_TRACKIN11 = \"disableAjaxTracking\"; // Count: 2\r\nexport var _DYN_DISABLE_FETCH_TRACKI12 = \"disableFetchTracking\"; // Count: 2\r\nexport var _DYN_STATUS = \"status\"; // Count: 10\r\nexport var _DYN_STATUS_TEXT = \"statusText\"; // Count: 8\r\nexport var _DYN_HEADER_MAP = \"headerMap\"; // Count: 8\r\nexport var _DYN_OPEN_DONE = \"openDone\"; // Count: 3\r\nexport var _DYN_SEND_DONE = \"sendDone\"; // Count: 3\r\nexport var _DYN_REQUEST_SENT_TIME = \"requestSentTime\"; // Count: 9\r\nexport var _DYN_ABORT_DONE = \"abortDone\"; // Count: 3\r\nexport var _DYN_GET_TRACE_ID = \"getTraceId\"; // Count: 3\r\nexport var _DYN_GET_TRACE_FLAGS = \"getTraceFlags\"; // Count: 3\r\nexport var _DYN_METHOD = \"method\"; // Count: 10\r\nexport var _DYN_ERROR_STATUS_TEXT = \"errorStatusText\"; // Count: 3\r\nexport var _DYN_STATE_CHANGE_ATTACHE13 = \"stateChangeAttached\"; // Count: 2\r\nexport var _DYN_RESPONSE_TEXT = \"responseText\"; // Count: 5\r\nexport var _DYN_RESPONSE_FINISHED_TI14 = \"responseFinishedTime\"; // Count: 7\r\nexport var _DYN__CREATE_TRACK_ITEM = \"CreateTrackItem\"; // Count: 3\r\nexport var _DYN_RESPONSE = \"response\"; // Count: 4\r\nexport var _DYN_GET_ALL_RESPONSE_HEA15 = \"getAllResponseHeaders\"; // Count: 2\r\nexport var _DYN_GET_PART_APROPS = \"getPartAProps\"; // Count: 3\r\nexport var _DYN_PERF_MARK = \"perfMark\"; // Count: 4\r\nexport var _DYN_AJAX_PERF_LOOKUP_DEL16 = \"ajaxPerfLookupDelay\"; // Count: 2\r\nexport var _DYN_NAME = \"name\"; // Count: 6\r\nexport var _DYN_PERF_TIMING = \"perfTiming\"; // Count: 3\r\nexport var _DYN_AJAX_DIAGNOSTICS_MES17 = \"ajaxDiagnosticsMessage\"; // Count: 3\r\nexport var _DYN_CORRELATION_CONTEXT = \"correlationContext\"; // Count: 3\r\nexport var _DYN_AJAX_TOTAL_DURATION = \"ajaxTotalDuration\"; // Count: 3\r\nexport var _DYN_EVENT_TRACE_CTX = \"eventTraceCtx\"; // Count: 3\r\n//# sourceMappingURL=__DynamicConstants.js.map"],"names":[],"mappings":";;;;AAA4D;AAC1B;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA"}
1
+ {"version":3,"file":"__DynamicConstants.js.map","sources":["__DynamicConstants.js"],"sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n// @skip-file-minify\r\n// ##############################################################\r\n// AUTO GENERATED FILE: This file is Auto Generated during build.\r\n// ##############################################################\r\n// ###########################################################################################################################################\r\n// Note: DON'T Export these const from the package as we are still targeting IE this will export a mutable variables that someone could change\r\n// ###########################################################################################################################################\r\nexport var _DYN_REQUEST_URL = \"requestUrl\"; // Count: 12\r\nexport var _DYN_INST = \"inst\"; // Count: 5\r\nexport var _DYN_LENGTH = \"length\"; // Count: 10\r\nexport var _DYN_TRACE_ID = \"traceID\"; // Count: 9\r\nexport var _DYN_SPAN_ID = \"spanID\"; // Count: 8\r\nexport var _DYN_TRACE_FLAGS = \"traceFlags\"; // Count: 13\r\nexport var _DYN_CONTEXT = \"context\"; // Count: 7\r\nexport var _DYN_TRACE_ID0 = \"traceId\"; // Count: 5\r\nexport var _DYN_SPAN_ID1 = \"spanId\"; // Count: 5\r\nexport var _DYN_CORE = \"core\"; // Count: 8\r\nexport var _DYN_INCLUDE_CORRELATION_2 = \"includeCorrelationHeaders\"; // Count: 4\r\nexport var _DYN_GET_ABSOLUTE_URL = \"getAbsoluteUrl\"; // Count: 3\r\nexport var _DYN_HEADERS = \"headers\"; // Count: 6\r\nexport var _DYN_REQUEST_HEADERS = \"requestHeaders\"; // Count: 13\r\nexport var _DYN_APP_ID = \"appId\"; // Count: 5\r\nexport var _DYN_SET_REQUEST_HEADER = \"setRequestHeader\"; // Count: 3\r\nexport var _DYN_TRACK_DEPENDENCY_DAT3 = \"trackDependencyDataInternal\"; // Count: 2\r\nexport var _DYN_DISTRIBUTED_TRACING_4 = \"distributedTracingMode\"; // Count: 3\r\nexport var _DYN_START_TIME = \"startTime\"; // Count: 6\r\nexport var _DYN_TO_LOWER_CASE = \"toLowerCase\"; // Count: 6\r\nexport var _DYN_ENABLE_REQUEST_HEADE5 = \"enableRequestHeaderTracking\"; // Count: 2\r\nexport var _DYN_ENABLE_AJAX_ERROR_ST6 = \"enableAjaxErrorStatusText\"; // Count: 2\r\nexport var _DYN_ENABLE_AJAX_PERF_TRA7 = \"enableAjaxPerfTracking\"; // Count: 2\r\nexport var _DYN_MAX_AJAX_CALLS_PER_V8 = \"maxAjaxCallsPerView\"; // Count: 2\r\nexport var _DYN_ENABLE_RESPONSE_HEAD9 = \"enableResponseHeaderTracking\"; // Count: 2\r\nexport var _DYN_EXCLUDE_REQUEST_FROM10 = \"excludeRequestFromAutoTrackingPatterns\"; // Count: 2\r\nexport var _DYN_ADD_REQUEST_CONTEXT = \"addRequestContext\"; // Count: 2\r\nexport var _DYN_DISABLE_AJAX_TRACKIN11 = \"disableAjaxTracking\"; // Count: 2\r\nexport var _DYN_DISABLE_FETCH_TRACKI12 = \"disableFetchTracking\"; // Count: 2\r\nexport var _DYN_STATUS = \"status\"; // Count: 10\r\nexport var _DYN_STATUS_TEXT = \"statusText\"; // Count: 8\r\nexport var _DYN_HEADER_MAP = \"headerMap\"; // Count: 8\r\nexport var _DYN_OPEN_DONE = \"openDone\"; // Count: 3\r\nexport var _DYN_SEND_DONE = \"sendDone\"; // Count: 3\r\nexport var _DYN_REQUEST_SENT_TIME = \"requestSentTime\"; // Count: 9\r\nexport var _DYN_ABORT_DONE = \"abortDone\"; // Count: 3\r\nexport var _DYN_GET_TRACE_ID = \"getTraceId\"; // Count: 3\r\nexport var _DYN_GET_TRACE_FLAGS = \"getTraceFlags\"; // Count: 3\r\nexport var _DYN_METHOD = \"method\"; // Count: 10\r\nexport var _DYN_ERROR_STATUS_TEXT = \"errorStatusText\"; // Count: 3\r\nexport var _DYN_STATE_CHANGE_ATTACHE13 = \"stateChangeAttached\"; // Count: 2\r\nexport var _DYN_RESPONSE_TEXT = \"responseText\"; // Count: 5\r\nexport var _DYN_RESPONSE_FINISHED_TI14 = \"responseFinishedTime\"; // Count: 7\r\nexport var _DYN__CREATE_TRACK_ITEM = \"CreateTrackItem\"; // Count: 3\r\nexport var _DYN_RESPONSE = \"response\"; // Count: 4\r\nexport var _DYN_GET_ALL_RESPONSE_HEA15 = \"getAllResponseHeaders\"; // Count: 2\r\nexport var _DYN_GET_PART_APROPS = \"getPartAProps\"; // Count: 3\r\nexport var _DYN_PERF_MARK = \"perfMark\"; // Count: 4\r\nexport var _DYN_AJAX_PERF_LOOKUP_DEL16 = \"ajaxPerfLookupDelay\"; // Count: 2\r\nexport var _DYN_NAME = \"name\"; // Count: 6\r\nexport var _DYN_PERF_TIMING = \"perfTiming\"; // Count: 3\r\nexport var _DYN_AJAX_DIAGNOSTICS_MES17 = \"ajaxDiagnosticsMessage\"; // Count: 3\r\nexport var _DYN_CORRELATION_CONTEXT = \"correlationContext\"; // Count: 3\r\nexport var _DYN_AJAX_TOTAL_DURATION = \"ajaxTotalDuration\"; // Count: 3\r\nexport var _DYN_EVENT_TRACE_CTX = \"eventTraceCtx\"; // Count: 3\r\n//# sourceMappingURL=__DynamicConstants.js.map"],"names":[],"mappings":";;;;AAA4D;AAC1B;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA"}