{"version":3,"sources":["../../../packages/core/performance/performance-profile-data.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,0BAA0B,EAAE,MAAM,iCAAiC,CAAC;AAE7E;;GAEG;AACH,MAAM,WAAW,gCAAgC;IAC7C,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;GAEG;AACH,MAAM,WAAW,yBAAyB;IACtC,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;CAClB;AAED;;GAEG;AACH,MAAM,WAAW,0BAA0B;IACvC,GAAG,EAAE,MAAM,CAAC;IACZ,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,gCAAgC,CAAC;IAC9C,GAAG,CAAC,EAAE,yBAAyB,CAAC;IAChC,KAAK,CAAC,EAAE,0BAA0B,EAAE,CAAC;CACxC;AAED;;GAEG;AACH,MAAM,WAAW,2BAA2B;IACxC,QAAQ,EAAE,MAAM,CAAC;IACjB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,gCAAgC,CAAC;IAC9C,GAAG,CAAC,EAAE,oBAAoB,CAAC;CAC9B;AAED;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACnC,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,GAAG,EAAE,MAAM,CAAC;IACZ,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,IAAI,EAAE,0BAA0B,CAAC;IACjC,QAAQ,CAAC,EAAE,0BAA0B,CAAC;IACtC,SAAS,CAAC,EAAE,2BAA2B,CAAC;IACxC,eAAe,CAAC,EAAE;QACd,GAAG,EAAE,MAAM,CAAC;QACZ,MAAM,CAAC,EAAE,MAAM,CAAC;KACnB,CAAC;CACL","file":"performance-profile-data.d.ts","sourcesContent":["import { CimStreamRequestData } from '../data/cim-stream';\r\nimport { PerformanceProfileDataType } from './performance-profile-data-type';\r\n\r\n/**\r\n * Powershell information.\r\n */\r\nexport interface PerformanceProfileDataPowerShell {\r\n    command?: string;\r\n    sessionId?: string;\r\n    completed?: string;\r\n}\r\n\r\n/**\r\n * CIM information.\r\n */\r\nexport interface PerformanceProfileDataCim {\r\n    namespace: string;\r\n    className?: string;\r\n    query?: string;\r\n}\r\n\r\n/**\r\n * Xhr or fetch information.\r\n */\r\nexport interface PerformanceProfileXhrFetch {\r\n    url: string;\r\n    method: string;\r\n    status: number;\r\n    powershell?: PerformanceProfileDataPowerShell;\r\n    cim?: PerformanceProfileDataCim;\r\n    batch?: PerformanceProfileXhrFetch[];\r\n}\r\n\r\n/**\r\n * WebSocket information.\r\n */\r\nexport interface PerformanceProfileWebsocket {\r\n    nodeName: string;\r\n    id: number;\r\n    count: number;\r\n    itemCount: number;\r\n    powershell?: PerformanceProfileDataPowerShell;\r\n    cim?: CimStreamRequestData;\r\n}\r\n\r\n/**\r\n * Performance profile data.\r\n */\r\nexport interface PerformanceProfileData {\r\n    source: string;\r\n    start: number;\r\n    end: number;\r\n    errorMessage?: string;\r\n    type: PerformanceProfileDataType;\r\n    xhrFetch?: PerformanceProfileXhrFetch;\r\n    webSocket?: PerformanceProfileWebsocket;\r\n    routeNavigation?: {\r\n        url: string;\r\n        target?: string;\r\n    };\r\n}\r\n"]}