UNPKG

512 kBSource Map (JSON)View Raw
1{"version":3,"file":"applicationinsights-web-basic.js","sources":["../../tools/shims/dist-esm/applicationinsights-shims.js","../../shared/AppInsightsCore/dist-esm/JavaScriptSDK.Enums/EventsDiscardedReason.js","../../shared/AppInsightsCore/dist-esm/JavaScriptSDK/EnvUtils.js","../../shared/AppInsightsCore/dist-esm/JavaScriptSDK/CoreUtils.js","../../shared/AppInsightsCore/dist-esm/JavaScriptSDK.Enums/LoggingEnums.js","../../common/temp/node_modules/@microsoft/dynamicproto-js/lib/dist/esm/dynamicproto-js.js","../../shared/AppInsightsCore/dist-esm/JavaScriptSDK/DiagnosticLogger.js","../../shared/AppInsightsCore/dist-esm/JavaScriptSDK/PerfManager.js","../../shared/AppInsightsCore/dist-esm/JavaScriptSDK/TelemetryPluginChain.js","../../shared/AppInsightsCore/dist-esm/JavaScriptSDK/ProcessTelemetryContext.js","../../shared/AppInsightsCore/dist-esm/JavaScriptSDK/BaseTelemetryPlugin.js","../../shared/AppInsightsCore/dist-esm/JavaScriptSDK/TelemetryHelpers.js","../../shared/AppInsightsCore/dist-esm/JavaScriptSDK/ChannelController.js","../../shared/AppInsightsCore/dist-esm/JavaScriptSDK/BaseCore.js","../../shared/AppInsightsCore/dist-esm/JavaScriptSDK/NotificationManager.js","../../shared/AppInsightsCore/dist-esm/JavaScriptSDK/AppInsightsCore.js","../../shared/AppInsightsCommon/dist-esm/Enums.js","../../shared/AppInsightsCommon/dist-esm/RequestResponseHeaders.js","../../shared/AppInsightsCommon/dist-esm/Telemetry/Common/DataSanitizer.js","../../shared/AppInsightsCommon/dist-esm/Util.js","../../shared/AppInsightsCommon/dist-esm/Constants.js","../../shared/AppInsightsCommon/dist-esm/Interfaces/Contracts/Generated/Base.js","../../shared/AppInsightsCommon/dist-esm/Interfaces/Contracts/Generated/Data.js","../../shared/AppInsightsCommon/dist-esm/Interfaces/Contracts/Generated/Envelope.js","../../shared/AppInsightsCommon/dist-esm/Telemetry/Common/Envelope.js","../../shared/AppInsightsCommon/dist-esm/Interfaces/Contracts/Generated/Domain.js","../../shared/AppInsightsCommon/dist-esm/Interfaces/Contracts/Generated/EventData.js","../../shared/AppInsightsCommon/dist-esm/Telemetry/Event.js","../../shared/AppInsightsCommon/dist-esm/Interfaces/Contracts/Generated/StackFrame.js","../../shared/AppInsightsCommon/dist-esm/Interfaces/Contracts/Generated/ExceptionData.js","../../shared/AppInsightsCommon/dist-esm/Interfaces/Contracts/Generated/ExceptionDetails.js","../../shared/AppInsightsCommon/dist-esm/Telemetry/Exception.js","../../shared/AppInsightsCommon/dist-esm/Interfaces/Contracts/Generated/MetricData.js","../../shared/AppInsightsCommon/dist-esm/Interfaces/Contracts/Generated/DataPointType.js","../../shared/AppInsightsCommon/dist-esm/Interfaces/Contracts/Generated/DataPoint.js","../../shared/AppInsightsCommon/dist-esm/Telemetry/Common/DataPoint.js","../../shared/AppInsightsCommon/dist-esm/Telemetry/Metric.js","../../shared/AppInsightsCommon/dist-esm/Interfaces/Contracts/Generated/PageViewData.js","../../shared/AppInsightsCommon/dist-esm/Telemetry/PageView.js","../../shared/AppInsightsCommon/dist-esm/Interfaces/Contracts/Generated/RemoteDependencyData.js","../../shared/AppInsightsCommon/dist-esm/Telemetry/RemoteDependencyData.js","../../shared/AppInsightsCommon/dist-esm/Interfaces/Contracts/Generated/MessageData.js","../../shared/AppInsightsCommon/dist-esm/Telemetry/Trace.js","../../shared/AppInsightsCommon/dist-esm/Interfaces/Contracts/Generated/PageViewPerfData.js","../../shared/AppInsightsCommon/dist-esm/Telemetry/PageViewPerformance.js","../../shared/AppInsightsCommon/dist-esm/Telemetry/Common/Data.js","../../shared/AppInsightsCommon/dist-esm/Interfaces/Contracts/Generated/SeverityLevel.js","../../shared/AppInsightsCommon/dist-esm/Interfaces/Contracts/Generated/ContextTagKeys.js","../../shared/AppInsightsCommon/dist-esm/Interfaces/PartAExtensions.js","../../shared/AppInsightsCommon/dist-esm/applicationinsights-common.js","../../channels/applicationinsights-channel-js/dist-esm/SendBuffer.js","../../channels/applicationinsights-channel-js/dist-esm/EnvelopeCreator.js","../../channels/applicationinsights-channel-js/dist-esm/Serializer.js","../../channels/applicationinsights-channel-js/dist-esm/Offline.js","../../channels/applicationinsights-channel-js/dist-esm/TelemetryProcessors/SamplingScoreGenerators/HashCodeScoreGenerator.js","../../channels/applicationinsights-channel-js/dist-esm/TelemetryProcessors/SamplingScoreGenerators/SamplingScoreGenerator.js","../../channels/applicationinsights-channel-js/dist-esm/TelemetryProcessors/Sample.js","../../channels/applicationinsights-channel-js/dist-esm/Sender.js","../../channels/applicationinsights-channel-js/dist-esm/applicationinsights-channel-js.js","../dist-esm/index.js"],"sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\nexport var strShimFunction = \"function\";\r\nexport var strShimObject = \"object\";\r\nexport var strShimUndefined = \"undefined\";\r\nexport var strShimPrototype = \"prototype\";\r\nexport var strShimHasOwnProperty = \"hasOwnProperty\";\r\n/**\r\n * Returns the current global scope object, for a normal web page this will be the current\r\n * window, for a Web Worker this will be current worker global scope via \"self\". The internal\r\n * implementation returns the first available instance object in the following order\r\n * - globalThis (New standard)\r\n * - self (Will return the current window instance for supported browsers)\r\n * - window (fallback for older browser implementations)\r\n * - global (NodeJS standard)\r\n * - <null> (When all else fails)\r\n * While the return type is a Window for the normal case, not all environments will support all\r\n * of the properties or functions.\r\n */\r\nexport function getGlobal() {\r\n if (typeof globalThis !== strShimUndefined && globalThis) {\r\n return globalThis;\r\n }\r\n if (typeof self !== strShimUndefined && self) {\r\n return self;\r\n }\r\n if (typeof window !== strShimUndefined && window) {\r\n return window;\r\n }\r\n if (typeof global !== strShimUndefined && global) {\r\n return global;\r\n }\r\n return null;\r\n}\r\n/**\r\n * Creates an object that has the specified prototype, and that optionally contains specified properties. This helper exists to avoid adding a polyfil\r\n * for older browsers that do not define Object.create eg. ES3 only, IE8 just in case any page checks for presence/absence of the prototype implementation.\r\n * Note: For consistency this will not use the Object.create implementation if it exists as this would cause a testing requirement to test with and without the implementations\r\n * @param obj Object to use as a prototype. May be null\r\n */\r\nexport function objCreateFn(obj) {\r\n var func = Object[\"create\"];\r\n // Use build in Object.create\r\n if (func) {\r\n // Use Object create method if it exists\r\n return func(obj);\r\n }\r\n if (obj == null) {\r\n return {};\r\n }\r\n var type = typeof obj;\r\n if (type !== strShimObject && type !== strShimFunction) {\r\n throw new TypeError('Object prototype may only be an Object:' + obj);\r\n }\r\n function tmpFunc() { }\r\n tmpFunc[strShimPrototype] = obj;\r\n return new tmpFunc();\r\n}\r\nexport function __assignFn(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) {\r\n if (Object[strShimPrototype][strShimHasOwnProperty].call(s, p)) {\r\n t[p] = s[p];\r\n }\r\n }\r\n }\r\n return t;\r\n}\r\n// tslint:disable-next-line: only-arrow-functions\r\nvar __extendStaticsFn = function (d, b) {\r\n __extendStaticsFn = Object[\"setPrototypeOf\"] ||\r\n // tslint:disable-next-line: only-arrow-functions\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n // tslint:disable-next-line: only-arrow-functions\r\n function (d, b) {\r\n for (var p in b) {\r\n if (b[strShimHasOwnProperty](p)) {\r\n d[p] = b[p];\r\n }\r\n }\r\n };\r\n return __extendStaticsFn(d, b);\r\n};\r\nexport function __extendsFn(d, b) {\r\n __extendStaticsFn(d, b);\r\n function __() { this.constructor = d; }\r\n // tslint:disable-next-line: ban-comma-operator\r\n d[strShimPrototype] = b === null ? objCreateFn(b) : (__[strShimPrototype] = b[strShimPrototype], new __());\r\n}\r\nvar globalObj = getGlobal() || {};\r\n// tslint:disable: only-arrow-functions\r\n(function (root, assignFn, extendsFn) {\r\n // Assign the globally scoped versions of the functions -- used when consuming individual ts files\r\n // If check is to support NativeScript where these are marked as readonly\r\n if (!root.__assign) {\r\n root.__assign = Object.assign || assignFn;\r\n }\r\n if (!root.__extends) {\r\n root.__extends = extendsFn;\r\n }\r\n})(globalObj, __assignFn, __extendsFn);\r\n// Assign local variables that will be used for embedded scenarios, if check is to support NativeScript where these are marked as readonly\r\nif (!__assign) {\r\n __assign = globalObj.__assign;\r\n}\r\nif (!__extends) {\r\n __extends = globalObj.__extends;\r\n}\r\n//# sourceMappingURL=applicationinsights-shims.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n/**\r\n * The EventsDiscardedReason enumeration contains a set of values that specify the reason for discarding an event.\r\n */\r\nexport var EventsDiscardedReason = {\r\n /**\r\n * Unknown.\r\n */\r\n Unknown: 0,\r\n /**\r\n * Status set to non-retryable.\r\n */\r\n NonRetryableStatus: 1,\r\n /**\r\n * The event is invalid.\r\n */\r\n InvalidEvent: 2,\r\n /**\r\n * The size of the event is too large.\r\n */\r\n SizeLimitExceeded: 3,\r\n /**\r\n * The server is not accepting events from this instrumentation key.\r\n */\r\n KillSwitch: 4,\r\n /**\r\n * The event queue is full.\r\n */\r\n QueueFull: 5\r\n};\r\n//# sourceMappingURL=EventsDiscardedReason.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n\"use strict\";\r\nimport { getGlobal as shimsGetGlobal, strShimUndefined, strShimObject, strShimPrototype, strShimFunction } from \"@microsoft/applicationinsights-shims\";\r\n/**\r\n * This file exists to hold environment utilities that are requied to check and\r\n * validate the current operating environment. Unless otherwise required, please\r\n * only defined methods (functions) in this class so that users of these\r\n * functions/properties only need to include those that are used within their own modules.\r\n */\r\nexport var strUndefined = strShimUndefined;\r\nexport var strObject = strShimObject;\r\nexport var strPrototype = strShimPrototype;\r\nexport var strFunction = strShimFunction;\r\nvar strWindow = \"window\";\r\nvar strDocument = \"document\";\r\nvar strNavigator = \"navigator\";\r\nvar strHistory = \"history\";\r\nvar strLocation = \"location\";\r\nvar strConsole = \"console\";\r\nvar strPerformance = \"performance\";\r\nvar strJSON = \"JSON\";\r\nvar strCrypto = \"crypto\";\r\nvar strMsCrypto = \"msCrypto\";\r\nvar strReactNative = \"ReactNative\";\r\n/**\r\n * Returns the current global scope object, for a normal web page this will be the current\r\n * window, for a Web Worker this will be current worker global scope via \"self\". The internal\r\n * implementation returns the first available instance object in the following order\r\n * - globalThis (New standard)\r\n * - self (Will return the current window instance for supported browsers)\r\n * - window (fallback for older browser implementations)\r\n * - global (NodeJS standard)\r\n * - <null> (When all else fails)\r\n * While the return type is a Window for the normal case, not all environments will support all\r\n * of the properties or functions.\r\n */\r\nexport var getGlobal = shimsGetGlobal;\r\n/**\r\n * Return the named global object if available, will return null if the object is not available.\r\n * @param name The globally named object\r\n */\r\nexport function getGlobalInst(name) {\r\n var gbl = getGlobal();\r\n if (gbl && gbl[name]) {\r\n return gbl[name];\r\n }\r\n // Test workaround, for environments where <global>.window (when global == window) doesn't return the base window\r\n if (name === strWindow && hasWindow()) {\r\n // tslint:disable-next-line: no-angle-bracket-type-assertion\r\n return window;\r\n }\r\n return null;\r\n}\r\n/**\r\n * Checks if window object is available, this is required as we support the API running without a\r\n * window /document (eg. Node server, electron webworkers) and if we attempt to assign a window\r\n * object to a local variable or pass as an argument an \"Uncaught ReferenceError: window is not defined\"\r\n * exception will be thrown.\r\n * Defined as a function to support lazy / late binding environments.\r\n */\r\nexport function hasWindow() {\r\n return Boolean(typeof window === strObject && window);\r\n}\r\n/**\r\n * Returns the global window object if it is present otherwise null.\r\n * This helper is used to access the window object without causing an exception\r\n * \"Uncaught ReferenceError: window is not defined\"\r\n */\r\nexport function getWindow() {\r\n if (hasWindow()) {\r\n return window;\r\n }\r\n // Return the global instance or null\r\n return getGlobalInst(strWindow);\r\n}\r\n/**\r\n * Checks if document object is available, this is required as we support the API running without a\r\n * window /document (eg. Node server, electron webworkers) and if we attempt to assign a document\r\n * object to a local variable or pass as an argument an \"Uncaught ReferenceError: document is not defined\"\r\n * exception will be thrown.\r\n * Defined as a function to support lazy / late binding environments.\r\n */\r\nexport function hasDocument() {\r\n return Boolean(typeof document === strObject && document);\r\n}\r\n/**\r\n * Returns the global document object if it is present otherwise null.\r\n * This helper is used to access the document object without causing an exception\r\n * \"Uncaught ReferenceError: document is not defined\"\r\n */\r\nexport function getDocument() {\r\n if (hasDocument()) {\r\n return document;\r\n }\r\n return getGlobalInst(strDocument);\r\n}\r\n/**\r\n * Checks if navigator object is available, this is required as we support the API running without a\r\n * window /document (eg. Node server, electron webworkers) and if we attempt to assign a navigator\r\n * object to a local variable or pass as an argument an \"Uncaught ReferenceError: navigator is not defined\"\r\n * exception will be thrown.\r\n * Defined as a function to support lazy / late binding environments.\r\n */\r\nexport function hasNavigator() {\r\n return Boolean(typeof navigator === strObject && navigator);\r\n}\r\n/**\r\n * Returns the global navigator object if it is present otherwise null.\r\n * This helper is used to access the navigator object without causing an exception\r\n * \"Uncaught ReferenceError: navigator is not defined\"\r\n */\r\nexport function getNavigator() {\r\n if (hasNavigator()) {\r\n return navigator;\r\n }\r\n return getGlobalInst(strNavigator);\r\n}\r\n/**\r\n * Checks if history object is available, this is required as we support the API running without a\r\n * window /document (eg. Node server, electron webworkers) and if we attempt to assign a history\r\n * object to a local variable or pass as an argument an \"Uncaught ReferenceError: history is not defined\"\r\n * exception will be thrown.\r\n * Defined as a function to support lazy / late binding environments.\r\n */\r\nexport function hasHistory() {\r\n return Boolean(typeof history === strObject && history);\r\n}\r\n/**\r\n * Returns the global history object if it is present otherwise null.\r\n * This helper is used to access the history object without causing an exception\r\n * \"Uncaught ReferenceError: history is not defined\"\r\n */\r\nexport function getHistory() {\r\n if (hasHistory()) {\r\n return history;\r\n }\r\n return getGlobalInst(strHistory);\r\n}\r\n/**\r\n * Returns the global location object if it is present otherwise null.\r\n * This helper is used to access the location object without causing an exception\r\n * \"Uncaught ReferenceError: location is not defined\"\r\n */\r\nexport function getLocation() {\r\n if (typeof location === strObject && location) {\r\n return location;\r\n }\r\n return getGlobalInst(strLocation);\r\n}\r\n/**\r\n * Returns the global console object\r\n */\r\nexport function getConsole() {\r\n if (typeof console !== strUndefined) {\r\n return console;\r\n }\r\n return getGlobalInst(strConsole);\r\n}\r\n/**\r\n * Returns the performance object if it is present otherwise null.\r\n * This helper is used to access the performance object from the current\r\n * global instance which could be window or globalThis for a web worker\r\n */\r\nexport function getPerformance() {\r\n return getGlobalInst(strPerformance);\r\n}\r\n/**\r\n * Checks if JSON object is available, this is required as we support the API running without a\r\n * window /document (eg. Node server, electron webworkers) and if we attempt to assign a history\r\n * object to a local variable or pass as an argument an \"Uncaught ReferenceError: JSON is not defined\"\r\n * exception will be thrown.\r\n * Defined as a function to support lazy / late binding environments.\r\n */\r\nexport function hasJSON() {\r\n return Boolean((typeof JSON === strObject && JSON) || getGlobalInst(strJSON) !== null);\r\n}\r\n/**\r\n * Returns the global JSON object if it is present otherwise null.\r\n * This helper is used to access the JSON object without causing an exception\r\n * \"Uncaught ReferenceError: JSON is not defined\"\r\n */\r\nexport function getJSON() {\r\n if (hasJSON()) {\r\n return JSON || getGlobalInst(strJSON);\r\n }\r\n return null;\r\n}\r\n/**\r\n * Returns the crypto object if it is present otherwise null.\r\n * This helper is used to access the crypto object from the current\r\n * global instance which could be window or globalThis for a web worker\r\n */\r\nexport function getCrypto() {\r\n return getGlobalInst(strCrypto);\r\n}\r\n/**\r\n * Returns the crypto object if it is present otherwise null.\r\n * This helper is used to access the crypto object from the current\r\n * global instance which could be window or globalThis for a web worker\r\n */\r\nexport function getMsCrypto() {\r\n return getGlobalInst(strMsCrypto);\r\n}\r\n/**\r\n * Returns whether the environment is reporting that we are running in a React Native Environment\r\n */\r\nexport function isReactNative() {\r\n // If running in React Native, navigator.product will be populated\r\n var nav = getNavigator();\r\n if (nav && nav.product) {\r\n return nav.product === strReactNative;\r\n }\r\n return false;\r\n}\r\n//# sourceMappingURL=EnvUtils.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n\"use strict\";\r\nimport { objCreateFn, strShimObject, strShimUndefined, strShimFunction, strShimPrototype } from \"@microsoft/applicationinsights-shims\";\r\nimport { getWindow, getDocument, getCrypto, getPerformance, getMsCrypto, getNavigator } from './EnvUtils';\r\n// Added to help with minfication\r\nexport var Undefined = strShimUndefined;\r\nvar strOnPrefix = \"on\";\r\nvar strAttachEvent = \"attachEvent\";\r\nvar strAddEventHelper = \"addEventListener\";\r\nvar strDetachEvent = \"detachEvent\";\r\nvar strRemoveEventListener = \"removeEventListener\";\r\nvar UInt32Mask = 0x100000000;\r\nvar MaxUInt32 = 0xffffffff;\r\nvar _isTrident = null;\r\n// MWC based Random generator (for IE)\r\nvar _mwcSeeded = false;\r\nvar _mwcW = 123456789;\r\nvar _mwcZ = 987654321;\r\n// Takes any integer\r\nfunction _mwcSeed(seedValue) {\r\n if (seedValue < 0) {\r\n // Make sure we end up with a positive number and not -ve one.\r\n seedValue >>>= 0;\r\n }\r\n _mwcW = (123456789 + seedValue) & MaxUInt32;\r\n _mwcZ = (987654321 - seedValue) & MaxUInt32;\r\n _mwcSeeded = true;\r\n}\r\nfunction _autoSeedMwc() {\r\n // Simple initialization using default Math.random() - So we inherit any entropy from the browser\r\n // and bitwise XOR with the current milliseconds\r\n _mwcSeed((Math.random() * UInt32Mask) ^ new Date().getTime());\r\n}\r\nfunction _isTypeof(value, theType) {\r\n return typeof value === theType;\r\n}\r\n;\r\nfunction _isUndefined(value) {\r\n return _isTypeof(value, strShimUndefined) || value === undefined;\r\n}\r\n;\r\nfunction _isNullOrUndefined(value) {\r\n return (_isUndefined(value) || value === null);\r\n}\r\nfunction _hasOwnProperty(obj, prop) {\r\n return obj && Object[strShimPrototype].hasOwnProperty.call(obj, prop);\r\n}\r\n;\r\nfunction _isObject(value) {\r\n return _isTypeof(value, strShimObject);\r\n}\r\n;\r\nfunction _isFunction(value) {\r\n return _isTypeof(value, strShimFunction);\r\n}\r\n;\r\n/**\r\n * Binds the specified function to an event, so that the function gets called whenever the event fires on the object\r\n * @param obj Object to add the event too.\r\n * @param eventNameWithoutOn String that specifies any of the standard DHTML Events without \"on\" prefix\r\n * @param handlerRef Pointer that specifies the function to call when event fires\r\n * @param useCapture [Optional] Defaults to false\r\n * @returns True if the function was bound successfully to the event, otherwise false\r\n */\r\nfunction _attachEvent(obj, eventNameWithoutOn, handlerRef, useCapture) {\r\n if (useCapture === void 0) { useCapture = false; }\r\n var result = false;\r\n if (!_isNullOrUndefined(obj)) {\r\n try {\r\n if (!_isNullOrUndefined(obj[strAddEventHelper])) {\r\n // all browsers except IE before version 9\r\n obj[strAddEventHelper](eventNameWithoutOn, handlerRef, useCapture);\r\n result = true;\r\n }\r\n else if (!_isNullOrUndefined(obj[strAttachEvent])) {\r\n // IE before version 9 \r\n obj[strAttachEvent](strOnPrefix + eventNameWithoutOn, handlerRef);\r\n result = true;\r\n }\r\n }\r\n catch (e) {\r\n // Just Ignore any error so that we don't break any execution path\r\n }\r\n }\r\n return result;\r\n}\r\n/**\r\n * Removes an event handler for the specified event\r\n * @param Object to remove the event from\r\n * @param eventNameWithoutOn {string} - The name of the event\r\n * @param handlerRef {any} - The callback function that needs to be executed for the given event\r\n * @param useCapture [Optional] Defaults to false\r\n */\r\nfunction _detachEvent(obj, eventNameWithoutOn, handlerRef, useCapture) {\r\n if (useCapture === void 0) { useCapture = false; }\r\n if (!_isNullOrUndefined(obj)) {\r\n try {\r\n if (!_isNullOrUndefined(obj[strRemoveEventListener])) {\r\n obj[strRemoveEventListener](eventNameWithoutOn, handlerRef, useCapture);\r\n }\r\n else if (!_isNullOrUndefined(obj[strDetachEvent])) {\r\n obj[strDetachEvent](strOnPrefix + eventNameWithoutOn, handlerRef);\r\n }\r\n }\r\n catch (e) {\r\n // Just Ignore any error so that we don't break any execution path\r\n }\r\n }\r\n}\r\n/**\r\n * Try to define get/set object property accessors for the target object/prototype, this will provide compatibility with\r\n * existing API definition when run within an ES5+ container that supports accessors but still enable the code to be loaded\r\n * and executed in an ES3 container, providing basic IE8 compatibility.\r\n * @param target The object on which to define the property.\r\n * @param prop The name of the property to be defined or modified.\r\n * @param getProp The getter function to wire against the getter.\r\n * @param setProp The setter function to wire against the setter.\r\n * @returns True if it was able to create the accessors otherwise false\r\n */\r\nexport function objDefineAccessors(target, prop, getProp, setProp) {\r\n var defineProp = Object[\"defineProperty\"];\r\n if (defineProp) {\r\n try {\r\n var descriptor = {\r\n enumerable: true,\r\n configurable: true\r\n };\r\n if (getProp) {\r\n descriptor.get = getProp;\r\n }\r\n if (setProp) {\r\n descriptor.set = setProp;\r\n }\r\n defineProp(target, prop, descriptor);\r\n return true;\r\n }\r\n catch (e) {\r\n // IE8 Defines a defineProperty on Object but it's only supported for DOM elements so it will throw\r\n // We will just ignore this here.\r\n }\r\n }\r\n return false;\r\n}\r\n/**\r\n * Validates that the string name conforms to the JS IdentifierName specification and if not\r\n * normalizes the name so that it would. This method does not identify or change any keywords\r\n * meaning that if you pass in a known keyword the same value will be returned.\r\n * This is a simplified version\r\n * @param name The name to validate\r\n */\r\nexport function normalizeJsName(name) {\r\n var value = name;\r\n var match = /([^\\w\\d_$])/g;\r\n if (match.test(name)) {\r\n value = name.replace(match, \"_\");\r\n }\r\n return value;\r\n}\r\n/**\r\n * This is a helper function for the equivalent of arForEach(objKeys(target), callbackFn), this is a\r\n * performance optimization to avoid the creation of a new array for large objects\r\n * @param target The target object to find and process the keys\r\n * @param callbackfn The function to call with the details\r\n */\r\nexport function objForEachKey(target, callbackfn) {\r\n if (target && _isObject(target)) {\r\n for (var prop in target) {\r\n if (_hasOwnProperty(target, prop)) {\r\n callbackfn.call(target, prop, target[prop]);\r\n }\r\n }\r\n }\r\n}\r\n/**\r\n * Effectively assigns all enumerable properties (not just own properties) and functions (including inherited prototype) from\r\n * the source object to the target, it attempts to use proxy getters / setters (if possible) and proxy functions to avoid potential\r\n * implementation issues by assigning prototype functions as instance ones\r\n *\r\n * This method is the primary method used to \"update\" the snippet proxy with the ultimate implementations.\r\n *\r\n * Special ES3 Notes:\r\n * Updates (setting) of direct property values on the target or indirectly on the source object WILL NOT WORK PROPERLY, updates to the\r\n * properties of \"referenced\" object will work (target.context.newValue = 10 => will be reflected in the source.context as it's the\r\n * same object). ES3 Failures: assigning target.myProp = 3 -> Won't change source.myProp = 3, likewise the reverse would also fail.\r\n * @param target - The target object to be assigned with the source properties and functions\r\n * @param source - The source object which will be assigned / called by setting / calling the targets proxies\r\n * @param chkSet - An optional callback to determine whether a specific property/function should be proxied\r\n * @memberof Initialization\r\n */\r\nexport function proxyAssign(target, source, chkSet) {\r\n if (target && source && target !== source && _isObject(target) && _isObject(source)) {\r\n var _loop_1 = function (field) {\r\n if (CoreUtils.isString(field)) {\r\n var value = source[field];\r\n if (_isFunction(value)) {\r\n if (!chkSet || chkSet(field, true, source, target)) {\r\n // Create a proxy function rather than just copying the (possible) prototype to the new object as an instance function\r\n target[field] = (function (funcName) {\r\n return function () {\r\n // Capture the original arguments passed to the method\r\n var originalArguments = arguments;\r\n return source[funcName].apply(source, originalArguments);\r\n };\r\n })(field);\r\n }\r\n }\r\n else if (!chkSet || chkSet(field, false, source, target)) {\r\n if (_hasOwnProperty(target, field)) {\r\n // Remove any previous instance property\r\n delete target[field];\r\n }\r\n if (!objDefineAccessors(target, field, function () {\r\n return source[field];\r\n }, function (theValue) {\r\n source[field] = theValue;\r\n })) {\r\n // Unable to create an accessor, so just assign the values as a fallback\r\n // -- this will (mostly) work for objects\r\n // -- but will fail for accessing primitives (if the source changes it) and all types of \"setters\" as the source won't be modified\r\n target[field] = value;\r\n }\r\n }\r\n }\r\n };\r\n // effectively apply/proxy full source to the target instance\r\n for (var field in source) {\r\n _loop_1(field);\r\n }\r\n }\r\n return target;\r\n}\r\nvar CoreUtils = /** @class */ (function () {\r\n function CoreUtils() {\r\n }\r\n /**\r\n * Check if an object is of type Date\r\n */\r\n CoreUtils.isDate = function (obj) {\r\n return Object[strShimPrototype].toString.call(obj) === \"[object Date]\";\r\n };\r\n /**\r\n * Check if an object is of type Array\r\n */\r\n CoreUtils.isArray = function (obj) {\r\n return Object[strShimPrototype].toString.call(obj) === \"[object Array]\";\r\n };\r\n /**\r\n * Check if an object is of type Error\r\n */\r\n CoreUtils.isError = function (obj) {\r\n return Object[strShimPrototype].toString.call(obj) === \"[object Error]\";\r\n };\r\n /**\r\n * Checks if the type of value is a string.\r\n * @param {any} value - Value to be checked.\r\n * @return {boolean} True if the value is a string, false otherwise.\r\n */\r\n CoreUtils.isString = function (value) {\r\n return _isTypeof(value, \"string\");\r\n };\r\n /**\r\n * Checks if the type of value is a number.\r\n * @param {any} value - Value to be checked.\r\n * @return {boolean} True if the value is a number, false otherwise.\r\n */\r\n CoreUtils.isNumber = function (value) {\r\n return _isTypeof(value, \"number\");\r\n };\r\n /**\r\n * Checks if the type of value is a boolean.\r\n * @param {any} value - Value to be checked.\r\n * @return {boolean} True if the value is a boolean, false otherwise.\r\n */\r\n CoreUtils.isBoolean = function (value) {\r\n return _isTypeof(value, \"boolean\");\r\n };\r\n /**\r\n * Creates a new GUID.\r\n * @return {string} A GUID.\r\n */\r\n CoreUtils.disableCookies = function () {\r\n CoreUtils._canUseCookies = false;\r\n };\r\n CoreUtils.newGuid = function () {\r\n function randomHexDigit() {\r\n return CoreUtils.randomValue(15); // Get a random value from 0..15\r\n }\r\n return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(GuidRegex, function (c) {\r\n var r = (randomHexDigit() | 0), v = (c === 'x' ? r : r & 0x3 | 0x8);\r\n return v.toString(16);\r\n });\r\n };\r\n /**\r\n * Convert a date to I.S.O. format in IE8\r\n */\r\n CoreUtils.toISOString = function (date) {\r\n if (CoreUtils.isDate(date)) {\r\n var pad = function (num) {\r\n var r = String(num);\r\n if (r.length === 1) {\r\n r = \"0\" + r;\r\n }\r\n return r;\r\n };\r\n return date.getUTCFullYear()\r\n + \"-\" + pad(date.getUTCMonth() + 1)\r\n + \"-\" + pad(date.getUTCDate())\r\n + \"T\" + pad(date.getUTCHours())\r\n + \":\" + pad(date.getUTCMinutes())\r\n + \":\" + pad(date.getUTCSeconds())\r\n + \".\" + String((date.getUTCMilliseconds() / 1000).toFixed(3)).slice(2, 5)\r\n + \"Z\";\r\n }\r\n };\r\n /**\r\n * Performs the specified action for each element in an array. This helper exists to avoid adding a polyfil for older browsers\r\n * that do not define Array.prototype.xxxx (eg. ES3 only, IE8) just in case any page checks for presence/absence of the prototype\r\n * implementation. Note: For consistency this will not use the Array.prototype.xxxx implementation if it exists as this would\r\n * cause a testing requirement to test with and without the implementations\r\n * @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.\r\n * @param thisArg [Optional] An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\r\n */\r\n CoreUtils.arrForEach = function (arr, callbackfn, thisArg) {\r\n var len = arr.length;\r\n for (var idx = 0; idx < len; idx++) {\r\n if (idx in arr) {\r\n callbackfn.call(thisArg || arr, arr[idx], idx, arr);\r\n }\r\n }\r\n };\r\n /**\r\n * Returns the index of the first occurrence of a value in an array. This helper exists to avoid adding a polyfil for older browsers\r\n * that do not define Array.prototype.xxxx (eg. ES3 only, IE8) just in case any page checks for presence/absence of the prototype\r\n * implementation. Note: For consistency this will not use the Array.prototype.xxxx implementation if it exists as this would\r\n * cause a testing requirement to test with and without the implementations\r\n * @param searchElement The value to locate in the array.\r\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at index 0.\r\n */\r\n CoreUtils.arrIndexOf = function (arr, searchElement, fromIndex) {\r\n var len = arr.length;\r\n var from = fromIndex || 0;\r\n for (var lp = Math.max(from >= 0 ? from : len - Math.abs(from), 0); lp < len; lp++) {\r\n if (lp in arr && arr[lp] === searchElement) {\r\n return lp;\r\n }\r\n }\r\n return -1;\r\n };\r\n /**\r\n * Calls a defined callback function on each element of an array, and returns an array that contains the results. This helper exists\r\n * to avoid adding a polyfil for older browsers that do not define Array.prototype.xxxx (eg. ES3 only, IE8) just in case any page\r\n * checks for presence/absence of the prototype implementation. Note: For consistency this will not use the Array.prototype.xxxx\r\n * implementation if it exists as this would cause a testing requirement to test with and without the implementations\r\n * @param callbackfn A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array.\r\n * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\r\n */\r\n CoreUtils.arrMap = function (arr, callbackfn, thisArg) {\r\n var len = arr.length;\r\n var _this = thisArg || arr;\r\n var results = new Array(len);\r\n for (var lp = 0; lp < len; lp++) {\r\n if (lp in arr) {\r\n results[lp] = callbackfn.call(_this, arr[lp], arr);\r\n }\r\n }\r\n return results;\r\n };\r\n /**\r\n * Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is\r\n * provided as an argument in the next call to the callback function. This helper exists to avoid adding a polyfil for older browsers that do not define\r\n * Array.prototype.xxxx (eg. ES3 only, IE8) just in case any page checks for presence/absence of the prototype implementation. Note: For consistency\r\n * this will not use the Array.prototype.xxxx implementation if it exists as this would cause a testing requirement to test with and without the implementations\r\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.\r\n * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.\r\n */\r\n CoreUtils.arrReduce = function (arr, callbackfn, initialValue) {\r\n var len = arr.length;\r\n var lp = 0;\r\n var value;\r\n // Specifically checking the number of passed arguments as the value could be anything\r\n if (arguments.length >= 3) {\r\n value = arguments[2];\r\n }\r\n else {\r\n while (lp < len && !(lp in arr)) {\r\n lp++;\r\n }\r\n value = arr[lp++];\r\n }\r\n while (lp < len) {\r\n if (lp in arr) {\r\n value = callbackfn(value, arr[lp], lp, arr);\r\n }\r\n lp++;\r\n }\r\n return value;\r\n };\r\n /**\r\n * helper method to trim strings (IE8 does not implement String.prototype.trim)\r\n */\r\n CoreUtils.strTrim = function (str) {\r\n if (!CoreUtils.isString(str)) {\r\n return str;\r\n }\r\n return str.replace(/^\\s+|\\s+$/g, \"\");\r\n };\r\n /**\r\n * Returns the names of the enumerable string properties and methods of an object. This helper exists to avoid adding a polyfil for older browsers\r\n * that do not define Object.keys eg. ES3 only, IE8 just in case any page checks for presence/absence of the prototype implementation.\r\n * Note: For consistency this will not use the Object.keys implementation if it exists as this would cause a testing requirement to test with and without the implementations\r\n * @param obj Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.\r\n */\r\n CoreUtils.objKeys = function (obj) {\r\n var hasDontEnumBug = !({ toString: null }).propertyIsEnumerable('toString');\r\n if (!_isFunction(obj) && (!_isObject(obj) || obj === null)) {\r\n throw new TypeError('objKeys called on non-object');\r\n }\r\n var result = [];\r\n for (var prop in obj) {\r\n if (_hasOwnProperty(obj, prop)) {\r\n result.push(prop);\r\n }\r\n }\r\n if (hasDontEnumBug) {\r\n var dontEnums = [\r\n 'toString',\r\n 'toLocaleString',\r\n 'valueOf',\r\n 'hasOwnProperty',\r\n 'isPrototypeOf',\r\n 'propertyIsEnumerable',\r\n 'constructor'\r\n ];\r\n var dontEnumsLength = dontEnums.length;\r\n for (var lp = 0; lp < dontEnumsLength; lp++) {\r\n if (_hasOwnProperty(obj, dontEnums[lp])) {\r\n result.push(dontEnums[lp]);\r\n }\r\n }\r\n }\r\n return result;\r\n };\r\n /**\r\n * Trys to add an event handler for the specified event to the window, body and document\r\n * @param eventName {string} - The name of the event\r\n * @param callback {any} - The callback function that needs to be executed for the given event\r\n * @return {boolean} - true if the handler was successfully added\r\n */\r\n CoreUtils.addEventHandler = function (eventName, callback) {\r\n var result = false;\r\n var w = getWindow();\r\n if (w) {\r\n result = _attachEvent(w, eventName, callback);\r\n result = _attachEvent(w[\"body\"], eventName, callback) || result;\r\n }\r\n var doc = getDocument();\r\n if (doc) {\r\n result = EventHelper.Attach(doc, eventName, callback) || result;\r\n }\r\n return result;\r\n };\r\n /**\r\n * Return the current time via the Date now() function (if available) and falls back to (new Date()).getTime() if now() is unavailable (IE8 or less)\r\n * https://caniuse.com/#search=Date.now\r\n */\r\n CoreUtils.dateNow = function () {\r\n var dt = Date;\r\n if (dt.now) {\r\n return dt.now();\r\n }\r\n return new dt().getTime();\r\n };\r\n /**\r\n * Return the current value of the Performance Api now() function (if available) and fallback to CoreUtils.dateNow() if it is unavailable (IE9 or less)\r\n * https://caniuse.com/#search=performance.now\r\n */\r\n CoreUtils.perfNow = function () {\r\n var perf = getPerformance();\r\n if (perf && perf.now) {\r\n return perf.now();\r\n }\r\n return CoreUtils.dateNow();\r\n };\r\n /**\r\n * Generate random base64 id string.\r\n * The default length is 22 which is 132-bits so almost the same as a GUID but as base64 (the previous default was 5)\r\n * @param maxLength - Optional value to specify the length of the id to be generated, defaults to 22\r\n */\r\n CoreUtils.newId = function (maxLength) {\r\n if (maxLength === void 0) { maxLength = 22; }\r\n var base64chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';\r\n // Start with an initial random number, consuming the value in reverse byte order\r\n var number = CoreUtils.random32() >>> 0; // Make sure it's a +ve number\r\n var chars = 0;\r\n var result = \"\";\r\n while (result.length < maxLength) {\r\n chars++;\r\n result += base64chars.charAt(number & 0x3F);\r\n number >>>= 6; // Zero fill with right shift\r\n if (chars === 5) {\r\n // 5 base64 characters === 30 bits so we don't have enough bits for another base64 char\r\n // So add on another 30 bits and make sure it's +ve\r\n number = (((CoreUtils.random32() << 2) & 0xFFFFFFFF) | (number & 0x03)) >>> 0;\r\n chars = 0; // We need to reset the number every 5 chars (30 bits)\r\n }\r\n }\r\n return result;\r\n };\r\n /**\r\n * Identifies whether the current environment appears to be IE\r\n */\r\n CoreUtils.isIE = function () {\r\n if (_isTrident === null) {\r\n var navigator_1 = getNavigator() || {};\r\n var userAgent = (navigator_1.userAgent || \"\").toLowerCase();\r\n _isTrident = (userAgent.indexOf(\"msie\") !== -1 || userAgent.indexOf(\"trident/\") !== -1);\r\n }\r\n return _isTrident;\r\n };\r\n /**\r\n * Generate a random value between 0 and maxValue, max value should be limited to a 32-bit maximum.\r\n * So maxValue(16) will produce a number from 0..16 (range of 17)\r\n * @param maxValue\r\n */\r\n CoreUtils.randomValue = function (maxValue) {\r\n if (maxValue > 0) {\r\n return Math.floor((CoreUtils.random32() / MaxUInt32) * (maxValue + 1)) >>> 0;\r\n }\r\n return 0;\r\n };\r\n /**\r\n * generate a random 32-bit number (0x000000..0xFFFFFFFF) or (-0x80000000..0x7FFFFFFF), defaults un-unsigned.\r\n * @param signed - True to return a signed 32-bit number (-0x80000000..0x7FFFFFFF) otherwise an unsigned one (0x000000..0xFFFFFFFF)\r\n */\r\n CoreUtils.random32 = function (signed) {\r\n var value;\r\n var c = getCrypto() || getMsCrypto();\r\n if (c && c.getRandomValues) {\r\n // Make sure the number is converted into the specified range (-0x80000000..0x7FFFFFFF)\r\n value = c.getRandomValues(new Uint32Array(1))[0] & MaxUInt32;\r\n }\r\n else if (CoreUtils.isIE()) {\r\n // For IE 6, 7, 8 (especially on XP) Math.random is not very random\r\n if (!_mwcSeeded) {\r\n // Set the seed for the Mwc algorithm\r\n _autoSeedMwc();\r\n }\r\n // Don't use Math.random for IE\r\n // Make sure the number is converted into the specified range (-0x80000000..0x7FFFFFFF)\r\n value = CoreUtils.mwcRandom32() & MaxUInt32;\r\n }\r\n else {\r\n // Make sure the number is converted into the specified range (-0x80000000..0x7FFFFFFF)\r\n value = Math.floor((UInt32Mask * Math.random()) | 0);\r\n }\r\n if (!signed) {\r\n // Make sure we end up with a positive number and not -ve one.\r\n value >>>= 0;\r\n }\r\n return value;\r\n };\r\n /**\r\n * Seed the MWC random number generator with the specified seed or a random value\r\n * @param value - optional the number to used as the seed, if undefined, null or zero a random value will be chosen\r\n */\r\n CoreUtils.mwcRandomSeed = function (value) {\r\n if (!value) {\r\n _autoSeedMwc();\r\n }\r\n else {\r\n _mwcSeed(value);\r\n }\r\n };\r\n /**\r\n * Generate a random 32-bit number between (0x000000..0xFFFFFFFF) or (-0x80000000..0x7FFFFFFF), using MWC (Multiply with carry)\r\n * instead of Math.random() defaults to un-signed.\r\n * Used as a replacement random generator for IE to avoid issues with older IE instances.\r\n * @param signed - True to return a signed 32-bit number (-0x80000000..0x7FFFFFFF) otherwise an unsigned one (0x000000..0xFFFFFFFF)\r\n */\r\n CoreUtils.mwcRandom32 = function (signed) {\r\n _mwcZ = (36969 * (_mwcZ & 0xFFFF) + (_mwcZ >> 16)) & MaxUInt32;\r\n _mwcW = (18000 * (_mwcW & 0xFFFF) + (_mwcW >> 16)) & MaxUInt32;\r\n var value = (((_mwcZ << 16) + (_mwcW & 0xFFFF)) >>> 0) & MaxUInt32 | 0;\r\n if (!signed) {\r\n // Make sure we end up with a positive number and not -ve one.\r\n value >>>= 0;\r\n }\r\n return value;\r\n };\r\n /**\r\n * generate W3C trace id\r\n */\r\n CoreUtils.generateW3CId = function () {\r\n var hexValues = [\"0\", \"1\", \"2\", \"3\", \"4\", \"5\", \"6\", \"7\", \"8\", \"9\", \"a\", \"b\", \"c\", \"d\", \"e\", \"f\"];\r\n // rfc4122 version 4 UUID without dashes and with lowercase letters\r\n var oct = \"\", tmp;\r\n for (var a = 0; a < 4; a++) {\r\n tmp = CoreUtils.random32();\r\n oct +=\r\n hexValues[tmp & 0xF] +\r\n hexValues[tmp >> 4 & 0xF] +\r\n hexValues[tmp >> 8 & 0xF] +\r\n hexValues[tmp >> 12 & 0xF] +\r\n hexValues[tmp >> 16 & 0xF] +\r\n hexValues[tmp >> 20 & 0xF] +\r\n hexValues[tmp >> 24 & 0xF] +\r\n hexValues[tmp >> 28 & 0xF];\r\n }\r\n // \"Set the two most significant bits (bits 6 and 7) of the clock_seq_hi_and_reserved to zero and one, respectively\"\r\n var clockSequenceHi = hexValues[8 + (CoreUtils.random32() & 0x03) | 0];\r\n return oct.substr(0, 8) + oct.substr(9, 4) + \"4\" + oct.substr(13, 3) + clockSequenceHi + oct.substr(16, 3) + oct.substr(19, 12);\r\n };\r\n CoreUtils.isTypeof = _isTypeof;\r\n CoreUtils.isUndefined = _isUndefined;\r\n CoreUtils.isNullOrUndefined = _isNullOrUndefined;\r\n CoreUtils.hasOwnProperty = _hasOwnProperty;\r\n /**\r\n * Checks if the passed of value is a function.\r\n * @param {any} value - Value to be checked.\r\n * @return {boolean} True if the value is a boolean, false otherwise.\r\n */\r\n CoreUtils.isFunction = _isFunction;\r\n /**\r\n * Checks if the passed of value is a function.\r\n * @param {any} value - Value to be checked.\r\n * @return {boolean} True if the value is a boolean, false otherwise.\r\n */\r\n CoreUtils.isObject = _isObject;\r\n /**\r\n * Creates an object that has the specified prototype, and that optionally contains specified properties. This helper exists to avoid adding a polyfil\r\n * for older browsers that do not define Object.create eg. ES3 only, IE8 just in case any page checks for presence/absence of the prototype implementation.\r\n * Note: For consistency this will not use the Object.create implementation if it exists as this would cause a testing requirement to test with and without the implementations\r\n * @param obj Object to use as a prototype. May be null\r\n */\r\n // tslint:disable-next-line: member-ordering\r\n CoreUtils.objCreate = objCreateFn;\r\n /**\r\n * Try to define get/set object property accessors for the target object/prototype, this will provide compatibility with\r\n * existing API definition when run within an ES5+ container that supports accessors but still enable the code to be loaded\r\n * and executed in an ES3 container, providing basic IE8 compatibility.\r\n * @param target The object on which to define the property.\r\n * @param prop The name of the property to be defined or modified.\r\n * @param getProp The getter function to wire against the getter.\r\n * @param setProp The setter function to wire against the setter.\r\n * @returns True if it was able to create the accessors otherwise false\r\n */\r\n CoreUtils.objDefineAccessors = objDefineAccessors;\r\n return CoreUtils;\r\n}());\r\nexport { CoreUtils };\r\nvar GuidRegex = /[xy]/g;\r\nvar EventHelper = /** @class */ (function () {\r\n function EventHelper() {\r\n }\r\n /**\r\n * Binds the specified function to an event, so that the function gets called whenever the event fires on the object\r\n * @param obj Object to add the event too.\r\n * @param eventNameWithoutOn String that specifies any of the standard DHTML Events without \"on\" prefix\r\n * @param handlerRef Pointer that specifies the function to call when event fires\r\n * @returns True if the function was bound successfully to the event, otherwise false\r\n */\r\n EventHelper.Attach = _attachEvent;\r\n /**\r\n * Binds the specified function to an event, so that the function gets called whenever the event fires on the object\r\n * @deprecated Use {@link EventHelper#Attach} as we are already in a class call EventHelper the extra \"Event\" just causes a larger result\r\n * @param obj Object to add the event too.\r\n * @param eventNameWithoutOn String that specifies any of the standard DHTML Events without \"on\" prefix\r\n * @param handlerRef Pointer that specifies the function to call when event fires\r\n * @returns True if the function was bound successfully to the event, otherwise false\r\n */\r\n EventHelper.AttachEvent = _attachEvent;\r\n /**\r\n * Removes an event handler for the specified event\r\n * @param eventName {string} - The name of the event\r\n * @param callback {any} - The callback function that needs to be executed for the given event\r\n * @return {boolean} - true if the handler was successfully added\r\n */\r\n EventHelper.Detach = _detachEvent;\r\n /**\r\n * Removes an event handler for the specified event\r\n * @deprecated Use {@link EventHelper#Detach} as we are already in a class call EventHelper the extra \"Event\" just causes a larger result\r\n * @param eventName {string} - The name of the event\r\n * @param callback {any} - The callback function that needs to be executed for the given event\r\n * @return {boolean} - true if the handler was successfully added\r\n */\r\n EventHelper.DetachEvent = _detachEvent;\r\n return EventHelper;\r\n}());\r\nexport { EventHelper };\r\n//# sourceMappingURL=CoreUtils.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\nexport var LoggingSeverity;\r\n(function (LoggingSeverity) {\r\n /**\r\n * Error will be sent as internal telemetry\r\n */\r\n LoggingSeverity[LoggingSeverity[\"CRITICAL\"] = 1] = \"CRITICAL\";\r\n /**\r\n * Error will NOT be sent as internal telemetry, and will only be shown in browser console\r\n */\r\n LoggingSeverity[LoggingSeverity[\"WARNING\"] = 2] = \"WARNING\";\r\n})(LoggingSeverity || (LoggingSeverity = {}));\r\n/**\r\n * Internal message ID. Please create a new one for every conceptually different message. Please keep alphabetically ordered\r\n */\r\nexport var _InternalMessageId = {\r\n // Non user actionable\r\n BrowserDoesNotSupportLocalStorage: 0,\r\n BrowserCannotReadLocalStorage: 1,\r\n BrowserCannotReadSessionStorage: 2,\r\n BrowserCannotWriteLocalStorage: 3,\r\n BrowserCannotWriteSessionStorage: 4,\r\n BrowserFailedRemovalFromLocalStorage: 5,\r\n BrowserFailedRemovalFromSessionStorage: 6,\r\n CannotSendEmptyTelemetry: 7,\r\n ClientPerformanceMathError: 8,\r\n ErrorParsingAISessionCookie: 9,\r\n ErrorPVCalc: 10,\r\n ExceptionWhileLoggingError: 11,\r\n FailedAddingTelemetryToBuffer: 12,\r\n FailedMonitorAjaxAbort: 13,\r\n FailedMonitorAjaxDur: 14,\r\n FailedMonitorAjaxOpen: 15,\r\n FailedMonitorAjaxRSC: 16,\r\n FailedMonitorAjaxSend: 17,\r\n FailedMonitorAjaxGetCorrelationHeader: 18,\r\n FailedToAddHandlerForOnBeforeUnload: 19,\r\n FailedToSendQueuedTelemetry: 20,\r\n FailedToReportDataLoss: 21,\r\n FlushFailed: 22,\r\n MessageLimitPerPVExceeded: 23,\r\n MissingRequiredFieldSpecification: 24,\r\n NavigationTimingNotSupported: 25,\r\n OnError: 26,\r\n SessionRenewalDateIsZero: 27,\r\n SenderNotInitialized: 28,\r\n StartTrackEventFailed: 29,\r\n StopTrackEventFailed: 30,\r\n StartTrackFailed: 31,\r\n StopTrackFailed: 32,\r\n TelemetrySampledAndNotSent: 33,\r\n TrackEventFailed: 34,\r\n TrackExceptionFailed: 35,\r\n TrackMetricFailed: 36,\r\n TrackPVFailed: 37,\r\n TrackPVFailedCalc: 38,\r\n TrackTraceFailed: 39,\r\n TransmissionFailed: 40,\r\n FailedToSetStorageBuffer: 41,\r\n FailedToRestoreStorageBuffer: 42,\r\n InvalidBackendResponse: 43,\r\n FailedToFixDepricatedValues: 44,\r\n InvalidDurationValue: 45,\r\n TelemetryEnvelopeInvalid: 46,\r\n CreateEnvelopeError: 47,\r\n // User actionable\r\n CannotSerializeObject: 48,\r\n CannotSerializeObjectNonSerializable: 49,\r\n CircularReferenceDetected: 50,\r\n ClearAuthContextFailed: 51,\r\n ExceptionTruncated: 52,\r\n IllegalCharsInName: 53,\r\n ItemNotInArray: 54,\r\n MaxAjaxPerPVExceeded: 55,\r\n MessageTruncated: 56,\r\n NameTooLong: 57,\r\n SampleRateOutOfRange: 58,\r\n SetAuthContextFailed: 59,\r\n SetAuthContextFailedAccountName: 60,\r\n StringValueTooLong: 61,\r\n StartCalledMoreThanOnce: 62,\r\n StopCalledWithoutStart: 63,\r\n TelemetryInitializerFailed: 64,\r\n TrackArgumentsNotSpecified: 65,\r\n UrlTooLong: 66,\r\n SessionStorageBufferFull: 67,\r\n CannotAccessCookie: 68,\r\n IdTooLong: 69,\r\n InvalidEvent: 70,\r\n FailedMonitorAjaxSetRequestHeader: 71,\r\n SendBrowserInfoOnUserInit: 72,\r\n PluginException: 73,\r\n NotificationException: 74,\r\n SnippetScriptLoadFailure: 99,\r\n InvalidInstrumentationKey: 100,\r\n CannotParseAiBlobValue: 101,\r\n InvalidContentBlob: 102,\r\n TrackPageActionEventFailed: 103\r\n};\r\n//# sourceMappingURL=LoggingEnums.js.map","/*!\n * Microsoft Dynamic Proto Utility, 1.1.0\n * Copyright (c) Microsoft and contributors. All rights reserved.\n */\n/**\r\n * Constant string defined to support minimization\r\n * @ignore\r\n */\r\nvar Constructor = 'constructor';\r\n/**\r\n * Constant string defined to support minimization\r\n * @ignore\r\n */\r\nvar Prototype = 'prototype';\r\n/**\r\n * Constant string defined to support minimization\r\n * @ignore\r\n */\r\nvar strFunction = 'function';\r\n/**\r\n * Used to define the name of the instance function lookup table\r\n * @ignore\r\n */\r\nvar DynInstFuncTable = '_dynInstFuncs';\r\n/**\r\n * Name used to tag the dynamic prototype function\r\n * @ignore\r\n */\r\nvar DynProxyTag = '_isDynProxy';\r\n/**\r\n * Name added to a prototype to define the dynamic prototype \"class\" name used to lookup the function table\r\n * @ignore\r\n */\r\nvar DynClassName = '_dynClass';\r\n/**\r\n * Prefix added to the classname to avoid any name clashes with other instance level properties\r\n * @ignore\r\n */\r\nvar DynClassNamePrefix = '_dynCls$';\r\n/**\r\n * A tag which is used to check if we have already to attempted to set the instance function if one is not present\r\n * @ignore\r\n */\r\nvar DynInstChkTag = '_dynInstChk';\r\n/**\r\n * A tag which is used to check if we are allows to try and set an instance function is one is not present. Using the same\r\n * tag name as the function level but a different const name for readability only.\r\n */\r\nvar DynAllowInstChkTag = DynInstChkTag;\r\n/**\r\n * The global (imported) instances where the global performance options are stored\r\n */\r\nvar DynProtoDefaultOptions = '_dfOpts';\r\n/**\r\n * Value used as the name of a class when it cannot be determined\r\n * @ignore\r\n */\r\nvar UnknownValue = '_unknown_';\r\n/**\r\n * Constant string defined to support minimization\r\n * @ignore\r\n */\r\nvar str__Proto = \"__proto__\";\r\n/**\r\n * Constant string defined to support minimization\r\n * @ignore\r\n */\r\nvar strUseBaseInst = 'useBaseInst';\r\n/**\r\n * Constant string defined to support minimization\r\n * @ignore\r\n */\r\nvar strSetInstFuncs = 'setInstFuncs';\r\n/**\r\n * Pre-lookup to check if we are running on a modern browser (i.e. not IE8)\r\n * @ignore\r\n */\r\nvar _objGetPrototypeOf = Object[\"getPrototypeOf\"];\r\n/**\r\n * Internal Global used to generate a unique dynamic class name, every new class will increase this value\r\n * @ignore\r\n */\r\nvar _dynamicNames = 0;\r\n/**\r\n * Helper to check if the object contains a property of the name\r\n * @ignore\r\n */\r\nfunction _hasOwnProperty(obj, prop) {\r\n return obj && Object[Prototype].hasOwnProperty.call(obj, prop);\r\n}\r\n/**\r\n * Checks if the passed of value is a function.\r\n * @param {any} value - Value to be checked.\r\n * @return {boolean} True if the value is a boolean, false otherwise.\r\n * @ignore\r\n */\r\nfunction _isFunction(value) {\r\n return typeof value === strFunction;\r\n}\r\n/**\r\n * Helper used to check whether the target is an Object prototype or Array prototype\r\n * @ignore\r\n */\r\nfunction _isObjectOrArrayPrototype(target) {\r\n return target && (target === Object[Prototype] || target === Array[Prototype]);\r\n}\r\n/**\r\n * Helper used to check whether the target is an Object prototype, Array prototype or Function prototype\r\n * @ignore\r\n */\r\nfunction _isObjectArrayOrFunctionPrototype(target) {\r\n return _isObjectOrArrayPrototype(target) || target === Function[Prototype];\r\n}\r\n/**\r\n * Helper used to get the prototype of the target object as getPrototypeOf is not available in an ES3 environment.\r\n * @ignore\r\n */\r\nfunction _getObjProto(target) {\r\n if (target) {\r\n // This method doesn't existing in older browsers (e.g. IE8)\r\n if (_objGetPrototypeOf) {\r\n return _objGetPrototypeOf(target);\r\n }\r\n // target[Constructor] May break if the constructor has been changed or removed\r\n var newProto = target[str__Proto] || target[Prototype] || target[Constructor];\r\n if (newProto) {\r\n return newProto;\r\n }\r\n }\r\n return null;\r\n}\r\n/**\r\n * Helper function to check whether the provided function name is a potential candidate for dynamic\r\n * callback and prototype generation.\r\n * @param target The target object, may be a prototype or class object\r\n * @param funcName The function name\r\n * @param skipOwn Skips the check for own property\r\n * @ignore\r\n */\r\nfunction _isDynamicCandidate(target, funcName, skipOwn) {\r\n return (funcName !== Constructor && _isFunction(target[funcName]) && (skipOwn || _hasOwnProperty(target, funcName)));\r\n}\r\n/**\r\n * Helper to throw a TypeError exception\r\n * @param message the message\r\n * @ignore\r\n */\r\nfunction _throwTypeError(message) {\r\n throw new TypeError(\"DynamicProto: \" + message);\r\n}\r\n/**\r\n * Returns a collection of the instance functions that are defined directly on the thisTarget object, it does\r\n * not return any inherited functions\r\n * @param thisTarget The object to get the instance functions from\r\n * @ignore\r\n */\r\nfunction _getInstanceFuncs(thisTarget) {\r\n // Get the base proto\r\n var instFuncs = {};\r\n // Save any existing instance functions\r\n for (var name in thisTarget) {\r\n // Don't include any dynamic prototype instances - as we only want the real functions\r\n if (!instFuncs[name] && _isDynamicCandidate(thisTarget, name, false)) {\r\n // Create an instance callback for passing the base function to the caller\r\n instFuncs[name] = thisTarget[name];\r\n }\r\n }\r\n return instFuncs;\r\n}\r\n/**\r\n * Returns whether the value is included in the array\r\n * @param values The array of values\r\n * @param value The value\r\n */\r\nfunction _hasVisited(values, value) {\r\n for (var lp = values.length - 1; lp >= 0; lp--) {\r\n if (values[lp] === value) {\r\n return true;\r\n }\r\n }\r\n return false;\r\n}\r\n/**\r\n * Returns an object that contains callback functions for all \"base/super\" functions, this is used to \"save\"\r\n * enabling calling super.xxx() functions without requiring that the base \"class\" has defined a prototype references\r\n * @param target The current instance\r\n * @ignore\r\n */\r\nfunction _getBaseFuncs(classProto, thisTarget, instFuncs, useBaseInst) {\r\n function _instFuncProxy(target, funcHost, funcName) {\r\n var theFunc = funcHost[name];\r\n if (theFunc[DynProxyTag] && useBaseInst) {\r\n // grab and reuse the hosted looking function (if available) otherwise the original passed function\r\n var instFuncTable = target[DynInstFuncTable] || {};\r\n if (instFuncTable[DynAllowInstChkTag] !== false) {\r\n theFunc = (instFuncTable[funcHost[DynClassName]] || {})[funcName] || theFunc;\r\n }\r\n }\r\n return function () {\r\n return theFunc.apply(target, arguments);\r\n };\r\n }\r\n // Start creating a new baseFuncs by creating proxies for the instance functions (as they may get replaced)\r\n var baseFuncs = {};\r\n for (var name in instFuncs) {\r\n // Create an instance callback for passing the base function to the caller\r\n baseFuncs[name] = _instFuncProxy(thisTarget, instFuncs, name);\r\n }\r\n // Get the base prototype functions\r\n var baseProto = _getObjProto(classProto);\r\n var visited = [];\r\n // Don't include base object functions for Object, Array or Function\r\n while (baseProto && !_isObjectArrayOrFunctionPrototype(baseProto) && !_hasVisited(visited, baseProto)) {\r\n // look for prototype functions\r\n for (var name in baseProto) {\r\n // Don't include any dynamic prototype instances - as we only want the real functions\r\n // For IE 7/8 the prototype lookup doesn't provide the full chain so we need to bypass the \r\n // hasOwnProperty check we get all of the methods, main difference is that IE7/8 doesn't return\r\n // the Object prototype methods while bypassing the check\r\n if (!baseFuncs[name] && _isDynamicCandidate(baseProto, name, !_objGetPrototypeOf)) {\r\n // Create an instance callback for passing the base function to the caller\r\n baseFuncs[name] = _instFuncProxy(thisTarget, baseProto, name);\r\n }\r\n }\r\n // We need to find all possible functions that might be overloaded by walking the entire prototype chain\r\n // This avoids the caller from needing to check whether it's direct base class implements the function or not\r\n // by walking the entire chain it simplifies the usage and issues from upgrading any of the base classes.\r\n visited.push(baseProto);\r\n baseProto = _getObjProto(baseProto);\r\n }\r\n return baseFuncs;\r\n}\r\nfunction _getInstFunc(target, funcName, proto, currentDynProtoProxy) {\r\n var instFunc = null;\r\n // We need to check whether the class name is defined directly on this prototype otherwise\r\n // it will walk the proto chain and return any parent proto classname.\r\n if (target && _hasOwnProperty(proto, DynClassName)) {\r\n var instFuncTable = target[DynInstFuncTable] || {};\r\n instFunc = (instFuncTable[proto[DynClassName]] || {})[funcName];\r\n if (!instFunc) {\r\n // Avoid stack overflow from recursive calling the same function\r\n _throwTypeError(\"Missing [\" + funcName + \"] \" + strFunction);\r\n }\r\n // We have the instance function, lets check it we can speed up further calls\r\n // by adding the instance function back directly on the instance (avoiding the dynamic func lookup)\r\n if (!instFunc[DynInstChkTag] && instFuncTable[DynAllowInstChkTag] !== false) {\r\n // If the instance already has an instance function we can't replace it\r\n var canAddInst = !_hasOwnProperty(target, funcName);\r\n // Get current prototype\r\n var objProto = _getObjProto(target);\r\n var visited = [];\r\n // Lookup the function starting at the top (instance level prototype) and traverse down, if the first matching function\r\n // if nothing is found or if the first hit is a dynamic proto instance then we can safely add an instance shortcut\r\n while (canAddInst && objProto && !_isObjectArrayOrFunctionPrototype(objProto) && !_hasVisited(visited, objProto)) {\r\n var protoFunc = objProto[funcName];\r\n if (protoFunc) {\r\n canAddInst = (protoFunc === currentDynProtoProxy);\r\n break;\r\n }\r\n // We need to find all possible initial functions to ensure that we don't bypass a valid override function\r\n visited.push(objProto);\r\n objProto = _getObjProto(objProto);\r\n }\r\n try {\r\n if (canAddInst) {\r\n // This instance doesn't have an instance func and the class hierarchy does have a higher level prototype version\r\n // so it's safe to directly assign for any subsequent calls (for better performance)\r\n target[funcName] = instFunc;\r\n }\r\n // Block further attempts to set the instance function for any\r\n instFunc[DynInstChkTag] = 1;\r\n }\r\n catch (e) {\r\n // Don't crash if the object is readonly or the runtime doesn't allow changing this\r\n // And set a flag so we don't try again for any function\r\n instFuncTable[DynAllowInstChkTag] = false;\r\n }\r\n }\r\n }\r\n return instFunc;\r\n}\r\nfunction _getProtoFunc(funcName, proto, currentDynProtoProxy) {\r\n var protoFunc = proto[funcName];\r\n // Check that the prototype function is not a self reference -- try to avoid stack overflow!\r\n if (protoFunc === currentDynProtoProxy) {\r\n // It is so lookup the base prototype\r\n protoFunc = _getObjProto(proto)[funcName];\r\n }\r\n if (!_isFunction(protoFunc)) {\r\n _throwTypeError(\"[\" + funcName + \"] is not a \" + strFunction);\r\n }\r\n return protoFunc;\r\n}\r\n/**\r\n * Add the required dynamic prototype methods to the the class prototype\r\n * @param proto - The class prototype\r\n * @param className - The instance classname\r\n * @param target - The target instance\r\n * @param baseInstFuncs - The base instance functions\r\n * @param setInstanceFunc - Flag to allow prototype function to reset the instance function if one does not exist\r\n * @ignore\r\n */\r\nfunction _populatePrototype(proto, className, target, baseInstFuncs, setInstanceFunc) {\r\n function _createDynamicPrototype(proto, funcName) {\r\n var dynProtoProxy = function () {\r\n // Use the instance or prototype function\r\n var instFunc = _getInstFunc(this, funcName, proto, dynProtoProxy) || _getProtoFunc(funcName, proto, dynProtoProxy);\r\n return instFunc.apply(this, arguments);\r\n };\r\n // Tag this function as a proxy to support replacing dynamic proxy elements (primary use case is for unit testing\r\n // via which can dynamically replace the prototype function reference)\r\n dynProtoProxy[DynProxyTag] = 1;\r\n return dynProtoProxy;\r\n }\r\n if (!_isObjectOrArrayPrototype(proto)) {\r\n var instFuncTable = target[DynInstFuncTable] = target[DynInstFuncTable] || {};\r\n var instFuncs = instFuncTable[className] = (instFuncTable[className] || {}); // fetch and assign if as it may not exist yet\r\n // Set whether we are allow to lookup instances, if someone has set to false then do not re-enable\r\n if (instFuncTable[DynAllowInstChkTag] !== false) {\r\n instFuncTable[DynAllowInstChkTag] = !!setInstanceFunc;\r\n }\r\n for (var name in target) {\r\n // Only add overridden functions\r\n if (_isDynamicCandidate(target, name, false) && target[name] !== baseInstFuncs[name]) {\r\n // Save the instance Function to the lookup table and remove it from the instance as it's not a dynamic proto function\r\n instFuncs[name] = target[name];\r\n delete target[name];\r\n // Add a dynamic proto if one doesn't exist or if a prototype function exists and it's not a dynamic one\r\n if (!_hasOwnProperty(proto, name) || (proto[name] && !proto[name][DynProxyTag])) {\r\n proto[name] = _createDynamicPrototype(proto, name);\r\n }\r\n }\r\n }\r\n }\r\n}\r\n/**\r\n * Checks whether the passed prototype object appears to be correct by walking the prototype hierarchy of the instance\r\n * @param classProto The class prototype instance\r\n * @param thisTarget The current instance that will be checked whether the passed prototype instance is in the hierarchy\r\n * @ignore\r\n */\r\nfunction _checkPrototype(classProto, thisTarget) {\r\n var thisProto = _getObjProto(thisTarget);\r\n while (thisProto && !_isObjectArrayOrFunctionPrototype(thisProto)) {\r\n if (thisProto === classProto) {\r\n return true;\r\n }\r\n thisProto = _getObjProto(thisProto);\r\n }\r\n return false;\r\n}\r\n/**\r\n * Gets the current prototype name using the ES6 name if available otherwise falling back to a use unknown as the name.\r\n * It's not critical for this to return a name, it's used to decorate the generated unique name for easier debugging only.\r\n * @param target\r\n * @param unknownValue\r\n * @ignore\r\n */\r\nfunction _getObjName(target, unknownValue) {\r\n if (_hasOwnProperty(target, Prototype)) {\r\n // Look like a prototype\r\n return target.name || unknownValue || UnknownValue;\r\n }\r\n return (((target || {})[Constructor]) || {}).name || unknownValue || UnknownValue;\r\n}\r\n/**\r\n * Helper function when creating dynamic (inline) functions for classes, this helper performs the following tasks :-\r\n * - Saves references to all defined base class functions\r\n * - Calls the delegateFunc with the current target (this) and a base object reference that can be used to call all \"super\" functions.\r\n * - Will populate the class prototype for all overridden functions to support class extension that call the prototype instance.\r\n * Callers should use this helper when declaring all function within the constructor of a class, as mentioned above the delegateFunc is\r\n * passed both the target \"this\" and an object that can be used to call any base (super) functions, using this based object in place of\r\n * super.XXX() (which gets expanded to _super.prototype.XXX()) provides a better minification outcome and also ensures the correct \"this\"\r\n * context is maintained as TypeScript creates incorrect references using super.XXXX() for dynamically defined functions i.e. Functions\r\n * defined in the constructor or some other function (rather than declared as complete typescript functions).\r\n * ### Usage\r\n * ```typescript\r\n * import dynamicProto from \"@microsoft/dynamicproto-js\";\r\n * class ExampleClass extends BaseClass {\r\n * constructor() {\r\n * dynamicProto(ExampleClass, this, (_self, base) => {\r\n * // This will define a function that will be converted to a prototype function\r\n * _self.newFunc = () => {\r\n * // Access any \"this\" instance property\r\n * if (_self.someProperty) {\r\n * ...\r\n * }\r\n * }\r\n * // This will define a function that will be converted to a prototype function\r\n * _self.myFunction = () => {\r\n * // Access any \"this\" instance property\r\n * if (_self.someProperty) {\r\n * // Call the base version of the function that we are overriding\r\n * base.myFunction();\r\n * }\r\n * ...\r\n * }\r\n * _self.initialize = () => {\r\n * ...\r\n * }\r\n * // Warnings: While the following will work as _self is simply a reference to\r\n * // this, if anyone overrides myFunction() the overridden will be called first\r\n * // as the normal JavaScript method resolution will occur and the defined\r\n * // _self.initialize() function is actually gets removed from the instance and\r\n * // a proxy prototype version is created to reference the created method.\r\n * _self.initialize();\r\n * });\r\n * }\r\n * }\r\n * ```\r\n * @typeparam DPType This is the generic type of the class, used to keep intellisense valid\r\n * @typeparam DPCls The type that contains the prototype of the current class\r\n * @param theClass - This is the current class instance which contains the prototype for the current class\r\n * @param target - The current \"this\" (target) reference, when the class has been extended this.prototype will not be the 'theClass' value.\r\n * @param delegateFunc - The callback function (closure) that will create the dynamic function\r\n * @param options - Additional options to configure how the dynamic prototype operates\r\n */\r\nfunction dynamicProto(theClass, target, delegateFunc, options) {\r\n // Make sure that the passed theClass argument looks correct\r\n if (!_hasOwnProperty(theClass, Prototype)) {\r\n _throwTypeError(\"theClass is an invalid class definition.\");\r\n }\r\n // Quick check to make sure that the passed theClass argument looks correct (this is a common copy/paste error)\r\n var classProto = theClass[Prototype];\r\n if (!_checkPrototype(classProto, target)) {\r\n _throwTypeError(\"[\" + _getObjName(theClass) + \"] is not in class hierarchy of [\" + _getObjName(target) + \"]\");\r\n }\r\n var className = null;\r\n if (_hasOwnProperty(classProto, DynClassName)) {\r\n // Only grab the class name if it's defined on this prototype (i.e. don't walk the prototype chain)\r\n className = classProto[DynClassName];\r\n }\r\n else {\r\n // As not all browser support name on the prototype creating a unique dynamic one if we have not already\r\n // assigned one, so we can use a simple string as the lookup rather than an object for the dynamic instance\r\n // function table lookup.\r\n className = DynClassNamePrefix + _getObjName(theClass, \"_\") + \"$\" + _dynamicNames;\r\n _dynamicNames++;\r\n classProto[DynClassName] = className;\r\n }\r\n var perfOptions = dynamicProto[DynProtoDefaultOptions];\r\n var useBaseInst = !!perfOptions[strUseBaseInst];\r\n if (useBaseInst && options && options[strUseBaseInst] !== undefined) {\r\n useBaseInst = !!options[strUseBaseInst];\r\n }\r\n // Get the current instance functions\r\n var instFuncs = _getInstanceFuncs(target);\r\n // Get all of the functions for any base instance (before they are potentially overridden)\r\n var baseFuncs = _getBaseFuncs(classProto, target, instFuncs, useBaseInst);\r\n // Execute the delegate passing in both the current target \"this\" and \"base\" function references\r\n // Note casting the same type as we don't actually have the base class here and this will provide some intellisense support\r\n delegateFunc(target, baseFuncs);\r\n // Don't allow setting instance functions for older IE instances\r\n var setInstanceFunc = !!_objGetPrototypeOf && !!perfOptions[strSetInstFuncs];\r\n if (setInstanceFunc && options) {\r\n setInstanceFunc = !!options[strSetInstFuncs];\r\n }\r\n // Populate the Prototype for any overridden instance functions\r\n _populatePrototype(classProto, className, target, instFuncs, setInstanceFunc !== false);\r\n}\r\n/**\r\n * Exposes the default global options to allow global configuration, if the global values are disabled these will override\r\n * any passed values. This is primarily exposed to support unit-testing without the need for individual classes to expose\r\n * their internal usage of dynamic proto.\r\n */\r\nvar perfDefaults = {\r\n setInstFuncs: true,\r\n useBaseInst: true\r\n};\r\n// And expose for testing\r\ndynamicProto[DynProtoDefaultOptions] = perfDefaults;\n\nexport default dynamicProto;\n//# sourceMappingURL=dynamicproto-js.js.map\n","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n\"use strict\";\r\nimport { _InternalMessageId, LoggingSeverity } from \"../JavaScriptSDK.Enums/LoggingEnums\";\r\nimport { CoreUtils } from \"./CoreUtils\";\r\nimport { hasJSON, getJSON, getConsole } from \"./EnvUtils\";\r\nimport dynamicProto from '@microsoft/dynamicproto-js';\r\n/**\r\n * For user non actionable traces use AI Internal prefix.\r\n */\r\nvar AiNonUserActionablePrefix = \"AI (Internal): \";\r\n/**\r\n * Prefix of the traces in portal.\r\n */\r\nvar AiUserActionablePrefix = \"AI: \";\r\n/**\r\n * Session storage key for the prefix for the key indicating message type already logged\r\n */\r\nvar AIInternalMessagePrefix = \"AITR_\";\r\nfunction _sanitizeDiagnosticText(text) {\r\n if (text) {\r\n return \"\\\"\" + text.replace(/\\\"/g, \"\") + \"\\\"\";\r\n }\r\n return \"\";\r\n}\r\nvar _InternalLogMessage = /** @class */ (function () {\r\n function _InternalLogMessage(msgId, msg, isUserAct, properties) {\r\n if (isUserAct === void 0) { isUserAct = false; }\r\n var _self = this;\r\n _self.messageId = msgId;\r\n _self.message =\r\n (isUserAct ? AiUserActionablePrefix : AiNonUserActionablePrefix) +\r\n msgId;\r\n var strProps = \"\";\r\n if (hasJSON()) {\r\n strProps = getJSON().stringify(properties);\r\n }\r\n var diagnosticText = (msg ? \" message:\" + _sanitizeDiagnosticText(msg) : \"\") +\r\n (properties ? \" props:\" + _sanitizeDiagnosticText(strProps) : \"\");\r\n _self.message += diagnosticText;\r\n }\r\n _InternalLogMessage.dataType = \"MessageData\";\r\n return _InternalLogMessage;\r\n}());\r\nexport { _InternalLogMessage };\r\nvar DiagnosticLogger = /** @class */ (function () {\r\n function DiagnosticLogger(config) {\r\n this.identifier = 'DiagnosticLogger';\r\n /**\r\n * The internal logging queue\r\n */\r\n this.queue = [];\r\n /**\r\n * Count of internal messages sent\r\n */\r\n var _messageCount = 0;\r\n /**\r\n * Holds information about what message types were already logged to console or sent to server.\r\n */\r\n var _messageLogged = {};\r\n dynamicProto(DiagnosticLogger, this, function (_self) {\r\n var isNullOrUndefined = CoreUtils.isNullOrUndefined;\r\n var isUndefined = CoreUtils.isUndefined;\r\n var isFunction = CoreUtils.isFunction;\r\n if (isNullOrUndefined(config)) {\r\n config = {};\r\n }\r\n _self.consoleLoggingLevel = function () { return _getConfigValue('loggingLevelConsole', 0); };\r\n _self.telemetryLoggingLevel = function () { return _getConfigValue('loggingLevelTelemetry', 1); };\r\n _self.maxInternalMessageLimit = function () { return _getConfigValue('maxMessageLimit', 25); };\r\n _self.enableDebugExceptions = function () { return _getConfigValue('enableDebugExceptions', false); };\r\n /**\r\n * This method will throw exceptions in debug mode or attempt to log the error as a console warning.\r\n * @param severity {LoggingSeverity} - The severity of the log message\r\n * @param message {_InternalLogMessage} - The log message.\r\n */\r\n _self.throwInternal = function (severity, msgId, msg, properties, isUserAct) {\r\n if (isUserAct === void 0) { isUserAct = false; }\r\n var message = new _InternalLogMessage(msgId, msg, isUserAct, properties);\r\n if (_self.enableDebugExceptions()) {\r\n throw message;\r\n }\r\n else {\r\n if (!isUndefined(message) && !!message) {\r\n if (!isUndefined(message.message)) {\r\n if (isUserAct) {\r\n // check if this message type was already logged to console for this page view and if so, don't log it again\r\n var messageKey = +message.messageId;\r\n if (!_messageLogged[messageKey] && _self.consoleLoggingLevel() >= LoggingSeverity.WARNING) {\r\n _self.warnToConsole(message.message);\r\n _messageLogged[messageKey] = true;\r\n }\r\n }\r\n else {\r\n // don't log internal AI traces in the console, unless the verbose logging is enabled\r\n if (_self.consoleLoggingLevel() >= LoggingSeverity.WARNING) {\r\n _self.warnToConsole(message.message);\r\n }\r\n }\r\n _self.logInternalMessage(severity, message);\r\n }\r\n }\r\n }\r\n };\r\n /**\r\n * This will write a warning to the console if possible\r\n * @param message {string} - The warning message\r\n */\r\n _self.warnToConsole = function (message) {\r\n var theConsole = getConsole();\r\n if (!!theConsole) {\r\n var logFunc = 'log';\r\n if (theConsole.warn) {\r\n logFunc = 'warn';\r\n }\r\n if (isFunction(theConsole[logFunc])) {\r\n theConsole[logFunc](message);\r\n }\r\n }\r\n };\r\n /**\r\n * Resets the internal message count\r\n */\r\n _self.resetInternalMessageCount = function () {\r\n _messageCount = 0;\r\n _messageLogged = {};\r\n };\r\n /**\r\n * Logs a message to the internal queue.\r\n * @param severity {LoggingSeverity} - The severity of the log message\r\n * @param message {_InternalLogMessage} - The message to log.\r\n */\r\n _self.logInternalMessage = function (severity, message) {\r\n if (_areInternalMessagesThrottled()) {\r\n return;\r\n }\r\n // check if this message type was already logged for this session and if so, don't log it again\r\n var logMessage = true;\r\n var messageKey = AIInternalMessagePrefix + message.messageId;\r\n // if the session storage is not available, limit to only one message type per page view\r\n if (_messageLogged[messageKey]) {\r\n logMessage = false;\r\n }\r\n else {\r\n _messageLogged[messageKey] = true;\r\n }\r\n if (logMessage) {\r\n // Push the event in the internal queue\r\n if (severity <= _self.telemetryLoggingLevel()) {\r\n _self.queue.push(message);\r\n _messageCount++;\r\n }\r\n // When throttle limit reached, send a special event\r\n if (_messageCount === _self.maxInternalMessageLimit()) {\r\n var throttleLimitMessage = \"Internal events throttle limit per PageView reached for this app.\";\r\n var throttleMessage = new _InternalLogMessage(_InternalMessageId.MessageLimitPerPVExceeded, throttleLimitMessage, false);\r\n _self.queue.push(throttleMessage);\r\n _self.warnToConsole(throttleLimitMessage);\r\n }\r\n }\r\n };\r\n function _getConfigValue(name, defValue) {\r\n var value = config[name];\r\n if (!isNullOrUndefined(value)) {\r\n return value;\r\n }\r\n return defValue;\r\n }\r\n function _areInternalMessagesThrottled() {\r\n return _messageCount >= _self.maxInternalMessageLimit();\r\n }\r\n });\r\n }\r\n /**\r\n * When this is true the SDK will throw exceptions to aid in debugging.\r\n */\r\n DiagnosticLogger.prototype.enableDebugExceptions = function () {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n return false;\r\n };\r\n /**\r\n * 0: OFF (default)\r\n * 1: CRITICAL\r\n * 2: >= WARNING\r\n */\r\n DiagnosticLogger.prototype.consoleLoggingLevel = function () {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n return 0;\r\n };\r\n /**\r\n * 0: OFF\r\n * 1: CRITICAL (default)\r\n * 2: >= WARNING\r\n */\r\n DiagnosticLogger.prototype.telemetryLoggingLevel = function () {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n return 1;\r\n };\r\n /**\r\n * The maximum number of internal messages allowed to be sent per page view\r\n */\r\n DiagnosticLogger.prototype.maxInternalMessageLimit = function () {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n return 25;\r\n };\r\n /**\r\n * This method will throw exceptions in debug mode or attempt to log the error as a console warning.\r\n * @param severity {LoggingSeverity} - The severity of the log message\r\n * @param message {_InternalLogMessage} - The log message.\r\n */\r\n DiagnosticLogger.prototype.throwInternal = function (severity, msgId, msg, properties, isUserAct) {\r\n if (isUserAct === void 0) { isUserAct = false; }\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n /**\r\n * This will write a warning to the console if possible\r\n * @param message {string} - The warning message\r\n */\r\n DiagnosticLogger.prototype.warnToConsole = function (message) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n /**\r\n * Resets the internal message count\r\n */\r\n DiagnosticLogger.prototype.resetInternalMessageCount = function () {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n /**\r\n * Logs a message to the internal queue.\r\n * @param severity {LoggingSeverity} - The severity of the log message\r\n * @param message {_InternalLogMessage} - The message to log.\r\n */\r\n DiagnosticLogger.prototype.logInternalMessage = function (severity, message) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n return DiagnosticLogger;\r\n}());\r\nexport { DiagnosticLogger };\r\n//# sourceMappingURL=DiagnosticLogger.js.map","import dynamicProto from \"@microsoft/dynamicproto-js\";\r\nimport { CoreUtils } from \"./CoreUtils\";\r\nvar strExecutionContextKey = \"ctx\";\r\nvar PerfEvent = /** @class */ (function () {\r\n function PerfEvent(name, payloadDetails, isAsync) {\r\n var _self = this;\r\n var accessorDefined = false;\r\n _self.start = CoreUtils.dateNow();\r\n _self.name = name;\r\n _self.isAsync = isAsync;\r\n _self.isChildEvt = function () { return false; };\r\n if (CoreUtils.isFunction(payloadDetails)) {\r\n // Create an accessor to minimize the potential performance impact of executing the payloadDetails callback\r\n var theDetails_1;\r\n accessorDefined = CoreUtils.objDefineAccessors(_self, 'payload', function () {\r\n // Delay the execution of the payloadDetails until needed\r\n if (!theDetails_1 && CoreUtils.isFunction(payloadDetails)) {\r\n theDetails_1 = payloadDetails();\r\n // clear it out now so the referenced objects can be garbage collected\r\n payloadDetails = null;\r\n }\r\n return theDetails_1;\r\n });\r\n }\r\n _self.getCtx = function (key) {\r\n if (key) {\r\n // The parent and child links are located directly on the object (for better viewing in the DebugPlugin)\r\n if (key === PerfEvent.ParentContextKey || key === PerfEvent.ChildrenContextKey) {\r\n return _self[key];\r\n }\r\n return (_self[strExecutionContextKey] || {})[key];\r\n }\r\n return null;\r\n };\r\n _self.setCtx = function (key, value) {\r\n if (key) {\r\n // Put the parent and child links directly on the object (for better viewing in the DebugPlugin)\r\n if (key === PerfEvent.ParentContextKey) {\r\n // Simple assumption, if we are setting a parent then we must be a child\r\n if (!_self[key]) {\r\n _self.isChildEvt = function () { return true; };\r\n }\r\n _self[key] = value;\r\n }\r\n else if (key === PerfEvent.ChildrenContextKey) {\r\n _self[key] = value;\r\n }\r\n else {\r\n var ctx = _self[strExecutionContextKey] = _self[strExecutionContextKey] || {};\r\n ctx[key] = value;\r\n }\r\n }\r\n };\r\n _self.complete = function () {\r\n var childTime = 0;\r\n var childEvts = _self.getCtx(PerfEvent.ChildrenContextKey);\r\n if (CoreUtils.isArray(childEvts)) {\r\n for (var lp = 0; lp < childEvts.length; lp++) {\r\n var childEvt = childEvts[lp];\r\n if (childEvt) {\r\n childTime += childEvt.time;\r\n }\r\n }\r\n }\r\n _self.time = CoreUtils.dateNow() - _self.start;\r\n _self.exTime = _self.time - childTime;\r\n _self.complete = function () { };\r\n if (!accessorDefined && CoreUtils.isFunction(payloadDetails)) {\r\n // If we couldn't define the property set during complete -- to minimize the perf impact until after the time\r\n _self.payload = payloadDetails();\r\n }\r\n };\r\n }\r\n PerfEvent.ParentContextKey = \"parent\";\r\n PerfEvent.ChildrenContextKey = \"childEvts\";\r\n return PerfEvent;\r\n}());\r\nexport { PerfEvent };\r\nvar PerfManager = /** @class */ (function () {\r\n function PerfManager(manager) {\r\n /**\r\n * General bucket used for execution context set and retrieved via setCtx() and getCtx.\r\n * Defined as private so it can be visualized via the DebugPlugin\r\n */\r\n this.ctx = {};\r\n dynamicProto(PerfManager, this, function (_self) {\r\n _self.create = function (src, payloadDetails, isAsync) {\r\n // TODO (@MSNev): at some point we will want to add additional configuration to \"select\" which events to instrument\r\n // for now this is just a simple do everything.\r\n return new PerfEvent(src, payloadDetails, isAsync);\r\n };\r\n _self.fire = function (perfEvent) {\r\n if (perfEvent) {\r\n perfEvent.complete();\r\n if (manager) {\r\n manager.perfEvent(perfEvent);\r\n }\r\n }\r\n };\r\n _self.setCtx = function (key, value) {\r\n if (key) {\r\n var ctx = _self[strExecutionContextKey] = _self[strExecutionContextKey] || {};\r\n ctx[key] = value;\r\n }\r\n };\r\n _self.getCtx = function (key) {\r\n return (_self[strExecutionContextKey] || {})[key];\r\n };\r\n });\r\n }\r\n /**\r\n * Create a new event and start timing, the manager may return null/undefined to indicate that it does not\r\n * want to monitor this source event.\r\n * @param src The source name of the event\r\n * @param payloadDetails - An optional callback function to fetch the payload details for the event.\r\n * @param isAsync - Is the event occurring from a async event\r\n */\r\n PerfManager.prototype.create = function (src, payload, isAsync) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n return null;\r\n };\r\n /**\r\n * Complete the perfEvent and fire any notifications.\r\n * @param perfEvent Fire the event which will also complete the passed event\r\n */\r\n PerfManager.prototype.fire = function (perfEvent) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n /**\r\n * Set an execution context value\r\n * @param key - The context key name\r\n * @param value - The value\r\n */\r\n PerfManager.prototype.setCtx = function (key, value) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n /**\r\n * Get the execution context value\r\n * @param key - The context key\r\n */\r\n PerfManager.prototype.getCtx = function (key) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n return PerfManager;\r\n}());\r\nexport { PerfManager };\r\nvar doPerfActiveKey = \"CoreUtils.doPerf\";\r\n/**\r\n * Helper function to wrap a function with a perf event\r\n * @param mgrSource - The Performance Manager or a Performance provider source (may be null)\r\n * @param getSource - The callback to create the source name for the event (if perf monitoring is enabled)\r\n * @param func - The function to call and measure\r\n * @param details - A function to return the payload details\r\n * @param isAsync - Is the event / function being call asynchronously or synchronously\r\n */\r\nexport function doPerf(mgrSource, getSource, func, details, isAsync) {\r\n if (mgrSource) {\r\n var perfMgr = mgrSource;\r\n if (perfMgr && CoreUtils.isFunction(perfMgr[\"getPerfMgr\"])) {\r\n // Looks like a perf manager provider object\r\n perfMgr = perfMgr[\"getPerfMgr\"]();\r\n }\r\n if (perfMgr) {\r\n var perfEvt = void 0;\r\n var currentActive = perfMgr.getCtx(doPerfActiveKey);\r\n try {\r\n perfEvt = perfMgr.create(getSource(), details, isAsync);\r\n if (perfEvt) {\r\n if (currentActive && perfEvt.setCtx) {\r\n perfEvt.setCtx(PerfEvent.ParentContextKey, currentActive);\r\n if (currentActive.getCtx && currentActive.setCtx) {\r\n var children = currentActive.getCtx(PerfEvent.ChildrenContextKey);\r\n if (!children) {\r\n children = [];\r\n currentActive.setCtx(PerfEvent.ChildrenContextKey, children);\r\n }\r\n children.push(perfEvt);\r\n }\r\n }\r\n // Set this event as the active event now\r\n perfMgr.setCtx(doPerfActiveKey, perfEvt);\r\n return func(perfEvt);\r\n }\r\n }\r\n catch (ex) {\r\n if (perfEvt && perfEvt.setCtx) {\r\n perfEvt.setCtx(\"exception\", ex);\r\n }\r\n }\r\n finally {\r\n // fire the perf event\r\n if (perfEvt) {\r\n perfMgr.fire(perfEvt);\r\n }\r\n // Reset the active event to the previous value\r\n perfMgr.setCtx(doPerfActiveKey, currentActive);\r\n }\r\n }\r\n }\r\n return func();\r\n}\r\n//# sourceMappingURL=PerfManager.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n\"use strict\";\r\nimport { CoreUtils } from \"./CoreUtils\";\r\nimport { doPerf } from \"./PerfManager\";\r\nimport { LoggingSeverity, _InternalMessageId } from '../JavaScriptSDK.Enums/LoggingEnums';\r\nvar _isFunction = CoreUtils.isFunction;\r\nvar TelemetryPluginChain = /** @class */ (function () {\r\n function TelemetryPluginChain(plugin, defItemCtx) {\r\n var _self = this;\r\n var _nextProxy = null;\r\n var _hasProcessTelemetry = _isFunction(plugin.processTelemetry);\r\n var _hasSetNext = _isFunction(plugin.setNextPlugin);\r\n _self._hasRun = false;\r\n _self.getPlugin = function () {\r\n return plugin;\r\n };\r\n _self.getNext = function () {\r\n return _nextProxy;\r\n };\r\n _self.setNext = function (nextPlugin) {\r\n _nextProxy = nextPlugin;\r\n };\r\n _self.processTelemetry = function (env, itemCtx) {\r\n if (!itemCtx) {\r\n // Looks like a plugin didn't pass the (optional) context, so restore to the default\r\n itemCtx = defItemCtx;\r\n }\r\n var identifier = plugin ? plugin.identifier : \"TelemetryPluginChain\";\r\n doPerf(itemCtx ? itemCtx.core() : null, function () { return identifier + \":processTelemetry\"; }, function () {\r\n if (plugin && _hasProcessTelemetry) {\r\n _self._hasRun = true;\r\n try {\r\n // Ensure that we keep the context in sync (for processNext()), just in case a plugin\r\n // doesn't calls processTelemetry() instead of itemContext.processNext() or some \r\n // other form of error occurred\r\n itemCtx.setNext(_nextProxy);\r\n if (_hasSetNext) {\r\n // Backward compatibility setting the next plugin on the instance\r\n plugin.setNextPlugin(_nextProxy);\r\n }\r\n // Set a flag on the next plugin so we know if it was attempted to be executed\r\n _nextProxy && (_nextProxy._hasRun = false);\r\n plugin.processTelemetry(env, itemCtx);\r\n }\r\n catch (error) {\r\n var hasRun = _nextProxy && _nextProxy._hasRun;\r\n if (!_nextProxy || !hasRun) {\r\n // Either we have no next plugin or the current one did not attempt to call the next plugin\r\n // Which means the current one is the root of the failure so log/report this failure\r\n itemCtx.diagLog().throwInternal(LoggingSeverity.CRITICAL, _InternalMessageId.PluginException, \"Plugin [\" + plugin.identifier + \"] failed during processTelemetry - \" + error);\r\n }\r\n if (_nextProxy && !hasRun) {\r\n // As part of the failure the current plugin did not attempt to call the next plugin in the cahin\r\n // So rather than leave the pipeline dead in the water we call the next plugin\r\n _nextProxy.processTelemetry(env, itemCtx);\r\n }\r\n }\r\n }\r\n else if (_nextProxy) {\r\n _self._hasRun = true;\r\n // The underlying plugin is either not defined or does not have a processTelemetry implementation\r\n // so we still want the next plugin to be executed.\r\n _nextProxy.processTelemetry(env, itemCtx);\r\n }\r\n }, function () { return ({ item: env }); }, !(env.sync));\r\n };\r\n }\r\n return TelemetryPluginChain;\r\n}());\r\nexport { TelemetryPluginChain };\r\n//# sourceMappingURL=TelemetryPluginChain.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n\"use strict\";\r\nimport { CoreUtils } from \"./CoreUtils\";\r\nimport { DiagnosticLogger } from \"./DiagnosticLogger\";\r\nimport { TelemetryPluginChain } from \"./TelemetryPluginChain\";\r\nvar _isNullOrUndefined = CoreUtils.isNullOrUndefined;\r\n/**\r\n * Creates the instance execution chain for the plugins\r\n */\r\nfunction _createProxyChain(plugins, itemCtx) {\r\n var proxies = [];\r\n if (plugins && plugins.length > 0) {\r\n // Create the proxies and wire up the next plugin chain\r\n var lastProxy = null;\r\n for (var idx = 0; idx < plugins.length; idx++) {\r\n var thePlugin = plugins[idx];\r\n if (thePlugin && CoreUtils.isFunction(thePlugin.processTelemetry)) {\r\n // Only add plugins that are processors\r\n var newProxy = new TelemetryPluginChain(thePlugin, itemCtx);\r\n proxies.push(newProxy);\r\n if (lastProxy) {\r\n // Set this new proxy as the next for the previous one\r\n lastProxy.setNext(newProxy);\r\n }\r\n lastProxy = newProxy;\r\n }\r\n }\r\n }\r\n return proxies.length > 0 ? proxies[0] : null;\r\n}\r\nfunction _copyProxyChain(proxy, itemCtx, startAt) {\r\n var plugins = [];\r\n var add = startAt ? false : true;\r\n if (proxy) {\r\n while (proxy) {\r\n var thePlugin = proxy.getPlugin();\r\n if (add || thePlugin === startAt) {\r\n add = true;\r\n plugins.push(thePlugin);\r\n }\r\n proxy = proxy.getNext();\r\n }\r\n }\r\n if (!add) {\r\n plugins.push(startAt);\r\n }\r\n return _createProxyChain(plugins, itemCtx);\r\n}\r\nfunction _copyPluginChain(srcPlugins, itemCtx, startAt) {\r\n var plugins = srcPlugins;\r\n var add = false;\r\n if (startAt && srcPlugins) {\r\n plugins = [];\r\n CoreUtils.arrForEach(srcPlugins, function (thePlugin) {\r\n if (add || thePlugin === startAt) {\r\n add = true;\r\n plugins.push(thePlugin);\r\n }\r\n });\r\n }\r\n if (startAt && !add) {\r\n if (!plugins) {\r\n plugins = [];\r\n }\r\n plugins.push(startAt);\r\n }\r\n return _createProxyChain(plugins, itemCtx);\r\n}\r\nvar ProcessTelemetryContext = /** @class */ (function () {\r\n /**\r\n * Creates a new Telemetry Item context with the current config, core and plugin execution chain\r\n * @param plugins - The plugin instances that will be executed\r\n * @param config - The current config\r\n * @param core - The current core instance\r\n */\r\n function ProcessTelemetryContext(plugins, config, core, startAt) {\r\n var _self = this;\r\n var _nextProxy = null; // Null == No next plugin\r\n // There is no next element (null) vs not defined (undefined)\r\n if (startAt !== null) {\r\n if (plugins && CoreUtils.isFunction(plugins.getPlugin)) {\r\n // We have a proxy chain object\r\n _nextProxy = _copyProxyChain(plugins, _self, startAt || plugins.getPlugin());\r\n }\r\n else {\r\n // We just have an array\r\n if (startAt) {\r\n _nextProxy = _copyPluginChain(plugins, _self, startAt);\r\n }\r\n else if (CoreUtils.isUndefined(startAt)) {\r\n // Undefined means copy the existing chain\r\n _nextProxy = _createProxyChain(plugins, _self);\r\n }\r\n }\r\n }\r\n _self.core = function () {\r\n return core;\r\n };\r\n _self.diagLog = function () {\r\n var logger = (core || {}).logger;\r\n if (!logger) {\r\n // Fallback so we always have a logger\r\n logger = new DiagnosticLogger(config || {});\r\n }\r\n return logger;\r\n };\r\n _self.getCfg = function () {\r\n return config;\r\n };\r\n _self.getExtCfg = function (identifier, defaultValue) {\r\n if (defaultValue === void 0) { defaultValue = {}; }\r\n var theConfig;\r\n if (config) {\r\n var extConfig = config.extensionConfig;\r\n if (extConfig && identifier) {\r\n theConfig = extConfig[identifier];\r\n }\r\n }\r\n return (theConfig ? theConfig : defaultValue);\r\n };\r\n _self.getConfig = function (identifier, field, defaultValue) {\r\n if (defaultValue === void 0) { defaultValue = false; }\r\n var theValue;\r\n var extConfig = _self.getExtCfg(identifier, null);\r\n if (extConfig && !_isNullOrUndefined(extConfig[field])) {\r\n theValue = extConfig[field];\r\n }\r\n else if (config && !_isNullOrUndefined(config[field])) {\r\n theValue = config[field];\r\n }\r\n return !_isNullOrUndefined(theValue) ? theValue : defaultValue;\r\n };\r\n _self.hasNext = function () {\r\n return _nextProxy != null;\r\n };\r\n _self.getNext = function () {\r\n return _nextProxy;\r\n };\r\n _self.setNext = function (nextPlugin) {\r\n _nextProxy = nextPlugin;\r\n };\r\n _self.processNext = function (env) {\r\n var nextPlugin = _nextProxy;\r\n if (nextPlugin) {\r\n // Automatically move to the next plugin\r\n _nextProxy = nextPlugin.getNext();\r\n nextPlugin.processTelemetry(env, _self);\r\n }\r\n };\r\n _self.createNew = function (plugins, startAt) {\r\n if (plugins === void 0) { plugins = null; }\r\n return new ProcessTelemetryContext(plugins || _nextProxy, config, core, startAt);\r\n };\r\n }\r\n return ProcessTelemetryContext;\r\n}());\r\nexport { ProcessTelemetryContext };\r\n//# sourceMappingURL=ProcessTelemetryContext.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n\"use strict\";\r\nimport { CoreUtils } from \"./CoreUtils\";\r\nimport { ProcessTelemetryContext } from './ProcessTelemetryContext';\r\nvar _isFunction = CoreUtils.isFunction;\r\nvar getPlugin = \"getPlugin\";\r\n/**\r\n * BaseTelemetryPlugin provides a basic implementation of the ITelemetryPlugin interface so that plugins\r\n * can avoid implementation the same set of boiler plate code as well as provide a base\r\n * implementation so that new default implementations can be added without breaking all plugins.\r\n */\r\nvar BaseTelemetryPlugin = /** @class */ (function () {\r\n function BaseTelemetryPlugin() {\r\n var _self = this;\r\n var _isinitialized = false;\r\n var _rootCtx = null; // Used as the root context, holding the current config and initialized core\r\n var _nextPlugin = null; // Used for backward compatibility where plugins don't call the main pipeline\r\n _self.core = null;\r\n _self.diagLog = function (itemCtx) {\r\n return _self._getTelCtx(itemCtx).diagLog();\r\n };\r\n _self.isInitialized = function () {\r\n return _isinitialized;\r\n };\r\n _self.setInitialized = function (isInitialized) {\r\n _isinitialized = isInitialized;\r\n };\r\n // _self.getNextPlugin = () => DO NOT IMPLEMENT\r\n // Sub-classes of this base class *should* not be relying on this value and instead\r\n // should use processNext() function. If you require access to the plugin use the\r\n // IProcessTelemetryContext.getNext().getPlugin() while in the pipeline, Note getNext() may return null.\r\n _self.setNextPlugin = function (next) {\r\n _nextPlugin = next;\r\n };\r\n _self.processNext = function (env, itemCtx) {\r\n if (itemCtx) {\r\n // Normal core execution sequence\r\n itemCtx.processNext(env);\r\n }\r\n else if (_nextPlugin && _isFunction(_nextPlugin.processTelemetry)) {\r\n // Looks like backward compatibility or out of band processing. And as it looks \r\n // like a ITelemetryPlugin or ITelemetryPluginChain, just call processTelemetry\r\n _nextPlugin.processTelemetry(env, null);\r\n }\r\n };\r\n _self._getTelCtx = function (currentCtx) {\r\n if (currentCtx === void 0) { currentCtx = null; }\r\n var itemCtx = currentCtx;\r\n if (!itemCtx) {\r\n var rootCtx = _rootCtx || new ProcessTelemetryContext(null, {}, _self.core);\r\n // tslint:disable-next-line: prefer-conditional-expression\r\n if (_nextPlugin && _nextPlugin[getPlugin]) {\r\n // Looks like a chain object\r\n itemCtx = rootCtx.createNew(null, _nextPlugin[getPlugin]);\r\n }\r\n else {\r\n itemCtx = rootCtx.createNew(null, _nextPlugin);\r\n }\r\n }\r\n return itemCtx;\r\n };\r\n _self._baseTelInit = function (config, core, extensions, pluginChain) {\r\n if (config) {\r\n // Make sure the extensionConfig exists\r\n config.extensionConfig = config.extensionConfig || [];\r\n }\r\n if (!pluginChain && core) {\r\n // Get the first plugin from the core\r\n pluginChain = core.getProcessTelContext().getNext();\r\n }\r\n var nextPlugin = _nextPlugin;\r\n if (_nextPlugin && _nextPlugin[getPlugin]) {\r\n // If it looks like a proxy/chain then get the plugin\r\n nextPlugin = _nextPlugin[getPlugin]();\r\n }\r\n // Support legacy plugins where core was defined as a property\r\n _self.core = core;\r\n _rootCtx = new ProcessTelemetryContext(pluginChain, config, core, nextPlugin);\r\n _isinitialized = true;\r\n };\r\n }\r\n BaseTelemetryPlugin.prototype.initialize = function (config, core, extensions, pluginChain) {\r\n this._baseTelInit(config, core, extensions, pluginChain);\r\n };\r\n return BaseTelemetryPlugin;\r\n}());\r\nexport { BaseTelemetryPlugin };\r\n//# sourceMappingURL=BaseTelemetryPlugin.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n\"use strict\";\r\nimport { CoreUtils } from \"./CoreUtils\";\r\nvar _isFunction = CoreUtils.isFunction;\r\nvar processTelemetry = \"processTelemetry\";\r\nvar priority = \"priority\";\r\nvar setNextPlugin = \"setNextPlugin\";\r\nvar isInitialized = \"isInitialized\";\r\n/**\r\n * Initialize the queue of plugins\r\n * @param plugins - The array of plugins to initialize and setting of the next plugin\r\n * @param config The current config for the instance\r\n * @param core THe current core instance\r\n * @param extensions The extensions\r\n */\r\nexport function initializePlugins(processContext, extensions) {\r\n // Set the next plugin and identified the uninitialized plugins\r\n var initPlugins = [];\r\n var lastPlugin = null;\r\n var proxy = processContext.getNext();\r\n while (proxy) {\r\n var thePlugin = proxy.getPlugin();\r\n if (thePlugin) {\r\n if (lastPlugin &&\r\n _isFunction(lastPlugin[setNextPlugin]) &&\r\n _isFunction(thePlugin[processTelemetry])) {\r\n // Set this plugin as the next for the previous one\r\n lastPlugin[setNextPlugin](thePlugin);\r\n }\r\n if (!_isFunction(thePlugin[isInitialized]) || !thePlugin[isInitialized]()) {\r\n initPlugins.push(thePlugin);\r\n }\r\n lastPlugin = thePlugin;\r\n proxy = proxy.getNext();\r\n }\r\n }\r\n // Now initiatilize the plugins\r\n CoreUtils.arrForEach(initPlugins, function (thePlugin) {\r\n thePlugin.initialize(processContext.getCfg(), processContext.core(), extensions, processContext.getNext());\r\n });\r\n}\r\nexport function sortPlugins(plugins) {\r\n // Sort by priority\r\n return plugins.sort(function (extA, extB) {\r\n var result = 0;\r\n var bHasProcess = _isFunction(extB[processTelemetry]);\r\n if (_isFunction(extA[processTelemetry])) {\r\n result = bHasProcess ? extA[priority] - extB[priority] : 1;\r\n }\r\n else if (bHasProcess) {\r\n result = -1;\r\n }\r\n return result;\r\n });\r\n // sort complete \r\n}\r\n//# sourceMappingURL=TelemetryHelpers.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n\"use strict\";\r\nimport { CoreUtils } from \"./CoreUtils\";\r\nimport { BaseTelemetryPlugin } from './BaseTelemetryPlugin';\r\nimport { ProcessTelemetryContext } from './ProcessTelemetryContext';\r\nimport { initializePlugins } from './TelemetryHelpers';\r\nimport dynamicProto from '@microsoft/dynamicproto-js';\r\nvar ChannelControllerPriority = 500;\r\nvar ChannelValidationMessage = \"Channel has invalid priority\";\r\nvar _objDefineAccessors = CoreUtils.objDefineAccessors;\r\nvar ChannelController = /** @class */ (function (_super) {\r\n __extends(ChannelController, _super);\r\n function ChannelController() {\r\n var _this = _super.call(this) || this;\r\n _this.identifier = \"ChannelControllerPlugin\";\r\n _this.priority = ChannelControllerPriority; // in reserved range 100 to 200\r\n var _arrForEach = CoreUtils.arrForEach;\r\n var _channelQueue;\r\n dynamicProto(ChannelController, _this, function (_self, _base) {\r\n _self.setNextPlugin = function (next) {\r\n // The Channel controller is last in pipeline\r\n };\r\n _self.processTelemetry = function (item, itemCtx) {\r\n if (_channelQueue) {\r\n _arrForEach(_channelQueue, function (queues) {\r\n // pass on to first item in queue\r\n if (queues.length > 0) {\r\n // Copying the item context as we could have mutiple chains that are executing asynchronously\r\n // and calling _getDefTelCtx as it's possible that the caller doesn't pass any context\r\n var chainCtx = _this._getTelCtx(itemCtx).createNew(queues);\r\n chainCtx.processNext(item);\r\n }\r\n });\r\n }\r\n };\r\n _self.getChannelControls = function () {\r\n return _channelQueue;\r\n };\r\n _self.initialize = function (config, core, extensions) {\r\n if (_self.isInitialized()) {\r\n // already initialized\r\n return;\r\n }\r\n _base.initialize(config, core, extensions);\r\n if (config.isCookieUseDisabled) {\r\n CoreUtils.disableCookies();\r\n }\r\n _createChannelQueues((config || {}).channels, extensions);\r\n // Initialize the Queues\r\n _arrForEach(_channelQueue, function (queue) { return initializePlugins(new ProcessTelemetryContext(queue, config, core), extensions); });\r\n };\r\n });\r\n function _checkQueuePriority(queue) {\r\n _arrForEach(queue, function (queueItem) {\r\n if (queueItem.priority < ChannelControllerPriority) {\r\n throw Error(ChannelValidationMessage + queueItem.identifier);\r\n }\r\n });\r\n }\r\n function _addChannelQueue(queue) {\r\n if (queue && queue.length > 0) {\r\n queue = queue.sort(function (a, b) {\r\n return a.priority - b.priority;\r\n });\r\n _checkQueuePriority(queue);\r\n _channelQueue.push(queue);\r\n }\r\n }\r\n function _createChannelQueues(channels, extensions) {\r\n _channelQueue = [];\r\n if (channels) {\r\n // Add and sort the configuration channel queues\r\n _arrForEach(channels, function (queue) { return _addChannelQueue(queue); });\r\n }\r\n if (extensions) {\r\n // Create a new channel queue for any extensions with a priority > the ChannelControllerPriority\r\n var extensionQueue_1 = [];\r\n _arrForEach(extensions, function (plugin) {\r\n if (plugin.priority > ChannelControllerPriority) {\r\n extensionQueue_1.push(plugin);\r\n }\r\n });\r\n _addChannelQueue(extensionQueue_1);\r\n }\r\n }\r\n return _this;\r\n }\r\n ChannelController.prototype.processTelemetry = function (item, itemCtx) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n ;\r\n ChannelController.prototype.getChannelControls = function () {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n return null;\r\n };\r\n ChannelController.prototype.initialize = function (config, core, extensions) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n /**\r\n * Static constructor, attempt to create accessors\r\n */\r\n // tslint:disable-next-line\r\n ChannelController._staticInit = (function () {\r\n // Dynamically create get/set property accessors\r\n _objDefineAccessors(ChannelController.prototype, \"ChannelControls\", ChannelController.prototype.getChannelControls);\r\n _objDefineAccessors(ChannelController.prototype, \"channelQueue\", ChannelController.prototype.getChannelControls);\r\n })();\r\n return ChannelController;\r\n}(BaseTelemetryPlugin));\r\nexport { ChannelController };\r\n//# sourceMappingURL=ChannelController.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n\"use strict\";\r\nimport { CoreUtils } from \"./CoreUtils\";\r\nimport { ChannelController } from './ChannelController';\r\nimport { ProcessTelemetryContext } from './ProcessTelemetryContext';\r\nimport { initializePlugins, sortPlugins } from './TelemetryHelpers';\r\nimport dynamicProto from '@microsoft/dynamicproto-js';\r\nimport { PerfManager } from \"./PerfManager\";\r\nvar validationError = \"Extensions must provide callback to initialize\";\r\nvar _arrForEach = CoreUtils.arrForEach;\r\nvar _isNullOrUndefined = CoreUtils.isNullOrUndefined;\r\nvar strNotificationManager = \"_notificationManager\";\r\nvar BaseCore = /** @class */ (function () {\r\n function BaseCore() {\r\n var _isInitialized = false;\r\n var _eventQueue;\r\n var _channelController;\r\n var _notificationManager;\r\n var _perfManager;\r\n dynamicProto(BaseCore, this, function (_self) {\r\n _self._extensions = new Array();\r\n _channelController = new ChannelController();\r\n _self.logger = CoreUtils.objCreate({\r\n throwInternal: function (severity, msgId, msg, properties, isUserAct) {\r\n if (isUserAct === void 0) { isUserAct = false; }\r\n },\r\n warnToConsole: function (message) { },\r\n resetInternalMessageCount: function () { }\r\n });\r\n _eventQueue = [];\r\n _self.isInitialized = function () { return _isInitialized; };\r\n _self.initialize = function (config, extensions, logger, notificationManager) {\r\n // Make sure core is only initialized once\r\n if (_self.isInitialized()) {\r\n throw Error(\"Core should not be initialized more than once\");\r\n }\r\n if (!config || _isNullOrUndefined(config.instrumentationKey)) {\r\n throw Error(\"Please provide instrumentation key\");\r\n }\r\n _notificationManager = notificationManager;\r\n // For backward compatibility only\r\n _self[strNotificationManager] = notificationManager;\r\n _self.config = config || {};\r\n config.extensions = _isNullOrUndefined(config.extensions) ? [] : config.extensions;\r\n // add notification to the extensions in the config so other plugins can access it\r\n var extConfig = config.extensionConfig = _isNullOrUndefined(config.extensionConfig) ? {} : config.extensionConfig;\r\n extConfig.NotificationManager = notificationManager;\r\n if (logger) {\r\n _self.logger = logger;\r\n }\r\n // Concat all available extensions\r\n var allExtensions = [];\r\n allExtensions.push.apply(allExtensions, extensions.concat(config.extensions));\r\n allExtensions = sortPlugins(allExtensions);\r\n var coreExtensions = [];\r\n var channelExtensions = [];\r\n // Check if any two extensions have the same priority, then warn to console\r\n // And extract the local extensions from the \r\n var extPriorities = {};\r\n // Extension validation\r\n _arrForEach(allExtensions, function (ext) {\r\n if (_isNullOrUndefined(ext) || _isNullOrUndefined(ext.initialize)) {\r\n throw Error(validationError);\r\n }\r\n var extPriority = ext.priority;\r\n var identifier = ext.identifier;\r\n if (ext && extPriority) {\r\n if (!_isNullOrUndefined(extPriorities[extPriority])) {\r\n logger.warnToConsole(\"Two extensions have same priority #\" + extPriority + \" - \" + extPriorities[extPriority] + \", \" + identifier);\r\n }\r\n else {\r\n // set a value\r\n extPriorities[extPriority] = identifier;\r\n }\r\n }\r\n // Split extensions to core and channelController\r\n if (!extPriority || extPriority < _channelController.priority) {\r\n // Add to core extension that will be managed by BaseCore\r\n coreExtensions.push(ext);\r\n }\r\n else {\r\n // Add all other extensions to be managed by the channel controller\r\n channelExtensions.push(ext);\r\n }\r\n });\r\n // Validation complete\r\n // Add the channelController to the complete extension collection and\r\n // to the end of the core extensions\r\n allExtensions.push(_channelController);\r\n coreExtensions.push(_channelController);\r\n // Sort the complete set of extensions by priority\r\n allExtensions = sortPlugins(allExtensions);\r\n _self._extensions = allExtensions;\r\n // initialize channel controller first, this will initialize all channel plugins\r\n initializePlugins(new ProcessTelemetryContext([_channelController], config, _self), allExtensions);\r\n initializePlugins(new ProcessTelemetryContext(coreExtensions, config, _self), allExtensions);\r\n // Now reset the extensions to just those being managed by Basecore\r\n _self._extensions = coreExtensions;\r\n if (_self.getTransmissionControls().length === 0) {\r\n throw new Error(\"No channels available\");\r\n }\r\n _isInitialized = true;\r\n _self.releaseQueue();\r\n };\r\n _self.getTransmissionControls = function () {\r\n return _channelController.getChannelControls();\r\n };\r\n _self.track = function (telemetryItem) {\r\n if (!telemetryItem.iKey) {\r\n // setup default iKey if not passed in\r\n telemetryItem.iKey = _self.config.instrumentationKey;\r\n }\r\n if (!telemetryItem.time) {\r\n // add default timestamp if not passed in\r\n telemetryItem.time = CoreUtils.toISOString(new Date());\r\n }\r\n if (_isNullOrUndefined(telemetryItem.ver)) {\r\n // CommonSchema 4.0\r\n telemetryItem.ver = \"4.0\";\r\n }\r\n if (_self.isInitialized()) {\r\n // Process the telemetry plugin chain\r\n _self.getProcessTelContext().processNext(telemetryItem);\r\n }\r\n else {\r\n // Queue events until all extensions are initialized\r\n _eventQueue.push(telemetryItem);\r\n }\r\n };\r\n _self.getProcessTelContext = function () {\r\n var extensions = _self._extensions;\r\n var thePlugins = extensions;\r\n // invoke any common telemetry processors before sending through pipeline\r\n if (!extensions || extensions.length === 0) {\r\n // Pass to Channel controller so data is sent to correct channel queues\r\n thePlugins = [_channelController];\r\n }\r\n return new ProcessTelemetryContext(thePlugins, _self.config, _self);\r\n };\r\n _self.getNotifyMgr = function () {\r\n if (!_notificationManager) {\r\n // Create Dummy notification manager\r\n _notificationManager = CoreUtils.objCreate({\r\n addNotificationListener: function (listener) { },\r\n removeNotificationListener: function (listener) { },\r\n eventsSent: function (events) { },\r\n eventsDiscarded: function (events, reason) { },\r\n eventsSendRequest: function (sendReason, isAsync) { }\r\n });\r\n // For backward compatibility only\r\n _self[strNotificationManager] = _notificationManager;\r\n }\r\n return _notificationManager;\r\n };\r\n _self.getPerfMgr = function () {\r\n if (!_perfManager) {\r\n if (_self.config && _self.config.enablePerfMgr) {\r\n _perfManager = new PerfManager(_self.getNotifyMgr());\r\n }\r\n }\r\n return _perfManager;\r\n };\r\n _self.setPerfMgr = function (perfMgr) {\r\n _perfManager = perfMgr;\r\n };\r\n _self.eventCnt = function () {\r\n return _eventQueue.length;\r\n };\r\n _self.releaseQueue = function () {\r\n if (_eventQueue.length > 0) {\r\n _arrForEach(_eventQueue, function (event) {\r\n _self.getProcessTelContext().processNext(event);\r\n });\r\n _eventQueue = [];\r\n }\r\n };\r\n });\r\n }\r\n BaseCore.prototype.initialize = function (config, extensions, logger, notificationManager) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n BaseCore.prototype.getTransmissionControls = function () {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n return null;\r\n };\r\n BaseCore.prototype.track = function (telemetryItem) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n BaseCore.prototype.getProcessTelContext = function () {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n return null;\r\n };\r\n BaseCore.prototype.getNotifyMgr = function () {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n return null;\r\n };\r\n BaseCore.prototype.getPerfMgr = function () {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n return null;\r\n };\r\n BaseCore.prototype.setPerfMgr = function (perfMgr) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n BaseCore.prototype.eventCnt = function () {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n return 0;\r\n };\r\n BaseCore.prototype.releaseQueue = function () {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n return BaseCore;\r\n}());\r\nexport { BaseCore };\r\n//# sourceMappingURL=BaseCore.js.map","import { CoreUtils, } from \"./CoreUtils\";\r\nimport dynamicProto from \"@microsoft/dynamicproto-js\";\r\n/**\r\n * Class to manage sending notifications to all the listeners.\r\n */\r\nvar NotificationManager = /** @class */ (function () {\r\n function NotificationManager(config) {\r\n this.listeners = [];\r\n var arrForEach = CoreUtils.arrForEach;\r\n var perfEvtsSendAll = !!(config || {}).perfEvtsSendAll;\r\n dynamicProto(NotificationManager, this, function (_self) {\r\n _self.addNotificationListener = function (listener) {\r\n _self.listeners.push(listener);\r\n };\r\n /**\r\n * Removes all instances of the listener.\r\n * @param {INotificationListener} listener - AWTNotificationListener to remove.\r\n */\r\n _self.removeNotificationListener = function (listener) {\r\n var index = CoreUtils.arrIndexOf(_self.listeners, listener);\r\n while (index > -1) {\r\n _self.listeners.splice(index, 1);\r\n index = CoreUtils.arrIndexOf(_self.listeners, listener);\r\n }\r\n };\r\n /**\r\n * Notification for events sent.\r\n * @param {ITelemetryItem[]} events - The array of events that have been sent.\r\n */\r\n _self.eventsSent = function (events) {\r\n arrForEach(_self.listeners, function (listener) {\r\n if (listener && listener.eventsSent) {\r\n setTimeout(function () { return listener.eventsSent(events); }, 0);\r\n }\r\n });\r\n };\r\n /**\r\n * Notification for events being discarded.\r\n * @param {ITelemetryItem[]} events - The array of events that have been discarded by the SDK.\r\n * @param {number} reason - The reason for which the SDK discarded the events. The EventsDiscardedReason\r\n * constant should be used to check the different values.\r\n */\r\n _self.eventsDiscarded = function (events, reason) {\r\n arrForEach(_self.listeners, function (listener) {\r\n if (listener && listener.eventsDiscarded) {\r\n setTimeout(function () { return listener.eventsDiscarded(events, reason); }, 0);\r\n }\r\n });\r\n };\r\n /**\r\n * [Optional] A function called when the events have been requested to be sent to the sever.\r\n * @param {number} sendReason - The reason why the event batch is being sent.\r\n * @param {boolean} isAsync - A flag which identifies whether the requests are being sent in an async or sync manner.\r\n */\r\n _self.eventsSendRequest = function (sendReason, isAsync) {\r\n arrForEach(_self.listeners, function (listener) {\r\n if (listener && listener.eventsSendRequest) {\r\n if (isAsync) {\r\n setTimeout(function () { return listener.eventsSendRequest(sendReason, isAsync); }, 0);\r\n }\r\n else {\r\n try {\r\n listener.eventsSendRequest(sendReason, isAsync);\r\n }\r\n catch (e) {\r\n // Catch errors to ensure we don't block sending the requests\r\n }\r\n }\r\n }\r\n });\r\n };\r\n _self.perfEvent = function (perfEvent) {\r\n if (perfEvent) {\r\n // Send all events or only parent events\r\n if (perfEvtsSendAll || !perfEvent.isChildEvt()) {\r\n arrForEach(_self.listeners, function (listener) {\r\n if (listener && listener.perfEvent) {\r\n if (perfEvent.isAsync) {\r\n setTimeout(function () { return listener.perfEvent(perfEvent); }, 0);\r\n }\r\n else {\r\n try {\r\n listener.perfEvent(perfEvent);\r\n }\r\n catch (e) {\r\n // Catch errors to ensure we don't block sending the requests\r\n }\r\n }\r\n }\r\n });\r\n }\r\n }\r\n };\r\n });\r\n }\r\n /**\r\n * Adds a notification listener.\r\n * @param {INotificationListener} listener - The notification listener to be added.\r\n */\r\n NotificationManager.prototype.addNotificationListener = function (listener) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n /**\r\n * Removes all instances of the listener.\r\n * @param {INotificationListener} listener - AWTNotificationListener to remove.\r\n */\r\n NotificationManager.prototype.removeNotificationListener = function (listener) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n /**\r\n * Notification for events sent.\r\n * @param {ITelemetryItem[]} events - The array of events that have been sent.\r\n */\r\n NotificationManager.prototype.eventsSent = function (events) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n /**\r\n * Notification for events being discarded.\r\n * @param {ITelemetryItem[]} events - The array of events that have been discarded by the SDK.\r\n * @param {number} reason - The reason for which the SDK discarded the events. The EventsDiscardedReason\r\n * constant should be used to check the different values.\r\n */\r\n NotificationManager.prototype.eventsDiscarded = function (events, reason) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n /**\r\n * [Optional] A function called when the events have been requested to be sent to the sever.\r\n * @param {number} sendReason - The reason why the event batch is being sent.\r\n * @param {boolean} isAsync - A flag which identifies whether the requests are being sent in an async or sync manner.\r\n */\r\n NotificationManager.prototype.eventsSendRequest = function (sendReason, isAsync) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n return NotificationManager;\r\n}());\r\nexport { NotificationManager };\r\n//# sourceMappingURL=NotificationManager.js.map","import { BaseCore } from './BaseCore';\r\nimport { EventsDiscardedReason } from \"../JavaScriptSDK.Enums/EventsDiscardedReason\";\r\nimport { NotificationManager } from \"./NotificationManager\";\r\nimport { CoreUtils } from \"./CoreUtils\";\r\nimport { doPerf } from \"./PerfManager\";\r\nimport { _InternalLogMessage, DiagnosticLogger } from \"./DiagnosticLogger\";\r\nimport dynamicProto from '@microsoft/dynamicproto-js';\r\n\"use strict\";\r\nvar AppInsightsCore = /** @class */ (function (_super) {\r\n __extends(AppInsightsCore, _super);\r\n function AppInsightsCore() {\r\n var _this = _super.call(this) || this;\r\n dynamicProto(AppInsightsCore, _this, function (_self, _base) {\r\n _self.initialize = function (config, extensions, logger, notificationManager) {\r\n _base.initialize(config, extensions, logger || new DiagnosticLogger(config), notificationManager || new NotificationManager(config));\r\n };\r\n _self.track = function (telemetryItem) {\r\n doPerf(_self.getPerfMgr(), function () { return \"AppInsightsCore:track\"; }, function () {\r\n if (telemetryItem === null) {\r\n _notifyInvalidEvent(telemetryItem);\r\n // throw error\r\n throw Error(\"Invalid telemetry item\");\r\n }\r\n // do basic validation before sending it through the pipeline\r\n _validateTelemetryItem(telemetryItem);\r\n _base.track(telemetryItem);\r\n }, function () { return ({ item: telemetryItem }); }, !(telemetryItem.sync));\r\n };\r\n /**\r\n * Adds a notification listener. The SDK calls methods on the listener when an appropriate notification is raised.\r\n * The added plugins must raise notifications. If the plugins do not implement the notifications, then no methods will be\r\n * called.\r\n * @param {INotificationListener} listener - An INotificationListener object.\r\n */\r\n _self.addNotificationListener = function (listener) {\r\n var manager = _self.getNotifyMgr();\r\n if (manager) {\r\n manager.addNotificationListener(listener);\r\n }\r\n };\r\n /**\r\n * Removes all instances of the listener.\r\n * @param {INotificationListener} listener - INotificationListener to remove.\r\n */\r\n _self.removeNotificationListener = function (listener) {\r\n var manager = _self.getNotifyMgr();\r\n if (manager) {\r\n manager.removeNotificationListener(listener);\r\n }\r\n };\r\n /**\r\n * Periodically check logger.queue for\r\n */\r\n _self.pollInternalLogs = function (eventName) {\r\n var interval = _self.config.diagnosticLogInterval;\r\n if (!interval || !(interval > 0)) {\r\n interval = 10000;\r\n }\r\n return setInterval(function () {\r\n var queue = _self.logger ? _self.logger.queue : [];\r\n CoreUtils.arrForEach(queue, function (logMessage) {\r\n var item = {\r\n name: eventName ? eventName : \"InternalMessageId: \" + logMessage.messageId,\r\n iKey: _self.config.instrumentationKey,\r\n time: CoreUtils.toISOString(new Date()),\r\n baseType: _InternalLogMessage.dataType,\r\n baseData: { message: logMessage.message }\r\n };\r\n _self.track(item);\r\n });\r\n queue.length = 0;\r\n }, interval);\r\n };\r\n function _validateTelemetryItem(telemetryItem) {\r\n if (CoreUtils.isNullOrUndefined(telemetryItem.name)) {\r\n _notifyInvalidEvent(telemetryItem);\r\n throw Error(\"telemetry name required\");\r\n }\r\n }\r\n function _notifyInvalidEvent(telemetryItem) {\r\n var manager = _self.getNotifyMgr();\r\n if (manager) {\r\n manager.eventsDiscarded([telemetryItem], EventsDiscardedReason.InvalidEvent);\r\n }\r\n }\r\n });\r\n return _this;\r\n }\r\n AppInsightsCore.prototype.initialize = function (config, extensions, logger, notificationManager) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n AppInsightsCore.prototype.track = function (telemetryItem) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n /**\r\n * Adds a notification listener. The SDK calls methods on the listener when an appropriate notification is raised.\r\n * The added plugins must raise notifications. If the plugins do not implement the notifications, then no methods will be\r\n * called.\r\n * @param {INotificationListener} listener - An INotificationListener object.\r\n */\r\n AppInsightsCore.prototype.addNotificationListener = function (listener) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n /**\r\n * Removes all instances of the listener.\r\n * @param {INotificationListener} listener - INotificationListener to remove.\r\n */\r\n AppInsightsCore.prototype.removeNotificationListener = function (listener) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n };\r\n /**\r\n * Periodically check logger.queue for\r\n */\r\n AppInsightsCore.prototype.pollInternalLogs = function (eventName) {\r\n // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging\r\n return 0;\r\n };\r\n return AppInsightsCore;\r\n}(BaseCore));\r\nexport { AppInsightsCore };\r\n//# sourceMappingURL=AppInsightsCore.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n/**\r\n * Type of storage to differentiate between local storage and session storage\r\n */\r\nexport var StorageType;\r\n(function (StorageType) {\r\n StorageType[StorageType[\"LocalStorage\"] = 0] = \"LocalStorage\";\r\n StorageType[StorageType[\"SessionStorage\"] = 1] = \"SessionStorage\";\r\n})(StorageType || (StorageType = {}));\r\n/**\r\n * Enum is used in aiDataContract to describe how fields are serialized.\r\n * For instance: (Fieldtype.Required | FieldType.Array) will mark the field as required and indicate it's an array\r\n */\r\nexport var FieldType;\r\n(function (FieldType) {\r\n FieldType[FieldType[\"Default\"] = 0] = \"Default\";\r\n FieldType[FieldType[\"Required\"] = 1] = \"Required\";\r\n FieldType[FieldType[\"Array\"] = 2] = \"Array\";\r\n FieldType[FieldType[\"Hidden\"] = 4] = \"Hidden\";\r\n})(FieldType || (FieldType = {}));\r\n;\r\nexport var DistributedTracingModes;\r\n(function (DistributedTracingModes) {\r\n /**\r\n * (Default) Send Application Insights correlation headers\r\n */\r\n DistributedTracingModes[DistributedTracingModes[\"AI\"] = 0] = \"AI\";\r\n /**\r\n * Send both W3C Trace Context headers and back-compatibility Application Insights headers\r\n */\r\n DistributedTracingModes[DistributedTracingModes[\"AI_AND_W3C\"] = 1] = \"AI_AND_W3C\";\r\n /**\r\n * Send W3C Trace Context headers\r\n */\r\n DistributedTracingModes[DistributedTracingModes[\"W3C\"] = 2] = \"W3C\";\r\n})(DistributedTracingModes || (DistributedTracingModes = {}));\r\n//# sourceMappingURL=Enums.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\nvar RequestHeaders = /** @class */ (function () {\r\n function RequestHeaders() {\r\n }\r\n /**\r\n * Request-Context header\r\n */\r\n RequestHeaders.requestContextHeader = \"Request-Context\";\r\n /**\r\n * Target instrumentation header that is added to the response and retrieved by the\r\n * calling application when processing incoming responses.\r\n */\r\n RequestHeaders.requestContextTargetKey = \"appId\";\r\n /**\r\n * Request-Context appId format\r\n */\r\n RequestHeaders.requestContextAppIdFormat = \"appId=cid-v1:\";\r\n /**\r\n * Request-Id header\r\n */\r\n RequestHeaders.requestIdHeader = \"Request-Id\";\r\n /**\r\n * W3C distributed tracing protocol header\r\n */\r\n RequestHeaders.traceParentHeader = \"traceparent\";\r\n /**\r\n * Sdk-Context header\r\n * If this header passed with appId in content then appId will be returned back by the backend.\r\n */\r\n RequestHeaders.sdkContextHeader = \"Sdk-Context\";\r\n /**\r\n * String to pass in header for requesting appId back from the backend.\r\n */\r\n RequestHeaders.sdkContextHeaderAppIdRequest = \"appId\";\r\n RequestHeaders.requestContextHeaderLowerCase = \"request-context\";\r\n return RequestHeaders;\r\n}());\r\nexport { RequestHeaders };\r\n//# sourceMappingURL=RequestResponseHeaders.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\nimport { LoggingSeverity, _InternalMessageId, CoreUtils, hasJSON, getJSON, objForEachKey } from '@microsoft/applicationinsights-core-js';\r\nvar DataSanitizer = /** @class */ (function () {\r\n function DataSanitizer() {\r\n }\r\n DataSanitizer.sanitizeKeyAndAddUniqueness = function (logger, key, map) {\r\n var origLength = key.length;\r\n var field = DataSanitizer.sanitizeKey(logger, key);\r\n // validation truncated the length. We need to add uniqueness\r\n if (field.length !== origLength) {\r\n var i = 0;\r\n var uniqueField = field;\r\n while (map[uniqueField] !== undefined) {\r\n i++;\r\n uniqueField = field.substring(0, DataSanitizer.MAX_NAME_LENGTH - 3) + DataSanitizer.padNumber(i);\r\n }\r\n field = uniqueField;\r\n }\r\n return field;\r\n };\r\n DataSanitizer.sanitizeKey = function (logger, name) {\r\n var nameTrunc;\r\n if (name) {\r\n // Remove any leading or trailing whitepace\r\n name = DataSanitizer.trim(name.toString());\r\n // truncate the string to 150 chars\r\n if (name.length > DataSanitizer.MAX_NAME_LENGTH) {\r\n nameTrunc = name.substring(0, DataSanitizer.MAX_NAME_LENGTH);\r\n logger.throwInternal(LoggingSeverity.WARNING, _InternalMessageId.NameTooLong, \"name is too long. It has been truncated to \" + DataSanitizer.MAX_NAME_LENGTH + \" characters.\", { name: name }, true);\r\n }\r\n }\r\n return nameTrunc || name;\r\n };\r\n DataSanitizer.sanitizeString = function (logger, value, maxLength) {\r\n if (maxLength === void 0) { maxLength = DataSanitizer.MAX_STRING_LENGTH; }\r\n var valueTrunc;\r\n if (value) {\r\n maxLength = maxLength ? maxLength : DataSanitizer.MAX_STRING_LENGTH; // in case default parameters dont work\r\n value = DataSanitizer.trim(value);\r\n if (value.toString().length > maxLength) {\r\n valueTrunc = value.toString().substring(0, maxLength);\r\n logger.throwInternal(LoggingSeverity.WARNING, _InternalMessageId.StringValueTooLong, \"string value is too long. It has been truncated to \" + maxLength + \" characters.\", { value: value }, true);\r\n }\r\n }\r\n return valueTrunc || value;\r\n };\r\n DataSanitizer.sanitizeUrl = function (logger, url) {\r\n return DataSanitizer.sanitizeInput(logger, url, DataSanitizer.MAX_URL_LENGTH, _InternalMessageId.UrlTooLong);\r\n };\r\n DataSanitizer.sanitizeMessage = function (logger, message) {\r\n var messageTrunc;\r\n if (message) {\r\n if (message.length > DataSanitizer.MAX_MESSAGE_LENGTH) {\r\n messageTrunc = message.substring(0, DataSanitizer.MAX_MESSAGE_LENGTH);\r\n logger.throwInternal(LoggingSeverity.WARNING, _InternalMessageId.MessageTruncated, \"message is too long, it has been truncated to \" + DataSanitizer.MAX_MESSAGE_LENGTH + \" characters.\", { message: message }, true);\r\n }\r\n }\r\n return messageTrunc || message;\r\n };\r\n DataSanitizer.sanitizeException = function (logger, exception) {\r\n var exceptionTrunc;\r\n if (exception) {\r\n if (exception.length > DataSanitizer.MAX_EXCEPTION_LENGTH) {\r\n exceptionTrunc = exception.substring(0, DataSanitizer.MAX_EXCEPTION_LENGTH);\r\n logger.throwInternal(LoggingSeverity.WARNING, _InternalMessageId.ExceptionTruncated, \"exception is too long, it has been truncated to \" + DataSanitizer.MAX_EXCEPTION_LENGTH + \" characters.\", { exception: exception }, true);\r\n }\r\n }\r\n return exceptionTrunc || exception;\r\n };\r\n DataSanitizer.sanitizeProperties = function (logger, properties) {\r\n if (properties) {\r\n var tempProps_1 = {};\r\n objForEachKey(properties, function (prop, value) {\r\n if (CoreUtils.isObject(value) && hasJSON()) {\r\n // Stringify any part C properties\r\n try {\r\n value = getJSON().stringify(value);\r\n }\r\n catch (e) {\r\n logger.throwInternal(LoggingSeverity.WARNING, _InternalMessageId.CannotSerializeObjectNonSerializable, \"custom property is not valid\", { exception: e }, true);\r\n }\r\n }\r\n value = DataSanitizer.sanitizeString(logger, value, DataSanitizer.MAX_PROPERTY_LENGTH);\r\n prop = DataSanitizer.sanitizeKeyAndAddUniqueness(logger, prop, tempProps_1);\r\n tempProps_1[prop] = value;\r\n });\r\n properties = tempProps_1;\r\n }\r\n return properties;\r\n };\r\n DataSanitizer.sanitizeMeasurements = function (logger, measurements) {\r\n if (measurements) {\r\n var tempMeasurements_1 = {};\r\n objForEachKey(measurements, function (measure, value) {\r\n measure = DataSanitizer.sanitizeKeyAndAddUniqueness(logger, measure, tempMeasurements_1);\r\n tempMeasurements_1[measure] = value;\r\n });\r\n measurements = tempMeasurements_1;\r\n }\r\n return measurements;\r\n };\r\n DataSanitizer.sanitizeId = function (logger, id) {\r\n return id ? DataSanitizer.sanitizeInput(logger, id, DataSanitizer.MAX_ID_LENGTH, _InternalMessageId.IdTooLong).toString() : id;\r\n };\r\n DataSanitizer.sanitizeInput = function (logger, input, maxLength, _msgId) {\r\n var inputTrunc;\r\n if (input) {\r\n input = DataSanitizer.trim(input);\r\n if (input.length > maxLength) {\r\n inputTrunc = input.substring(0, maxLength);\r\n logger.throwInternal(LoggingSeverity.WARNING, _msgId, \"input is too long, it has been truncated to \" + maxLength + \" characters.\", { data: input }, true);\r\n }\r\n }\r\n return inputTrunc || input;\r\n };\r\n DataSanitizer.padNumber = function (num) {\r\n var s = \"00\" + num;\r\n return s.substr(s.length - 3);\r\n };\r\n /**\r\n * helper method to trim strings (IE8 does not implement String.prototype.trim)\r\n */\r\n DataSanitizer.trim = function (str) {\r\n if (!CoreUtils.isString(str)) {\r\n return str;\r\n }\r\n return str.replace(/^\\s+|\\s+$/g, \"\");\r\n };\r\n /**\r\n * Max length allowed for custom names.\r\n */\r\n DataSanitizer.MAX_NAME_LENGTH = 150;\r\n /**\r\n * Max length allowed for Id field in page views.\r\n */\r\n DataSanitizer.MAX_ID_LENGTH = 128;\r\n /**\r\n * Max length allowed for custom values.\r\n */\r\n DataSanitizer.MAX_PROPERTY_LENGTH = 8192;\r\n /**\r\n * Max length allowed for names\r\n */\r\n DataSanitizer.MAX_STRING_LENGTH = 1024;\r\n /**\r\n * Max length allowed for url.\r\n */\r\n DataSanitizer.MAX_URL_LENGTH = 2048;\r\n /**\r\n * Max length allowed for messages.\r\n */\r\n DataSanitizer.MAX_MESSAGE_LENGTH = 32768;\r\n /**\r\n * Max length allowed for exceptions.\r\n */\r\n DataSanitizer.MAX_EXCEPTION_LENGTH = 32768;\r\n return DataSanitizer;\r\n}());\r\nexport { DataSanitizer };\r\n//# sourceMappingURL=DataSanitizer.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\nimport { StorageType } from \"./Enums\";\r\nimport { CoreUtils, EventHelper, _InternalMessageId, LoggingSeverity, getGlobal, getGlobalInst, getWindow, getDocument, getNavigator, getPerformance, getLocation, hasJSON, getJSON, strPrototype, objForEachKey } from \"@microsoft/applicationinsights-core-js\";\r\nimport { RequestHeaders } from \"./RequestResponseHeaders\";\r\nimport { DataSanitizer } from \"./Telemetry/Common/DataSanitizer\";\r\nvar _navigator = getNavigator();\r\nvar _isString = CoreUtils.isString;\r\nvar _uaDisallowsSameSiteNone = null;\r\nfunction _endsWith(value, search) {\r\n var len = value.length;\r\n var start = len - search.length;\r\n return value.substring(start >= 0 ? start : 0, len) === search;\r\n}\r\nvar Util = /** @class */ (function () {\r\n function Util() {\r\n }\r\n Util.createDomEvent = function (eventName) {\r\n var event = null;\r\n if (CoreUtils.isFunction(Event)) {\r\n event = new Event(eventName);\r\n }\r\n else {\r\n var doc = getDocument();\r\n if (doc && doc.createEvent) {\r\n event = doc.createEvent(\"Event\");\r\n event.initEvent(eventName, true, true);\r\n }\r\n }\r\n return event;\r\n };\r\n /*\r\n * Force the SDK not to use local and session storage\r\n */\r\n Util.disableStorage = function () {\r\n Util._canUseLocalStorage = false;\r\n Util._canUseSessionStorage = false;\r\n };\r\n /**\r\n * Gets the localStorage object if available\r\n * @return {Storage} - Returns the storage object if available else returns null\r\n */\r\n Util._getLocalStorageObject = function () {\r\n if (Util.canUseLocalStorage()) {\r\n return Util._getVerifiedStorageObject(StorageType.LocalStorage);\r\n }\r\n return null;\r\n };\r\n /**\r\n * Tests storage object (localStorage or sessionStorage) to verify that it is usable\r\n * More details here: https://mathiasbynens.be/notes/localstorage-pattern\r\n * @param storageType Type of storage\r\n * @return {Storage} Returns storage object verified that it is usable\r\n */\r\n Util._getVerifiedStorageObject = function (storageType) {\r\n var storage = null;\r\n var fail;\r\n var uid;\r\n try {\r\n if (CoreUtils.isNullOrUndefined(getGlobal())) {\r\n return null;\r\n }\r\n uid = new Date;\r\n storage = storageType === StorageType.LocalStorage ? getGlobalInst(\"localStorage\") : getGlobalInst(\"sessionStorage\");\r\n storage.setItem(uid.toString(), uid.toString());\r\n fail = storage.getItem(uid.toString()) !== uid.toString();\r\n storage.removeItem(uid.toString());\r\n if (fail) {\r\n storage = null;\r\n }\r\n }\r\n catch (exception) {\r\n storage = null;\r\n }\r\n return storage;\r\n };\r\n /**\r\n * Checks if endpoint URL is application insights internal injestion service URL.\r\n *\r\n * @param endpointUrl Endpoint URL to check.\r\n * @returns {boolean} True if if endpoint URL is application insights internal injestion service URL.\r\n */\r\n Util.isInternalApplicationInsightsEndpoint = function (endpointUrl) {\r\n return Util._internalEndpoints.indexOf(endpointUrl.toLowerCase()) !== -1;\r\n };\r\n /**\r\n * Check if the browser supports local storage.\r\n *\r\n * @returns {boolean} True if local storage is supported.\r\n */\r\n Util.canUseLocalStorage = function () {\r\n if (Util._canUseLocalStorage === undefined) {\r\n Util._canUseLocalStorage = !!Util._getVerifiedStorageObject(StorageType.LocalStorage);\r\n }\r\n return Util._canUseLocalStorage;\r\n };\r\n /**\r\n * Get an object from the browser's local storage\r\n *\r\n * @param {string} name - the name of the object to get from storage\r\n * @returns {string} The contents of the storage object with the given name. Null if storage is not supported.\r\n */\r\n Util.getStorage = function (logger, name) {\r\n var storage = Util._getLocalStorageObject();\r\n if (storage !== null) {\r\n try {\r\n return storage.getItem(name);\r\n }\r\n catch (e) {\r\n Util._canUseLocalStorage = false;\r\n logger.throwInternal(LoggingSeverity.WARNING, _InternalMessageId.BrowserCannotReadLocalStorage, \"Browser failed read of local storage. \" + Util.getExceptionName(e), { exception: Util.dump(e) });\r\n }\r\n }\r\n return null;\r\n };\r\n /**\r\n * Set the contents of an object in the browser's local storage\r\n *\r\n * @param {string} name - the name of the object to set in storage\r\n * @param {string} data - the contents of the object to set in storage\r\n * @returns {boolean} True if the storage object could be written.\r\n */\r\n Util.setStorage = function (logger, name, data) {\r\n var storage = Util._getLocalStorageObject();\r\n if (storage !== null) {\r\n try {\r\n storage.setItem(name, data);\r\n return true;\r\n }\r\n catch (e) {\r\n Util._canUseLocalStorage = false;\r\n logger.throwInternal(LoggingSeverity.WARNING, _InternalMessageId.BrowserCannotWriteLocalStorage, \"Browser failed write to local storage. \" + Util.getExceptionName(e), { exception: Util.dump(e) });\r\n }\r\n }\r\n return false;\r\n };\r\n /**\r\n * Remove an object from the browser's local storage\r\n *\r\n * @param {string} name - the name of the object to remove from storage\r\n * @returns {boolean} True if the storage object could be removed.\r\n */\r\n Util.removeStorage = function (logger, name) {\r\n var storage = Util._getLocalStorageObject();\r\n if (storage !== null) {\r\n try {\r\n storage.removeItem(name);\r\n return true;\r\n }\r\n catch (e) {\r\n Util._canUseLocalStorage = false;\r\n logger.throwInternal(LoggingSeverity.WARNING, _InternalMessageId.BrowserFailedRemovalFromLocalStorage, \"Browser failed removal of local storage item. \" + Util.getExceptionName(e), { exception: Util.dump(e) });\r\n }\r\n }\r\n return false;\r\n };\r\n /**\r\n * Gets the sessionStorage object if available\r\n * @return {Storage} - Returns the storage object if available else returns null\r\n */\r\n Util._getSessionStorageObject = function () {\r\n if (Util.canUseSessionStorage()) {\r\n return Util._getVerifiedStorageObject(StorageType.SessionStorage);\r\n }\r\n return null;\r\n };\r\n /**\r\n * Check if the browser supports session storage.\r\n *\r\n * @returns {boolean} True if session storage is supported.\r\n */\r\n Util.canUseSessionStorage = function () {\r\n if (Util._canUseSessionStorage === undefined) {\r\n Util._canUseSessionStorage = !!Util._getVerifiedStorageObject(StorageType.SessionStorage);\r\n }\r\n return Util._canUseSessionStorage;\r\n };\r\n /**\r\n * Gets the list of session storage keys\r\n *\r\n * @returns {string[]} List of session storage keys\r\n */\r\n Util.getSessionStorageKeys = function () {\r\n var keys = [];\r\n if (Util.canUseSessionStorage()) {\r\n objForEachKey(getGlobalInst(\"sessionStorage\"), function (key) {\r\n keys.push(key);\r\n });\r\n }\r\n return keys;\r\n };\r\n /**\r\n * Get an object from the browser's session storage\r\n *\r\n * @param {string} name - the name of the object to get from storage\r\n * @returns {string} The contents of the storage object with the given name. Null if storage is not supported.\r\n */\r\n Util.getSessionStorage = function (logger, name) {\r\n var storage = Util._getSessionStorageObject();\r\n if (storage !== null) {\r\n try {\r\n return storage.getItem(name);\r\n }\r\n catch (e) {\r\n Util._canUseSessionStorage = false;\r\n logger.throwInternal(LoggingSeverity.WARNING, _InternalMessageId.BrowserCannotReadSessionStorage, \"Browser failed read of session storage. \" + Util.getExceptionName(e), { exception: Util.dump(e) });\r\n }\r\n }\r\n return null;\r\n };\r\n /**\r\n * Set the contents of an object in the browser's session storage\r\n *\r\n * @param {string} name - the name of the object to set in storage\r\n * @param {string} data - the contents of the object to set in storage\r\n * @returns {boolean} True if the storage object could be written.\r\n */\r\n Util.setSessionStorage = function (logger, name, data) {\r\n var storage = Util._getSessionStorageObject();\r\n if (storage !== null) {\r\n try {\r\n storage.setItem(name, data);\r\n return true;\r\n }\r\n catch (e) {\r\n Util._canUseSessionStorage = false;\r\n logger.throwInternal(LoggingSeverity.WARNING, _InternalMessageId.BrowserCannotWriteSessionStorage, \"Browser failed write to session storage. \" + Util.getExceptionName(e), { exception: Util.dump(e) });\r\n }\r\n }\r\n return false;\r\n };\r\n /**\r\n * Remove an object from the browser's session storage\r\n *\r\n * @param {string} name - the name of the object to remove from storage\r\n * @returns {boolean} True if the storage object could be removed.\r\n */\r\n Util.removeSessionStorage = function (logger, name) {\r\n var storage = Util._getSessionStorageObject();\r\n if (storage !== null) {\r\n try {\r\n storage.removeItem(name);\r\n return true;\r\n }\r\n catch (e) {\r\n Util._canUseSessionStorage = false;\r\n logger.throwInternal(LoggingSeverity.WARNING, _InternalMessageId.BrowserFailedRemovalFromSessionStorage, \"Browser failed removal of session storage item. \" + Util.getExceptionName(e), { exception: Util.dump(e) });\r\n }\r\n }\r\n return false;\r\n };\r\n /*\r\n * Force the SDK not to store and read any data from cookies\r\n */\r\n Util.disableCookies = function () {\r\n CoreUtils.disableCookies();\r\n };\r\n /*\r\n * helper method to tell if document.cookie object is available\r\n */\r\n Util.canUseCookies = function (logger) {\r\n if (CoreUtils._canUseCookies === undefined) {\r\n CoreUtils._canUseCookies = false;\r\n try {\r\n CoreUtils._canUseCookies = Util.document.cookie !== undefined;\r\n }\r\n catch (e) {\r\n logger.throwInternal(LoggingSeverity.WARNING, _InternalMessageId.CannotAccessCookie, \"Cannot access document.cookie - \" + Util.getExceptionName(e), { exception: Util.dump(e) });\r\n }\r\n ;\r\n }\r\n return CoreUtils._canUseCookies;\r\n };\r\n Util.disallowsSameSiteNone = function (userAgent) {\r\n if (!_isString(userAgent)) {\r\n return false;\r\n }\r\n // Cover all iOS based browsers here. This includes:\r\n // - Safari on iOS 12 for iPhone, iPod Touch, iPad\r\n // - WkWebview on iOS 12 for iPhone, iPod Touch, iPad\r\n // - Chrome on iOS 12 for iPhone, iPod Touch, iPad\r\n // All of which are broken by SameSite=None, because they use the iOS networking stack\r\n if (userAgent.indexOf(\"CPU iPhone OS 12\") !== -1 || userAgent.indexOf(\"iPad; CPU OS 12\") !== -1) {\r\n return true;\r\n }\r\n // Cover Mac OS X based browsers that use the Mac OS networking stack. This includes:\r\n // - Safari on Mac OS X\r\n // This does not include:\r\n // - Internal browser on Mac OS X\r\n // - Chrome on Mac OS X\r\n // - Chromium on Mac OS X\r\n // Because they do not use the Mac OS networking stack.\r\n if (userAgent.indexOf(\"Macintosh; Intel Mac OS X 10_14\") !== -1 && userAgent.indexOf(\"Version/\") !== -1 && userAgent.indexOf(\"Safari\") !== -1) {\r\n return true;\r\n }\r\n // Cover Mac OS X internal browsers that use the Mac OS networking stack. This includes:\r\n // - Internal browser on Mac OS X\r\n // This does not include:\r\n // - Safari on Mac OS X\r\n // - Chrome on Mac OS X\r\n // - Chromium on Mac OS X\r\n // Because they do not use the Mac OS networking stack.\r\n if (userAgent.indexOf(\"Macintosh; Intel Mac OS X 10_14\") !== -1 && _endsWith(userAgent, \"AppleWebKit/605.1.15 (KHTML, like Gecko)\")) {\r\n return true;\r\n }\r\n // Cover Chrome 50-69, because some versions are broken by SameSite=None, and none in this range require it.\r\n // Note: this covers some pre-Chromium Edge versions, but pre-Chromim Edge does not require SameSite=None, so this is fine.\r\n // Note: this regex applies to Windows, Mac OS X, and Linux, deliberately.\r\n if (userAgent.indexOf(\"Chrome/5\") !== -1 || userAgent.indexOf(\"Chrome/6\") !== -1) {\r\n return true;\r\n }\r\n // Unreal Engine runs Chromium 59, but does not advertise as Chrome until 4.23. Treat versions of Unreal\r\n // that don't specify their Chrome version as lacking support for SameSite=None.\r\n if (userAgent.indexOf(\"UnrealEngine\") !== -1 && userAgent.indexOf(\"Chrome\") === -1) {\r\n return true;\r\n }\r\n // UCBrowser < 12.13.2 ignores Set-Cookie headers with SameSite=None\r\n // NB: this rule isn't complete - you need regex to make a complete rule.\r\n // See: https://www.chromium.org/updates/same-site/incompatible-clients\r\n if (userAgent.indexOf(\"UCBrowser/12\") !== -1 || userAgent.indexOf(\"UCBrowser/11\") !== -1) {\r\n return true;\r\n }\r\n return false;\r\n };\r\n /**\r\n * helper method to set userId and sessionId cookie\r\n */\r\n Util.setCookie = function (logger, name, value, domain) {\r\n if (Util.canUseCookies(logger)) {\r\n var domainAttrib = \"\";\r\n var secureAttrib = \"\";\r\n if (domain) {\r\n domainAttrib = \";domain=\" + domain;\r\n }\r\n var location_1 = getLocation();\r\n if (location_1 && location_1.protocol === \"https:\") {\r\n secureAttrib = \";secure\";\r\n if (_uaDisallowsSameSiteNone === null) {\r\n _uaDisallowsSameSiteNone = Util.disallowsSameSiteNone((getNavigator() || {}).userAgent);\r\n }\r\n if (!_uaDisallowsSameSiteNone) {\r\n value = value + \";SameSite=None\"; // SameSite can only be set on secure pages\r\n }\r\n }\r\n Util.document.cookie = name + \"=\" + value + domainAttrib + \";path=/\" + secureAttrib;\r\n }\r\n };\r\n Util.stringToBoolOrDefault = function (str, defaultValue) {\r\n if (defaultValue === void 0) { defaultValue = false; }\r\n if (str === undefined || str === null) {\r\n return defaultValue;\r\n }\r\n return str.toString().toLowerCase() === \"true\";\r\n };\r\n /**\r\n * helper method to access userId and sessionId cookie\r\n */\r\n Util.getCookie = function (logger, name) {\r\n if (!Util.canUseCookies(logger)) {\r\n return;\r\n }\r\n var value = \"\";\r\n if (name && name.length) {\r\n var cookieName = name + \"=\";\r\n var cookies = Util.document.cookie.split(\";\");\r\n for (var i = 0; i < cookies.length; i++) {\r\n var cookie = cookies[i];\r\n cookie = Util.trim(cookie);\r\n if (cookie && cookie.indexOf(cookieName) === 0) {\r\n value = cookie.substring(cookieName.length, cookies[i].length);\r\n break;\r\n }\r\n }\r\n }\r\n return value;\r\n };\r\n /**\r\n * Deletes a cookie by setting it's expiration time in the past.\r\n * @param name - The name of the cookie to delete.\r\n */\r\n Util.deleteCookie = function (logger, name) {\r\n if (Util.canUseCookies(logger)) {\r\n // Setting the expiration date in the past immediately removes the cookie\r\n Util.document.cookie = name + \"=;path=/;expires=Thu, 01 Jan 1970 00:00:01 GMT;\";\r\n }\r\n };\r\n /**\r\n * generate a random 32bit number (-0x80000000..0x7FFFFFFF).\r\n */\r\n Util.random32 = function () {\r\n return CoreUtils.random32(true);\r\n };\r\n /**\r\n * Gets IE version returning the document emulation mode if we are running on IE, or null otherwise\r\n */\r\n Util.getIEVersion = function (userAgentStr) {\r\n if (userAgentStr === void 0) { userAgentStr = null; }\r\n var myNav = userAgentStr ? userAgentStr.toLowerCase() : (_navigator ? (_navigator.userAgent || \"\").toLowerCase() : \"\");\r\n if (myNav.indexOf(\"msie\") !== -1) {\r\n return parseInt(myNav.split(\"msie\")[1]);\r\n }\r\n else if (myNav.indexOf(\"trident/\")) {\r\n var tridentVer = parseInt(myNav.split(\"trident/\")[1]);\r\n if (tridentVer) {\r\n return tridentVer + 4;\r\n }\r\n }\r\n return null;\r\n };\r\n /**\r\n * Convert ms to c# time span format\r\n */\r\n Util.msToTimeSpan = function (totalms) {\r\n if (isNaN(totalms) || totalms < 0) {\r\n totalms = 0;\r\n }\r\n totalms = Math.round(totalms);\r\n var ms = \"\" + totalms % 1000;\r\n var sec = \"\" + Math.floor(totalms / 1000) % 60;\r\n var min = \"\" + Math.floor(totalms / (1000 * 60)) % 60;\r\n var hour = \"\" + Math.floor(totalms / (1000 * 60 * 60)) % 24;\r\n var days = Math.floor(totalms / (1000 * 60 * 60 * 24));\r\n ms = ms.length === 1 ? \"00\" + ms : ms.length === 2 ? \"0\" + ms : ms;\r\n sec = sec.length < 2 ? \"0\" + sec : sec;\r\n min = min.length < 2 ? \"0\" + min : min;\r\n hour = hour.length < 2 ? \"0\" + hour : hour;\r\n return (days > 0 ? days + \".\" : \"\") + hour + \":\" + min + \":\" + sec + \".\" + ms;\r\n };\r\n /**\r\n * Checks if error has no meaningful data inside. Ususally such errors are received by window.onerror when error\r\n * happens in a script from other domain (cross origin, CORS).\r\n */\r\n Util.isCrossOriginError = function (message, url, lineNumber, columnNumber, error) {\r\n return (message === \"Script error.\" || message === \"Script error\") && !error;\r\n };\r\n /**\r\n * Returns string representation of an object suitable for diagnostics logging.\r\n */\r\n Util.dump = function (object) {\r\n var objectTypeDump = Object[strPrototype].toString.call(object);\r\n var propertyValueDump = \"\";\r\n if (objectTypeDump === \"[object Error]\") {\r\n propertyValueDump = \"{ stack: '\" + object.stack + \"', message: '\" + object.message + \"', name: '\" + object.name + \"'\";\r\n }\r\n else if (hasJSON()) {\r\n propertyValueDump = getJSON().stringify(object);\r\n }\r\n return objectTypeDump + propertyValueDump;\r\n };\r\n /**\r\n * Returns the name of object if it's an Error. Otherwise, returns empty string.\r\n */\r\n Util.getExceptionName = function (object) {\r\n var objectTypeDump = Object[strPrototype].toString.call(object);\r\n if (objectTypeDump === \"[object Error]\") {\r\n return object.name;\r\n }\r\n return \"\";\r\n };\r\n /**\r\n * Adds an event handler for the specified event to the window\r\n * @param eventName {string} - The name of the event\r\n * @param callback {any} - The callback function that needs to be executed for the given event\r\n * @return {boolean} - true if the handler was successfully added\r\n */\r\n Util.addEventHandler = function (eventName, callback) {\r\n return EventHelper.Attach(getWindow(), eventName, callback);\r\n };\r\n /**\r\n * Tells if a browser supports a Beacon API\r\n */\r\n Util.IsBeaconApiSupported = function () {\r\n return ('sendBeacon' in _navigator && _navigator.sendBeacon);\r\n };\r\n Util.getExtension = function (extensions, identifier) {\r\n var extension = null;\r\n var extIx = 0;\r\n while (!extension && extIx < extensions.length) {\r\n if (extensions[extIx] && extensions[extIx].identifier === identifier) {\r\n extension = extensions[extIx];\r\n }\r\n extIx++;\r\n }\r\n return extension;\r\n };\r\n Util.document = getDocument() || {};\r\n Util._canUseLocalStorage = undefined;\r\n Util._canUseSessionStorage = undefined;\r\n // listing only non-geo specific locations\r\n Util._internalEndpoints = [\r\n \"https://dc.services.visualstudio.com/v2/track\",\r\n \"https://breeze.aimon.applicationinsights.io/v2/track\",\r\n \"https://dc-int.services.visualstudio.com/v2/track\"\r\n ];\r\n Util.NotSpecified = \"not_specified\";\r\n /**\r\n * helper method to trim strings (IE8 does not implement String.prototype.trim)\r\n */\r\n Util.trim = CoreUtils.strTrim;\r\n /**\r\n * generate random id string\r\n */\r\n Util.newId = CoreUtils.newId;\r\n /**\r\n * generate W3C trace id\r\n */\r\n Util.generateW3CId = CoreUtils.generateW3CId;\r\n /**\r\n * Check if an object is of type Array\r\n */\r\n Util.isArray = CoreUtils.isArray;\r\n /**\r\n * Check if an object is of type Error\r\n */\r\n Util.isError = CoreUtils.isError;\r\n /**\r\n * Check if an object is of type Date\r\n */\r\n Util.isDate = CoreUtils.isDate;\r\n // Keeping this name for backward compatibility (for now)\r\n Util.toISOStringForIE8 = CoreUtils.toISOString;\r\n return Util;\r\n}());\r\nexport { Util };\r\nvar UrlHelper = /** @class */ (function () {\r\n function UrlHelper() {\r\n }\r\n UrlHelper.parseUrl = function (url) {\r\n var anchorIdx = UrlHelper._htmlAnchorIdx;\r\n var anchorCache = UrlHelper._htmlAnchorElement;\r\n var tempAnchor = anchorCache[anchorIdx];\r\n if (!UrlHelper.document.createElement) {\r\n // Always create the temp instance if createElement is not available\r\n tempAnchor = { host: UrlHelper.parseHost(url, true) };\r\n }\r\n else if (!anchorCache[anchorIdx]) {\r\n // Create and cache the unattached anchor instance \r\n tempAnchor = anchorCache[anchorIdx] = UrlHelper.document.createElement('a');\r\n }\r\n tempAnchor.href = url;\r\n // Move the cache index forward\r\n anchorIdx++;\r\n if (anchorIdx >= anchorCache.length) {\r\n anchorIdx = 0;\r\n }\r\n UrlHelper._htmlAnchorIdx = anchorIdx;\r\n return tempAnchor;\r\n };\r\n UrlHelper.getAbsoluteUrl = function (url) {\r\n var result;\r\n var a = UrlHelper.parseUrl(url);\r\n if (a) {\r\n result = a.href;\r\n }\r\n return result;\r\n };\r\n UrlHelper.getPathName = function (url) {\r\n var result;\r\n var a = UrlHelper.parseUrl(url);\r\n if (a) {\r\n result = a.pathname;\r\n }\r\n return result;\r\n };\r\n UrlHelper.getCompleteUrl = function (method, absoluteUrl) {\r\n if (method) {\r\n return method.toUpperCase() + \" \" + absoluteUrl;\r\n }\r\n else {\r\n return absoluteUrl;\r\n }\r\n };\r\n // Fallback method to grab host from url if document.createElement method is not available\r\n UrlHelper.parseHost = function (url, inclPort) {\r\n var fullHost = UrlHelper.parseFullHost(url, inclPort);\r\n if (fullHost) {\r\n var match = fullHost.match(/(www[0-9]?\\.)?(.[^/:]+)(\\:[\\d]+)?/i);\r\n if (match != null && match.length > 3 && _isString(match[2]) && match[2].length > 0) {\r\n return match[2] + (match[3] || \"\");\r\n }\r\n }\r\n return fullHost;\r\n };\r\n /**\r\n * Get the full host from the url, optionally including the port\r\n */\r\n UrlHelper.parseFullHost = function (url, inclPort) {\r\n var result = null;\r\n if (url) {\r\n var match = url.match(/(\\w*):\\/\\/(.[^/:]+)(\\:[\\d]+)?/i);\r\n if (match != null && match.length > 2 && _isString(match[2]) && match[2].length > 0) {\r\n result = match[2] || \"\";\r\n if (inclPort && match.length > 2) {\r\n var protocol = (match[1] || \"\").toLowerCase();\r\n var port = match[3] || \"\";\r\n // IE includes the standard port so pass it off if it's the same as the protocol\r\n if (protocol === \"http\" && port === \":80\") {\r\n port = \"\";\r\n }\r\n else if (protocol === \"https\" && port === \":443\") {\r\n port = \"\";\r\n }\r\n result += port;\r\n }\r\n }\r\n }\r\n return result;\r\n };\r\n UrlHelper.document = getDocument() || {};\r\n UrlHelper._htmlAnchorIdx = 0;\r\n // Use an array of temporary values as it's possible for multiple calls to parseUrl() will be called with different URLs\r\n // Using a cache size of 5 for now as it current depth usage is at least 2, so adding a minor buffer to handle future updates\r\n UrlHelper._htmlAnchorElement = [null, null, null, null, null];\r\n return UrlHelper;\r\n}());\r\nexport { UrlHelper };\r\nvar CorrelationIdHelper = /** @class */ (function () {\r\n function CorrelationIdHelper() {\r\n }\r\n /**\r\n * Checks if a request url is not on a excluded domain list and if it is safe to add correlation headers.\r\n * Headers are always included if the current domain matches the request domain. If they do not match (CORS),\r\n * they are regex-ed across correlationHeaderDomains and correlationHeaderExcludedDomains to determine if headers are included.\r\n * Some environments don't give information on currentHost via window.location.host (e.g. Cordova). In these cases, the user must\r\n * manually supply domains to include correlation headers on. Else, no headers will be included at all.\r\n */\r\n CorrelationIdHelper.canIncludeCorrelationHeader = function (config, requestUrl, currentHost) {\r\n if (!requestUrl || (config && config.disableCorrelationHeaders)) {\r\n return false;\r\n }\r\n if (config && config.correlationHeaderExcludePatterns) {\r\n for (var i = 0; i < config.correlationHeaderExcludePatterns.length; i++) {\r\n if (config.correlationHeaderExcludePatterns[i].test(requestUrl)) {\r\n return false;\r\n }\r\n }\r\n }\r\n var requestHost = UrlHelper.parseUrl(requestUrl).host.toLowerCase();\r\n if (requestHost && (requestHost.indexOf(\":443\") !== -1 || requestHost.indexOf(\":80\") !== -1)) {\r\n // [Bug #1260] IE can include the port even for http and https URLs so if present \r\n // try and parse it to remove if it matches the default protocol port\r\n requestHost = (UrlHelper.parseFullHost(requestUrl, true) || \"\").toLowerCase();\r\n }\r\n if ((!config || !config.enableCorsCorrelation) && requestHost !== currentHost) {\r\n return false;\r\n }\r\n var includedDomains = config && config.correlationHeaderDomains;\r\n if (includedDomains) {\r\n var matchExists_1;\r\n CoreUtils.arrForEach(includedDomains, function (domain) {\r\n var regex = new RegExp(domain.toLowerCase().replace(/\\./g, \"\\.\").replace(/\\*/g, \".*\"));\r\n matchExists_1 = matchExists_1 || regex.test(requestHost);\r\n });\r\n if (!matchExists_1) {\r\n return false;\r\n }\r\n }\r\n var excludedDomains = config && config.correlationHeaderExcludedDomains;\r\n if (!excludedDomains || excludedDomains.length === 0) {\r\n return true;\r\n }\r\n for (var i = 0; i < excludedDomains.length; i++) {\r\n var regex = new RegExp(excludedDomains[i].toLowerCase().replace(/\\./g, \"\\.\").replace(/\\*/g, \".*\"));\r\n if (regex.test(requestHost)) {\r\n return false;\r\n }\r\n }\r\n // if we don't know anything about the requestHost, require the user to use included/excludedDomains.\r\n // Previously we always returned false for a falsy requestHost\r\n return requestHost && requestHost.length > 0;\r\n };\r\n /**\r\n * Combines target appId and target role name from response header.\r\n */\r\n CorrelationIdHelper.getCorrelationContext = function (responseHeader) {\r\n if (responseHeader) {\r\n var correlationId = CorrelationIdHelper.getCorrelationContextValue(responseHeader, RequestHeaders.requestContextTargetKey);\r\n if (correlationId && correlationId !== CorrelationIdHelper.correlationIdPrefix) {\r\n return correlationId;\r\n }\r\n }\r\n };\r\n /**\r\n * Gets key from correlation response header\r\n */\r\n CorrelationIdHelper.getCorrelationContextValue = function (responseHeader, key) {\r\n if (responseHeader) {\r\n var keyValues = responseHeader.split(\",\");\r\n for (var i = 0; i < keyValues.length; ++i) {\r\n var keyValue = keyValues[i].split(\"=\");\r\n if (keyValue.length === 2 && keyValue[0] === key) {\r\n return keyValue[1];\r\n }\r\n }\r\n }\r\n };\r\n CorrelationIdHelper.correlationIdPrefix = \"cid-v1:\";\r\n return CorrelationIdHelper;\r\n}());\r\nexport { CorrelationIdHelper };\r\nvar AjaxHelper = /** @class */ (function () {\r\n function AjaxHelper() {\r\n }\r\n AjaxHelper.ParseDependencyPath = function (logger, absoluteUrl, method, commandName) {\r\n var target, name = commandName, data = commandName;\r\n if (absoluteUrl && absoluteUrl.length > 0) {\r\n var parsedUrl = UrlHelper.parseUrl(absoluteUrl);\r\n target = parsedUrl.host;\r\n if (!name) {\r\n if (parsedUrl.pathname != null) {\r\n var pathName = (parsedUrl.pathname.length === 0) ? \"/\" : parsedUrl.pathname;\r\n if (pathName.charAt(0) !== '/') {\r\n pathName = \"/\" + pathName;\r\n }\r\n data = parsedUrl.pathname;\r\n name = DataSanitizer.sanitizeString(logger, method ? method + \" \" + pathName : pathName);\r\n }\r\n else {\r\n name = DataSanitizer.sanitizeString(logger, absoluteUrl);\r\n }\r\n }\r\n }\r\n else {\r\n target = commandName;\r\n name = commandName;\r\n }\r\n return {\r\n target: target,\r\n name: name,\r\n data: data\r\n };\r\n };\r\n return AjaxHelper;\r\n}());\r\nexport { AjaxHelper };\r\n/**\r\n * A utility class that helps getting time related parameters\r\n */\r\nvar DateTimeUtils = /** @class */ (function () {\r\n function DateTimeUtils() {\r\n }\r\n /**\r\n * Get the number of milliseconds since 1970/01/01 in local timezone\r\n */\r\n DateTimeUtils.Now = function () {\r\n // returns the window or webworker performance object\r\n var perf = getPerformance();\r\n if (perf && perf.now && perf.timing) {\r\n var now = perf.now() + perf.timing.navigationStart;\r\n // Known issue with IE where this calculation can be negative, so if it is then ignore and fallback\r\n if (now > 0) {\r\n return now;\r\n }\r\n }\r\n return new Date().getTime();\r\n };\r\n /**\r\n * Gets duration between two timestamps\r\n */\r\n DateTimeUtils.GetDuration = function (start, end) {\r\n var result = null;\r\n if (start !== 0 && end !== 0 && !CoreUtils.isNullOrUndefined(start) && !CoreUtils.isNullOrUndefined(end)) {\r\n result = end - start;\r\n }\r\n return result;\r\n };\r\n return DateTimeUtils;\r\n}());\r\nexport { DateTimeUtils };\r\n//# sourceMappingURL=Util.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n/**\r\n * This is an internal property used to cause internal (reporting) requests to be ignored from reporting\r\n * additional telemetry, to handle polyfil implementations ALL urls used with a disabled request will\r\n * also be ignored for future requests even when this property is not provided.\r\n * Tagging as Ignore as this is an internal value and is not expected to be used outside of the SDK\r\n * @ignore\r\n */\r\nexport var DisabledPropertyName = \"Microsoft_ApplicationInsights_BypassAjaxInstrumentation\";\r\nexport var SampleRate = \"sampleRate\";\r\nexport var ProcessLegacy = \"ProcessLegacy\";\r\nexport var HttpMethod = \"http.method\";\r\nexport var DEFAULT_BREEZE_ENDPOINT = \"https://dc.services.visualstudio.com\";\r\n//# sourceMappingURL=Constants.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n// THIS FILE WAS AUTOGENERATED\r\n/**\r\n * Data struct to contain only C section with custom fields.\r\n */\r\nvar Base = /** @class */ (function () {\r\n function Base() {\r\n }\r\n return Base;\r\n}());\r\nexport { Base };\r\n//# sourceMappingURL=Base.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n// THIS FILE WAS AUTOGENERATED\r\nimport { Base } from './Base';\r\n/**\r\n * Data struct to contain both B and C sections.\r\n */\r\nvar Data = /** @class */ (function (_super) {\r\n __extends(Data, _super);\r\n function Data() {\r\n return _super.call(this) || this;\r\n }\r\n return Data;\r\n}(Base));\r\nexport { Data };\r\n//# sourceMappingURL=Data.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n/**\r\n * System variables for a telemetry item.\r\n */\r\nvar Envelope = /** @class */ (function () {\r\n function Envelope() {\r\n this.ver = 1;\r\n this.sampleRate = 100.0;\r\n this.tags = {};\r\n }\r\n return Envelope;\r\n}());\r\nexport { Envelope };\r\n//# sourceMappingURL=Envelope.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\nimport { Envelope as AIEnvelope } from '../../Interfaces/Contracts/Generated/Envelope';\r\nimport { DataSanitizer } from './DataSanitizer';\r\nimport { FieldType } from '../../Enums';\r\nimport { Util } from '../../Util';\r\nimport { CoreUtils } from '@microsoft/applicationinsights-core-js';\r\nvar Envelope = /** @class */ (function (_super) {\r\n __extends(Envelope, _super);\r\n /**\r\n * Constructs a new instance of telemetry data.\r\n */\r\n function Envelope(logger, data, name) {\r\n var _this = _super.call(this) || this;\r\n _this.name = DataSanitizer.sanitizeString(logger, name) || Util.NotSpecified;\r\n _this.data = data;\r\n _this.time = CoreUtils.toISOString(new Date());\r\n _this.aiDataContract = {\r\n time: FieldType.Required,\r\n iKey: FieldType.Required,\r\n name: FieldType.Required,\r\n sampleRate: function () {\r\n return (_this.sampleRate === 100) ? FieldType.Hidden : FieldType.Required;\r\n },\r\n tags: FieldType.Required,\r\n data: FieldType.Required\r\n };\r\n return _this;\r\n }\r\n return Envelope;\r\n}(AIEnvelope));\r\nexport { Envelope };\r\n//# sourceMappingURL=Envelope.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n// THIS FILE WAS AUTOGENERATED\r\n/**\r\n * The abstract common base of all domains.\r\n */\r\nvar Domain = /** @class */ (function () {\r\n function Domain() {\r\n }\r\n return Domain;\r\n}());\r\nexport { Domain };\r\n//# sourceMappingURL=Domain.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n// THIS FILE WAS AUTOGENERATED\r\nimport { Domain } from './Domain';\r\n/**\r\n * Instances of Event represent structured event records that can be grouped and searched by their properties. Event data item also creates a metric of event count by name.\r\n */\r\nvar EventData = /** @class */ (function (_super) {\r\n __extends(EventData, _super);\r\n function EventData() {\r\n var _this = _super.call(this) || this;\r\n _this.ver = 2;\r\n _this.properties = {};\r\n _this.measurements = {};\r\n return _this;\r\n }\r\n return EventData;\r\n}(Domain));\r\nexport { EventData };\r\n//# sourceMappingURL=EventData.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\nimport { EventData } from '../Interfaces/Contracts/Generated/EventData';\r\nimport { DataSanitizer } from './Common/DataSanitizer';\r\nimport { FieldType } from '../Enums';\r\nimport { Util } from '../Util';\r\nvar Event = /** @class */ (function (_super) {\r\n __extends(Event, _super);\r\n /**\r\n * Constructs a new instance of the EventTelemetry object\r\n */\r\n function Event(logger, name, properties, measurements) {\r\n var _this = _super.call(this) || this;\r\n _this.aiDataContract = {\r\n ver: FieldType.Required,\r\n name: FieldType.Required,\r\n properties: FieldType.Default,\r\n measurements: FieldType.Default\r\n };\r\n _this.name = DataSanitizer.sanitizeString(logger, name) || Util.NotSpecified;\r\n _this.properties = DataSanitizer.sanitizeProperties(logger, properties);\r\n _this.measurements = DataSanitizer.sanitizeMeasurements(logger, measurements);\r\n return _this;\r\n }\r\n Event.envelopeType = \"Microsoft.ApplicationInsights.{0}.Event\";\r\n Event.dataType = \"EventData\";\r\n return Event;\r\n}(EventData));\r\nexport { Event };\r\n//# sourceMappingURL=Event.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n// THIS FILE WAS AUTOGENERATED\r\n/**\r\n * Stack frame information.\r\n */\r\nvar StackFrame = /** @class */ (function () {\r\n function StackFrame() {\r\n }\r\n return StackFrame;\r\n}());\r\nexport { StackFrame };\r\n//# sourceMappingURL=StackFrame.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\nimport { Domain } from './Domain';\r\n/**\r\n * An instance of Exception represents a handled or unhandled exception that occurred during execution of the monitored application.\r\n */\r\nvar ExceptionData = /** @class */ (function (_super) {\r\n __extends(ExceptionData, _super);\r\n function ExceptionData() {\r\n var _this = _super.call(this) || this;\r\n _this.ver = 2;\r\n _this.exceptions = [];\r\n _this.properties = {};\r\n _this.measurements = {};\r\n return _this;\r\n }\r\n return ExceptionData;\r\n}(Domain));\r\nexport { ExceptionData };\r\n//# sourceMappingURL=ExceptionData.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n/**\r\n * Exception details of the exception in a chain.\r\n */\r\nvar ExceptionDetails = /** @class */ (function () {\r\n function ExceptionDetails() {\r\n this.hasFullStack = true;\r\n this.parsedStack = [];\r\n }\r\n return ExceptionDetails;\r\n}());\r\nexport { ExceptionDetails };\r\n//# sourceMappingURL=ExceptionDetails.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\nimport { StackFrame } from '../Interfaces/Contracts/Generated/StackFrame';\r\nimport { ExceptionData } from '../Interfaces/Contracts/Generated/ExceptionData';\r\nimport { ExceptionDetails } from '../Interfaces/Contracts/Generated/ExceptionDetails';\r\nimport { DataSanitizer } from './Common/DataSanitizer';\r\nimport { FieldType } from '../Enums';\r\nimport { Util } from '../Util';\r\nimport { CoreUtils } from '@microsoft/applicationinsights-core-js';\r\nvar strError = \"error\";\r\nfunction _isExceptionDetailsInternal(value) {\r\n return \"hasFullStack\" in value && \"typeName\" in value;\r\n}\r\nfunction _isExceptionInternal(value) {\r\n return (\"ver\" in value && \"exceptions\" in value && \"properties\" in value);\r\n}\r\nfunction _getErrorType(errorType) {\r\n // Gets the Error Type by passing the constructor (used to get the true type of native error object).\r\n var typeName = \"\";\r\n if (errorType) {\r\n typeName = errorType.typeName || errorType.name || \"\";\r\n if (!typeName) {\r\n try {\r\n var funcNameRegex = /function (.{1,})\\(/;\r\n var results = (funcNameRegex).exec((errorType).constructor.toString());\r\n typeName = (results && results.length > 1) ? results[1] : \"\";\r\n }\r\n catch (e) {\r\n // Ignore\r\n }\r\n }\r\n }\r\n return typeName;\r\n}\r\nvar Exception = /** @class */ (function (_super) {\r\n __extends(Exception, _super);\r\n /**\r\n * Constructs a new instance of the ExceptionTelemetry object\r\n */\r\n function Exception(logger, exception, properties, measurements, severityLevel, id) {\r\n var _this = _super.call(this) || this;\r\n _this.aiDataContract = {\r\n ver: FieldType.Required,\r\n exceptions: FieldType.Required,\r\n severityLevel: FieldType.Default,\r\n properties: FieldType.Default,\r\n measurements: FieldType.Default\r\n };\r\n if (!_isExceptionInternal(exception)) {\r\n _this.exceptions = [new _ExceptionDetails(logger, exception)];\r\n _this.properties = DataSanitizer.sanitizeProperties(logger, properties) || {};\r\n _this.measurements = DataSanitizer.sanitizeMeasurements(logger, measurements);\r\n if (severityLevel) {\r\n _this.severityLevel = severityLevel;\r\n }\r\n if (id) {\r\n _this.id = id;\r\n }\r\n }\r\n else {\r\n _this.exceptions = exception.exceptions;\r\n _this.properties = exception.properties;\r\n _this.measurements = exception.measurements;\r\n if (exception.severityLevel) {\r\n _this.severityLevel = exception.severityLevel;\r\n }\r\n if (exception.id) {\r\n _this.id = exception.id;\r\n }\r\n if (exception.problemGroup) {\r\n _this.problemGroup = exception.problemGroup;\r\n }\r\n // bool/int types, use isNullOrUndefined\r\n _this.ver = 2; // TODO: handle the CS\"4.0\" ==> breeze 2 conversion in a better way\r\n if (!CoreUtils.isNullOrUndefined(exception.isManual)) {\r\n _this.isManual = exception.isManual;\r\n }\r\n }\r\n return _this;\r\n }\r\n Exception.CreateFromInterface = function (logger, exception, properties, measurements) {\r\n var exceptions = exception.exceptions\r\n && CoreUtils.arrMap(exception.exceptions, function (ex) { return _ExceptionDetails.CreateFromInterface(logger, ex); });\r\n var exceptionData = new Exception(logger, __assign({}, exception, { exceptions: exceptions }), properties, measurements);\r\n return exceptionData;\r\n };\r\n Exception.prototype.toInterface = function () {\r\n var _a = this, exceptions = _a.exceptions, properties = _a.properties, measurements = _a.measurements, severityLevel = _a.severityLevel, ver = _a.ver, problemGroup = _a.problemGroup, id = _a.id, isManual = _a.isManual;\r\n var exceptionDetailsInterface = exceptions instanceof Array\r\n && CoreUtils.arrMap(exceptions, function (exception) { return exception.toInterface(); })\r\n || undefined;\r\n return {\r\n ver: \"4.0\",\r\n exceptions: exceptionDetailsInterface,\r\n severityLevel: severityLevel,\r\n properties: properties,\r\n measurements: measurements,\r\n problemGroup: problemGroup,\r\n id: id,\r\n isManual: isManual\r\n };\r\n };\r\n /**\r\n * Creates a simple exception with 1 stack frame. Useful for manual constracting of exception.\r\n */\r\n Exception.CreateSimpleException = function (message, typeName, assembly, fileName, details, line) {\r\n return {\r\n exceptions: [\r\n {\r\n hasFullStack: true,\r\n message: message,\r\n stack: details,\r\n typeName: typeName\r\n }\r\n ]\r\n };\r\n };\r\n Exception.envelopeType = \"Microsoft.ApplicationInsights.{0}.Exception\";\r\n Exception.dataType = \"ExceptionData\";\r\n return Exception;\r\n}(ExceptionData));\r\nexport { Exception };\r\nvar _ExceptionDetails = /** @class */ (function (_super) {\r\n __extends(_ExceptionDetails, _super);\r\n function _ExceptionDetails(logger, exception) {\r\n var _this = _super.call(this) || this;\r\n _this.aiDataContract = {\r\n id: FieldType.Default,\r\n outerId: FieldType.Default,\r\n typeName: FieldType.Required,\r\n message: FieldType.Required,\r\n hasFullStack: FieldType.Default,\r\n stack: FieldType.Default,\r\n parsedStack: FieldType.Array\r\n };\r\n if (!_isExceptionDetailsInternal(exception)) {\r\n var error = exception;\r\n if (!Util.isError(error)) {\r\n error = error[strError] || error.evt || error;\r\n }\r\n _this.typeName = DataSanitizer.sanitizeString(logger, _getErrorType(error)) || Util.NotSpecified;\r\n _this.message = DataSanitizer.sanitizeMessage(logger, exception.message) || Util.NotSpecified;\r\n var stack = exception.stack;\r\n _this.parsedStack = _ExceptionDetails.parseStack(stack);\r\n _this.stack = DataSanitizer.sanitizeException(logger, stack);\r\n _this.hasFullStack = Util.isArray(_this.parsedStack) && _this.parsedStack.length > 0;\r\n }\r\n else {\r\n _this.typeName = exception.typeName;\r\n _this.message = exception.message;\r\n _this.stack = exception.stack;\r\n _this.parsedStack = exception.parsedStack;\r\n _this.hasFullStack = exception.hasFullStack;\r\n }\r\n return _this;\r\n }\r\n _ExceptionDetails.prototype.toInterface = function () {\r\n var parsedStack = this.parsedStack instanceof Array\r\n && CoreUtils.arrMap(this.parsedStack, function (frame) { return frame.toInterface(); });\r\n var exceptionDetailsInterface = {\r\n id: this.id,\r\n outerId: this.outerId,\r\n typeName: this.typeName,\r\n message: this.message,\r\n hasFullStack: this.hasFullStack,\r\n stack: this.stack,\r\n parsedStack: parsedStack || undefined\r\n };\r\n return exceptionDetailsInterface;\r\n };\r\n _ExceptionDetails.CreateFromInterface = function (logger, exception) {\r\n var parsedStack = (exception.parsedStack instanceof Array\r\n && CoreUtils.arrMap(exception.parsedStack, function (frame) { return _StackFrame.CreateFromInterface(frame); }))\r\n || exception.parsedStack;\r\n var exceptionDetails = new _ExceptionDetails(logger, __assign({}, exception, { parsedStack: parsedStack }));\r\n return exceptionDetails;\r\n };\r\n _ExceptionDetails.parseStack = function (stack) {\r\n var parsedStack;\r\n if (CoreUtils.isString(stack)) {\r\n var frames_1 = stack.split('\\n');\r\n parsedStack = [];\r\n var level = 0;\r\n var totalSizeInBytes = 0;\r\n for (var i = 0; i <= frames_1.length; i++) {\r\n var frame = frames_1[i];\r\n if (_StackFrame.regex.test(frame)) {\r\n var parsedFrame = new _StackFrame(frames_1[i], level++);\r\n totalSizeInBytes += parsedFrame.sizeInBytes;\r\n parsedStack.push(parsedFrame);\r\n }\r\n }\r\n // DP Constraint - exception parsed stack must be < 32KB\r\n // remove frames from the middle to meet the threshold\r\n var exceptionParsedStackThreshold = 32 * 1024;\r\n if (totalSizeInBytes > exceptionParsedStackThreshold) {\r\n var left = 0;\r\n var right = parsedStack.length - 1;\r\n var size = 0;\r\n var acceptedLeft = left;\r\n var acceptedRight = right;\r\n while (left < right) {\r\n // check size\r\n var lSize = parsedStack[left].sizeInBytes;\r\n var rSize = parsedStack[right].sizeInBytes;\r\n size += lSize + rSize;\r\n if (size > exceptionParsedStackThreshold) {\r\n // remove extra frames from the middle\r\n var howMany = acceptedRight - acceptedLeft + 1;\r\n parsedStack.splice(acceptedLeft, howMany);\r\n break;\r\n }\r\n // update pointers\r\n acceptedLeft = left;\r\n acceptedRight = right;\r\n left++;\r\n right--;\r\n }\r\n }\r\n }\r\n return parsedStack;\r\n };\r\n return _ExceptionDetails;\r\n}(ExceptionDetails));\r\nexport { _ExceptionDetails };\r\nvar _StackFrame = /** @class */ (function (_super) {\r\n __extends(_StackFrame, _super);\r\n function _StackFrame(sourceFrame, level) {\r\n var _this = _super.call(this) || this;\r\n _this.sizeInBytes = 0;\r\n _this.aiDataContract = {\r\n level: FieldType.Required,\r\n method: FieldType.Required,\r\n assembly: FieldType.Default,\r\n fileName: FieldType.Default,\r\n line: FieldType.Default\r\n };\r\n // Not converting this to CoreUtils.isString() as typescript uses this logic to \"understand\" the different\r\n // types for the 2 different code paths\r\n if (typeof sourceFrame === \"string\") {\r\n var frame = sourceFrame;\r\n _this.level = level;\r\n _this.method = \"<no_method>\";\r\n _this.assembly = Util.trim(frame);\r\n _this.fileName = \"\";\r\n _this.line = 0;\r\n var matches = frame.match(_StackFrame.regex);\r\n if (matches && matches.length >= 5) {\r\n _this.method = Util.trim(matches[2]) || _this.method;\r\n _this.fileName = Util.trim(matches[4]);\r\n _this.line = parseInt(matches[5]) || 0;\r\n }\r\n }\r\n else {\r\n _this.level = sourceFrame.level;\r\n _this.method = sourceFrame.method;\r\n _this.assembly = sourceFrame.assembly;\r\n _this.fileName = sourceFrame.fileName;\r\n _this.line = sourceFrame.line;\r\n _this.sizeInBytes = 0;\r\n }\r\n _this.sizeInBytes += _this.method.length;\r\n _this.sizeInBytes += _this.fileName.length;\r\n _this.sizeInBytes += _this.assembly.length;\r\n // todo: these might need to be removed depending on how the back-end settles on their size calculation\r\n _this.sizeInBytes += _StackFrame.baseSize;\r\n _this.sizeInBytes += _this.level.toString().length;\r\n _this.sizeInBytes += _this.line.toString().length;\r\n return _this;\r\n }\r\n _StackFrame.CreateFromInterface = function (frame) {\r\n return new _StackFrame(frame, null /* level is available in frame interface */);\r\n };\r\n _StackFrame.prototype.toInterface = function () {\r\n return {\r\n level: this.level,\r\n method: this.method,\r\n assembly: this.assembly,\r\n fileName: this.fileName,\r\n line: this.line\r\n };\r\n };\r\n // regex to match stack frames from ie/chrome/ff\r\n // methodName=$2, fileName=$4, lineNo=$5, column=$6\r\n _StackFrame.regex = /^([\\s]+at)?(.*?)(\\@|\\s\\(|\\s)([^\\(\\@\\n]+):([0-9]+):([0-9]+)(\\)?)$/;\r\n _StackFrame.baseSize = 58; // '{\"method\":\"\",\"level\":,\"assembly\":\"\",\"fileName\":\"\",\"line\":}'.length\r\n return _StackFrame;\r\n}(StackFrame));\r\nexport { _StackFrame };\r\n//# sourceMappingURL=Exception.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n// THIS FILE WAS AUTOGENERATED\r\nimport { Domain } from './Domain';\r\n/**\r\n * An instance of the Metric item is a list of measurements (single data points) and/or aggregations.\r\n */\r\nvar MetricData = /** @class */ (function (_super) {\r\n __extends(MetricData, _super);\r\n function MetricData() {\r\n var _this = _super.call(this) || this;\r\n _this.ver = 2;\r\n _this.metrics = [];\r\n _this.properties = {};\r\n _this.measurements = {};\r\n return _this;\r\n }\r\n return MetricData;\r\n}(Domain));\r\nexport { MetricData };\r\n//# sourceMappingURL=MetricData.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n// THIS FILE WAS AUTOGENERATED\r\n/**\r\n * Type of the metric data measurement.\r\n */\r\nexport var DataPointType;\r\n(function (DataPointType) {\r\n DataPointType[DataPointType[\"Measurement\"] = 0] = \"Measurement\";\r\n DataPointType[DataPointType[\"Aggregation\"] = 1] = \"Aggregation\";\r\n})(DataPointType || (DataPointType = {}));\r\n//# sourceMappingURL=DataPointType.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n// THIS FILE WAS AUTOGENERATED\r\nimport { DataPointType } from './DataPointType';\r\n/**\r\n * Metric data single measurement.\r\n */\r\nvar DataPoint = /** @class */ (function () {\r\n function DataPoint() {\r\n this.kind = DataPointType.Measurement;\r\n }\r\n return DataPoint;\r\n}());\r\nexport { DataPoint };\r\n//# sourceMappingURL=DataPoint.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\nimport { DataPoint as AIDataPoint } from '../../Interfaces/Contracts/Generated/DataPoint';\r\nimport { FieldType } from '../../Enums';\r\nvar DataPoint = /** @class */ (function (_super) {\r\n __extends(DataPoint, _super);\r\n function DataPoint() {\r\n var _this = _super !== null && _super.apply(this, arguments) || this;\r\n /**\r\n * The data contract for serializing this object.\r\n */\r\n _this.aiDataContract = {\r\n name: FieldType.Required,\r\n kind: FieldType.Default,\r\n value: FieldType.Required,\r\n count: FieldType.Default,\r\n min: FieldType.Default,\r\n max: FieldType.Default,\r\n stdDev: FieldType.Default\r\n };\r\n return _this;\r\n }\r\n return DataPoint;\r\n}(AIDataPoint));\r\nexport { DataPoint };\r\n//# sourceMappingURL=DataPoint.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\nimport { MetricData } from '../Interfaces/Contracts/Generated/MetricData';\r\nimport { DataSanitizer } from './Common/DataSanitizer';\r\nimport { FieldType } from '../Enums';\r\nimport { DataPoint } from './Common/DataPoint';\r\nimport { Util } from '../Util';\r\nvar Metric = /** @class */ (function (_super) {\r\n __extends(Metric, _super);\r\n /**\r\n * Constructs a new instance of the MetricTelemetry object\r\n */\r\n function Metric(logger, name, value, count, min, max, properties, measurements) {\r\n var _this = _super.call(this) || this;\r\n _this.aiDataContract = {\r\n ver: FieldType.Required,\r\n metrics: FieldType.Required,\r\n properties: FieldType.Default\r\n };\r\n var dataPoint = new DataPoint();\r\n dataPoint.count = count > 0 ? count : undefined;\r\n dataPoint.max = isNaN(max) || max === null ? undefined : max;\r\n dataPoint.min = isNaN(min) || min === null ? undefined : min;\r\n dataPoint.name = DataSanitizer.sanitizeString(logger, name) || Util.NotSpecified;\r\n dataPoint.value = value;\r\n _this.metrics = [dataPoint];\r\n _this.properties = DataSanitizer.sanitizeProperties(logger, properties);\r\n _this.measurements = DataSanitizer.sanitizeMeasurements(logger, measurements);\r\n return _this;\r\n }\r\n Metric.envelopeType = \"Microsoft.ApplicationInsights.{0}.Metric\";\r\n Metric.dataType = \"MetricData\";\r\n return Metric;\r\n}(MetricData));\r\nexport { Metric };\r\n//# sourceMappingURL=Metric.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n// THIS FILE WAS AUTOGENERATED\r\nimport { EventData } from './EventData';\r\n/**\r\n * An instance of PageView represents a generic action on a page like a button click. It is also the base type for PageView.\r\n */\r\nvar PageViewData = /** @class */ (function (_super) {\r\n __extends(PageViewData, _super);\r\n function PageViewData() {\r\n var _this = _super.call(this) || this;\r\n _this.ver = 2;\r\n _this.properties = {};\r\n _this.measurements = {};\r\n return _this;\r\n }\r\n return PageViewData;\r\n}(EventData));\r\nexport { PageViewData };\r\n//# sourceMappingURL=PageViewData.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\nimport { PageViewData } from '../Interfaces/Contracts/Generated/PageViewData';\r\nimport { DataSanitizer } from './Common/DataSanitizer';\r\nimport { FieldType } from '../Enums';\r\nimport { Util } from '../Util';\r\nvar PageView = /** @class */ (function (_super) {\r\n __extends(PageView, _super);\r\n /**\r\n * Constructs a new instance of the PageEventTelemetry object\r\n */\r\n function PageView(logger, name, url, durationMs, properties, measurements, id) {\r\n var _this = _super.call(this) || this;\r\n _this.aiDataContract = {\r\n ver: FieldType.Required,\r\n name: FieldType.Default,\r\n url: FieldType.Default,\r\n duration: FieldType.Default,\r\n properties: FieldType.Default,\r\n measurements: FieldType.Default,\r\n id: FieldType.Default\r\n };\r\n _this.id = DataSanitizer.sanitizeId(logger, id);\r\n _this.url = DataSanitizer.sanitizeUrl(logger, url);\r\n _this.name = DataSanitizer.sanitizeString(logger, name) || Util.NotSpecified;\r\n if (!isNaN(durationMs)) {\r\n _this.duration = Util.msToTimeSpan(durationMs);\r\n }\r\n _this.properties = DataSanitizer.sanitizeProperties(logger, properties);\r\n _this.measurements = DataSanitizer.sanitizeMeasurements(logger, measurements);\r\n return _this;\r\n }\r\n PageView.envelopeType = \"Microsoft.ApplicationInsights.{0}.Pageview\";\r\n PageView.dataType = \"PageviewData\";\r\n return PageView;\r\n}(PageViewData));\r\nexport { PageView };\r\n//# sourceMappingURL=PageView.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n// THIS FILE WAS AUTOGENERATED\r\nimport { Domain } from './Domain';\r\n/**\r\n * An instance of Remote Dependency represents an interaction of the monitored component with a remote component/service like SQL or an HTTP endpoint.\r\n */\r\nvar RemoteDependencyData = /** @class */ (function (_super) {\r\n __extends(RemoteDependencyData, _super);\r\n function RemoteDependencyData() {\r\n var _this = _super.call(this) || this;\r\n _this.ver = 2;\r\n _this.success = true;\r\n _this.properties = {};\r\n _this.measurements = {};\r\n return _this;\r\n }\r\n return RemoteDependencyData;\r\n}(Domain));\r\nexport { RemoteDependencyData };\r\n//# sourceMappingURL=RemoteDependencyData.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\nimport { DataSanitizer } from './Common/DataSanitizer';\r\nimport { FieldType } from '../Enums';\r\nimport { Util, AjaxHelper } from '../Util';\r\nimport { RemoteDependencyData as GeneratedRemoteDependencyData } from '../Interfaces/Contracts/Generated/RemoteDependencyData';\r\nvar RemoteDependencyData = /** @class */ (function (_super) {\r\n __extends(RemoteDependencyData, _super);\r\n /**\r\n * Constructs a new instance of the RemoteDependencyData object\r\n */\r\n function RemoteDependencyData(logger, id, absoluteUrl, commandName, value, success, resultCode, method, requestAPI, correlationContext, properties, measurements) {\r\n if (requestAPI === void 0) { requestAPI = \"Ajax\"; }\r\n var _this = _super.call(this) || this;\r\n _this.aiDataContract = {\r\n id: FieldType.Required,\r\n ver: FieldType.Required,\r\n name: FieldType.Default,\r\n resultCode: FieldType.Default,\r\n duration: FieldType.Default,\r\n success: FieldType.Default,\r\n data: FieldType.Default,\r\n target: FieldType.Default,\r\n type: FieldType.Default,\r\n properties: FieldType.Default,\r\n measurements: FieldType.Default,\r\n kind: FieldType.Default,\r\n value: FieldType.Default,\r\n count: FieldType.Default,\r\n min: FieldType.Default,\r\n max: FieldType.Default,\r\n stdDev: FieldType.Default,\r\n dependencyKind: FieldType.Default,\r\n dependencySource: FieldType.Default,\r\n commandName: FieldType.Default,\r\n dependencyTypeName: FieldType.Default\r\n };\r\n _this.id = id;\r\n _this.duration = Util.msToTimeSpan(value);\r\n _this.success = success;\r\n _this.resultCode = resultCode + \"\";\r\n _this.type = DataSanitizer.sanitizeString(logger, requestAPI);\r\n var dependencyFields = AjaxHelper.ParseDependencyPath(logger, absoluteUrl, method, commandName);\r\n _this.data = DataSanitizer.sanitizeUrl(logger, commandName) || dependencyFields.data; // get a value from hosturl if commandName not available\r\n _this.target = DataSanitizer.sanitizeString(logger, dependencyFields.target);\r\n if (correlationContext) {\r\n _this.target = _this.target + \" | \" + correlationContext;\r\n }\r\n _this.name = DataSanitizer.sanitizeString(logger, dependencyFields.name);\r\n _this.properties = DataSanitizer.sanitizeProperties(logger, properties);\r\n _this.measurements = DataSanitizer.sanitizeMeasurements(logger, measurements);\r\n return _this;\r\n }\r\n RemoteDependencyData.envelopeType = \"Microsoft.ApplicationInsights.{0}.RemoteDependency\";\r\n RemoteDependencyData.dataType = \"RemoteDependencyData\";\r\n return RemoteDependencyData;\r\n}(GeneratedRemoteDependencyData));\r\nexport { RemoteDependencyData };\r\n//# sourceMappingURL=RemoteDependencyData.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n// THIS FILE WAS AUTOGENERATED\r\nimport { Domain } from './Domain';\r\n/**\r\n * Instances of Message represent printf-like trace statements that are text-searched. Log4Net, NLog and other text-based log file entries are translated into intances of this type. The message does not have measurements.\r\n */\r\nvar MessageData = /** @class */ (function (_super) {\r\n __extends(MessageData, _super);\r\n function MessageData() {\r\n var _this = _super.call(this) || this;\r\n _this.ver = 2;\r\n _this.properties = {};\r\n _this.measurements = {};\r\n return _this;\r\n }\r\n return MessageData;\r\n}(Domain));\r\nexport { MessageData };\r\n//# sourceMappingURL=MessageData.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\nimport { MessageData } from '../Interfaces/Contracts/Generated/MessageData';\r\nimport { DataSanitizer } from './Common/DataSanitizer';\r\nimport { FieldType } from '../Enums';\r\nimport { Util } from '../Util';\r\nvar Trace = /** @class */ (function (_super) {\r\n __extends(Trace, _super);\r\n /**\r\n * Constructs a new instance of the TraceTelemetry object\r\n */\r\n function Trace(logger, message, severityLevel, properties, measurements) {\r\n var _this = _super.call(this) || this;\r\n _this.aiDataContract = {\r\n ver: FieldType.Required,\r\n message: FieldType.Required,\r\n severityLevel: FieldType.Default,\r\n properties: FieldType.Default\r\n };\r\n message = message || Util.NotSpecified;\r\n _this.message = DataSanitizer.sanitizeMessage(logger, message);\r\n _this.properties = DataSanitizer.sanitizeProperties(logger, properties);\r\n _this.measurements = DataSanitizer.sanitizeMeasurements(logger, measurements);\r\n if (severityLevel) {\r\n _this.severityLevel = severityLevel;\r\n }\r\n return _this;\r\n }\r\n Trace.envelopeType = \"Microsoft.ApplicationInsights.{0}.Message\";\r\n Trace.dataType = \"MessageData\";\r\n return Trace;\r\n}(MessageData));\r\nexport { Trace };\r\n//# sourceMappingURL=Trace.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n// THIS FILE WAS AUTOGENERATED\r\nimport { PageViewData } from './PageViewData';\r\n/**\r\n * An instance of PageViewPerf represents: a page view with no performance data, a page view with performance data, or just the performance data of an earlier page request.\r\n */\r\nvar PageViewPerfData = /** @class */ (function (_super) {\r\n __extends(PageViewPerfData, _super);\r\n function PageViewPerfData() {\r\n var _this = _super.call(this) || this;\r\n _this.ver = 2;\r\n _this.properties = {};\r\n _this.measurements = {};\r\n return _this;\r\n }\r\n return PageViewPerfData;\r\n}(PageViewData));\r\nexport { PageViewPerfData };\r\n//# sourceMappingURL=PageViewPerfData.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\nimport { PageViewPerfData } from '../Interfaces/Contracts/Generated/PageViewPerfData';\r\nimport { FieldType } from '../Enums';\r\nimport { DataSanitizer } from './Common/DataSanitizer';\r\nimport { Util } from '../Util';\r\nvar PageViewPerformance = /** @class */ (function (_super) {\r\n __extends(PageViewPerformance, _super);\r\n /**\r\n * Constructs a new instance of the PageEventTelemetry object\r\n */\r\n function PageViewPerformance(logger, name, url, unused, properties, measurements, cs4BaseData) {\r\n var _this = _super.call(this) || this;\r\n _this.aiDataContract = {\r\n ver: FieldType.Required,\r\n name: FieldType.Default,\r\n url: FieldType.Default,\r\n duration: FieldType.Default,\r\n perfTotal: FieldType.Default,\r\n networkConnect: FieldType.Default,\r\n sentRequest: FieldType.Default,\r\n receivedResponse: FieldType.Default,\r\n domProcessing: FieldType.Default,\r\n properties: FieldType.Default,\r\n measurements: FieldType.Default\r\n };\r\n _this.url = DataSanitizer.sanitizeUrl(logger, url);\r\n _this.name = DataSanitizer.sanitizeString(logger, name) || Util.NotSpecified;\r\n _this.properties = DataSanitizer.sanitizeProperties(logger, properties);\r\n _this.measurements = DataSanitizer.sanitizeMeasurements(logger, measurements);\r\n if (cs4BaseData) {\r\n _this.domProcessing = cs4BaseData.domProcessing;\r\n _this.duration = cs4BaseData.duration;\r\n _this.networkConnect = cs4BaseData.networkConnect;\r\n _this.perfTotal = cs4BaseData.perfTotal;\r\n _this.receivedResponse = cs4BaseData.receivedResponse;\r\n _this.sentRequest = cs4BaseData.sentRequest;\r\n }\r\n return _this;\r\n }\r\n PageViewPerformance.envelopeType = \"Microsoft.ApplicationInsights.{0}.PageviewPerformance\";\r\n PageViewPerformance.dataType = \"PageviewPerformanceData\";\r\n return PageViewPerformance;\r\n}(PageViewPerfData));\r\nexport { PageViewPerformance };\r\n//# sourceMappingURL=PageViewPerformance.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\nimport { Data as AIData } from '../../Interfaces/Contracts/Generated/Data';\r\nimport { FieldType } from '../../Enums';\r\nvar Data = /** @class */ (function (_super) {\r\n __extends(Data, _super);\r\n /**\r\n * Constructs a new instance of telemetry data.\r\n */\r\n function Data(baseType, data) {\r\n var _this = _super.call(this) || this;\r\n /**\r\n * The data contract for serializing this object.\r\n */\r\n _this.aiDataContract = {\r\n baseType: FieldType.Required,\r\n baseData: FieldType.Required\r\n };\r\n _this.baseType = baseType;\r\n _this.baseData = data;\r\n return _this;\r\n }\r\n return Data;\r\n}(AIData));\r\nexport { Data };\r\n//# sourceMappingURL=Data.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n// THIS FILE WAS AUTOGENERATED\r\n/**\r\n * Defines the level of severity for the event.\r\n */\r\nexport var SeverityLevel;\r\n(function (SeverityLevel) {\r\n SeverityLevel[SeverityLevel[\"Verbose\"] = 0] = \"Verbose\";\r\n SeverityLevel[SeverityLevel[\"Information\"] = 1] = \"Information\";\r\n SeverityLevel[SeverityLevel[\"Warning\"] = 2] = \"Warning\";\r\n SeverityLevel[SeverityLevel[\"Error\"] = 3] = \"Error\";\r\n SeverityLevel[SeverityLevel[\"Critical\"] = 4] = \"Critical\";\r\n})(SeverityLevel || (SeverityLevel = {}));\r\n//# sourceMappingURL=SeverityLevel.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\n// THIS FILE WAS AUTOGENERATED\r\nvar ContextTagKeys = /** @class */ (function () {\r\n function ContextTagKeys() {\r\n this.applicationVersion = \"ai.application.ver\";\r\n this.applicationBuild = \"ai.application.build\";\r\n this.applicationTypeId = \"ai.application.typeId\";\r\n this.applicationId = \"ai.application.applicationId\";\r\n this.applicationLayer = \"ai.application.layer\";\r\n this.deviceId = \"ai.device.id\";\r\n this.deviceIp = \"ai.device.ip\";\r\n this.deviceLanguage = \"ai.device.language\";\r\n this.deviceLocale = \"ai.device.locale\";\r\n this.deviceModel = \"ai.device.model\";\r\n this.deviceFriendlyName = \"ai.device.friendlyName\";\r\n this.deviceNetwork = \"ai.device.network\";\r\n this.deviceNetworkName = \"ai.device.networkName\";\r\n this.deviceOEMName = \"ai.device.oemName\";\r\n this.deviceOS = \"ai.device.os\";\r\n this.deviceOSVersion = \"ai.device.osVersion\";\r\n this.deviceRoleInstance = \"ai.device.roleInstance\";\r\n this.deviceRoleName = \"ai.device.roleName\";\r\n this.deviceScreenResolution = \"ai.device.screenResolution\";\r\n this.deviceType = \"ai.device.type\";\r\n this.deviceMachineName = \"ai.device.machineName\";\r\n this.deviceVMName = \"ai.device.vmName\";\r\n this.deviceBrowser = \"ai.device.browser\";\r\n this.deviceBrowserVersion = \"ai.device.browserVersion\";\r\n this.locationIp = \"ai.location.ip\";\r\n this.locationCountry = \"ai.location.country\";\r\n this.locationProvince = \"ai.location.province\";\r\n this.locationCity = \"ai.location.city\";\r\n this.operationId = \"ai.operation.id\";\r\n this.operationName = \"ai.operation.name\";\r\n this.operationParentId = \"ai.operation.parentId\";\r\n this.operationRootId = \"ai.operation.rootId\";\r\n this.operationSyntheticSource = \"ai.operation.syntheticSource\";\r\n this.operationCorrelationVector = \"ai.operation.correlationVector\";\r\n this.sessionId = \"ai.session.id\";\r\n this.sessionIsFirst = \"ai.session.isFirst\";\r\n this.sessionIsNew = \"ai.session.isNew\";\r\n this.userAccountAcquisitionDate = \"ai.user.accountAcquisitionDate\";\r\n this.userAccountId = \"ai.user.accountId\";\r\n this.userAgent = \"ai.user.userAgent\";\r\n this.userId = \"ai.user.id\";\r\n this.userStoreRegion = \"ai.user.storeRegion\";\r\n this.userAuthUserId = \"ai.user.authUserId\";\r\n this.userAnonymousUserAcquisitionDate = \"ai.user.anonUserAcquisitionDate\";\r\n this.userAuthenticatedUserAcquisitionDate = \"ai.user.authUserAcquisitionDate\";\r\n this.cloudName = \"ai.cloud.name\";\r\n this.cloudRole = \"ai.cloud.role\";\r\n this.cloudRoleVer = \"ai.cloud.roleVer\";\r\n this.cloudRoleInstance = \"ai.cloud.roleInstance\";\r\n this.cloudEnvironment = \"ai.cloud.environment\";\r\n this.cloudLocation = \"ai.cloud.location\";\r\n this.cloudDeploymentUnit = \"ai.cloud.deploymentUnit\";\r\n this.internalNodeName = \"ai.internal.nodeName\";\r\n this.internalSdkVersion = \"ai.internal.sdkVersion\";\r\n this.internalAgentVersion = \"ai.internal.agentVersion\";\r\n this.internalSnippet = \"ai.internal.snippet\";\r\n this.internalSdkSrc = \"ai.internal.sdkSrc\";\r\n }\r\n return ContextTagKeys;\r\n}());\r\nexport { ContextTagKeys };\r\n//# sourceMappingURL=ContextTagKeys.js.map","import { ContextTagKeys } from \"./Contracts/Generated/ContextTagKeys\";\r\nvar Extensions = /** @class */ (function () {\r\n function Extensions() {\r\n }\r\n Extensions.UserExt = \"user\";\r\n Extensions.DeviceExt = \"device\";\r\n Extensions.TraceExt = \"trace\";\r\n Extensions.WebExt = \"web\";\r\n Extensions.AppExt = \"app\";\r\n Extensions.OSExt = \"os\";\r\n Extensions.SessionExt = \"ses\";\r\n Extensions.SDKExt = \"sdk\";\r\n return Extensions;\r\n}());\r\nexport { Extensions };\r\nexport var CtxTagKeys = new ContextTagKeys();\r\n//# sourceMappingURL=PartAExtensions.js.map","// Copyright (c) Microsoft Corporation. All rights reserved.\r\n// Licensed under the MIT License.\r\nimport '@microsoft/applicationinsights-shims';\r\nexport { Util, CorrelationIdHelper, UrlHelper, DateTimeUtils } from './Util';\r\nexport { ConnectionStringParser } from './ConnectionStringParser';\r\nexport { FieldType } from './Enums';\r\nexport { RequestHeaders } from './RequestResponseHeaders';\r\nexport { DisabledPropertyName, ProcessLegacy, SampleRate, HttpMethod, DEFAULT_BREEZE_ENDPOINT } from './Constants';\r\nexport { Data as AIData } from './Interfaces/Contracts/Generated/Data';\r\nexport { Base as AIBase } from './Interfaces/Contracts/Generated/Base';\r\nexport { Envelope } from './Telemetry/Common/Envelope';\r\nexport { Event } from './Telemetry/Event';\r\nexport { Exception } from './Telemetry/Exception';\r\nexport { Metric } from './Telemetry/Metric';\r\nexport { PageView } from './Telemetry/PageView';\r\nexport { PageViewData } from './Interfaces/Contracts/Generated/PageViewData';\r\nexport { RemoteDependencyData } from './Telemetry/RemoteDependencyData';\r\nexport { Trace } from './Telemetry/Trace';\r\nexport { PageViewPerformance } from './Telemetry/PageViewPerformance';\r\nexport { Data } from './Telemetry/Common/Data';\r\nexport { SeverityLevel } from './Interfaces/Contracts/Generated/SeverityLevel';\r\nexport { ConfigurationManager } from './Interfaces/IConfig';\r\nexport { ContextTagKeys } from './Interfaces/Contracts/Generated/ContextTagKeys';\r\nexport { DataSanitizer } from './Telemetry/Common/DataSanitizer';\r\nexport { TelemetryItemCreator } from './TelemetryItemCreator';\r\nexport { CtxTagKeys, Extensions } from './Interfaces/PartAExtensions';\r\nexport { DistributedTracingModes } from './Enums';\r\nexport var PropertiesPluginIdentifier = \"AppInsightsPropertiesPlugin\";\r\nexport var BreezeChannelIdentifier = \"AppInsightsChannelPlugin\";\r\nexport var AnalyticsPluginIdentifier = \"ApplicationInsightsAnalytics\";\r\n//# sourceMappingURL=applicationinsights-common.js.map","/*!\n * Application Insights JavaScript SDK - Channel, 2.5.11\n * Copyright (c) Microsoft and contributors. All rights reserved.\n */\nimport { Util } from '@microsoft/applicationinsights-common';\r\nimport { LoggingSeverity, _InternalMessageId, getJSON, CoreUtils } from '@microsoft/applicationinsights-core-js';\r\nimport dynamicProto from '@microsoft/dynamicproto-js';\r\n/*\r\n * An array based send buffer.\r\n */\r\nvar ArraySendBuffer = /** @class */ (function () {\r\n function ArraySendBuffer(config) {\r\n var _buffer = [];\r\n dynamicProto(ArraySendBuffer, this, function (_self) {\r\n _self.enqueue = function (payload) {\r\n _buffer.push(payload);\r\n };\r\n _self.count = function () {\r\n return _buffer.length;\r\n };\r\n _self.clear = function () {\r\n _buffer.length = 0;\r\n };\r\n _self.getItems = function () {\r\n return _buffer.slice(0);\r\n };\r\n _self.batchPayloads = function (payload) {\r\n if (payload && payload.length > 0) {\r\n var batch = config.emitLineDelimitedJson() ?\r\n payload.join(\"\\n\") :\r\n \"[\" + payload.join(\",\") + \"]\";\r\n return batch;\r\n }\r\n return null;\r\n };\r\n _self.markAsSent = function (payload) {\r\n _self.clear();\r\n };\r\n _self.clearSent = function (payload) {\r\n // not supported\r\n };\r\n });\r\n }\r\n// Removed Stub for ArraySendBuffer.prototype.enqueue.\r\n// Removed Stub for ArraySendBuffer.prototype.count.\r\n// Removed Stub for ArraySendBuffer.prototype.clear.\r\n// Removed Stub for ArraySendBuffer.prototype.getItems.\r\n// Removed Stub for ArraySendBuffer.prototype.batchPayloads.\r\n// Removed Stub for ArraySendBuffer.prototype.markAsSent.\r\n// Removed Stub for ArraySendBuffer.prototype.clearSent.\r\n return ArraySendBuffer;\r\n}());\r\nexport { ArraySendBuffer };\r\n/*\r\n * Session storage buffer holds a copy of all unsent items in the browser session storage.\r\n */\r\nvar SessionStorageSendBuffer = /** @class */ (function () {\r\n function SessionStorageSendBuffer(logger, config) {\r\n var _bufferFullMessageSent = false;\r\n // An in-memory copy of the buffer. A copy is saved to the session storage on enqueue() and clear().\r\n // The buffer is restored in a constructor and contains unsent events from a previous page.\r\n var _buffer;\r\n dynamicProto(SessionStorageSendBuffer, this, function (_self) {\r\n var bufferItems = _getBuffer(SessionStorageSendBuffer.BUFFER_KEY);\r\n var notDeliveredItems = _getBuffer(SessionStorageSendBuffer.SENT_BUFFER_KEY);\r\n _buffer = bufferItems.concat(notDeliveredItems);\r\n // If the buffer has too many items, drop items from the end.\r\n if (_buffer.length > SessionStorageSendBuffer.MAX_BUFFER_SIZE) {\r\n _buffer.length = SessionStorageSendBuffer.MAX_BUFFER_SIZE;\r\n }\r\n _setBuffer(SessionStorageSendBuffer.SENT_BUFFER_KEY, []);\r\n _setBuffer(SessionStorageSendBuffer.BUFFER_KEY, _buffer);\r\n _self.enqueue = function (payload) {\r\n if (_buffer.length >= SessionStorageSendBuffer.MAX_BUFFER_SIZE) {\r\n // sent internal log only once per page view\r\n if (!_bufferFullMessageSent) {\r\n logger.throwInternal(LoggingSeverity.WARNING, _InternalMessageId.SessionStorageBufferFull, \"Maximum buffer size reached: \" + _buffer.length, true);\r\n _bufferFullMessageSent = true;\r\n }\r\n return;\r\n }\r\n _buffer.push(payload);\r\n _setBuffer(SessionStorageSendBuffer.BUFFER_KEY, _buffer);\r\n };\r\n _self.count = function () {\r\n return _buffer.length;\r\n };\r\n _self.clear = function () {\r\n _buffer = [];\r\n _setBuffer(SessionStorageSendBuffer.BUFFER_KEY, []);\r\n _setBuffer(SessionStorageSendBuffer.SENT_BUFFER_KEY, []);\r\n _bufferFullMessageSent = false;\r\n };\r\n _self.getItems = function () {\r\n return _buffer.slice(0);\r\n };\r\n _self.batchPayloads = function (payload) {\r\n if (payload && payload.length > 0) {\r\n var batch = config.emitLineDelimitedJson() ?\r\n payload.join(\"\\n\") :\r\n \"[\" + payload.join(\",\") + \"]\";\r\n return batch;\r\n }\r\n return null;\r\n };\r\n _self.markAsSent = function (payload) {\r\n _buffer = _removePayloadsFromBuffer(payload, _buffer);\r\n _setBuffer(SessionStorageSendBuffer.BUFFER_KEY, _buffer);\r\n var sentElements = _getBuffer(SessionStorageSendBuffer.SENT_BUFFER_KEY);\r\n if (sentElements instanceof Array && payload instanceof Array) {\r\n sentElements = sentElements.concat(payload);\r\n if (sentElements.length > SessionStorageSendBuffer.MAX_BUFFER_SIZE) {\r\n // We send telemetry normally. If the SENT_BUFFER is too big we don't add new elements\r\n // until we receive a response from the backend and the buffer has free space again (see clearSent method)\r\n logger.throwInternal(LoggingSeverity.CRITICAL, _InternalMessageId.SessionStorageBufferFull, \"Sent buffer reached its maximum size: \" + sentElements.length, true);\r\n sentElements.length = SessionStorageSendBuffer.MAX_BUFFER_SIZE;\r\n }\r\n _setBuffer(SessionStorageSendBuffer.SENT_BUFFER_KEY, sentElements);\r\n }\r\n };\r\n _self.clearSent = function (payload) {\r\n var sentElements = _getBuffer(SessionStorageSendBuffer.SENT_BUFFER_KEY);\r\n sentElements = _removePayloadsFromBuffer(payload, sentElements);\r\n _setBuffer(SessionStorageSendBuffer.SENT_BUFFER_KEY, sentElements);\r\n };\r\n function _removePayloadsFromBuffer(payloads, buffer) {\r\n var remaining = [];\r\n CoreUtils.arrForEach(buffer, function (value) {\r\n if (!CoreUtils.isFunction(value) && CoreUtils.arrIndexOf(payloads, value) === -1) {\r\n remaining.push(value);\r\n }\r\n });\r\n return remaining;\r\n }\r\n function _getBuffer(key) {\r\n var prefixedKey = key;\r\n try {\r\n prefixedKey = config.namePrefix && config.namePrefix() ? config.namePrefix() + \"_\" + prefixedKey : prefixedKey;\r\n var bufferJson = Util.getSessionStorage(logger, prefixedKey);\r\n if (bufferJson) {\r\n var buffer = getJSON().parse(bufferJson);\r\n if (CoreUtils.isString(buffer)) {\r\n // When using some version prototype.js the stringify / parse cycle does not decode array's correctly\r\n buffer = getJSON().parse(buffer);\r\n }\r\n if (buffer && Util.isArray(buffer)) {\r\n return buffer;\r\n }\r\n }\r\n }\r\n catch (e) {\r\n logger.throwInternal(LoggingSeverity.CRITICAL, _InternalMessageId.FailedToRestoreStorageBuffer, \" storage key: \" + prefixedKey + \", \" + Util.getExceptionName(e), { exception: Util.dump(e) });\r\n }\r\n return [];\r\n }\r\n function _setBuffer(key, buffer) {\r\n var prefixedKey = key;\r\n try {\r\n prefixedKey = config.namePrefix && config.namePrefix() ? config.namePrefix() + \"_\" + prefixedKey : prefixedKey;\r\n var bufferJson = JSON.stringify(buffer);\r\n Util.setSessionStorage(logger, prefixedKey, bufferJson);\r\n }\r\n catch (e) {\r\n // if there was an error, clear the buffer\r\n // telemetry is stored in the _buffer array so we won't loose any items\r\n Util.setSessionStorage(logger, prefixedKey, JSON.stringify([]));\r\n logger.throwInternal(LoggingSeverity.WARNING, _InternalMessageId.FailedToSetStorageBuffer, \" storage key: \" + prefixedKey + \", \" + Util.getExceptionName(e) + \". Buffer cleared\", { exception: Util.dump(e) });\r\n }\r\n }\r\n });\r\n }\r\n// Removed Stub for SessionStorageSendBuffer.prototype.enqueue.\r\n// Removed Stub for SessionStorageSendBuffer.prototype.count.\r\n// Removed Stub for SessionStorageSendBuffer.prototype.clear.\r\n// Removed Stub for SessionStorageSendBuffer.prototype.getItems.\r\n// Removed Stub for SessionStorageSendBuffer.prototype.batchPayloads.\r\n// Removed Stub for SessionStorageSendBuffer.prototype.markAsSent.\r\n// Removed Stub for SessionStorageSendBuffer.prototype.clearSent.\r\n SessionStorageSendBuffer.BUFFER_KEY = \"AI_buffer\";\r\n SessionStorageSendBuffer.SENT_BUFFER_KEY = \"AI_sentBuffer\";\r\n // Maximum number of payloads stored in the buffer. If the buffer is full, new elements will be dropped.\r\n SessionStorageSendBuffer.MAX_BUFFER_SIZE = 2000;\r\n return SessionStorageSendBuffer;\r\n}());\r\nexport { SessionStorageSendBuffer };\r\n//# sourceMappingURL=SendBuffer.js.map","/*!\n * Application Insights JavaScript SDK - Channel, 2.5.11\n * Copyright (c) Microsoft and contributors. All rights reserved.\n */\nimport { Data, Envelope, RemoteDependencyData, Event, Exception, Metric, PageView, Trace, PageViewPerformance, CtxTagKeys, HttpMethod, SampleRate, } from '@microsoft/applicationinsights-common';\r\nimport { CoreUtils, LoggingSeverity, _InternalMessageId, hasJSON, getJSON, objForEachKey } from '@microsoft/applicationinsights-core-js';\r\n// these two constants are used to filter out properties not needed when trying to extract custom properties and measurements from the incoming payload\r\nvar strBaseType = 'baseType';\r\nvar strBaseData = 'baseData';\r\nvar strProperties = 'properties';\r\nvar strTrue = 'true';\r\nvar arrForEach = CoreUtils.arrForEach;\r\nvar isNullOrUndefined = CoreUtils.isNullOrUndefined;\r\nfunction _setValueIf(target, field, value) {\r\n if (target && value) {\r\n target[field] = value;\r\n return target[field];\r\n }\r\n return null;\r\n}\r\nvar EnvelopeCreator = /** @class */ (function () {\r\n function EnvelopeCreator() {\r\n }\r\n EnvelopeCreator.extractPropsAndMeasurements = function (data, properties, measurements) {\r\n if (!isNullOrUndefined(data)) {\r\n objForEachKey(data, function (key, value) {\r\n if (CoreUtils.isNumber(value)) {\r\n measurements[key] = value;\r\n }\r\n else if (CoreUtils.isString(value)) {\r\n properties[key] = value;\r\n }\r\n else if (hasJSON()) {\r\n properties[key] = getJSON().stringify(value);\r\n }\r\n });\r\n }\r\n };\r\n // TODO: Do we want this to take logger as arg or use this._logger as nonstatic?\r\n EnvelopeCreator.createEnvelope = function (logger, envelopeType, telemetryItem, data) {\r\n var envelope = new Envelope(logger, data, envelopeType);\r\n _setValueIf(envelope, 'sampleRate', telemetryItem[SampleRate]);\r\n if ((telemetryItem[strBaseData] || {}).startTime) {\r\n envelope.time = CoreUtils.toISOString(telemetryItem[strBaseData].startTime);\r\n }\r\n envelope.iKey = telemetryItem.iKey;\r\n var iKeyNoDashes = telemetryItem.iKey.replace(/-/g, \"\");\r\n envelope.name = envelope.name.replace(\"{0}\", iKeyNoDashes);\r\n // extract all extensions from ctx\r\n EnvelopeCreator.extractPartAExtensions(telemetryItem, envelope);\r\n // loop through the envelope tags (extension of Part A) and pick out the ones that should go in outgoing envelope tags\r\n telemetryItem.tags = telemetryItem.tags || [];\r\n return envelope;\r\n };\r\n /*\r\n * Maps Part A data from CS 4.0\r\n */\r\n EnvelopeCreator.extractPartAExtensions = function (item, env) {\r\n // todo: switch to keys from common in this method\r\n var envTags = env.tags = env.tags || {};\r\n var itmExt = item.ext = item.ext || {};\r\n var itmTags = item.tags = item.tags || [];\r\n var extUser = itmExt.user;\r\n if (extUser) {\r\n _setValueIf(envTags, CtxTagKeys.userAuthUserId, extUser.authId);\r\n _setValueIf(envTags, CtxTagKeys.userId, extUser.id || extUser.localId);\r\n }\r\n var extApp = itmExt.app;\r\n if (extApp) {\r\n _setValueIf(envTags, CtxTagKeys.sessionId, extApp.sesId);\r\n }\r\n var extDevice = itmExt.device;\r\n if (extDevice) {\r\n _setValueIf(envTags, CtxTagKeys.deviceId, extDevice.id || extDevice.localId);\r\n _setValueIf(envTags, CtxTagKeys.deviceType, extDevice.deviceClass);\r\n _setValueIf(envTags, CtxTagKeys.deviceIp, extDevice.ip);\r\n _setValueIf(envTags, CtxTagKeys.deviceModel, extDevice.model);\r\n _setValueIf(envTags, CtxTagKeys.deviceType, extDevice.deviceType);\r\n }\r\n var web = item.ext.web;\r\n if (web) {\r\n _setValueIf(envTags, CtxTagKeys.deviceLanguage, web.browserLang);\r\n _setValueIf(envTags, CtxTagKeys.deviceBrowserVersion, web.browserVer);\r\n _setValueIf(envTags, CtxTagKeys.deviceBrowser, web.browser);\r\n var envData = env.data = env.data || {};\r\n var envBaseData = envData[strBaseData] = envData[strBaseData] || {};\r\n var envProps = envBaseData[strProperties] = envBaseData[strProperties] || {};\r\n _setValueIf(envProps, 'domain', web.domain);\r\n _setValueIf(envProps, 'isManual', web.isManual ? strTrue : null);\r\n _setValueIf(envProps, 'screenRes', web.screenRes);\r\n _setValueIf(envProps, 'userConsent', web.userConsent ? strTrue : null);\r\n }\r\n var extOs = itmExt.os;\r\n if (extOs) {\r\n _setValueIf(envTags, CtxTagKeys.deviceOS, extOs.name);\r\n }\r\n // No support for mapping Trace.traceState to 2.0 as it is currently empty\r\n var extTrace = itmExt.trace;\r\n if (extTrace) {\r\n _setValueIf(envTags, CtxTagKeys.operationParentId, extTrace.parentID);\r\n _setValueIf(envTags, CtxTagKeys.operationName, extTrace.name);\r\n _setValueIf(envTags, CtxTagKeys.operationId, extTrace.traceID);\r\n }\r\n // Sample 4.0 schema\r\n // {\r\n // \"time\" : \"2018-09-05T22:51:22.4936Z\",\r\n // \"name\" : \"MetricWithNamespace\",\r\n // \"iKey\" : \"ABC-5a4cbd20-e601-4ef5-a3c6-5d6577e4398e\",\r\n // \"ext\": { \"cloud\": {\r\n // \"role\": \"WATSON3\",\r\n // \"roleInstance\": \"CO4AEAP00000260\"\r\n // },\r\n // \"device\": {}, \"correlation\": {} },\r\n // \"tags\": [\r\n // { \"amazon.region\" : \"east2\" },\r\n // { \"os.expid\" : \"wp:02df239\" }\r\n // ]\r\n // }\r\n var tgs = {};\r\n // deals with tags.push({object})\r\n for (var i = itmTags.length - 1; i >= 0; i--) {\r\n var tg = itmTags[i];\r\n objForEachKey(tg, function (key, value) {\r\n tgs[key] = value;\r\n });\r\n itmTags.splice(i, 1);\r\n }\r\n // deals with tags[key]=value (and handles hasOwnProperty)\r\n objForEachKey(itmTags, function (tg, value) {\r\n tgs[tg] = value;\r\n });\r\n env.tags = __assign({}, envTags, tgs);\r\n if (!env.tags[CtxTagKeys.internalSdkVersion]) {\r\n // Append a version in case it is not already set\r\n env.tags[CtxTagKeys.internalSdkVersion] = \"javascript:\" + EnvelopeCreator.Version;\r\n }\r\n };\r\n EnvelopeCreator.prototype.Init = function (logger, telemetryItem) {\r\n this._logger = logger;\r\n if (isNullOrUndefined(telemetryItem[strBaseData])) {\r\n this._logger.throwInternal(LoggingSeverity.CRITICAL, _InternalMessageId.TelemetryEnvelopeInvalid, \"telemetryItem.baseData cannot be null.\");\r\n }\r\n };\r\n EnvelopeCreator.Version = \"2.5.11\";\r\n return EnvelopeCreator;\r\n}());\r\nexport { EnvelopeCreator };\r\nvar DependencyEnvelopeCreator = /** @class */ (function (_super) {\r\n __extends(DependencyEnvelopeCreator, _super);\r\n function DependencyEnvelopeCreator() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n DependencyEnvelopeCreator.prototype.Create = function (logger, telemetryItem) {\r\n _super.prototype.Init.call(this, logger, telemetryItem);\r\n var customMeasurements = telemetryItem[strBaseData].measurements || {};\r\n var customProperties = telemetryItem[strBaseData][strProperties] || {};\r\n EnvelopeCreator.extractPropsAndMeasurements(telemetryItem.data, customProperties, customMeasurements);\r\n var bd = telemetryItem[strBaseData];\r\n if (isNullOrUndefined(bd)) {\r\n logger.warnToConsole(\"Invalid input for dependency data\");\r\n return null;\r\n }\r\n var method = bd[strProperties] && bd[strProperties][HttpMethod] ? bd[strProperties][HttpMethod] : \"GET\";\r\n var remoteDepData = new RemoteDependencyData(logger, bd.id, bd.target, bd.name, bd.duration, bd.success, bd.responseCode, method, bd.type, bd.correlationContext, customProperties, customMeasurements);\r\n var data = new Data(RemoteDependencyData.dataType, remoteDepData);\r\n return EnvelopeCreator.createEnvelope(logger, RemoteDependencyData.envelopeType, telemetryItem, data);\r\n };\r\n DependencyEnvelopeCreator.DependencyEnvelopeCreator = new DependencyEnvelopeCreator();\r\n return DependencyEnvelopeCreator;\r\n}(EnvelopeCreator));\r\nexport { DependencyEnvelopeCreator };\r\nvar EventEnvelopeCreator = /** @class */ (function (_super) {\r\n __extends(EventEnvelopeCreator, _super);\r\n function EventEnvelopeCreator() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n EventEnvelopeCreator.prototype.Create = function (logger, telemetryItem) {\r\n _super.prototype.Init.call(this, logger, telemetryItem);\r\n var customProperties = {};\r\n var customMeasurements = {};\r\n if (telemetryItem[strBaseType] !== Event.dataType) {\r\n customProperties['baseTypeSource'] = telemetryItem[strBaseType]; // save the passed in base type as a property\r\n }\r\n if (telemetryItem[strBaseType] === Event.dataType) {\r\n customProperties = telemetryItem[strBaseData][strProperties] || {};\r\n customMeasurements = telemetryItem[strBaseData].measurements || {};\r\n }\r\n else {\r\n if (telemetryItem[strBaseData]) {\r\n EnvelopeCreator.extractPropsAndMeasurements(telemetryItem[strBaseData], customProperties, customMeasurements);\r\n }\r\n }\r\n // Extract root level properties from part C telemetryItem.data\r\n EnvelopeCreator.extractPropsAndMeasurements(telemetryItem.data, customProperties, customMeasurements);\r\n var eventName = telemetryItem[strBaseData].name;\r\n var eventData = new Event(logger, eventName, customProperties, customMeasurements);\r\n var data = new Data(Event.dataType, eventData);\r\n return EnvelopeCreator.createEnvelope(logger, Event.envelopeType, telemetryItem, data);\r\n };\r\n EventEnvelopeCreator.EventEnvelopeCreator = new EventEnvelopeCreator();\r\n return EventEnvelopeCreator;\r\n}(EnvelopeCreator));\r\nexport { EventEnvelopeCreator };\r\nvar ExceptionEnvelopeCreator = /** @class */ (function (_super) {\r\n __extends(ExceptionEnvelopeCreator, _super);\r\n function ExceptionEnvelopeCreator() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n ExceptionEnvelopeCreator.prototype.Create = function (logger, telemetryItem) {\r\n _super.prototype.Init.call(this, logger, telemetryItem);\r\n // Extract root level properties from part C telemetryItem.data\r\n var customMeasurements = telemetryItem[strBaseData].measurements || {};\r\n var customProperties = telemetryItem[strBaseData][strProperties] || {};\r\n EnvelopeCreator.extractPropsAndMeasurements(telemetryItem.data, customProperties, customMeasurements);\r\n var bd = telemetryItem[strBaseData];\r\n var exData = Exception.CreateFromInterface(logger, bd, customProperties, customMeasurements);\r\n var data = new Data(Exception.dataType, exData);\r\n return EnvelopeCreator.createEnvelope(logger, Exception.envelopeType, telemetryItem, data);\r\n };\r\n ExceptionEnvelopeCreator.ExceptionEnvelopeCreator = new ExceptionEnvelopeCreator();\r\n return ExceptionEnvelopeCreator;\r\n}(EnvelopeCreator));\r\nexport { ExceptionEnvelopeCreator };\r\nvar MetricEnvelopeCreator = /** @class */ (function (_super) {\r\n __extends(MetricEnvelopeCreator, _super);\r\n function MetricEnvelopeCreator() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n MetricEnvelopeCreator.prototype.Create = function (logger, telemetryItem) {\r\n _super.prototype.Init.call(this, logger, telemetryItem);\r\n var baseData = telemetryItem[strBaseData];\r\n var props = baseData[strProperties] || {};\r\n var measurements = baseData.measurements || {};\r\n EnvelopeCreator.extractPropsAndMeasurements(telemetryItem.data, props, measurements);\r\n var baseMetricData = new Metric(logger, baseData.name, baseData.average, baseData.sampleCount, baseData.min, baseData.max, props, measurements);\r\n var data = new Data(Metric.dataType, baseMetricData);\r\n return EnvelopeCreator.createEnvelope(logger, Metric.envelopeType, telemetryItem, data);\r\n };\r\n MetricEnvelopeCreator.MetricEnvelopeCreator = new MetricEnvelopeCreator();\r\n return MetricEnvelopeCreator;\r\n}(EnvelopeCreator));\r\nexport { MetricEnvelopeCreator };\r\nvar PageViewEnvelopeCreator = /** @class */ (function (_super) {\r\n __extends(PageViewEnvelopeCreator, _super);\r\n function PageViewEnvelopeCreator() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n PageViewEnvelopeCreator.prototype.Create = function (logger, telemetryItem) {\r\n _super.prototype.Init.call(this, logger, telemetryItem);\r\n // Since duration is not part of the domain properties in Common Schema, extract it from part C\r\n var strDuration = \"duration\";\r\n var duration;\r\n var baseData = telemetryItem[strBaseData];\r\n if (!isNullOrUndefined(baseData) &&\r\n !isNullOrUndefined(baseData[strProperties]) &&\r\n !isNullOrUndefined(baseData[strProperties][strDuration])) {\r\n duration = baseData[strProperties][strDuration];\r\n delete baseData[strProperties][strDuration];\r\n }\r\n else if (!isNullOrUndefined(telemetryItem.data) &&\r\n !isNullOrUndefined(telemetryItem.data[strDuration])) {\r\n duration = telemetryItem.data[strDuration];\r\n delete telemetryItem.data[strDuration];\r\n }\r\n var bd = telemetryItem[strBaseData];\r\n // special case: pageview.id is grabbed from current operation id. Analytics plugin is decoupled from properties plugin, so this is done here instead. This can be made a default telemetry intializer instead if needed to be decoupled from channel\r\n var currentContextId;\r\n if (((telemetryItem.ext || {}).trace || {}).traceID) {\r\n currentContextId = telemetryItem.ext.trace.traceID;\r\n }\r\n var id = bd.id || currentContextId;\r\n var name = bd.name;\r\n var url = bd.uri;\r\n var properties = bd[strProperties] || {};\r\n var measurements = bd.measurements || {};\r\n // refUri is a field that Breeze still does not recognize as part of Part B. For now, put it in Part C until it supports it as a domain property\r\n if (!isNullOrUndefined(bd.refUri)) {\r\n properties[\"refUri\"] = bd.refUri;\r\n }\r\n // pageType is a field that Breeze still does not recognize as part of Part B. For now, put it in Part C until it supports it as a domain property\r\n if (!isNullOrUndefined(bd.pageType)) {\r\n properties[\"pageType\"] = bd.pageType;\r\n }\r\n // isLoggedIn is a field that Breeze still does not recognize as part of Part B. For now, put it in Part C until it supports it as a domain property\r\n if (!isNullOrUndefined(bd.isLoggedIn)) {\r\n properties[\"isLoggedIn\"] = bd.isLoggedIn.toString();\r\n }\r\n // pageTags is a field that Breeze still does not recognize as part of Part B. For now, put it in Part C until it supports it as a domain property\r\n if (!isNullOrUndefined(bd[strProperties])) {\r\n var pageTags = bd[strProperties];\r\n objForEachKey(pageTags, function (key, value) {\r\n properties[key] = value;\r\n });\r\n }\r\n EnvelopeCreator.extractPropsAndMeasurements(telemetryItem.data, properties, measurements);\r\n var pageViewData = new PageView(logger, name, url, duration, properties, measurements, id);\r\n var data = new Data(PageView.dataType, pageViewData);\r\n return EnvelopeCreator.createEnvelope(logger, PageView.envelopeType, telemetryItem, data);\r\n };\r\n PageViewEnvelopeCreator.PageViewEnvelopeCreator = new PageViewEnvelopeCreator();\r\n return PageViewEnvelopeCreator;\r\n}(EnvelopeCreator));\r\nexport { PageViewEnvelopeCreator };\r\nvar PageViewPerformanceEnvelopeCreator = /** @class */ (function (_super) {\r\n __extends(PageViewPerformanceEnvelopeCreator, _super);\r\n function PageViewPerformanceEnvelopeCreator() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n PageViewPerformanceEnvelopeCreator.prototype.Create = function (logger, telemetryItem) {\r\n _super.prototype.Init.call(this, logger, telemetryItem);\r\n var bd = telemetryItem[strBaseData];\r\n var name = bd.name;\r\n var url = bd.uri || bd.url;\r\n var properties = bd[strProperties] || {};\r\n var measurements = bd.measurements || {};\r\n EnvelopeCreator.extractPropsAndMeasurements(telemetryItem.data, properties, measurements);\r\n var baseData = new PageViewPerformance(logger, name, url, undefined, properties, measurements, bd);\r\n var data = new Data(PageViewPerformance.dataType, baseData);\r\n return EnvelopeCreator.createEnvelope(logger, PageViewPerformance.envelopeType, telemetryItem, data);\r\n };\r\n PageViewPerformanceEnvelopeCreator.PageViewPerformanceEnvelopeCreator = new PageViewPerformanceEnvelopeCreator();\r\n return PageViewPerformanceEnvelopeCreator;\r\n}(EnvelopeCreator));\r\nexport { PageViewPerformanceEnvelopeCreator };\r\nvar TraceEnvelopeCreator = /** @class */ (function (_super) {\r\n __extends(TraceEnvelopeCreator, _super);\r\n function TraceEnvelopeCreator() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n TraceEnvelopeCreator.prototype.Create = function (logger, telemetryItem) {\r\n _super.prototype.Init.call(this, logger, telemetryItem);\r\n var message = telemetryItem[strBaseData].message;\r\n var severityLevel = telemetryItem[strBaseData].severityLevel;\r\n var props = telemetryItem[strBaseData][strProperties] || {};\r\n var measurements = telemetryItem[strBaseData].measurements || {};\r\n EnvelopeCreator.extractPropsAndMeasurements(telemetryItem.data, props, measurements);\r\n var baseData = new Trace(logger, message, severityLevel, props, measurements);\r\n var data = new Data(Trace.dataType, baseData);\r\n return EnvelopeCreator.createEnvelope(logger, Trace.envelopeType, telemetryItem, data);\r\n };\r\n TraceEnvelopeCreator.TraceEnvelopeCreator = new TraceEnvelopeCreator();\r\n return TraceEnvelopeCreator;\r\n}(EnvelopeCreator));\r\nexport { TraceEnvelopeCreator };\r\n//# sourceMappingURL=EnvelopeCreator.js.map","/*!\n * Application Insights JavaScript SDK - Channel, 2.5.11\n * Copyright (c) Microsoft and contributors. All rights reserved.\n */\nimport { Util, FieldType } from '@microsoft/applicationinsights-common';\r\nimport { LoggingSeverity, _InternalMessageId, CoreUtils, getJSON, objForEachKey } from '@microsoft/applicationinsights-core-js';\r\nimport dynamicProto from '@microsoft/dynamicproto-js';\r\nvar Serializer = /** @class */ (function () {\r\n function Serializer(logger) {\r\n dynamicProto(Serializer, this, function (_self) {\r\n /**\r\n * Serializes the current object to a JSON string.\r\n */\r\n _self.serialize = function (input) {\r\n var output = _serializeObject(input, \"root\");\r\n try {\r\n return getJSON().stringify(output);\r\n }\r\n catch (e) {\r\n // if serialization fails return an empty string\r\n logger.throwInternal(LoggingSeverity.CRITICAL, _InternalMessageId.CannotSerializeObject, (e && CoreUtils.isFunction(e.toString)) ? e.toString() : \"Error serializing object\", null, true);\r\n }\r\n };\r\n function _serializeObject(source, name) {\r\n var circularReferenceCheck = \"__aiCircularRefCheck\";\r\n var output = {};\r\n if (!source) {\r\n logger.throwInternal(LoggingSeverity.CRITICAL, _InternalMessageId.CannotSerializeObject, \"cannot serialize object because it is null or undefined\", { name: name }, true);\r\n return output;\r\n }\r\n if (source[circularReferenceCheck]) {\r\n logger.throwInternal(LoggingSeverity.WARNING, _InternalMessageId.CircularReferenceDetected, \"Circular reference detected while serializing object\", { name: name }, true);\r\n return output;\r\n }\r\n if (!source.aiDataContract) {\r\n // special case for measurements/properties/tags\r\n if (name === \"measurements\") {\r\n output = _serializeStringMap(source, \"number\", name);\r\n }\r\n else if (name === \"properties\") {\r\n output = _serializeStringMap(source, \"string\", name);\r\n }\r\n else if (name === \"tags\") {\r\n output = _serializeStringMap(source, \"string\", name);\r\n }\r\n else if (Util.isArray(source)) {\r\n output = _serializeArray(source, name);\r\n }\r\n else {\r\n logger.throwInternal(LoggingSeverity.WARNING, _InternalMessageId.CannotSerializeObjectNonSerializable, \"Attempting to serialize an object which does not implement ISerializable\", { name: name }, true);\r\n try {\r\n // verify that the object can be stringified\r\n getJSON().stringify(source);\r\n output = source;\r\n }\r\n catch (e) {\r\n // if serialization fails return an empty string\r\n logger.throwInternal(LoggingSeverity.CRITICAL, _InternalMessageId.CannotSerializeObject, (e && CoreUtils.isFunction(e.toString)) ? e.toString() : \"Error serializing object\", null, true);\r\n }\r\n }\r\n return output;\r\n }\r\n source[circularReferenceCheck] = true;\r\n objForEachKey(source.aiDataContract, function (field, contract) {\r\n var isRequired = (CoreUtils.isFunction(contract)) ? (contract() & FieldType.Required) : (contract & FieldType.Required);\r\n var isHidden = (CoreUtils.isFunction(contract)) ? (contract() & FieldType.Hidden) : (contract & FieldType.Hidden);\r\n var isArray = contract & FieldType.Array;\r\n var isPresent = source[field] !== undefined;\r\n var isObject = CoreUtils.isObject(source[field]) && source[field] !== null;\r\n if (isRequired && !isPresent && !isArray) {\r\n logger.throwInternal(LoggingSeverity.CRITICAL, _InternalMessageId.MissingRequiredFieldSpecification, \"Missing required field specification. The field is required but not present on source\", { field: field, name: name });\r\n // If not in debug mode, continue and hope the error is permissible\r\n }\r\n else if (!isHidden) {\r\n var value = void 0;\r\n if (isObject) {\r\n if (isArray) {\r\n // special case; recurse on each object in the source array\r\n value = _serializeArray(source[field], field);\r\n }\r\n else {\r\n // recurse on the source object in this field\r\n value = _serializeObject(source[field], field);\r\n }\r\n }\r\n else {\r\n // assign the source field to the output even if undefined or required\r\n value = source[field];\r\n }\r\n // only emit this field if the value is defined\r\n if (value !== undefined) {\r\n output[field] = value;\r\n }\r\n }\r\n });\r\n delete source[circularReferenceCheck];\r\n return output;\r\n }\r\n function _serializeArray(sources, name) {\r\n var output;\r\n if (!!sources) {\r\n if (!Util.isArray(sources)) {\r\n logger.throwInternal(LoggingSeverity.CRITICAL, _InternalMessageId.ItemNotInArray, \"This field was specified as an array in the contract but the item is not an array.\\r\\n\", { name: name }, true);\r\n }\r\n else {\r\n output = [];\r\n for (var i = 0; i < sources.length; i++) {\r\n var source = sources[i];\r\n var item = _serializeObject(source, name + \"[\" + i + \"]\");\r\n output.push(item);\r\n }\r\n }\r\n }\r\n return output;\r\n }\r\n function _serializeStringMap(map, expectedType, name) {\r\n var output;\r\n if (map) {\r\n output = {};\r\n objForEachKey(map, function (field, value) {\r\n if (expectedType === \"string\") {\r\n if (value === undefined) {\r\n output[field] = \"undefined\";\r\n }\r\n else if (value === null) {\r\n output[field] = \"null\";\r\n }\r\n else if (!value.toString) {\r\n output[field] = \"invalid field: toString() is not defined.\";\r\n }\r\n else {\r\n output[field] = value.toString();\r\n }\r\n }\r\n else if (expectedType === \"number\") {\r\n if (value === undefined) {\r\n output[field] = \"undefined\";\r\n }\r\n else if (value === null) {\r\n output[field] = \"null\";\r\n }\r\n else {\r\n var num = parseFloat(value);\r\n if (isNaN(num)) {\r\n output[field] = \"NaN\";\r\n }\r\n else {\r\n output[field] = num;\r\n }\r\n }\r\n }\r\n else {\r\n output[field] = \"invalid field: \" + name + \" is of unknown type.\";\r\n logger.throwInternal(LoggingSeverity.CRITICAL, output[field], null, true);\r\n }\r\n });\r\n }\r\n return output;\r\n }\r\n });\r\n }\r\n// Removed Stub for Serializer.prototype.serialize.\r\n return Serializer;\r\n}());\r\nexport { Serializer };\r\n//# sourceMappingURL=Serializer.js.map","/*!\n * Application Insights JavaScript SDK - Channel, 2.5.11\n * Copyright (c) Microsoft and contributors. All rights reserved.\n */\nimport { CoreUtils, EventHelper, getWindow, getDocument, getNavigator } from '@microsoft/applicationinsights-core-js';\r\nimport dynamicProto from '@microsoft/dynamicproto-js';\r\n/**\r\n * @description Monitors browser for offline events\r\n * @export default - Offline: Static instance of OfflineListener\r\n * @class OfflineListener\r\n */\r\nvar OfflineListener = /** @class */ (function () {\r\n function OfflineListener() {\r\n var _window = getWindow();\r\n var _document = getDocument();\r\n var isListening = false;\r\n var _onlineStatus = true;\r\n dynamicProto(OfflineListener, this, function (_self) {\r\n try {\r\n if (_window) {\r\n if (EventHelper.Attach(_window, 'online', _setOnline)) {\r\n EventHelper.Attach(_window, 'offline', _setOffline);\r\n isListening = true;\r\n }\r\n }\r\n if (_document) {\r\n // Also attach to the document.body or document\r\n var target = _document.body || _document;\r\n if (!CoreUtils.isUndefined(target.ononline)) {\r\n target.ononline = _setOnline;\r\n target.onoffline = _setOffline;\r\n isListening = true;\r\n }\r\n }\r\n }\r\n catch (e) {\r\n // this makes react-native less angry\r\n isListening = false;\r\n }\r\n _self.isListening = isListening;\r\n _self.isOnline = function () {\r\n var result = true;\r\n var _navigator = getNavigator();\r\n if (isListening) {\r\n result = _onlineStatus;\r\n }\r\n else if (_navigator && !CoreUtils.isNullOrUndefined(_navigator.onLine)) {\r\n result = _navigator.onLine;\r\n }\r\n return result;\r\n };\r\n _self.isOffline = function () {\r\n return !_self.isOnline();\r\n };\r\n function _setOnline() {\r\n _onlineStatus = true;\r\n }\r\n function _setOffline() {\r\n _onlineStatus = false;\r\n }\r\n });\r\n }\r\n// Removed Stub for OfflineListener.prototype.isOnline.\r\n// Removed Stub for OfflineListener.prototype.isOffline.\r\n OfflineListener.Offline = new OfflineListener;\r\n return OfflineListener;\r\n}());\r\nexport { OfflineListener };\r\nexport var Offline = OfflineListener.Offline;\r\n//# sourceMappingURL=Offline.js.map","/*!\n * Application Insights JavaScript SDK - Channel, 2.5.11\n * Copyright (c) Microsoft and contributors. All rights reserved.\n */\n\r\n\r\nvar HashCodeScoreGenerator = /** @class */ (function () {\r\n function HashCodeScoreGenerator() {\r\n }\r\n HashCodeScoreGenerator.prototype.getHashCodeScore = function (key) {\r\n var score = this.getHashCode(key) / HashCodeScoreGenerator.INT_MAX_VALUE;\r\n return score * 100;\r\n };\r\n HashCodeScoreGenerator.prototype.getHashCode = function (input) {\r\n if (input === \"\") {\r\n return 0;\r\n }\r\n while (input.length < HashCodeScoreGenerator.MIN_INPUT_LENGTH) {\r\n input = input.concat(input);\r\n }\r\n // 5381 is a magic number: http://stackoverflow.com/questions/10696223/reason-for-5381-number-in-djb-hash-function\r\n var hash = 5381;\r\n for (var i = 0; i < input.length; ++i) {\r\n hash = ((hash << 5) + hash) + input.charCodeAt(i);\r\n // 'hash' is of number type which means 53 bit integer (http://www.ecma-international.org/ecma-262/6.0/#sec-ecmascript-language-types-number-type)\r\n // 'hash & hash' will keep it 32 bit integer - just to make it clearer what the result is.\r\n hash = hash & hash;\r\n }\r\n return Math.abs(hash);\r\n };\r\n // We're using 32 bit math, hence max value is (2^31 - 1)\r\n HashCodeScoreGenerator.INT_MAX_VALUE = 2147483647;\r\n // (Magic number) DJB algorithm can't work on shorter strings (results in poor distribution\r\n HashCodeScoreGenerator.MIN_INPUT_LENGTH = 8;\r\n return HashCodeScoreGenerator;\r\n}());\r\nexport { HashCodeScoreGenerator };\r\n//# sourceMappingURL=HashCodeScoreGenerator.js.map","/*!\n * Application Insights JavaScript SDK - Channel, 2.5.11\n * Copyright (c) Microsoft and contributors. All rights reserved.\n */\n\r\n\r\nimport { HashCodeScoreGenerator } from './HashCodeScoreGenerator';\r\nimport { ContextTagKeys } from '@microsoft/applicationinsights-common';\r\nvar SamplingScoreGenerator = /** @class */ (function () {\r\n function SamplingScoreGenerator() {\r\n this.hashCodeGeneragor = new HashCodeScoreGenerator();\r\n this.keys = new ContextTagKeys();\r\n }\r\n SamplingScoreGenerator.prototype.getSamplingScore = function (item) {\r\n var score = 0;\r\n if (item.tags && item.tags[this.keys.userId]) {\r\n score = this.hashCodeGeneragor.getHashCodeScore(item.tags[this.keys.userId]);\r\n }\r\n else if (item.ext && item.ext.user && item.ext.user.id) {\r\n score = this.hashCodeGeneragor.getHashCodeScore(item.ext.user.id);\r\n }\r\n else if (item.tags && item.tags[this.keys.operationId]) {\r\n score = this.hashCodeGeneragor.getHashCodeScore(item.tags[this.keys.operationId]);\r\n }\r\n else if (item.ext && item.ext.telemetryTrace && item.ext.telemetryTrace.traceID) {\r\n score = this.hashCodeGeneragor.getHashCodeScore(item.ext.telemetryTrace.traceID);\r\n }\r\n else {\r\n // tslint:disable-next-line:insecure-random\r\n score = (Math.random() * 100);\r\n }\r\n return score;\r\n };\r\n return SamplingScoreGenerator;\r\n}());\r\nexport { SamplingScoreGenerator };\r\n//# sourceMappingURL=SamplingScoreGenerator.js.map","/*!\n * Application Insights JavaScript SDK - Channel, 2.5.11\n * Copyright (c) Microsoft and contributors. All rights reserved.\n */\n\r\n\r\nimport { SamplingScoreGenerator } from './SamplingScoreGenerators/SamplingScoreGenerator';\r\nimport { Metric } from '@microsoft/applicationinsights-common';\r\nimport { _InternalMessageId, LoggingSeverity, DiagnosticLogger, CoreUtils } from '@microsoft/applicationinsights-core-js';\r\nvar Sample = /** @class */ (function () {\r\n function Sample(sampleRate, logger) {\r\n // We're using 32 bit math, hence max value is (2^31 - 1)\r\n this.INT_MAX_VALUE = 2147483647;\r\n this._logger = CoreUtils.isNullOrUndefined(logger) ? new DiagnosticLogger() : logger;\r\n if (sampleRate > 100 || sampleRate < 0) {\r\n this._logger.throwInternal(LoggingSeverity.WARNING, _InternalMessageId.SampleRateOutOfRange, \"Sampling rate is out of range (0..100). Sampling will be disabled, you may be sending too much data which may affect your AI service level.\", { samplingRate: sampleRate }, true);\r\n this.sampleRate = 100;\r\n }\r\n this.sampleRate = sampleRate;\r\n this.samplingScoreGenerator = new SamplingScoreGenerator();\r\n }\r\n /**\r\n * Determines if an envelope is sampled in (i.e. will be sent) or not (i.e. will be dropped).\r\n */\r\n Sample.prototype.isSampledIn = function (envelope) {\r\n var samplingPercentage = this.sampleRate; // 0 - 100\r\n var isSampledIn = false;\r\n if (samplingPercentage === null || samplingPercentage === undefined || samplingPercentage >= 100) {\r\n return true;\r\n }\r\n else if (envelope.baseType === Metric.dataType) {\r\n // exclude MetricData telemetry from sampling\r\n return true;\r\n }\r\n isSampledIn = this.samplingScoreGenerator.getSamplingScore(envelope) < samplingPercentage;\r\n return isSampledIn;\r\n };\r\n return Sample;\r\n}());\r\nexport { Sample };\r\n//# sourceMappingURL=Sample.js.map","/*!\n * Application Insights JavaScript SDK - Channel, 2.5.11\n * Copyright (c) Microsoft and contributors. All rights reserved.\n */\nimport { SessionStorageSendBuffer, ArraySendBuffer } from './SendBuffer';\r\nimport { DependencyEnvelopeCreator, EventEnvelopeCreator, ExceptionEnvelopeCreator, MetricEnvelopeCreator, PageViewEnvelopeCreator, PageViewPerformanceEnvelopeCreator, TraceEnvelopeCreator } from './EnvelopeCreator';\r\nimport { Serializer } from './Serializer'; // todo move to channel\r\nimport { DisabledPropertyName, RequestHeaders, Util, PageView, Event, Trace, Exception, Metric, PageViewPerformance, RemoteDependencyData, ProcessLegacy, BreezeChannelIdentifier, SampleRate } from '@microsoft/applicationinsights-common';\r\nimport { CoreUtils, _InternalMessageId, LoggingSeverity, getWindow, getNavigator, getJSON, BaseTelemetryPlugin, getGlobalInst, objForEachKey } from '@microsoft/applicationinsights-core-js';\r\nimport { Offline } from './Offline';\r\nimport { Sample } from './TelemetryProcessors/Sample';\r\nimport dynamicProto from '@microsoft/dynamicproto-js';\r\nfunction _getResponseText(xhr) {\r\n try {\r\n return xhr.responseText;\r\n }\r\n catch (e) {\r\n // Best effort, as XHR may throw while XDR wont so just ignore\r\n }\r\n return null;\r\n}\r\nvar Sender = /** @class */ (function (_super) {\r\n __extends(Sender, _super);\r\n function Sender() {\r\n var _this = _super.call(this) || this;\r\n _this.priority = 1001;\r\n _this.identifier = BreezeChannelIdentifier;\r\n /**\r\n * Whether XMLHttpRequest object is supported. Older version of IE (8,9) do not support it.\r\n */\r\n _this._XMLHttpRequestSupported = false;\r\n /**\r\n * How many times in a row a retryable error condition has occurred.\r\n */\r\n var _consecutiveErrors;\r\n /**\r\n * The time to retry at in milliseconds from 1970/01/01 (this makes the timer calculation easy).\r\n */\r\n var _retryAt;\r\n /**\r\n * The time of the last send operation.\r\n */\r\n var _lastSend;\r\n /**\r\n * Handle to the timer for delayed sending of batches of data.\r\n */\r\n var _timeoutHandle;\r\n var _serializer;\r\n dynamicProto(Sender, _this, function (_self, _base) {\r\n function _notImplemented() {\r\n throw new Error(\"Method not implemented.\");\r\n }\r\n _self.pause = _notImplemented;\r\n _self.resume = _notImplemented;\r\n _self.flush = function () {\r\n try {\r\n _self.triggerSend(true, null, 1 /* ManualFlush */);\r\n }\r\n catch (e) {\r\n _self.diagLog().throwInternal(LoggingSeverity.CRITICAL, _InternalMessageId.FlushFailed, \"flush failed, telemetry will not be collected: \" + Util.getExceptionName(e), { exception: Util.dump(e) });\r\n }\r\n };\r\n _self.onunloadFlush = function () {\r\n if ((_self._senderConfig.onunloadDisableBeacon() === false || _self._senderConfig.isBeaconApiDisabled() === false) && Util.IsBeaconApiSupported()) {\r\n try {\r\n _self.triggerSend(true, _beaconSender, 2 /* Unload */);\r\n }\r\n catch (e) {\r\n _self.diagLog().throwInternal(LoggingSeverity.CRITICAL, _InternalMessageId.FailedToSendQueuedTelemetry, \"failed to flush with beacon sender on page unload, telemetry will not be collected: \" + Util.getExceptionName(e), { exception: Util.dump(e) });\r\n }\r\n }\r\n else {\r\n _self.flush();\r\n }\r\n };\r\n _self.teardown = _notImplemented;\r\n _self.initialize = function (config, core, extensions, pluginChain) {\r\n _base.initialize(config, core, extensions, pluginChain);\r\n var ctx = _self._getTelCtx();\r\n var identifier = _self.identifier;\r\n _serializer = new Serializer(core.logger);\r\n _consecutiveErrors = 0;\r\n _retryAt = null;\r\n _lastSend = 0;\r\n _self._sender = null;\r\n var defaultConfig = Sender._getDefaultAppInsightsChannelConfig();\r\n _self._senderConfig = Sender._getEmptyAppInsightsChannelConfig();\r\n objForEachKey(defaultConfig, function (field, value) {\r\n _self._senderConfig[field] = function () { return ctx.getConfig(identifier, field, value()); };\r\n });\r\n _self._buffer = (_self._senderConfig.enableSessionStorageBuffer() && Util.canUseSessionStorage())\r\n ? new SessionStorageSendBuffer(_self.diagLog(), _self._senderConfig) : new ArraySendBuffer(_self._senderConfig);\r\n _self._sample = new Sample(_self._senderConfig.samplingPercentage(), _self.diagLog());\r\n if (!_validateInstrumentationKey(config)) {\r\n _self.diagLog().throwInternal(LoggingSeverity.CRITICAL, _InternalMessageId.InvalidInstrumentationKey, \"Invalid Instrumentation key \" + config.instrumentationKey);\r\n }\r\n if (!_self._senderConfig.isBeaconApiDisabled() && Util.IsBeaconApiSupported()) {\r\n _self._sender = _beaconSender;\r\n }\r\n else {\r\n if (typeof XMLHttpRequest !== undefined) {\r\n var xhr = getGlobalInst(\"XMLHttpRequest\");\r\n if (xhr) {\r\n var testXhr = new xhr();\r\n if (\"withCredentials\" in testXhr) {\r\n _self._sender = _xhrSender;\r\n _self._XMLHttpRequestSupported = true;\r\n }\r\n else if (typeof XDomainRequest !== undefined) {\r\n _self._sender = _xdrSender; // IE 8 and 9\r\n }\r\n }\r\n }\r\n }\r\n };\r\n _self.processTelemetry = function (telemetryItem, itemCtx) {\r\n itemCtx = _self._getTelCtx(itemCtx);\r\n try {\r\n // if master off switch is set, don't send any data\r\n if (_self._senderConfig.disableTelemetry()) {\r\n // Do not send/save data\r\n return;\r\n }\r\n // validate input\r\n if (!telemetryItem) {\r\n itemCtx.diagLog().throwInternal(LoggingSeverity.CRITICAL, _InternalMessageId.CannotSendEmptyTelemetry, \"Cannot send empty telemetry\");\r\n return;\r\n }\r\n // validate event\r\n if (telemetryItem.baseData && !telemetryItem.baseType) {\r\n itemCtx.diagLog().throwInternal(LoggingSeverity.CRITICAL, _InternalMessageId.InvalidEvent, \"Cannot send telemetry without baseData and baseType\");\r\n return;\r\n }\r\n if (!telemetryItem.baseType) {\r\n // Default\r\n telemetryItem.baseType = \"EventData\";\r\n }\r\n // ensure a sender was constructed\r\n if (!_self._sender) {\r\n itemCtx.diagLog().throwInternal(LoggingSeverity.CRITICAL, _InternalMessageId.SenderNotInitialized, \"Sender was not initialized\");\r\n return;\r\n }\r\n // check if this item should be sampled in, else add sampleRate tag\r\n if (!_isSampledIn(telemetryItem)) {\r\n // Item is sampled out, do not send it\r\n itemCtx.diagLog().throwInternal(LoggingSeverity.WARNING, _InternalMessageId.TelemetrySampledAndNotSent, \"Telemetry item was sampled out and not sent\", { SampleRate: _self._sample.sampleRate });\r\n return;\r\n }\r\n else {\r\n telemetryItem[SampleRate] = _self._sample.sampleRate;\r\n }\r\n // construct an envelope that Application Insights endpoint can understand\r\n var aiEnvelope_1 = Sender.constructEnvelope(telemetryItem, _self._senderConfig.instrumentationKey(), itemCtx.diagLog());\r\n if (!aiEnvelope_1) {\r\n itemCtx.diagLog().throwInternal(LoggingSeverity.CRITICAL, _InternalMessageId.CreateEnvelopeError, \"Unable to create an AppInsights envelope\");\r\n return;\r\n }\r\n var doNotSendItem_1 = false;\r\n // this is for running in legacy mode, where customer may already have a custom initializer present\r\n if (telemetryItem.tags && telemetryItem.tags[ProcessLegacy]) {\r\n CoreUtils.arrForEach(telemetryItem.tags[ProcessLegacy], function (callBack) {\r\n try {\r\n if (callBack && callBack(aiEnvelope_1) === false) {\r\n doNotSendItem_1 = true;\r\n itemCtx.diagLog().warnToConsole(\"Telemetry processor check returns false\");\r\n }\r\n }\r\n catch (e) {\r\n // log error but dont stop executing rest of the telemetry initializers\r\n // doNotSendItem = true;\r\n itemCtx.diagLog().throwInternal(LoggingSeverity.CRITICAL, _InternalMessageId.TelemetryInitializerFailed, \"One of telemetry initializers failed, telemetry item will not be sent: \" + Util.getExceptionName(e), { exception: Util.dump(e) }, true);\r\n }\r\n });\r\n delete telemetryItem.tags[ProcessLegacy];\r\n }\r\n if (doNotSendItem_1) {\r\n return; // do not send, no need to execute next plugin\r\n }\r\n // check if the incoming payload is too large, truncate if necessary\r\n var payload = _serializer.serialize(aiEnvelope_1);\r\n // flush if we would exceed the max-size limit by adding this item\r\n var bufferPayload = _self._buffer.getItems();\r\n var batch = _self._buffer.batchPayloads(bufferPayload);\r\n if (batch && (batch.length + payload.length > _self._senderConfig.maxBatchSizeInBytes())) {\r\n _self.triggerSend(true, null, 10 /* MaxBatchSize */);\r\n }\r\n // enqueue the payload\r\n _self._buffer.enqueue(payload);\r\n // ensure an invocation timeout is set\r\n _setupTimer();\r\n }\r\n catch (e) {\r\n itemCtx.diagLog().throwInternal(LoggingSeverity.WARNING, _InternalMessageId.FailedAddingTelemetryToBuffer, \"Failed adding telemetry to the sender's buffer, some telemetry will be lost: \" + Util.getExceptionName(e), { exception: Util.dump(e) });\r\n }\r\n // hand off the telemetry item to the next plugin\r\n _self.processNext(telemetryItem, itemCtx);\r\n };\r\n /**\r\n * xhr state changes\r\n */\r\n _self._xhrReadyStateChange = function (xhr, payload, countOfItemsInPayload) {\r\n if (xhr.readyState === 4) {\r\n var response = null;\r\n if (!_self._appId) {\r\n response = _parseResponse(_getResponseText(xhr) || xhr.response);\r\n if (response && response.appId) {\r\n _self._appId = response.appId;\r\n }\r\n }\r\n if ((xhr.status < 200 || xhr.status >= 300) && xhr.status !== 0) {\r\n if (!_self._senderConfig.isRetryDisabled() && _isRetriable(xhr.status)) {\r\n _resendPayload(payload);\r\n _self.diagLog().throwInternal(LoggingSeverity.WARNING, _InternalMessageId.TransmissionFailed, \". \" +\r\n \"Response code \" + xhr.status + \". Will retry to send \" + payload.length + \" items.\");\r\n }\r\n else {\r\n _self._onError(payload, _formatErrorMessageXhr(xhr));\r\n }\r\n }\r\n else if (Offline.isOffline()) {\r\n // Note: Don't check for status == 0, since adblock gives this code\r\n if (!_self._senderConfig.isRetryDisabled()) {\r\n var offlineBackOffMultiplier = 10; // arbritrary number\r\n _resendPayload(payload, offlineBackOffMultiplier);\r\n _self.diagLog().throwInternal(LoggingSeverity.WARNING, _InternalMessageId.TransmissionFailed, \". Offline - Response Code: \" + xhr.status + \". Offline status: \" + Offline.isOffline() + \". Will retry to send \" + payload.length + \" items.\");\r\n }\r\n }\r\n else {\r\n if (xhr.status === 206) {\r\n if (!response) {\r\n response = _parseResponse(_getResponseText(xhr) || xhr.response);\r\n }\r\n if (response && !_self._senderConfig.isRetryDisabled()) {\r\n _self._onPartialSuccess(payload, response);\r\n }\r\n else {\r\n _self._onError(payload, _formatErrorMessageXhr(xhr));\r\n }\r\n }\r\n else {\r\n _consecutiveErrors = 0;\r\n _self._onSuccess(payload, countOfItemsInPayload);\r\n }\r\n }\r\n }\r\n };\r\n /**\r\n * Immediately send buffered data\r\n * @param async {boolean} - Indicates if the events should be sent asynchronously\r\n * @param forcedSender {SenderFunction} - Indicates the forcedSender, undefined if not passed\r\n */\r\n _self.triggerSend = function (async, forcedSender, sendReason) {\r\n if (async === void 0) { async = true; }\r\n try {\r\n // Send data only if disableTelemetry is false\r\n if (!_self._senderConfig.disableTelemetry()) {\r\n if (_self._buffer.count() > 0) {\r\n var payload = _self._buffer.getItems();\r\n _notifySendRequest(sendReason || 0 /* Undefined */, async);\r\n // invoke send\r\n if (forcedSender) {\r\n forcedSender.call(_this, payload, async);\r\n }\r\n else {\r\n _self._sender(payload, async);\r\n }\r\n }\r\n // update lastSend time to enable throttling\r\n _lastSend = +new Date;\r\n }\r\n else {\r\n _self._buffer.clear();\r\n }\r\n clearTimeout(_timeoutHandle);\r\n _timeoutHandle = null;\r\n _retryAt = null;\r\n }\r\n catch (e) {\r\n /* Ignore this error for IE under v10 */\r\n var ieVer = Util.getIEVersion();\r\n if (!ieVer || ieVer > 9) {\r\n _self.diagLog().throwInternal(LoggingSeverity.CRITICAL, _InternalMessageId.TransmissionFailed, \"Telemetry transmission failed, some telemetry will be lost: \" + Util.getExceptionName(e), { exception: Util.dump(e) });\r\n }\r\n }\r\n };\r\n /**\r\n * error handler\r\n */\r\n _self._onError = function (payload, message, event) {\r\n _self.diagLog().throwInternal(LoggingSeverity.WARNING, _InternalMessageId.OnError, \"Failed to send telemetry.\", { message: message });\r\n _self._buffer.clearSent(payload);\r\n };\r\n /**\r\n * partial success handler\r\n */\r\n _self._onPartialSuccess = function (payload, results) {\r\n var failed = [];\r\n var retry = [];\r\n // Iterate through the reversed array of errors so that splicing doesn't have invalid indexes after the first item.\r\n var errors = results.errors.reverse();\r\n for (var _i = 0, errors_1 = errors; _i < errors_1.length; _i++) {\r\n var error = errors_1[_i];\r\n var extracted = payload.splice(error.index, 1)[0];\r\n if (_isRetriable(error.statusCode)) {\r\n retry.push(extracted);\r\n }\r\n else {\r\n // All other errors, including: 402 (Monthly quota exceeded) and 439 (Too many requests and refresh cache).\r\n failed.push(extracted);\r\n }\r\n }\r\n if (payload.length > 0) {\r\n _self._onSuccess(payload, results.itemsAccepted);\r\n }\r\n if (failed.length > 0) {\r\n _self._onError(failed, _formatErrorMessageXhr(null, ['partial success', results.itemsAccepted, 'of', results.itemsReceived].join(' ')));\r\n }\r\n if (retry.length > 0) {\r\n _resendPayload(retry);\r\n _self.diagLog().throwInternal(LoggingSeverity.WARNING, _InternalMessageId.TransmissionFailed, \"Partial success. \" +\r\n \"Delivered: \" + payload.length + \", Failed: \" + failed.length +\r\n \". Will retry to send \" + retry.length + \" our of \" + results.itemsReceived + \" items\");\r\n }\r\n };\r\n /**\r\n * success handler\r\n */\r\n _self._onSuccess = function (payload, countOfItemsInPayload) {\r\n _self._buffer.clearSent(payload);\r\n };\r\n /**\r\n * xdr state changes\r\n */\r\n _self._xdrOnLoad = function (xdr, payload) {\r\n var responseText = _getResponseText(xdr);\r\n if (xdr && (responseText + \"\" === \"200\" || responseText === \"\")) {\r\n _consecutiveErrors = 0;\r\n _self._onSuccess(payload, 0);\r\n }\r\n else {\r\n var results = _parseResponse(responseText);\r\n if (results && results.itemsReceived && results.itemsReceived > results.itemsAccepted\r\n && !_self._senderConfig.isRetryDisabled()) {\r\n _self._onPartialSuccess(payload, results);\r\n }\r\n else {\r\n _self._onError(payload, _formatErrorMessageXdr(xdr));\r\n }\r\n }\r\n };\r\n function _isSampledIn(envelope) {\r\n return _self._sample.isSampledIn(envelope);\r\n }\r\n /**\r\n * Send Beacon API request\r\n * @param payload {string} - The data payload to be sent.\r\n * @param isAsync {boolean} - not used\r\n * Note: Beacon API does not support custom headers and we are not able to get\r\n * appId from the backend for the correct correlation.\r\n */\r\n function _beaconSender(payload, isAsync) {\r\n var url = _self._senderConfig.endpointUrl();\r\n var batch = _self._buffer.batchPayloads(payload);\r\n // Chrome only allows CORS-safelisted values for the sendBeacon data argument\r\n // see: https://bugs.chromium.org/p/chromium/issues/detail?id=720283\r\n var plainTextBatch = new Blob([batch], { type: 'text/plain;charset=UTF-8' });\r\n // The sendBeacon method returns true if the user agent is able to successfully queue the data for transfer. Otherwise it returns false.\r\n var queued = getNavigator().sendBeacon(url, plainTextBatch);\r\n if (queued) {\r\n _self._buffer.markAsSent(payload);\r\n // no response from beaconSender, clear buffer\r\n _self._onSuccess(payload, payload.length);\r\n }\r\n else {\r\n _xhrSender(payload, true);\r\n _self.diagLog().throwInternal(LoggingSeverity.WARNING, _InternalMessageId.TransmissionFailed, \". \" + \"Failed to send telemetry with Beacon API, retried with xhrSender.\");\r\n }\r\n }\r\n /**\r\n * Send XMLHttpRequest\r\n * @param payload {string} - The data payload to be sent.\r\n * @param isAsync {boolean} - Indicates if the request should be sent asynchronously\r\n */\r\n function _xhrSender(payload, isAsync) {\r\n var xhr = new XMLHttpRequest();\r\n var endPointUrl = _self._senderConfig.endpointUrl();\r\n try {\r\n xhr[DisabledPropertyName] = true;\r\n }\r\n catch (e) {\r\n // If the environment has locked down the XMLHttpRequest (preventExtensions and/or freeze), this would\r\n // cause the request to fail and we no telemetry would be sent\r\n }\r\n xhr.open(\"POST\", endPointUrl, isAsync);\r\n xhr.setRequestHeader(\"Content-type\", \"application/json\");\r\n // append Sdk-Context request header only in case of breeze endpoint\r\n if (Util.isInternalApplicationInsightsEndpoint(endPointUrl)) {\r\n xhr.setRequestHeader(RequestHeaders.sdkContextHeader, RequestHeaders.sdkContextHeaderAppIdRequest);\r\n }\r\n xhr.onreadystatechange = function () { return _self._xhrReadyStateChange(xhr, payload, payload.length); };\r\n xhr.onerror = function (event) { return _self._onError(payload, _formatErrorMessageXhr(xhr), event); };\r\n // compose an array of payloads\r\n var batch = _self._buffer.batchPayloads(payload);\r\n xhr.send(batch);\r\n _self._buffer.markAsSent(payload);\r\n }\r\n /**\r\n * Parses the response from the backend.\r\n * @param response - XMLHttpRequest or XDomainRequest response\r\n */\r\n function _parseResponse(response) {\r\n try {\r\n if (response && response !== \"\") {\r\n var result = getJSON().parse(response);\r\n if (result && result.itemsReceived && result.itemsReceived >= result.itemsAccepted &&\r\n result.itemsReceived - result.itemsAccepted === result.errors.length) {\r\n return result;\r\n }\r\n }\r\n }\r\n catch (e) {\r\n _self.diagLog().throwInternal(LoggingSeverity.CRITICAL, _InternalMessageId.InvalidBackendResponse, \"Cannot parse the response. \" + Util.getExceptionName(e), {\r\n response: response\r\n });\r\n }\r\n return null;\r\n }\r\n /**\r\n * Resend payload. Adds payload back to the send buffer and setup a send timer (with exponential backoff).\r\n * @param payload\r\n */\r\n function _resendPayload(payload, linearFactor) {\r\n if (linearFactor === void 0) { linearFactor = 1; }\r\n if (!payload || payload.length === 0) {\r\n return;\r\n }\r\n _self._buffer.clearSent(payload);\r\n _consecutiveErrors++;\r\n for (var _i = 0, payload_1 = payload; _i < payload_1.length; _i++) {\r\n var item = payload_1[_i];\r\n _self._buffer.enqueue(item);\r\n }\r\n // setup timer\r\n _setRetryTime(linearFactor);\r\n _setupTimer();\r\n }\r\n /**\r\n * Calculates the time to wait before retrying in case of an error based on\r\n * http://en.wikipedia.org/wiki/Exponential_backoff\r\n */\r\n function _setRetryTime(linearFactor) {\r\n var SlotDelayInSeconds = 10;\r\n var delayInSeconds;\r\n if (_consecutiveErrors <= 1) {\r\n delayInSeconds = SlotDelayInSeconds;\r\n }\r\n else {\r\n var backOffSlot = (Math.pow(2, _consecutiveErrors) - 1) / 2;\r\n // tslint:disable-next-line:insecure-random\r\n var backOffDelay = Math.floor(Math.random() * backOffSlot * SlotDelayInSeconds) + 1;\r\n backOffDelay = linearFactor * backOffDelay;\r\n delayInSeconds = Math.max(Math.min(backOffDelay, 3600), SlotDelayInSeconds);\r\n }\r\n // TODO: Log the backoff time like the C# version does.\r\n var retryAfterTimeSpan = CoreUtils.dateNow() + (delayInSeconds * 1000);\r\n // TODO: Log the retry at time like the C# version does.\r\n _retryAt = retryAfterTimeSpan;\r\n }\r\n /**\r\n * Sets up the timer which triggers actually sending the data.\r\n */\r\n function _setupTimer() {\r\n if (!_timeoutHandle) {\r\n var retryInterval = _retryAt ? Math.max(0, _retryAt - CoreUtils.dateNow()) : 0;\r\n var timerValue = Math.max(_self._senderConfig.maxBatchInterval(), retryInterval);\r\n _timeoutHandle = setTimeout(function () {\r\n _self.triggerSend(true, null, 1 /* NormalSchedule */);\r\n }, timerValue);\r\n }\r\n }\r\n /**\r\n * Checks if the SDK should resend the payload after receiving this status code from the backend.\r\n * @param statusCode\r\n */\r\n function _isRetriable(statusCode) {\r\n return statusCode === 408 // Timeout\r\n || statusCode === 429 // Too many requests.\r\n || statusCode === 500 // Internal server error.\r\n || statusCode === 503; // Service unavailable.\r\n }\r\n function _formatErrorMessageXhr(xhr, message) {\r\n if (xhr) {\r\n return \"XMLHttpRequest,Status:\" + xhr.status + \",Response:\" + _getResponseText(xhr) || xhr.response || \"\";\r\n }\r\n return message;\r\n }\r\n /**\r\n * Send XDomainRequest\r\n * @param payload {string} - The data payload to be sent.\r\n * @param isAsync {boolean} - Indicates if the request should be sent asynchronously\r\n *\r\n * Note: XDomainRequest does not support sync requests. This 'isAsync' parameter is added\r\n * to maintain consistency with the xhrSender's contract\r\n * Note: XDomainRequest does not support custom headers and we are not able to get\r\n * appId from the backend for the correct correlation.\r\n */\r\n function _xdrSender(payload, isAsync) {\r\n var _window = getWindow();\r\n var xdr = new XDomainRequest();\r\n xdr.onload = function () { return _self._xdrOnLoad(xdr, payload); };\r\n xdr.onerror = function (event) { return _self._onError(payload, _formatErrorMessageXdr(xdr), event); };\r\n // XDomainRequest requires the same protocol as the hosting page.\r\n // If the protocol doesn't match, we can't send the telemetry :(.\r\n var hostingProtocol = _window && _window.location && _window.location.protocol || \"\";\r\n if (_self._senderConfig.endpointUrl().lastIndexOf(hostingProtocol, 0) !== 0) {\r\n _self.diagLog().throwInternal(LoggingSeverity.WARNING, _InternalMessageId.TransmissionFailed, \". \" +\r\n \"Cannot send XDomain request. The endpoint URL protocol doesn't match the hosting page protocol.\");\r\n _self._buffer.clear();\r\n return;\r\n }\r\n var endpointUrl = _self._senderConfig.endpointUrl().replace(/^(https?:)/, \"\");\r\n xdr.open('POST', endpointUrl);\r\n // compose an array of payloads\r\n var batch = _self._buffer.batchPayloads(payload);\r\n xdr.send(batch);\r\n _self._buffer.markAsSent(payload);\r\n }\r\n function _formatErrorMessageXdr(xdr, message) {\r\n if (xdr) {\r\n return \"XDomainRequest,Response:\" + _getResponseText(xdr) || \"\";\r\n }\r\n return message;\r\n }\r\n // Using function lookups for backward compatibility as the getNotifyMgr() did not exist until after v2.5.6\r\n function _getNotifyMgr() {\r\n var func = 'getNotifyMgr';\r\n if (_self.core[func]) {\r\n return _self.core[func]();\r\n }\r\n // using _self.core['_notificationManager'] for backward compatibility\r\n return _self.core['_notificationManager'];\r\n }\r\n function _notifySendRequest(sendRequest, isAsync) {\r\n var manager = _getNotifyMgr();\r\n if (manager && manager.eventsSendRequest) {\r\n try {\r\n manager.eventsSendRequest(sendRequest, isAsync);\r\n }\r\n catch (e) {\r\n _self.diagLog().throwInternal(LoggingSeverity.CRITICAL, _InternalMessageId.NotificationException, \"send request notification failed: \" + Util.getExceptionName(e), { exception: Util.dump(e) });\r\n }\r\n }\r\n }\r\n /**\r\n * Validate UUID Format\r\n * Specs taken from https://tools.ietf.org/html/rfc4122 and breeze repo\r\n */\r\n function _validateInstrumentationKey(config) {\r\n var disableIKeyValidationFlag = CoreUtils.isNullOrUndefined(config.disableInstrumentationKeyValidation) ? false : config.disableInstrumentationKeyValidation;\r\n if (disableIKeyValidationFlag) {\r\n return true;\r\n }\r\n var UUID_Regex = '^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$';\r\n var regexp = new RegExp(UUID_Regex);\r\n return regexp.test(config.instrumentationKey);\r\n }\r\n });\r\n return _this;\r\n }\r\n Sender.constructEnvelope = function (orig, iKey, logger) {\r\n var envelope;\r\n if (iKey !== orig.iKey && !CoreUtils.isNullOrUndefined(iKey)) {\r\n envelope = __assign({}, orig, { iKey: iKey });\r\n }\r\n else {\r\n envelope = orig;\r\n }\r\n switch (envelope.baseType) {\r\n case Event.dataType:\r\n return EventEnvelopeCreator.EventEnvelopeCreator.Create(logger, envelope);\r\n case Trace.dataType:\r\n return TraceEnvelopeCreator.TraceEnvelopeCreator.Create(logger, envelope);\r\n case PageView.dataType:\r\n return PageViewEnvelopeCreator.PageViewEnvelopeCreator.Create(logger, envelope);\r\n case PageViewPerformance.dataType:\r\n return PageViewPerformanceEnvelopeCreator.PageViewPerformanceEnvelopeCreator.Create(logger, envelope);\r\n case Exception.dataType:\r\n return ExceptionEnvelopeCreator.ExceptionEnvelopeCreator.Create(logger, envelope);\r\n case Metric.dataType:\r\n return MetricEnvelopeCreator.MetricEnvelopeCreator.Create(logger, envelope);\r\n case RemoteDependencyData.dataType:\r\n return DependencyEnvelopeCreator.DependencyEnvelopeCreator.Create(logger, envelope);\r\n default:\r\n return EventEnvelopeCreator.EventEnvelopeCreator.Create(logger, envelope);\r\n }\r\n };\r\n Sender._getDefaultAppInsightsChannelConfig = function () {\r\n // set default values\r\n return {\r\n endpointUrl: function () { return \"https://dc.services.visualstudio.com/v2/track\"; },\r\n emitLineDelimitedJson: function () { return false; },\r\n maxBatchInterval: function () { return 15000; },\r\n maxBatchSizeInBytes: function () { return 102400; },\r\n disableTelemetry: function () { return false; },\r\n enableSessionStorageBuffer: function () { return true; },\r\n isRetryDisabled: function () { return false; },\r\n isBeaconApiDisabled: function () { return true; },\r\n onunloadDisableBeacon: function () { return false; },\r\n instrumentationKey: function () { return undefined; },\r\n namePrefix: function () { return undefined; },\r\n samplingPercentage: function () { return 100; }\r\n };\r\n };\r\n Sender._getEmptyAppInsightsChannelConfig = function () {\r\n return {\r\n endpointUrl: undefined,\r\n emitLineDelimitedJson: undefined,\r\n maxBatchInterval: undefined,\r\n maxBatchSizeInBytes: undefined,\r\n disableTelemetry: undefined,\r\n enableSessionStorageBuffer: undefined,\r\n isRetryDisabled: undefined,\r\n isBeaconApiDisabled: undefined,\r\n onunloadDisableBeacon: undefined,\r\n instrumentationKey: undefined,\r\n namePrefix: undefined,\r\n samplingPercentage: undefined\r\n };\r\n };\r\n// Removed Stub for Sender.prototype.pause.\r\n// Removed Stub for Sender.prototype.resume.\r\n// Removed Stub for Sender.prototype.flush.\r\n// Removed Stub for Sender.prototype.onunloadFlush.\r\n// Removed Stub for Sender.prototype.teardown.\r\n// Removed Stub for Sender.prototype.initialize.\r\n// Removed Stub for Sender.prototype.processTelemetry.\r\n// Removed Stub for Sender.prototype._xhrReadyStateChange.\r\n// Removed Stub for Sender.prototype.triggerSend.\r\n// Removed Stub for Sender.prototype._onError.\r\n// Removed Stub for Sender.prototype._onPartialSuccess.\r\n// Removed Stub for Sender.prototype._onSuccess.\r\n// Removed Stub for Sender.prototype._xdrOnLoad.\r\n return Sender;\r\n}(BaseTelemetryPlugin));\r\nexport { Sender };\r\n//# sourceMappingURL=Sender.js.map","/*!\n * Application Insights JavaScript SDK - Channel, 2.5.11\n * Copyright (c) Microsoft and contributors. All rights reserved.\n */\nimport '@microsoft/applicationinsights-shims';\r\nexport { Sender } from \"./Sender\";\r\n//# sourceMappingURL=applicationinsights-channel-js.js.map","/*!\n * Application Insights JavaScript Web SDK - Basic, 2.5.11\n * Copyright (c) Microsoft and contributors. All rights reserved.\n */\n\r\n\r\nimport '@microsoft/applicationinsights-shims';\r\nimport { AppInsightsCore, CoreUtils } from \"@microsoft/applicationinsights-core-js\";\r\nimport { Sender } from \"@microsoft/applicationinsights-channel-js\";\r\n\"use strict\";\r\n/**\r\n * @export\r\n * @class ApplicationInsights\r\n */\r\nvar ApplicationInsights = /** @class */ (function () {\r\n /**\r\n * Creates an instance of ApplicationInsights.\r\n * @param {IConfiguration & IConfig} config\r\n * @memberof ApplicationInsights\r\n */\r\n function ApplicationInsights(config) {\r\n // initialize the queue and config in case they are undefined\r\n if (CoreUtils.isNullOrUndefined(config) ||\r\n CoreUtils.isNullOrUndefined(config.instrumentationKey)) {\r\n throw new Error(\"Invalid input configuration\");\r\n }\r\n this.config = config;\r\n this.getSKUDefaults();\r\n this.initialize();\r\n }\r\n /**\r\n * Initialize this instance of ApplicationInsights\r\n *\r\n * @memberof ApplicationInsights\r\n */\r\n ApplicationInsights.prototype.initialize = function () {\r\n this.core = new AppInsightsCore();\r\n var extensions = [];\r\n var appInsightsChannel = new Sender();\r\n extensions.push(appInsightsChannel);\r\n // initialize core\r\n this.core.initialize(this.config, extensions);\r\n // initialize extensions\r\n appInsightsChannel.initialize(this.config, this.core, extensions);\r\n this.pollInternalLogs();\r\n };\r\n /**\r\n * Send a manually constructed custom event\r\n *\r\n * @param {ITelemetryItem} item\r\n * @memberof ApplicationInsights\r\n */\r\n ApplicationInsights.prototype.track = function (item) {\r\n this.core.track(item);\r\n };\r\n /**\r\n * Immediately send all batched telemetry\r\n * @param {boolean} [async=true]\r\n * @memberof ApplicationInsights\r\n */\r\n ApplicationInsights.prototype.flush = function (async) {\r\n if (async === void 0) { async = true; }\r\n CoreUtils.arrForEach(this.core.getTransmissionControls(), function (controls) {\r\n CoreUtils.arrForEach(controls, function (plugin) {\r\n async\r\n ? plugin.flush()\r\n : plugin.triggerSend(async, null, 1 /* ManualFlush */);\r\n });\r\n });\r\n };\r\n ApplicationInsights.prototype.pollInternalLogs = function () {\r\n this.core.pollInternalLogs();\r\n };\r\n ApplicationInsights.prototype.getSKUDefaults = function () {\r\n this.config.diagnosticLogInterval =\r\n this.config.diagnosticLogInterval && this.config.diagnosticLogInterval > 0 ? this.config.diagnosticLogInterval : 10000;\r\n };\r\n return ApplicationInsights;\r\n}());\r\nexport { ApplicationInsights };\r\nexport { AppInsightsCore, CoreUtils } from \"@microsoft/applicationinsights-core-js\";\r\nexport { SeverityLevel } from \"@microsoft/applicationinsights-common\";\r\nexport { Sender } from \"@microsoft/applicationinsights-channel-js\";\r\n//# sourceMappingURL=index.js.map"],"names":["getGlobal","shimsGetGlobal","strFunction","_hasOwnProperty","_isFunction","_isNullOrUndefined","Envelope","AIEnvelope","Event","DataPoint","AIDataPoint","RemoteDependencyData","GeneratedRemoteDependencyData","Data","AIData","SeverityLevel"],"mappings":"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"}
\No newline at end of file