@depup/datadog__browser-rum 6.31.0-depup.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (688) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +25 -0
  3. package/bundle/chunks/profiler-9f1c1103f1ef0aa98257-datadog-rum.js +1 -0
  4. package/bundle/chunks/recorder-926b641c6ef51d09a378-datadog-rum.js +1 -0
  5. package/bundle/datadog-rum.js +1 -0
  6. package/changes.json +5 -0
  7. package/cjs/boot/isBrowserSupported.d.ts +4 -0
  8. package/cjs/boot/isBrowserSupported.js +17 -0
  9. package/cjs/boot/isBrowserSupported.js.map +1 -0
  10. package/cjs/boot/lazyLoadProfiler.d.ts +3 -0
  11. package/cjs/boot/lazyLoadProfiler.js +56 -0
  12. package/cjs/boot/lazyLoadProfiler.js.map +1 -0
  13. package/cjs/boot/lazyLoadRecorder.d.ts +3 -0
  14. package/cjs/boot/lazyLoadRecorder.js +56 -0
  15. package/cjs/boot/lazyLoadRecorder.js.map +1 -0
  16. package/cjs/boot/postStartStrategy.d.ts +33 -0
  17. package/cjs/boot/postStartStrategy.js +98 -0
  18. package/cjs/boot/postStartStrategy.js.map +1 -0
  19. package/cjs/boot/preStartStrategy.d.ts +6 -0
  20. package/cjs/boot/preStartStrategy.js +24 -0
  21. package/cjs/boot/preStartStrategy.js.map +1 -0
  22. package/cjs/boot/profilerApi.d.ts +2 -0
  23. package/cjs/boot/profilerApi.js +52 -0
  24. package/cjs/boot/profilerApi.js.map +1 -0
  25. package/cjs/boot/recorderApi.d.ts +3 -0
  26. package/cjs/boot/recorderApi.js +71 -0
  27. package/cjs/boot/recorderApi.js.map +1 -0
  28. package/cjs/boot/startRecording.d.ts +6 -0
  29. package/cjs/boot/startRecording.js +45 -0
  30. package/cjs/boot/startRecording.js.map +1 -0
  31. package/cjs/domain/deflate/deflateEncoder.d.ts +3 -0
  32. package/cjs/domain/deflate/deflateEncoder.js +110 -0
  33. package/cjs/domain/deflate/deflateEncoder.js.map +1 -0
  34. package/cjs/domain/deflate/deflateWorker.d.ts +29 -0
  35. package/cjs/domain/deflate/deflateWorker.js +105 -0
  36. package/cjs/domain/deflate/deflateWorker.js.map +1 -0
  37. package/cjs/domain/deflate/index.d.ts +3 -0
  38. package/cjs/domain/deflate/index.js +11 -0
  39. package/cjs/domain/deflate/index.js.map +1 -0
  40. package/cjs/domain/getSessionReplayLink.d.ts +2 -0
  41. package/cjs/domain/getSessionReplayLink.js +35 -0
  42. package/cjs/domain/getSessionReplayLink.js.map +1 -0
  43. package/cjs/domain/profiling/actionHistory.d.ts +10 -0
  44. package/cjs/domain/profiling/actionHistory.js +49 -0
  45. package/cjs/domain/profiling/actionHistory.js.map +1 -0
  46. package/cjs/domain/profiling/longTaskHistory.d.ts +11 -0
  47. package/cjs/domain/profiling/longTaskHistory.js +28 -0
  48. package/cjs/domain/profiling/longTaskHistory.js.map +1 -0
  49. package/cjs/domain/profiling/profiler.d.ts +7 -0
  50. package/cjs/domain/profiling/profiler.js +267 -0
  51. package/cjs/domain/profiling/profiler.js.map +1 -0
  52. package/cjs/domain/profiling/profilingContext.d.ts +6 -0
  53. package/cjs/domain/profiling/profilingContext.js +31 -0
  54. package/cjs/domain/profiling/profilingContext.js.map +1 -0
  55. package/cjs/domain/profiling/profilingSupported.d.ts +1 -0
  56. package/cjs/domain/profiling/profilingSupported.js +11 -0
  57. package/cjs/domain/profiling/profilingSupported.js.map +1 -0
  58. package/cjs/domain/profiling/test-utils/mockedTrace.d.ts +3 -0
  59. package/cjs/domain/profiling/test-utils/mockedTrace.js +57 -0
  60. package/cjs/domain/profiling/test-utils/mockedTrace.js.map +1 -0
  61. package/cjs/domain/profiling/transport/assembly.d.ts +7 -0
  62. package/cjs/domain/profiling/transport/assembly.js +45 -0
  63. package/cjs/domain/profiling/transport/assembly.js.map +1 -0
  64. package/cjs/domain/profiling/transport/buildProfileEventAttributes.d.ts +33 -0
  65. package/cjs/domain/profiling/transport/buildProfileEventAttributes.js +63 -0
  66. package/cjs/domain/profiling/transport/buildProfileEventAttributes.js.map +1 -0
  67. package/cjs/domain/profiling/types/index.d.ts +2 -0
  68. package/cjs/domain/profiling/types/index.js +3 -0
  69. package/cjs/domain/profiling/types/index.js.map +1 -0
  70. package/cjs/domain/profiling/types/profilerApi.types.d.ts +58 -0
  71. package/cjs/domain/profiling/types/profilerApi.types.js +5 -0
  72. package/cjs/domain/profiling/types/profilerApi.types.js.map +1 -0
  73. package/cjs/domain/profiling/types/rumProfiler.types.d.ts +55 -0
  74. package/cjs/domain/profiling/types/rumProfiler.types.js +3 -0
  75. package/cjs/domain/profiling/types/rumProfiler.types.js.map +1 -0
  76. package/cjs/domain/profiling/utils/getCustomOrDefaultViewName.d.ts +1 -0
  77. package/cjs/domain/profiling/utils/getCustomOrDefaultViewName.js +7 -0
  78. package/cjs/domain/profiling/utils/getCustomOrDefaultViewName.js.map +1 -0
  79. package/cjs/domain/profiling/utils/getDefaultViewName.d.ts +1 -0
  80. package/cjs/domain/profiling/utils/getDefaultViewName.js +14 -0
  81. package/cjs/domain/profiling/utils/getDefaultViewName.js.map +1 -0
  82. package/cjs/domain/profiling/utils/getNumberOfSamples.d.ts +8 -0
  83. package/cjs/domain/profiling/utils/getNumberOfSamples.js +19 -0
  84. package/cjs/domain/profiling/utils/getNumberOfSamples.js.map +1 -0
  85. package/cjs/domain/profiling/vitalHistory.d.ts +10 -0
  86. package/cjs/domain/profiling/vitalHistory.js +42 -0
  87. package/cjs/domain/profiling/vitalHistory.js.map +1 -0
  88. package/cjs/domain/record/assembly.d.ts +3 -0
  89. package/cjs/domain/record/assembly.js +16 -0
  90. package/cjs/domain/record/assembly.js.map +1 -0
  91. package/cjs/domain/record/elementsScrollPositions.d.ts +10 -0
  92. package/cjs/domain/record/elementsScrollPositions.js +23 -0
  93. package/cjs/domain/record/elementsScrollPositions.js.map +1 -0
  94. package/cjs/domain/record/eventsUtils.d.ts +2 -0
  95. package/cjs/domain/record/eventsUtils.js +15 -0
  96. package/cjs/domain/record/eventsUtils.js.map +1 -0
  97. package/cjs/domain/record/index.d.ts +6 -0
  98. package/cjs/domain/record/index.js +17 -0
  99. package/cjs/domain/record/index.js.map +1 -0
  100. package/cjs/domain/record/internalApi.d.ts +22 -0
  101. package/cjs/domain/record/internalApi.js +55 -0
  102. package/cjs/domain/record/internalApi.js.map +1 -0
  103. package/cjs/domain/record/itemIds.d.ts +40 -0
  104. package/cjs/domain/record/itemIds.js +58 -0
  105. package/cjs/domain/record/itemIds.js.map +1 -0
  106. package/cjs/domain/record/mutationBatch.d.ts +12 -0
  107. package/cjs/domain/record/mutationBatch.js +44 -0
  108. package/cjs/domain/record/mutationBatch.js.map +1 -0
  109. package/cjs/domain/record/record.d.ts +16 -0
  110. package/cjs/domain/record/record.js +88 -0
  111. package/cjs/domain/record/record.js.map +1 -0
  112. package/cjs/domain/record/record.types.d.ts +18 -0
  113. package/cjs/domain/record/record.types.js +3 -0
  114. package/cjs/domain/record/record.types.js.map +1 -0
  115. package/cjs/domain/record/recordingScope.d.ts +24 -0
  116. package/cjs/domain/record/recordingScope.js +29 -0
  117. package/cjs/domain/record/recordingScope.js.map +1 -0
  118. package/cjs/domain/record/serialization/changeEncoder.d.ts +22 -0
  119. package/cjs/domain/record/serialization/changeEncoder.js +59 -0
  120. package/cjs/domain/record/serialization/changeEncoder.js.map +1 -0
  121. package/cjs/domain/record/serialization/conversions/changeConverter.d.ts +10 -0
  122. package/cjs/domain/record/serialization/conversions/changeConverter.js +216 -0
  123. package/cjs/domain/record/serialization/conversions/changeConverter.js.map +1 -0
  124. package/cjs/domain/record/serialization/conversions/changeDecoder.d.ts +16 -0
  125. package/cjs/domain/record/serialization/conversions/changeDecoder.js +137 -0
  126. package/cjs/domain/record/serialization/conversions/changeDecoder.js.map +1 -0
  127. package/cjs/domain/record/serialization/conversions/index.d.ts +7 -0
  128. package/cjs/domain/record/serialization/conversions/index.js +11 -0
  129. package/cjs/domain/record/serialization/conversions/index.js.map +1 -0
  130. package/cjs/domain/record/serialization/conversions/mutationLog.d.ts +15 -0
  131. package/cjs/domain/record/serialization/conversions/mutationLog.js +36 -0
  132. package/cjs/domain/record/serialization/conversions/mutationLog.js.map +1 -0
  133. package/cjs/domain/record/serialization/conversions/nodeIdRemapper.d.ts +10 -0
  134. package/cjs/domain/record/serialization/conversions/nodeIdRemapper.js +53 -0
  135. package/cjs/domain/record/serialization/conversions/nodeIdRemapper.js.map +1 -0
  136. package/cjs/domain/record/serialization/conversions/renderOptions.d.ts +6 -0
  137. package/cjs/domain/record/serialization/conversions/renderOptions.js +12 -0
  138. package/cjs/domain/record/serialization/conversions/renderOptions.js.map +1 -0
  139. package/cjs/domain/record/serialization/conversions/stringTable.d.ts +5 -0
  140. package/cjs/domain/record/serialization/conversions/stringTable.js +22 -0
  141. package/cjs/domain/record/serialization/conversions/stringTable.js.map +1 -0
  142. package/cjs/domain/record/serialization/conversions/vDocument.d.ts +23 -0
  143. package/cjs/domain/record/serialization/conversions/vDocument.js +176 -0
  144. package/cjs/domain/record/serialization/conversions/vDocument.js.map +1 -0
  145. package/cjs/domain/record/serialization/conversions/vNode.d.ts +66 -0
  146. package/cjs/domain/record/serialization/conversions/vNode.js +285 -0
  147. package/cjs/domain/record/serialization/conversions/vNode.js.map +1 -0
  148. package/cjs/domain/record/serialization/conversions/vStyleSheet.d.ts +16 -0
  149. package/cjs/domain/record/serialization/conversions/vStyleSheet.js +29 -0
  150. package/cjs/domain/record/serialization/conversions/vStyleSheet.js.map +1 -0
  151. package/cjs/domain/record/serialization/experimentalFeatures.d.ts +2 -0
  152. package/cjs/domain/record/serialization/experimentalFeatures.js +16 -0
  153. package/cjs/domain/record/serialization/experimentalFeatures.js.map +1 -0
  154. package/cjs/domain/record/serialization/index.d.ts +17 -0
  155. package/cjs/domain/record/serialization/index.js +37 -0
  156. package/cjs/domain/record/serialization/index.js.map +1 -0
  157. package/cjs/domain/record/serialization/insertionCursor.d.ts +57 -0
  158. package/cjs/domain/record/serialization/insertionCursor.js +68 -0
  159. package/cjs/domain/record/serialization/insertionCursor.js.map +1 -0
  160. package/cjs/domain/record/serialization/serialization.types.d.ts +24 -0
  161. package/cjs/domain/record/serialization/serialization.types.js +3 -0
  162. package/cjs/domain/record/serialization/serialization.types.js.map +1 -0
  163. package/cjs/domain/record/serialization/serializationStats.d.ts +12 -0
  164. package/cjs/domain/record/serialization/serializationStats.js +32 -0
  165. package/cjs/domain/record/serialization/serializationStats.js.map +1 -0
  166. package/cjs/domain/record/serialization/serializationTransaction.d.ts +96 -0
  167. package/cjs/domain/record/serialization/serializationTransaction.js +103 -0
  168. package/cjs/domain/record/serialization/serializationTransaction.js.map +1 -0
  169. package/cjs/domain/record/serialization/serializationUtils.d.ts +18 -0
  170. package/cjs/domain/record/serialization/serializationUtils.js +88 -0
  171. package/cjs/domain/record/serialization/serializationUtils.js.map +1 -0
  172. package/cjs/domain/record/serialization/serializeAttribute.d.ts +4 -0
  173. package/cjs/domain/record/serialization/serializeAttribute.js +42 -0
  174. package/cjs/domain/record/serialization/serializeAttribute.js.map +1 -0
  175. package/cjs/domain/record/serialization/serializeAttributes.d.ts +7 -0
  176. package/cjs/domain/record/serialization/serializeAttributes.js +167 -0
  177. package/cjs/domain/record/serialization/serializeAttributes.js.map +1 -0
  178. package/cjs/domain/record/serialization/serializeFullSnapshot.d.ts +5 -0
  179. package/cjs/domain/record/serialization/serializeFullSnapshot.js +34 -0
  180. package/cjs/domain/record/serialization/serializeFullSnapshot.js.map +1 -0
  181. package/cjs/domain/record/serialization/serializeFullSnapshotAsChange.d.ts +5 -0
  182. package/cjs/domain/record/serialization/serializeFullSnapshotAsChange.js +13 -0
  183. package/cjs/domain/record/serialization/serializeFullSnapshotAsChange.js.map +1 -0
  184. package/cjs/domain/record/serialization/serializeMutations.d.ts +11 -0
  185. package/cjs/domain/record/serialization/serializeMutations.js +262 -0
  186. package/cjs/domain/record/serialization/serializeMutations.js.map +1 -0
  187. package/cjs/domain/record/serialization/serializeMutationsAsChange.d.ts +5 -0
  188. package/cjs/domain/record/serialization/serializeMutationsAsChange.js +204 -0
  189. package/cjs/domain/record/serialization/serializeMutationsAsChange.js.map +1 -0
  190. package/cjs/domain/record/serialization/serializeNode.d.ts +7 -0
  191. package/cjs/domain/record/serialization/serializeNode.js +154 -0
  192. package/cjs/domain/record/serialization/serializeNode.js.map +1 -0
  193. package/cjs/domain/record/serialization/serializeNodeAsChange.d.ts +4 -0
  194. package/cjs/domain/record/serialization/serializeNodeAsChange.js +153 -0
  195. package/cjs/domain/record/serialization/serializeNodeAsChange.js.map +1 -0
  196. package/cjs/domain/record/serialization/serializeStyleSheets.d.ts +3 -0
  197. package/cjs/domain/record/serialization/serializeStyleSheets.js +30 -0
  198. package/cjs/domain/record/serialization/serializeStyleSheets.js.map +1 -0
  199. package/cjs/domain/record/serializationVerifier.d.ts +18 -0
  200. package/cjs/domain/record/serializationVerifier.js +126 -0
  201. package/cjs/domain/record/serializationVerifier.js.map +1 -0
  202. package/cjs/domain/record/shadowRootsController.d.ts +11 -0
  203. package/cjs/domain/record/shadowRootsController.js +45 -0
  204. package/cjs/domain/record/shadowRootsController.js.map +1 -0
  205. package/cjs/domain/record/startFullSnapshots.d.ts +10 -0
  206. package/cjs/domain/record/startFullSnapshots.js +50 -0
  207. package/cjs/domain/record/startFullSnapshots.js.map +1 -0
  208. package/cjs/domain/record/trackers/index.d.ts +12 -0
  209. package/cjs/domain/record/trackers/index.js +27 -0
  210. package/cjs/domain/record/trackers/index.js.map +1 -0
  211. package/cjs/domain/record/trackers/trackFocus.d.ts +5 -0
  212. package/cjs/domain/record/trackers/trackFocus.js +15 -0
  213. package/cjs/domain/record/trackers/trackFocus.js.map +1 -0
  214. package/cjs/domain/record/trackers/trackFrustration.d.ts +6 -0
  215. package/cjs/domain/record/trackers/trackFrustration.js +31 -0
  216. package/cjs/domain/record/trackers/trackFrustration.js.map +1 -0
  217. package/cjs/domain/record/trackers/trackInput.d.ts +4 -0
  218. package/cjs/domain/record/trackers/trackInput.js +104 -0
  219. package/cjs/domain/record/trackers/trackInput.js.map +1 -0
  220. package/cjs/domain/record/trackers/trackMediaInteraction.d.ts +5 -0
  221. package/cjs/domain/record/trackers/trackMediaInteraction.js +29 -0
  222. package/cjs/domain/record/trackers/trackMediaInteraction.js.map +1 -0
  223. package/cjs/domain/record/trackers/trackMouseInteraction.d.ts +5 -0
  224. package/cjs/domain/record/trackers/trackMouseInteraction.js +59 -0
  225. package/cjs/domain/record/trackers/trackMouseInteraction.js.map +1 -0
  226. package/cjs/domain/record/trackers/trackMove.d.ts +9 -0
  227. package/cjs/domain/record/trackers/trackMove.js +55 -0
  228. package/cjs/domain/record/trackers/trackMove.js.map +1 -0
  229. package/cjs/domain/record/trackers/trackMutation.d.ts +13 -0
  230. package/cjs/domain/record/trackers/trackMutation.js +41 -0
  231. package/cjs/domain/record/trackers/trackMutation.js.map +1 -0
  232. package/cjs/domain/record/trackers/trackScroll.d.ts +5 -0
  233. package/cjs/domain/record/trackers/trackScroll.js +48 -0
  234. package/cjs/domain/record/trackers/trackScroll.js.map +1 -0
  235. package/cjs/domain/record/trackers/trackStyleSheet.d.ts +6 -0
  236. package/cjs/domain/record/trackers/trackStyleSheet.js +89 -0
  237. package/cjs/domain/record/trackers/trackStyleSheet.js.map +1 -0
  238. package/cjs/domain/record/trackers/trackViewEnd.d.ts +5 -0
  239. package/cjs/domain/record/trackers/trackViewEnd.js +20 -0
  240. package/cjs/domain/record/trackers/trackViewEnd.js.map +1 -0
  241. package/cjs/domain/record/trackers/trackViewportResize.d.ts +6 -0
  242. package/cjs/domain/record/trackers/trackViewportResize.js +46 -0
  243. package/cjs/domain/record/trackers/trackViewportResize.js.map +1 -0
  244. package/cjs/domain/record/trackers/tracker.types.d.ts +3 -0
  245. package/cjs/domain/record/trackers/tracker.types.js +3 -0
  246. package/cjs/domain/record/trackers/tracker.types.js.map +1 -0
  247. package/cjs/domain/record/viewports.d.ts +20 -0
  248. package/cjs/domain/record/viewports.js +60 -0
  249. package/cjs/domain/record/viewports.js.map +1 -0
  250. package/cjs/domain/replayStats.d.ts +8 -0
  251. package/cjs/domain/replayStats.js +60 -0
  252. package/cjs/domain/replayStats.js.map +1 -0
  253. package/cjs/domain/scriptLoadingError.d.ts +6 -0
  254. package/cjs/domain/scriptLoadingError.js +26 -0
  255. package/cjs/domain/scriptLoadingError.js.map +1 -0
  256. package/cjs/domain/segmentCollection/buildReplayPayload.d.ts +15 -0
  257. package/cjs/domain/segmentCollection/buildReplayPayload.js +26 -0
  258. package/cjs/domain/segmentCollection/buildReplayPayload.js.map +1 -0
  259. package/cjs/domain/segmentCollection/index.d.ts +4 -0
  260. package/cjs/domain/segmentCollection/index.js +11 -0
  261. package/cjs/domain/segmentCollection/index.js.map +1 -0
  262. package/cjs/domain/segmentCollection/segment.d.ts +16 -0
  263. package/cjs/domain/segmentCollection/segment.js +82 -0
  264. package/cjs/domain/segmentCollection/segment.js.map +1 -0
  265. package/cjs/domain/segmentCollection/segmentCollection.d.ts +31 -0
  266. package/cjs/domain/segmentCollection/segmentCollection.js +113 -0
  267. package/cjs/domain/segmentCollection/segmentCollection.js.map +1 -0
  268. package/cjs/domain/segmentCollection/startSegmentTelemetry.d.ts +6 -0
  269. package/cjs/domain/segmentCollection/startSegmentTelemetry.js +52 -0
  270. package/cjs/domain/segmentCollection/startSegmentTelemetry.js.map +1 -0
  271. package/cjs/domain/startRecordBridge.d.ts +5 -0
  272. package/cjs/domain/startRecordBridge.js +17 -0
  273. package/cjs/domain/startRecordBridge.js.map +1 -0
  274. package/cjs/domain/startRecorderInitTelemetry.d.ts +15 -0
  275. package/cjs/domain/startRecorderInitTelemetry.js +55 -0
  276. package/cjs/domain/startRecorderInitTelemetry.js.map +1 -0
  277. package/cjs/entries/internal.d.ts +11 -0
  278. package/cjs/entries/internal.js +28 -0
  279. package/cjs/entries/internal.js.map +1 -0
  280. package/cjs/entries/internalSynthetics.d.ts +2 -0
  281. package/cjs/entries/internalSynthetics.js +27 -0
  282. package/cjs/entries/internalSynthetics.js.map +1 -0
  283. package/cjs/entries/main.d.ts +23 -0
  284. package/cjs/entries/main.js +35 -0
  285. package/cjs/entries/main.js.map +1 -0
  286. package/cjs/types/index.d.ts +3 -0
  287. package/cjs/types/index.js +18 -0
  288. package/cjs/types/index.js.map +1 -0
  289. package/cjs/types/profiling.d.ts +296 -0
  290. package/cjs/types/profiling.js +6 -0
  291. package/cjs/types/profiling.js.map +1 -0
  292. package/cjs/types/sessionReplay.d.ts +934 -0
  293. package/cjs/types/sessionReplay.js +6 -0
  294. package/cjs/types/sessionReplay.js.map +1 -0
  295. package/cjs/types/sessionReplayConstants.d.ts +71 -0
  296. package/cjs/types/sessionReplayConstants.js +67 -0
  297. package/cjs/types/sessionReplayConstants.js.map +1 -0
  298. package/esm/boot/isBrowserSupported.d.ts +4 -0
  299. package/esm/boot/isBrowserSupported.js +14 -0
  300. package/esm/boot/isBrowserSupported.js.map +1 -0
  301. package/esm/boot/lazyLoadProfiler.d.ts +3 -0
  302. package/esm/boot/lazyLoadProfiler.js +19 -0
  303. package/esm/boot/lazyLoadProfiler.js.map +1 -0
  304. package/esm/boot/lazyLoadRecorder.d.ts +3 -0
  305. package/esm/boot/lazyLoadRecorder.js +19 -0
  306. package/esm/boot/lazyLoadRecorder.js.map +1 -0
  307. package/esm/boot/postStartStrategy.d.ts +33 -0
  308. package/esm/boot/postStartStrategy.js +95 -0
  309. package/esm/boot/postStartStrategy.js.map +1 -0
  310. package/esm/boot/preStartStrategy.d.ts +6 -0
  311. package/esm/boot/preStartStrategy.js +21 -0
  312. package/esm/boot/preStartStrategy.js.map +1 -0
  313. package/esm/boot/profilerApi.d.ts +2 -0
  314. package/esm/boot/profilerApi.js +49 -0
  315. package/esm/boot/profilerApi.js.map +1 -0
  316. package/esm/boot/recorderApi.d.ts +3 -0
  317. package/esm/boot/recorderApi.js +68 -0
  318. package/esm/boot/recorderApi.js.map +1 -0
  319. package/esm/boot/startRecording.d.ts +6 -0
  320. package/esm/boot/startRecording.js +42 -0
  321. package/esm/boot/startRecording.js.map +1 -0
  322. package/esm/domain/deflate/deflateEncoder.d.ts +3 -0
  323. package/esm/domain/deflate/deflateEncoder.js +107 -0
  324. package/esm/domain/deflate/deflateEncoder.js.map +1 -0
  325. package/esm/domain/deflate/deflateWorker.d.ts +29 -0
  326. package/esm/domain/deflate/deflateWorker.js +97 -0
  327. package/esm/domain/deflate/deflateWorker.js.map +1 -0
  328. package/esm/domain/deflate/index.d.ts +3 -0
  329. package/esm/domain/deflate/index.js +3 -0
  330. package/esm/domain/deflate/index.js.map +1 -0
  331. package/esm/domain/getSessionReplayLink.d.ts +2 -0
  332. package/esm/domain/getSessionReplayLink.js +32 -0
  333. package/esm/domain/getSessionReplayLink.js.map +1 -0
  334. package/esm/domain/profiling/actionHistory.d.ts +10 -0
  335. package/esm/domain/profiling/actionHistory.js +45 -0
  336. package/esm/domain/profiling/actionHistory.js.map +1 -0
  337. package/esm/domain/profiling/longTaskHistory.d.ts +11 -0
  338. package/esm/domain/profiling/longTaskHistory.js +24 -0
  339. package/esm/domain/profiling/longTaskHistory.js.map +1 -0
  340. package/esm/domain/profiling/profiler.d.ts +7 -0
  341. package/esm/domain/profiling/profiler.js +263 -0
  342. package/esm/domain/profiling/profiler.js.map +1 -0
  343. package/esm/domain/profiling/profilingContext.d.ts +6 -0
  344. package/esm/domain/profiling/profilingContext.js +28 -0
  345. package/esm/domain/profiling/profilingContext.js.map +1 -0
  346. package/esm/domain/profiling/profilingSupported.d.ts +1 -0
  347. package/esm/domain/profiling/profilingSupported.js +8 -0
  348. package/esm/domain/profiling/profilingSupported.js.map +1 -0
  349. package/esm/domain/profiling/test-utils/mockedTrace.d.ts +3 -0
  350. package/esm/domain/profiling/test-utils/mockedTrace.js +54 -0
  351. package/esm/domain/profiling/test-utils/mockedTrace.js.map +1 -0
  352. package/esm/domain/profiling/transport/assembly.d.ts +7 -0
  353. package/esm/domain/profiling/transport/assembly.js +42 -0
  354. package/esm/domain/profiling/transport/assembly.js.map +1 -0
  355. package/esm/domain/profiling/transport/buildProfileEventAttributes.d.ts +33 -0
  356. package/esm/domain/profiling/transport/buildProfileEventAttributes.js +60 -0
  357. package/esm/domain/profiling/transport/buildProfileEventAttributes.js.map +1 -0
  358. package/esm/domain/profiling/types/index.d.ts +2 -0
  359. package/esm/domain/profiling/types/index.js +2 -0
  360. package/esm/domain/profiling/types/index.js.map +1 -0
  361. package/esm/domain/profiling/types/profilerApi.types.d.ts +58 -0
  362. package/esm/domain/profiling/types/profilerApi.types.js +4 -0
  363. package/esm/domain/profiling/types/profilerApi.types.js.map +1 -0
  364. package/esm/domain/profiling/types/rumProfiler.types.d.ts +55 -0
  365. package/esm/domain/profiling/types/rumProfiler.types.js +2 -0
  366. package/esm/domain/profiling/types/rumProfiler.types.js.map +1 -0
  367. package/esm/domain/profiling/utils/getCustomOrDefaultViewName.d.ts +1 -0
  368. package/esm/domain/profiling/utils/getCustomOrDefaultViewName.js +3 -0
  369. package/esm/domain/profiling/utils/getCustomOrDefaultViewName.js.map +1 -0
  370. package/esm/domain/profiling/utils/getDefaultViewName.d.ts +1 -0
  371. package/esm/domain/profiling/utils/getDefaultViewName.js +11 -0
  372. package/esm/domain/profiling/utils/getDefaultViewName.js.map +1 -0
  373. package/esm/domain/profiling/utils/getNumberOfSamples.d.ts +8 -0
  374. package/esm/domain/profiling/utils/getNumberOfSamples.js +16 -0
  375. package/esm/domain/profiling/utils/getNumberOfSamples.js.map +1 -0
  376. package/esm/domain/profiling/vitalHistory.d.ts +10 -0
  377. package/esm/domain/profiling/vitalHistory.js +38 -0
  378. package/esm/domain/profiling/vitalHistory.js.map +1 -0
  379. package/esm/domain/record/assembly.d.ts +3 -0
  380. package/esm/domain/record/assembly.js +13 -0
  381. package/esm/domain/record/assembly.js.map +1 -0
  382. package/esm/domain/record/elementsScrollPositions.d.ts +10 -0
  383. package/esm/domain/record/elementsScrollPositions.js +20 -0
  384. package/esm/domain/record/elementsScrollPositions.js.map +1 -0
  385. package/esm/domain/record/eventsUtils.d.ts +2 -0
  386. package/esm/domain/record/eventsUtils.js +11 -0
  387. package/esm/domain/record/eventsUtils.js.map +1 -0
  388. package/esm/domain/record/index.d.ts +6 -0
  389. package/esm/domain/record/index.js +5 -0
  390. package/esm/domain/record/index.js.map +1 -0
  391. package/esm/domain/record/internalApi.d.ts +22 -0
  392. package/esm/domain/record/internalApi.js +51 -0
  393. package/esm/domain/record/internalApi.js.map +1 -0
  394. package/esm/domain/record/itemIds.d.ts +40 -0
  395. package/esm/domain/record/itemIds.js +52 -0
  396. package/esm/domain/record/itemIds.js.map +1 -0
  397. package/esm/domain/record/mutationBatch.d.ts +12 -0
  398. package/esm/domain/record/mutationBatch.js +40 -0
  399. package/esm/domain/record/mutationBatch.js.map +1 -0
  400. package/esm/domain/record/record.d.ts +16 -0
  401. package/esm/domain/record/record.js +52 -0
  402. package/esm/domain/record/record.js.map +1 -0
  403. package/esm/domain/record/record.types.d.ts +18 -0
  404. package/esm/domain/record/record.types.js +2 -0
  405. package/esm/domain/record/record.types.js.map +1 -0
  406. package/esm/domain/record/recordingScope.d.ts +24 -0
  407. package/esm/domain/record/recordingScope.js +26 -0
  408. package/esm/domain/record/recordingScope.js.map +1 -0
  409. package/esm/domain/record/serialization/changeEncoder.d.ts +22 -0
  410. package/esm/domain/record/serialization/changeEncoder.js +56 -0
  411. package/esm/domain/record/serialization/changeEncoder.js.map +1 -0
  412. package/esm/domain/record/serialization/conversions/changeConverter.d.ts +10 -0
  413. package/esm/domain/record/serialization/conversions/changeConverter.js +213 -0
  414. package/esm/domain/record/serialization/conversions/changeConverter.js.map +1 -0
  415. package/esm/domain/record/serialization/conversions/changeDecoder.d.ts +16 -0
  416. package/esm/domain/record/serialization/conversions/changeDecoder.js +134 -0
  417. package/esm/domain/record/serialization/conversions/changeDecoder.js.map +1 -0
  418. package/esm/domain/record/serialization/conversions/index.d.ts +7 -0
  419. package/esm/domain/record/serialization/conversions/index.js +4 -0
  420. package/esm/domain/record/serialization/conversions/index.js.map +1 -0
  421. package/esm/domain/record/serialization/conversions/mutationLog.d.ts +15 -0
  422. package/esm/domain/record/serialization/conversions/mutationLog.js +33 -0
  423. package/esm/domain/record/serialization/conversions/mutationLog.js.map +1 -0
  424. package/esm/domain/record/serialization/conversions/nodeIdRemapper.d.ts +10 -0
  425. package/esm/domain/record/serialization/conversions/nodeIdRemapper.js +49 -0
  426. package/esm/domain/record/serialization/conversions/nodeIdRemapper.js.map +1 -0
  427. package/esm/domain/record/serialization/conversions/renderOptions.d.ts +6 -0
  428. package/esm/domain/record/serialization/conversions/renderOptions.js +9 -0
  429. package/esm/domain/record/serialization/conversions/renderOptions.js.map +1 -0
  430. package/esm/domain/record/serialization/conversions/stringTable.d.ts +5 -0
  431. package/esm/domain/record/serialization/conversions/stringTable.js +19 -0
  432. package/esm/domain/record/serialization/conversions/stringTable.js.map +1 -0
  433. package/esm/domain/record/serialization/conversions/vDocument.d.ts +23 -0
  434. package/esm/domain/record/serialization/conversions/vDocument.js +173 -0
  435. package/esm/domain/record/serialization/conversions/vDocument.js.map +1 -0
  436. package/esm/domain/record/serialization/conversions/vNode.d.ts +66 -0
  437. package/esm/domain/record/serialization/conversions/vNode.js +282 -0
  438. package/esm/domain/record/serialization/conversions/vNode.js.map +1 -0
  439. package/esm/domain/record/serialization/conversions/vStyleSheet.d.ts +16 -0
  440. package/esm/domain/record/serialization/conversions/vStyleSheet.js +26 -0
  441. package/esm/domain/record/serialization/conversions/vStyleSheet.js.map +1 -0
  442. package/esm/domain/record/serialization/experimentalFeatures.d.ts +2 -0
  443. package/esm/domain/record/serialization/experimentalFeatures.js +12 -0
  444. package/esm/domain/record/serialization/experimentalFeatures.js.map +1 -0
  445. package/esm/domain/record/serialization/index.d.ts +17 -0
  446. package/esm/domain/record/serialization/index.js +14 -0
  447. package/esm/domain/record/serialization/index.js.map +1 -0
  448. package/esm/domain/record/serialization/insertionCursor.d.ts +57 -0
  449. package/esm/domain/record/serialization/insertionCursor.js +64 -0
  450. package/esm/domain/record/serialization/insertionCursor.js.map +1 -0
  451. package/esm/domain/record/serialization/serialization.types.d.ts +24 -0
  452. package/esm/domain/record/serialization/serialization.types.js +2 -0
  453. package/esm/domain/record/serialization/serialization.types.js.map +1 -0
  454. package/esm/domain/record/serialization/serializationStats.d.ts +12 -0
  455. package/esm/domain/record/serialization/serializationStats.js +27 -0
  456. package/esm/domain/record/serialization/serializationStats.js.map +1 -0
  457. package/esm/domain/record/serialization/serializationTransaction.d.ts +96 -0
  458. package/esm/domain/record/serialization/serializationTransaction.js +99 -0
  459. package/esm/domain/record/serialization/serializationTransaction.js.map +1 -0
  460. package/esm/domain/record/serialization/serializationUtils.d.ts +18 -0
  461. package/esm/domain/record/serialization/serializationUtils.js +80 -0
  462. package/esm/domain/record/serialization/serializationUtils.js.map +1 -0
  463. package/esm/domain/record/serialization/serializeAttribute.d.ts +4 -0
  464. package/esm/domain/record/serialization/serializeAttribute.js +38 -0
  465. package/esm/domain/record/serialization/serializeAttribute.js.map +1 -0
  466. package/esm/domain/record/serialization/serializeAttributes.d.ts +7 -0
  467. package/esm/domain/record/serialization/serializeAttributes.js +161 -0
  468. package/esm/domain/record/serialization/serializeAttributes.js.map +1 -0
  469. package/esm/domain/record/serialization/serializeFullSnapshot.d.ts +5 -0
  470. package/esm/domain/record/serialization/serializeFullSnapshot.js +31 -0
  471. package/esm/domain/record/serialization/serializeFullSnapshot.js.map +1 -0
  472. package/esm/domain/record/serialization/serializeFullSnapshotAsChange.d.ts +5 -0
  473. package/esm/domain/record/serialization/serializeFullSnapshotAsChange.js +10 -0
  474. package/esm/domain/record/serialization/serializeFullSnapshotAsChange.js.map +1 -0
  475. package/esm/domain/record/serialization/serializeMutations.d.ts +11 -0
  476. package/esm/domain/record/serialization/serializeMutations.js +257 -0
  477. package/esm/domain/record/serialization/serializeMutations.js.map +1 -0
  478. package/esm/domain/record/serialization/serializeMutationsAsChange.d.ts +5 -0
  479. package/esm/domain/record/serialization/serializeMutationsAsChange.js +201 -0
  480. package/esm/domain/record/serialization/serializeMutationsAsChange.js.map +1 -0
  481. package/esm/domain/record/serialization/serializeNode.d.ts +7 -0
  482. package/esm/domain/record/serialization/serializeNode.js +149 -0
  483. package/esm/domain/record/serialization/serializeNode.js.map +1 -0
  484. package/esm/domain/record/serialization/serializeNodeAsChange.d.ts +4 -0
  485. package/esm/domain/record/serialization/serializeNodeAsChange.js +150 -0
  486. package/esm/domain/record/serialization/serializeNodeAsChange.js.map +1 -0
  487. package/esm/domain/record/serialization/serializeStyleSheets.d.ts +3 -0
  488. package/esm/domain/record/serialization/serializeStyleSheets.js +27 -0
  489. package/esm/domain/record/serialization/serializeStyleSheets.js.map +1 -0
  490. package/esm/domain/record/serializationVerifier.d.ts +18 -0
  491. package/esm/domain/record/serializationVerifier.js +123 -0
  492. package/esm/domain/record/serializationVerifier.js.map +1 -0
  493. package/esm/domain/record/shadowRootsController.d.ts +11 -0
  494. package/esm/domain/record/shadowRootsController.js +41 -0
  495. package/esm/domain/record/shadowRootsController.js.map +1 -0
  496. package/esm/domain/record/startFullSnapshots.d.ts +10 -0
  497. package/esm/domain/record/startFullSnapshots.js +46 -0
  498. package/esm/domain/record/startFullSnapshots.js.map +1 -0
  499. package/esm/domain/record/trackers/index.d.ts +12 -0
  500. package/esm/domain/record/trackers/index.js +12 -0
  501. package/esm/domain/record/trackers/index.js.map +1 -0
  502. package/esm/domain/record/trackers/trackFocus.d.ts +5 -0
  503. package/esm/domain/record/trackers/trackFocus.js +12 -0
  504. package/esm/domain/record/trackers/trackFocus.js.map +1 -0
  505. package/esm/domain/record/trackers/trackFrustration.d.ts +6 -0
  506. package/esm/domain/record/trackers/trackFrustration.js +28 -0
  507. package/esm/domain/record/trackers/trackFrustration.js.map +1 -0
  508. package/esm/domain/record/trackers/trackInput.d.ts +4 -0
  509. package/esm/domain/record/trackers/trackInput.js +101 -0
  510. package/esm/domain/record/trackers/trackInput.js.map +1 -0
  511. package/esm/domain/record/trackers/trackMediaInteraction.d.ts +5 -0
  512. package/esm/domain/record/trackers/trackMediaInteraction.js +26 -0
  513. package/esm/domain/record/trackers/trackMediaInteraction.js.map +1 -0
  514. package/esm/domain/record/trackers/trackMouseInteraction.d.ts +5 -0
  515. package/esm/domain/record/trackers/trackMouseInteraction.js +56 -0
  516. package/esm/domain/record/trackers/trackMouseInteraction.js.map +1 -0
  517. package/esm/domain/record/trackers/trackMove.d.ts +9 -0
  518. package/esm/domain/record/trackers/trackMove.js +51 -0
  519. package/esm/domain/record/trackers/trackMove.js.map +1 -0
  520. package/esm/domain/record/trackers/trackMutation.d.ts +13 -0
  521. package/esm/domain/record/trackers/trackMutation.js +38 -0
  522. package/esm/domain/record/trackers/trackMutation.js.map +1 -0
  523. package/esm/domain/record/trackers/trackScroll.d.ts +5 -0
  524. package/esm/domain/record/trackers/trackScroll.js +45 -0
  525. package/esm/domain/record/trackers/trackScroll.js.map +1 -0
  526. package/esm/domain/record/trackers/trackStyleSheet.d.ts +6 -0
  527. package/esm/domain/record/trackers/trackStyleSheet.js +85 -0
  528. package/esm/domain/record/trackers/trackStyleSheet.js.map +1 -0
  529. package/esm/domain/record/trackers/trackViewEnd.d.ts +5 -0
  530. package/esm/domain/record/trackers/trackViewEnd.js +17 -0
  531. package/esm/domain/record/trackers/trackViewEnd.js.map +1 -0
  532. package/esm/domain/record/trackers/trackViewportResize.d.ts +6 -0
  533. package/esm/domain/record/trackers/trackViewportResize.js +42 -0
  534. package/esm/domain/record/trackers/trackViewportResize.js.map +1 -0
  535. package/esm/domain/record/trackers/tracker.types.d.ts +3 -0
  536. package/esm/domain/record/trackers/tracker.types.js +2 -0
  537. package/esm/domain/record/trackers/tracker.types.js.map +1 -0
  538. package/esm/domain/record/viewports.d.ts +20 -0
  539. package/esm/domain/record/viewports.js +55 -0
  540. package/esm/domain/record/viewports.js.map +1 -0
  541. package/esm/domain/replayStats.d.ts +8 -0
  542. package/esm/domain/replayStats.js +51 -0
  543. package/esm/domain/replayStats.js.map +1 -0
  544. package/esm/domain/scriptLoadingError.d.ts +6 -0
  545. package/esm/domain/scriptLoadingError.js +23 -0
  546. package/esm/domain/scriptLoadingError.js.map +1 -0
  547. package/esm/domain/segmentCollection/buildReplayPayload.d.ts +15 -0
  548. package/esm/domain/segmentCollection/buildReplayPayload.js +23 -0
  549. package/esm/domain/segmentCollection/buildReplayPayload.js.map +1 -0
  550. package/esm/domain/segmentCollection/index.d.ts +4 -0
  551. package/esm/domain/segmentCollection/index.js +4 -0
  552. package/esm/domain/segmentCollection/index.js.map +1 -0
  553. package/esm/domain/segmentCollection/segment.d.ts +16 -0
  554. package/esm/domain/segmentCollection/segment.js +46 -0
  555. package/esm/domain/segmentCollection/segment.js.map +1 -0
  556. package/esm/domain/segmentCollection/segmentCollection.d.ts +31 -0
  557. package/esm/domain/segmentCollection/segmentCollection.js +106 -0
  558. package/esm/domain/segmentCollection/segmentCollection.js.map +1 -0
  559. package/esm/domain/segmentCollection/startSegmentTelemetry.d.ts +6 -0
  560. package/esm/domain/segmentCollection/startSegmentTelemetry.js +49 -0
  561. package/esm/domain/segmentCollection/startSegmentTelemetry.js.map +1 -0
  562. package/esm/domain/startRecordBridge.d.ts +5 -0
  563. package/esm/domain/startRecordBridge.js +14 -0
  564. package/esm/domain/startRecordBridge.js.map +1 -0
  565. package/esm/domain/startRecorderInitTelemetry.d.ts +15 -0
  566. package/esm/domain/startRecorderInitTelemetry.js +52 -0
  567. package/esm/domain/startRecorderInitTelemetry.js.map +1 -0
  568. package/esm/entries/internal.d.ts +11 -0
  569. package/esm/entries/internal.js +4 -0
  570. package/esm/entries/internal.js.map +1 -0
  571. package/esm/entries/internalSynthetics.d.ts +2 -0
  572. package/esm/entries/internalSynthetics.js +23 -0
  573. package/esm/entries/internalSynthetics.js.map +1 -0
  574. package/esm/entries/main.d.ts +23 -0
  575. package/esm/entries/main.js +31 -0
  576. package/esm/entries/main.js.map +1 -0
  577. package/esm/types/index.d.ts +3 -0
  578. package/esm/types/index.js +2 -0
  579. package/esm/types/index.js.map +1 -0
  580. package/esm/types/profiling.d.ts +296 -0
  581. package/esm/types/profiling.js +5 -0
  582. package/esm/types/profiling.js.map +1 -0
  583. package/esm/types/sessionReplay.d.ts +934 -0
  584. package/esm/types/sessionReplay.js +5 -0
  585. package/esm/types/sessionReplay.js.map +1 -0
  586. package/esm/types/sessionReplayConstants.d.ts +71 -0
  587. package/esm/types/sessionReplayConstants.js +64 -0
  588. package/esm/types/sessionReplayConstants.js.map +1 -0
  589. package/internal/package.json +6 -0
  590. package/internal-synthetics/package.json +6 -0
  591. package/package.json +52 -0
  592. package/src/boot/isBrowserSupported.ts +14 -0
  593. package/src/boot/lazyLoadProfiler.ts +20 -0
  594. package/src/boot/lazyLoadRecorder.ts +20 -0
  595. package/src/boot/postStartStrategy.ts +176 -0
  596. package/src/boot/preStartStrategy.ts +34 -0
  597. package/src/boot/profilerApi.ts +82 -0
  598. package/src/boot/recorderApi.ts +113 -0
  599. package/src/boot/startRecording.ts +70 -0
  600. package/src/domain/deflate/deflateEncoder.ts +144 -0
  601. package/src/domain/deflate/deflateWorker.ts +152 -0
  602. package/src/domain/deflate/index.ts +9 -0
  603. package/src/domain/getSessionReplayLink.ts +40 -0
  604. package/src/domain/profiling/actionHistory.ts +65 -0
  605. package/src/domain/profiling/longTaskHistory.ts +40 -0
  606. package/src/domain/profiling/profiler.ts +366 -0
  607. package/src/domain/profiling/profilingContext.ts +39 -0
  608. package/src/domain/profiling/profilingSupported.ts +10 -0
  609. package/src/domain/profiling/test-utils/mockedTrace.ts +58 -0
  610. package/src/domain/profiling/transport/assembly.ts +63 -0
  611. package/src/domain/profiling/transport/buildProfileEventAttributes.ts +106 -0
  612. package/src/domain/profiling/types/index.ts +2 -0
  613. package/src/domain/profiling/types/profilerApi.types.ts +87 -0
  614. package/src/domain/profiling/types/rumProfiler.types.ts +62 -0
  615. package/src/domain/profiling/utils/getCustomOrDefaultViewName.ts +4 -0
  616. package/src/domain/profiling/utils/getDefaultViewName.ts +12 -0
  617. package/src/domain/profiling/utils/getNumberOfSamples.ts +17 -0
  618. package/src/domain/profiling/vitalHistory.ts +58 -0
  619. package/src/domain/record/assembly.ts +19 -0
  620. package/src/domain/record/elementsScrollPositions.ts +28 -0
  621. package/src/domain/record/eventsUtils.ts +12 -0
  622. package/src/domain/record/index.ts +12 -0
  623. package/src/domain/record/internalApi.ts +84 -0
  624. package/src/domain/record/itemIds.ts +97 -0
  625. package/src/domain/record/mutationBatch.ts +47 -0
  626. package/src/domain/record/record.ts +90 -0
  627. package/src/domain/record/record.types.ts +22 -0
  628. package/src/domain/record/recordingScope.ts +58 -0
  629. package/src/domain/record/serialization/changeEncoder.ts +89 -0
  630. package/src/domain/record/serialization/conversions/changeConverter.ts +277 -0
  631. package/src/domain/record/serialization/conversions/changeDecoder.ts +192 -0
  632. package/src/domain/record/serialization/conversions/index.ts +7 -0
  633. package/src/domain/record/serialization/conversions/mutationLog.ts +56 -0
  634. package/src/domain/record/serialization/conversions/nodeIdRemapper.ts +69 -0
  635. package/src/domain/record/serialization/conversions/renderOptions.ts +14 -0
  636. package/src/domain/record/serialization/conversions/stringTable.ts +25 -0
  637. package/src/domain/record/serialization/conversions/vDocument.ts +239 -0
  638. package/src/domain/record/serialization/conversions/vNode.ts +417 -0
  639. package/src/domain/record/serialization/conversions/vStyleSheet.ts +47 -0
  640. package/src/domain/record/serialization/experimentalFeatures.ts +15 -0
  641. package/src/domain/record/serialization/index.ts +21 -0
  642. package/src/domain/record/serialization/insertionCursor.ts +131 -0
  643. package/src/domain/record/serialization/serialization.types.ts +38 -0
  644. package/src/domain/record/serialization/serializationStats.ts +43 -0
  645. package/src/domain/record/serialization/serializationTransaction.ts +255 -0
  646. package/src/domain/record/serialization/serializationUtils.ts +103 -0
  647. package/src/domain/record/serialization/serializeAttribute.ts +55 -0
  648. package/src/domain/record/serialization/serializeAttributes.ts +194 -0
  649. package/src/domain/record/serialization/serializeFullSnapshot.ts +46 -0
  650. package/src/domain/record/serialization/serializeFullSnapshotAsChange.ts +33 -0
  651. package/src/domain/record/serialization/serializeMutations.ts +395 -0
  652. package/src/domain/record/serialization/serializeMutationsAsChange.ts +298 -0
  653. package/src/domain/record/serialization/serializeNode.ts +229 -0
  654. package/src/domain/record/serialization/serializeNodeAsChange.ts +237 -0
  655. package/src/domain/record/serialization/serializeStyleSheets.ts +36 -0
  656. package/src/domain/record/serializationVerifier.ts +208 -0
  657. package/src/domain/record/shadowRootsController.ts +62 -0
  658. package/src/domain/record/startFullSnapshots.ts +92 -0
  659. package/src/domain/record/trackers/index.ts +12 -0
  660. package/src/domain/record/trackers/trackFocus.ts +16 -0
  661. package/src/domain/record/trackers/trackFrustration.ts +39 -0
  662. package/src/domain/record/trackers/trackInput.ts +128 -0
  663. package/src/domain/record/trackers/trackMediaInteraction.ts +43 -0
  664. package/src/domain/record/trackers/trackMouseInteraction.ts +74 -0
  665. package/src/domain/record/trackers/trackMove.ts +78 -0
  666. package/src/domain/record/trackers/trackMutation.ts +74 -0
  667. package/src/domain/record/trackers/trackScroll.ts +61 -0
  668. package/src/domain/record/trackers/trackStyleSheet.ts +117 -0
  669. package/src/domain/record/trackers/trackViewEnd.ts +27 -0
  670. package/src/domain/record/trackers/trackViewportResize.ts +69 -0
  671. package/src/domain/record/trackers/tracker.types.ts +3 -0
  672. package/src/domain/record/viewports.ts +68 -0
  673. package/src/domain/replayStats.ts +61 -0
  674. package/src/domain/scriptLoadingError.ts +36 -0
  675. package/src/domain/segmentCollection/buildReplayPayload.ts +52 -0
  676. package/src/domain/segmentCollection/index.ts +4 -0
  677. package/src/domain/segmentCollection/segment.ts +79 -0
  678. package/src/domain/segmentCollection/segmentCollection.ts +200 -0
  679. package/src/domain/segmentCollection/startSegmentTelemetry.ts +91 -0
  680. package/src/domain/startRecordBridge.ts +17 -0
  681. package/src/domain/startRecorderInitTelemetry.ts +90 -0
  682. package/src/entries/internal.ts +18 -0
  683. package/src/entries/internalSynthetics.ts +24 -0
  684. package/src/entries/main.ts +96 -0
  685. package/src/types/index.ts +3 -0
  686. package/src/types/profiling.ts +298 -0
  687. package/src/types/sessionReplay.ts +990 -0
  688. package/src/types/sessionReplayConstants.ts +130 -0
@@ -0,0 +1,126 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.createSerializationVerifier = createSerializationVerifier;
4
+ const browser_core_1 = require("@datadog/browser-core");
5
+ const types_1 = require("../../types");
6
+ const recordingScope_1 = require("./recordingScope");
7
+ const serialization_1 = require("./serialization");
8
+ function createSerializationVerifier(scope, onError) {
9
+ // Node id numbering differs between the V1 and Change serialization
10
+ // algorithms, so if we want to be able to compare their output, we need to replace the
11
+ // 'input' node ids in each Change record with the 'output' node ids produced by the V1
12
+ // serialization algorithm. This NodeIdRemapper will handle that task.
13
+ const nodeIdRemapper = (0, serialization_1.createCopyingNodeIdRemapper)();
14
+ scope.nodeIds = nodeIdRemapper.outputNodeIds;
15
+ // Create a separate recording scope to use for Change serialization.
16
+ const changeScope = (0, recordingScope_1.createRecordingScope)(scope.configuration, scope.elementsScrollPositions, {
17
+ addShadowRoot: browser_core_1.noop,
18
+ removeShadowRoot: browser_core_1.noop,
19
+ flush: browser_core_1.noop,
20
+ stop: browser_core_1.noop,
21
+ });
22
+ changeScope.nodeIds = nodeIdRemapper.inputNodeIds;
23
+ // Create the converter that we'll use to transform the records generated by Change
24
+ // serialization into the V1 format.
25
+ let converter = (0, serialization_1.createChangeConverter)();
26
+ const { unsubscribe } = scope.serializeObservable.subscribe((event) => {
27
+ let changeRecord;
28
+ const emitRecord = (record) => {
29
+ changeRecord = record;
30
+ };
31
+ switch (event.type) {
32
+ case 'full':
33
+ // Create a new converter since we've transitioned to a new view.
34
+ converter = (0, serialization_1.createChangeConverter)();
35
+ (0, serialization_1.serializeFullSnapshotAsChange)(event.timestamp, event.kind, event.target, emitRecord, browser_core_1.noop, changeScope);
36
+ break;
37
+ case 'incremental':
38
+ (0, serialization_1.serializeMutationsAsChange)(event.timestamp, event.target, emitRecord, browser_core_1.noop, changeScope);
39
+ break;
40
+ default:
41
+ event;
42
+ return;
43
+ }
44
+ if (!changeRecord) {
45
+ onError('No change record serialized', event);
46
+ return;
47
+ }
48
+ try {
49
+ const v1Record = event.v1;
50
+ const convertedChangeRecord = converter.convert(changeRecord, {
51
+ nodeIdRemapper,
52
+ timestamp: v1Record.timestamp,
53
+ });
54
+ verifySnapshotsMatch(v1Record, convertedChangeRecord, onError);
55
+ }
56
+ catch (error) {
57
+ onError('Error verifying change record', error);
58
+ }
59
+ });
60
+ return {
61
+ stop: unsubscribe,
62
+ };
63
+ }
64
+ function verifySnapshotsMatch(expectedRecord, actualRecord, onError) {
65
+ if (expectedRecord.type !== types_1.RecordType.IncrementalSnapshot ||
66
+ expectedRecord.data.source !== types_1.IncrementalSource.Mutation ||
67
+ actualRecord.type !== types_1.RecordType.IncrementalSnapshot ||
68
+ actualRecord.data.source !== types_1.IncrementalSource.Mutation) {
69
+ // We expect full snapshots to be byte-for-byte equivalent, full stop.
70
+ verifyByteForByteEquivalence('full snapshot', expectedRecord, actualRecord, onError);
71
+ return;
72
+ }
73
+ // Verify that everything but the data is byte-for-byte equivalent.
74
+ verifyByteForByteEquivalence('incremental snapshot wrapper', { ...expectedRecord, data: null }, { ...actualRecord, data: null }, onError);
75
+ // Within the data, verify that everything but attribute mutations and node remove
76
+ // mutations are byte-for-byte equivalent.
77
+ verifyByteForByteEquivalence('incremental snapshot data (without attributes and removes)', { ...expectedRecord.data, attributes: null, removes: null }, { ...actualRecord.data, attributes: null, removes: null }, onError);
78
+ // Verify that the attribute mutations are byte-for-byte equivalent except for order.
79
+ const orderAttributeMutations = (a, b) => a.id - b.id;
80
+ verifyByteForByteEquivalence('incremental snapshot attribute mutations', expectedRecord.data.attributes.sort(orderAttributeMutations), actualRecord.data.attributes.sort(orderAttributeMutations), onError);
81
+ // Gather the set of removes performed by V1 serialization.
82
+ const expectedRemoves = expectedRecord.data.removes;
83
+ const expectedRemovedNodes = new Set();
84
+ for (const remove of expectedRemoves) {
85
+ expectedRemovedNodes.add(remove.id);
86
+ }
87
+ // Gather the set of removes performed by Change serialization. Change serialization is
88
+ // more conservative about remove reporting, so it will report some removes that V1
89
+ // serialization deliberately skips. To paper over that difference, we filter out
90
+ // removes that V1 serialization didn't also report.
91
+ const actualRemoves = actualRecord.data.removes.filter((remove) => expectedRemovedNodes.has(remove.id));
92
+ // Verify that the removes that remain are byte-for-byte equivalent.
93
+ verifyByteForByteEquivalence('incremental snapshot removes', expectedRemoves, actualRemoves, onError);
94
+ }
95
+ function verifyByteForByteEquivalence(context, expected, actual, onError) {
96
+ const expectedString = JSON.stringify(expected);
97
+ const actualString = JSON.stringify(actual);
98
+ if (actualString !== expectedString) {
99
+ onError('Serialization mismatch', {
100
+ context,
101
+ mismatch: createSerializationMismatchContext(expectedString, actualString),
102
+ });
103
+ }
104
+ }
105
+ function createSerializationMismatchContext(expected, actual) {
106
+ const length = Math.min(expected.length, actual.length);
107
+ try {
108
+ let firstDifferenceIndex = 0;
109
+ while (firstDifferenceIndex < length && expected[firstDifferenceIndex] === actual[firstDifferenceIndex]) {
110
+ firstDifferenceIndex++;
111
+ }
112
+ return {
113
+ expected: getStringNearPosition(expected, firstDifferenceIndex),
114
+ actual: getStringNearPosition(actual, firstDifferenceIndex),
115
+ };
116
+ }
117
+ catch (e) {
118
+ return { firstDifferenceError: JSON.stringify(e) };
119
+ }
120
+ }
121
+ function getStringNearPosition(str, index) {
122
+ const leftContextStart = Math.max(index - 50, 0);
123
+ const rightContextEnd = Math.min(index + 150, str.length);
124
+ return `${str.substring(leftContextStart, index)}(!)${str.substring(index, rightContextEnd)}`;
125
+ }
126
+ //# sourceMappingURL=serializationVerifier.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"serializationVerifier.js","sourceRoot":"","sources":["../../../src/domain/record/serializationVerifier.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,11 @@
1
+ import type { RecordingScope } from './recordingScope.ts';
2
+ import type { EmitRecordCallback, EmitStatsCallback } from './record.types';
3
+ export type AddShadowRootCallBack = (shadowRoot: ShadowRoot, scope: RecordingScope) => void;
4
+ export type RemoveShadowRootCallBack = (shadowRoot: ShadowRoot) => void;
5
+ export interface ShadowRootsController {
6
+ addShadowRoot: AddShadowRootCallBack;
7
+ removeShadowRoot: RemoveShadowRootCallBack;
8
+ stop: () => void;
9
+ flush: () => void;
10
+ }
11
+ export declare const initShadowRootsController: (emitRecord: EmitRecordCallback, emitStats: EmitStatsCallback) => ShadowRootsController;
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.initShadowRootsController = void 0;
4
+ const trackers_1 = require("./trackers");
5
+ const initShadowRootsController = (emitRecord, emitStats) => {
6
+ const controllerByShadowRoot = new Map();
7
+ const shadowRootsController = {
8
+ addShadowRoot: (shadowRoot, scope) => {
9
+ if (controllerByShadowRoot.has(shadowRoot)) {
10
+ return;
11
+ }
12
+ const mutationTracker = (0, trackers_1.trackMutation)(shadowRoot, emitRecord, emitStats, scope);
13
+ // The change event does not bubble up across the shadow root, we have to listen on the shadow root
14
+ const inputTracker = (0, trackers_1.trackInput)(shadowRoot, emitRecord, scope);
15
+ // The scroll event does not bubble up across the shadow root, we have to listen on the shadow root
16
+ const scrollTracker = (0, trackers_1.trackScroll)(shadowRoot, emitRecord, scope);
17
+ controllerByShadowRoot.set(shadowRoot, {
18
+ flush: () => mutationTracker.flush(),
19
+ stop: () => {
20
+ mutationTracker.stop();
21
+ inputTracker.stop();
22
+ scrollTracker.stop();
23
+ },
24
+ });
25
+ },
26
+ removeShadowRoot: (shadowRoot) => {
27
+ const entry = controllerByShadowRoot.get(shadowRoot);
28
+ if (!entry) {
29
+ // unidentified root cause: observed in some cases with shadow DOM added by browser extensions
30
+ return;
31
+ }
32
+ entry.stop();
33
+ controllerByShadowRoot.delete(shadowRoot);
34
+ },
35
+ stop: () => {
36
+ controllerByShadowRoot.forEach(({ stop }) => stop());
37
+ },
38
+ flush: () => {
39
+ controllerByShadowRoot.forEach(({ flush }) => flush());
40
+ },
41
+ };
42
+ return shadowRootsController;
43
+ };
44
+ exports.initShadowRootsController = initShadowRootsController;
45
+ //# sourceMappingURL=shadowRootsController.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"shadowRootsController.js","sourceRoot":"","sources":["../../../src/domain/record/shadowRootsController.ts"],"names":[],"mappings":";;;AAEA,yCAAmE;AAiB5D,MAAM,yBAAyB,GAAG,CACvC,UAA8B,EAC9B,SAA4B,EACL,EAAE;IACzB,MAAM,sBAAsB,GAAG,IAAI,GAAG,EAAoC,CAAA;IAE1E,MAAM,qBAAqB,GAA0B;QACnD,aAAa,EAAE,CAAC,UAAsB,EAAE,KAAqB,EAAE,EAAE;YAC/D,IAAI,sBAAsB,CAAC,GAAG,CAAC,UAAU,CAAC,EAAE,CAAC;gBAC3C,OAAM;YACR,CAAC;YACD,MAAM,eAAe,GAAG,IAAA,wBAAa,EAAC,UAAU,EAAE,UAAU,EAAE,SAAS,EAAE,KAAK,CAAC,CAAA;YAC/E,mGAAmG;YACnG,MAAM,YAAY,GAAG,IAAA,qBAAU,EAAC,UAAU,EAAE,UAAU,EAAE,KAAK,CAAC,CAAA;YAC9D,mGAAmG;YACnG,MAAM,aAAa,GAAG,IAAA,sBAAW,EAAC,UAAU,EAAE,UAAU,EAAE,KAAK,CAAC,CAAA;YAChE,sBAAsB,CAAC,GAAG,CAAC,UAAU,EAAE;gBACrC,KAAK,EAAE,GAAG,EAAE,CAAC,eAAe,CAAC,KAAK,EAAE;gBACpC,IAAI,EAAE,GAAG,EAAE;oBACT,eAAe,CAAC,IAAI,EAAE,CAAA;oBACtB,YAAY,CAAC,IAAI,EAAE,CAAA;oBACnB,aAAa,CAAC,IAAI,EAAE,CAAA;gBACtB,CAAC;aACF,CAAC,CAAA;QACJ,CAAC;QACD,gBAAgB,EAAE,CAAC,UAAsB,EAAE,EAAE;YAC3C,MAAM,KAAK,GAAG,sBAAsB,CAAC,GAAG,CAAC,UAAU,CAAC,CAAA;YACpD,IAAI,CAAC,KAAK,EAAE,CAAC;gBACX,8FAA8F;gBAC9F,OAAM;YACR,CAAC;YACD,KAAK,CAAC,IAAI,EAAE,CAAA;YACZ,sBAAsB,CAAC,MAAM,CAAC,UAAU,CAAC,CAAA;QAC3C,CAAC;QACD,IAAI,EAAE,GAAG,EAAE;YACT,sBAAsB,CAAC,OAAO,CAAC,CAAC,EAAE,IAAI,EAAE,EAAE,EAAE,CAAC,IAAI,EAAE,CAAC,CAAA;QACtD,CAAC;QACD,KAAK,EAAE,GAAG,EAAE;YACV,sBAAsB,CAAC,OAAO,CAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,KAAK,EAAE,CAAC,CAAA;QACxD,CAAC;KACF,CAAA;IACD,OAAO,qBAAqB,CAAA;AAC9B,CAAC,CAAA;AA1CY,QAAA,yBAAyB,6BA0CrC"}
@@ -0,0 +1,10 @@
1
+ import type { LifeCycle } from '@datadog/browser-rum-core';
2
+ import type { TimeStamp } from '@datadog/browser-core';
3
+ import { SerializationKind } from './serialization';
4
+ import type { RecordingScope } from './recordingScope';
5
+ import type { EmitRecordCallback, EmitStatsCallback } from './record.types';
6
+ export type SerializeFullSnapshotCallback = (timestamp: TimeStamp, kind: SerializationKind, document: Document, emitRecord: EmitRecordCallback, emitStats: EmitStatsCallback, scope: RecordingScope) => void;
7
+ export declare function startFullSnapshots(lifeCycle: LifeCycle, emitRecord: EmitRecordCallback, emitStats: EmitStatsCallback, flushMutations: () => void, scope: RecordingScope, serialize?: SerializeFullSnapshotCallback): {
8
+ stop: () => void;
9
+ };
10
+ export declare function takeFullSnapshot(timestamp: TimeStamp, kind: SerializationKind, emitRecord: EmitRecordCallback, emitStats: EmitStatsCallback, scope: RecordingScope, serialize?: SerializeFullSnapshotCallback): void;
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.startFullSnapshots = startFullSnapshots;
4
+ exports.takeFullSnapshot = takeFullSnapshot;
5
+ const browser_rum_core_1 = require("@datadog/browser-rum-core");
6
+ const browser_core_1 = require("@datadog/browser-core");
7
+ const types_1 = require("../../types");
8
+ const serialization_1 = require("./serialization");
9
+ const viewports_1 = require("./viewports");
10
+ function startFullSnapshots(lifeCycle, emitRecord, emitStats, flushMutations, scope, serialize = defaultSerializeFullSnapshotCallback()) {
11
+ takeFullSnapshot((0, browser_core_1.timeStampNow)(), 0 /* SerializationKind.INITIAL_FULL_SNAPSHOT */, emitRecord, emitStats, scope, serialize);
12
+ const { unsubscribe } = lifeCycle.subscribe(2 /* LifeCycleEventType.VIEW_CREATED */, (view) => {
13
+ flushMutations();
14
+ takeFullSnapshot(view.startClocks.timeStamp, 1 /* SerializationKind.SUBSEQUENT_FULL_SNAPSHOT */, emitRecord, emitStats, scope, serialize);
15
+ });
16
+ return {
17
+ stop: unsubscribe,
18
+ };
19
+ }
20
+ function takeFullSnapshot(timestamp, kind, emitRecord, emitStats, scope, serialize = defaultSerializeFullSnapshotCallback()) {
21
+ const { width, height } = (0, browser_rum_core_1.getViewportDimension)();
22
+ emitRecord({
23
+ data: {
24
+ height,
25
+ href: window.location.href,
26
+ width,
27
+ },
28
+ type: types_1.RecordType.Meta,
29
+ timestamp,
30
+ });
31
+ emitRecord({
32
+ data: {
33
+ has_focus: document.hasFocus(),
34
+ },
35
+ type: types_1.RecordType.Focus,
36
+ timestamp,
37
+ });
38
+ serialize(timestamp, kind, document, emitRecord, emitStats, scope);
39
+ if (window.visualViewport) {
40
+ emitRecord({
41
+ data: (0, viewports_1.getVisualViewport)(window.visualViewport),
42
+ type: types_1.RecordType.VisualViewport,
43
+ timestamp,
44
+ });
45
+ }
46
+ }
47
+ function defaultSerializeFullSnapshotCallback() {
48
+ return (0, serialization_1.isFullSnapshotChangeRecordsEnabled)() ? serialization_1.serializeFullSnapshotAsChange : serialization_1.serializeFullSnapshot;
49
+ }
50
+ //# sourceMappingURL=startFullSnapshots.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"startFullSnapshots.js","sourceRoot":"","sources":["../../../src/domain/record/startFullSnapshots.ts"],"names":[],"mappings":";;AAwBA,gDAyBC;AAED,4CAoCC;AAvFD,gEAAoF;AAEpF,wDAAoD;AAEpD,uCAAwC;AACxC,mDAKwB;AACxB,2CAA+C;AAa/C,SAAgB,kBAAkB,CAChC,SAAoB,EACpB,UAA8B,EAC9B,SAA4B,EAC5B,cAA0B,EAC1B,KAAqB,EACrB,YAA2C,oCAAoC,EAAE;IAEjF,gBAAgB,CAAC,IAAA,2BAAY,GAAE,mDAA2C,UAAU,EAAE,SAAS,EAAE,KAAK,EAAE,SAAS,CAAC,CAAA;IAElH,MAAM,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,SAAS,0CAAkC,CAAC,IAAI,EAAE,EAAE;QACpF,cAAc,EAAE,CAAA;QAChB,gBAAgB,CACd,IAAI,CAAC,WAAW,CAAC,SAAS,sDAE1B,UAAU,EACV,SAAS,EACT,KAAK,EACL,SAAS,CACV,CAAA;IACH,CAAC,CAAC,CAAA;IAEF,OAAO;QACL,IAAI,EAAE,WAAW;KAClB,CAAA;AACH,CAAC;AAED,SAAgB,gBAAgB,CAC9B,SAAoB,EACpB,IAAuB,EACvB,UAA8B,EAC9B,SAA4B,EAC5B,KAAqB,EACrB,YAA2C,oCAAoC,EAAE;IAEjF,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,IAAA,uCAAoB,GAAE,CAAA;IAChD,UAAU,CAAC;QACT,IAAI,EAAE;YACJ,MAAM;YACN,IAAI,EAAE,MAAM,CAAC,QAAQ,CAAC,IAAI;YAC1B,KAAK;SACN;QACD,IAAI,EAAE,kBAAU,CAAC,IAAI;QACrB,SAAS;KACV,CAAC,CAAA;IAEF,UAAU,CAAC;QACT,IAAI,EAAE;YACJ,SAAS,EAAE,QAAQ,CAAC,QAAQ,EAAE;SAC/B;QACD,IAAI,EAAE,kBAAU,CAAC,KAAK;QACtB,SAAS;KACV,CAAC,CAAA;IAEF,SAAS,CAAC,SAAS,EAAE,IAAI,EAAE,QAAQ,EAAE,UAAU,EAAE,SAAS,EAAE,KAAK,CAAC,CAAA;IAElE,IAAI,MAAM,CAAC,cAAc,EAAE,CAAC;QAC1B,UAAU,CAAC;YACT,IAAI,EAAE,IAAA,6BAAiB,EAAC,MAAM,CAAC,cAAc,CAAC;YAC9C,IAAI,EAAE,kBAAU,CAAC,cAAc;YAC/B,SAAS;SACV,CAAC,CAAA;IACJ,CAAC;AACH,CAAC;AAED,SAAS,oCAAoC;IAC3C,OAAO,IAAA,kDAAkC,GAAE,CAAC,CAAC,CAAC,6CAA6B,CAAC,CAAC,CAAC,qCAAqB,CAAA;AACrG,CAAC"}
@@ -0,0 +1,12 @@
1
+ export { trackMove } from './trackMove';
2
+ export { trackMouseInteraction } from './trackMouseInteraction';
3
+ export { trackScroll } from './trackScroll';
4
+ export { trackViewportResize, trackVisualViewportResize } from './trackViewportResize';
5
+ export { trackMediaInteraction } from './trackMediaInteraction';
6
+ export { trackStyleSheet } from './trackStyleSheet';
7
+ export { trackFocus } from './trackFocus';
8
+ export { trackFrustration } from './trackFrustration';
9
+ export { trackViewEnd } from './trackViewEnd';
10
+ export { trackInput } from './trackInput';
11
+ export { trackMutation } from './trackMutation';
12
+ export type { Tracker } from './tracker.types';
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.trackMutation = exports.trackInput = exports.trackViewEnd = exports.trackFrustration = exports.trackFocus = exports.trackStyleSheet = exports.trackMediaInteraction = exports.trackVisualViewportResize = exports.trackViewportResize = exports.trackScroll = exports.trackMouseInteraction = exports.trackMove = void 0;
4
+ var trackMove_1 = require("./trackMove");
5
+ Object.defineProperty(exports, "trackMove", { enumerable: true, get: function () { return trackMove_1.trackMove; } });
6
+ var trackMouseInteraction_1 = require("./trackMouseInteraction");
7
+ Object.defineProperty(exports, "trackMouseInteraction", { enumerable: true, get: function () { return trackMouseInteraction_1.trackMouseInteraction; } });
8
+ var trackScroll_1 = require("./trackScroll");
9
+ Object.defineProperty(exports, "trackScroll", { enumerable: true, get: function () { return trackScroll_1.trackScroll; } });
10
+ var trackViewportResize_1 = require("./trackViewportResize");
11
+ Object.defineProperty(exports, "trackViewportResize", { enumerable: true, get: function () { return trackViewportResize_1.trackViewportResize; } });
12
+ Object.defineProperty(exports, "trackVisualViewportResize", { enumerable: true, get: function () { return trackViewportResize_1.trackVisualViewportResize; } });
13
+ var trackMediaInteraction_1 = require("./trackMediaInteraction");
14
+ Object.defineProperty(exports, "trackMediaInteraction", { enumerable: true, get: function () { return trackMediaInteraction_1.trackMediaInteraction; } });
15
+ var trackStyleSheet_1 = require("./trackStyleSheet");
16
+ Object.defineProperty(exports, "trackStyleSheet", { enumerable: true, get: function () { return trackStyleSheet_1.trackStyleSheet; } });
17
+ var trackFocus_1 = require("./trackFocus");
18
+ Object.defineProperty(exports, "trackFocus", { enumerable: true, get: function () { return trackFocus_1.trackFocus; } });
19
+ var trackFrustration_1 = require("./trackFrustration");
20
+ Object.defineProperty(exports, "trackFrustration", { enumerable: true, get: function () { return trackFrustration_1.trackFrustration; } });
21
+ var trackViewEnd_1 = require("./trackViewEnd");
22
+ Object.defineProperty(exports, "trackViewEnd", { enumerable: true, get: function () { return trackViewEnd_1.trackViewEnd; } });
23
+ var trackInput_1 = require("./trackInput");
24
+ Object.defineProperty(exports, "trackInput", { enumerable: true, get: function () { return trackInput_1.trackInput; } });
25
+ var trackMutation_1 = require("./trackMutation");
26
+ Object.defineProperty(exports, "trackMutation", { enumerable: true, get: function () { return trackMutation_1.trackMutation; } });
27
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/domain/record/trackers/index.ts"],"names":[],"mappings":";;;AAAA,yCAAuC;AAA9B,sGAAA,SAAS,OAAA;AAClB,iEAA+D;AAAtD,8HAAA,qBAAqB,OAAA;AAC9B,6CAA2C;AAAlC,0GAAA,WAAW,OAAA;AACpB,6DAAsF;AAA7E,0HAAA,mBAAmB,OAAA;AAAE,gIAAA,yBAAyB,OAAA;AACvD,iEAA+D;AAAtD,8HAAA,qBAAqB,OAAA;AAC9B,qDAAmD;AAA1C,kHAAA,eAAe,OAAA;AACxB,2CAAyC;AAAhC,wGAAA,UAAU,OAAA;AACnB,uDAAqD;AAA5C,oHAAA,gBAAgB,OAAA;AACzB,+CAA6C;AAApC,4GAAA,YAAY,OAAA;AACrB,2CAAyC;AAAhC,wGAAA,UAAU,OAAA;AACnB,iDAA+C;AAAtC,8GAAA,aAAa,OAAA"}
@@ -0,0 +1,5 @@
1
+ import type { FocusRecord } from '../../../types';
2
+ import type { RecordingScope } from '../recordingScope';
3
+ import type { EmitRecordCallback } from '../record.types';
4
+ import type { Tracker } from './tracker.types';
5
+ export declare function trackFocus(emitRecord: EmitRecordCallback<FocusRecord>, scope: RecordingScope): Tracker;
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.trackFocus = trackFocus;
4
+ const browser_core_1 = require("@datadog/browser-core");
5
+ const types_1 = require("../../../types");
6
+ function trackFocus(emitRecord, scope) {
7
+ return (0, browser_core_1.addEventListeners)(scope.configuration, window, ["focus" /* DOM_EVENT.FOCUS */, "blur" /* DOM_EVENT.BLUR */], () => {
8
+ emitRecord({
9
+ data: { has_focus: document.hasFocus() },
10
+ type: types_1.RecordType.Focus,
11
+ timestamp: (0, browser_core_1.timeStampNow)(),
12
+ });
13
+ });
14
+ }
15
+ //# sourceMappingURL=trackFocus.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"trackFocus.js","sourceRoot":"","sources":["../../../../src/domain/record/trackers/trackFocus.ts"],"names":[],"mappings":";;AAOA,gCAQC;AAfD,wDAAkF;AAElF,0CAA2C;AAK3C,SAAgB,UAAU,CAAC,UAA2C,EAAE,KAAqB;IAC3F,OAAO,IAAA,gCAAiB,EAAC,KAAK,CAAC,aAAa,EAAE,MAAM,EAAE,4DAAiC,EAAE,GAAG,EAAE;QAC5F,UAAU,CAAC;YACT,IAAI,EAAE,EAAE,SAAS,EAAE,QAAQ,CAAC,QAAQ,EAAE,EAAE;YACxC,IAAI,EAAE,kBAAU,CAAC,KAAK;YACtB,SAAS,EAAE,IAAA,2BAAY,GAAE;SAC1B,CAAC,CAAA;IACJ,CAAC,CAAC,CAAA;AACJ,CAAC"}
@@ -0,0 +1,6 @@
1
+ import type { LifeCycle } from '@datadog/browser-rum-core';
2
+ import type { FrustrationRecord } from '../../../types';
3
+ import type { EmitRecordCallback } from '../record.types';
4
+ import type { RecordingScope } from '../recordingScope';
5
+ import type { Tracker } from './tracker.types';
6
+ export declare function trackFrustration(lifeCycle: LifeCycle, emitRecord: EmitRecordCallback<FrustrationRecord>, scope: RecordingScope): Tracker;
@@ -0,0 +1,31 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.trackFrustration = trackFrustration;
4
+ const browser_rum_core_1 = require("@datadog/browser-rum-core");
5
+ const types_1 = require("../../../types");
6
+ function trackFrustration(lifeCycle, emitRecord, scope) {
7
+ const frustrationSubscription = lifeCycle.subscribe(12 /* LifeCycleEventType.RAW_RUM_EVENT_COLLECTED */, (data) => {
8
+ var _a, _b;
9
+ if (data.rawRumEvent.type === browser_rum_core_1.RumEventType.ACTION &&
10
+ data.rawRumEvent.action.type === browser_rum_core_1.ActionType.CLICK &&
11
+ ((_b = (_a = data.rawRumEvent.action.frustration) === null || _a === void 0 ? void 0 : _a.type) === null || _b === void 0 ? void 0 : _b.length) &&
12
+ 'events' in data.domainContext &&
13
+ data.domainContext.events &&
14
+ data.domainContext.events.length) {
15
+ emitRecord({
16
+ timestamp: data.rawRumEvent.date,
17
+ type: types_1.RecordType.FrustrationRecord,
18
+ data: {
19
+ frustrationTypes: data.rawRumEvent.action.frustration.type,
20
+ recordIds: data.domainContext.events.map((e) => scope.eventIds.getOrInsert(e)),
21
+ },
22
+ });
23
+ }
24
+ });
25
+ return {
26
+ stop: () => {
27
+ frustrationSubscription.unsubscribe();
28
+ },
29
+ };
30
+ }
31
+ //# sourceMappingURL=trackFrustration.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"trackFrustration.js","sourceRoot":"","sources":["../../../../src/domain/record/trackers/trackFrustration.ts"],"names":[],"mappings":";;AAQA,4CA8BC;AArCD,gEAAwF;AAExF,0CAA2C;AAK3C,SAAgB,gBAAgB,CAC9B,SAAoB,EACpB,UAAiD,EACjD,KAAqB;IAErB,MAAM,uBAAuB,GAAG,SAAS,CAAC,SAAS,sDAA6C,CAAC,IAAI,EAAE,EAAE;;QACvG,IACE,IAAI,CAAC,WAAW,CAAC,IAAI,KAAK,+BAAY,CAAC,MAAM;YAC7C,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,IAAI,KAAK,6BAAU,CAAC,KAAK;aACjD,MAAA,MAAA,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,WAAW,0CAAE,IAAI,0CAAE,MAAM,CAAA;YACjD,QAAQ,IAAI,IAAI,CAAC,aAAa;YAC9B,IAAI,CAAC,aAAa,CAAC,MAAM;YACzB,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,MAAM,EAChC,CAAC;YACD,UAAU,CAAC;gBACT,SAAS,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI;gBAChC,IAAI,EAAE,kBAAU,CAAC,iBAAiB;gBAClC,IAAI,EAAE;oBACJ,gBAAgB,EAAE,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,WAAW,CAAC,IAAI;oBAC1D,SAAS,EAAE,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,KAAK,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;iBAC/E;aACF,CAAC,CAAA;QACJ,CAAC;IACH,CAAC,CAAC,CAAA;IAEF,OAAO;QACL,IAAI,EAAE,GAAG,EAAE;YACT,uBAAuB,CAAC,WAAW,EAAE,CAAA;QACvC,CAAC;KACF,CAAA;AACH,CAAC"}
@@ -0,0 +1,4 @@
1
+ import type { RecordingScope } from '../recordingScope';
2
+ import type { EmitRecordCallback } from '../record.types';
3
+ import type { Tracker } from './tracker.types';
4
+ export declare function trackInput(target: Document | ShadowRoot, emitRecord: EmitRecordCallback, scope: RecordingScope): Tracker;
@@ -0,0 +1,104 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.trackInput = trackInput;
4
+ const browser_core_1 = require("@datadog/browser-core");
5
+ const browser_rum_core_1 = require("@datadog/browser-rum-core");
6
+ const types_1 = require("../../../types");
7
+ const eventsUtils_1 = require("../eventsUtils");
8
+ const serialization_1 = require("../serialization");
9
+ const assembly_1 = require("../assembly");
10
+ function trackInput(target, emitRecord, scope) {
11
+ const defaultPrivacyLevel = scope.configuration.defaultPrivacyLevel;
12
+ const lastInputStateMap = new WeakMap();
13
+ const isShadowRoot = target !== document;
14
+ const { stop: stopEventListeners } = (0, browser_core_1.addEventListeners)(scope.configuration, target,
15
+ // The 'input' event bubbles across shadow roots, so we don't have to listen for it on shadow
16
+ // roots since it will be handled by the event listener that we did add to the document. Only
17
+ // the 'change' event is blocked and needs to be handled on shadow roots.
18
+ isShadowRoot ? ["change" /* DOM_EVENT.CHANGE */] : ["input" /* DOM_EVENT.INPUT */, "change" /* DOM_EVENT.CHANGE */], (event) => {
19
+ const target = (0, eventsUtils_1.getEventTarget)(event);
20
+ if (target instanceof HTMLInputElement ||
21
+ target instanceof HTMLTextAreaElement ||
22
+ target instanceof HTMLSelectElement) {
23
+ onElementChange(target);
24
+ }
25
+ }, {
26
+ capture: true,
27
+ passive: true,
28
+ });
29
+ let stopPropertySetterInstrumentation;
30
+ if (!isShadowRoot) {
31
+ const instrumentationStoppers = [
32
+ (0, browser_core_1.instrumentSetter)(HTMLInputElement.prototype, 'value', onElementChange),
33
+ (0, browser_core_1.instrumentSetter)(HTMLInputElement.prototype, 'checked', onElementChange),
34
+ (0, browser_core_1.instrumentSetter)(HTMLSelectElement.prototype, 'value', onElementChange),
35
+ (0, browser_core_1.instrumentSetter)(HTMLTextAreaElement.prototype, 'value', onElementChange),
36
+ (0, browser_core_1.instrumentSetter)(HTMLSelectElement.prototype, 'selectedIndex', onElementChange),
37
+ ];
38
+ stopPropertySetterInstrumentation = () => {
39
+ instrumentationStoppers.forEach((stopper) => stopper.stop());
40
+ };
41
+ }
42
+ else {
43
+ stopPropertySetterInstrumentation = browser_core_1.noop;
44
+ }
45
+ return {
46
+ stop: () => {
47
+ stopPropertySetterInstrumentation();
48
+ stopEventListeners();
49
+ },
50
+ };
51
+ function onElementChange(target) {
52
+ const nodePrivacyLevel = (0, browser_rum_core_1.getNodePrivacyLevel)(target, defaultPrivacyLevel);
53
+ if (nodePrivacyLevel === browser_rum_core_1.NodePrivacyLevel.HIDDEN) {
54
+ return;
55
+ }
56
+ const type = target.type;
57
+ let inputState;
58
+ if (type === 'radio' || type === 'checkbox') {
59
+ if ((0, browser_rum_core_1.shouldMaskNode)(target, nodePrivacyLevel)) {
60
+ return;
61
+ }
62
+ inputState = { isChecked: target.checked };
63
+ }
64
+ else {
65
+ const value = (0, serialization_1.getElementInputValue)(target, nodePrivacyLevel);
66
+ if (value === undefined) {
67
+ return;
68
+ }
69
+ inputState = { text: value };
70
+ }
71
+ // Can be multiple changes on the same node within the same batched mutation observation.
72
+ createRecordIfStateChanged(target, inputState);
73
+ // If a radio was checked, other radios with the same name attribute will be unchecked.
74
+ const name = target.name;
75
+ if (type === 'radio' && name && target.checked) {
76
+ document.querySelectorAll(`input[type="radio"][name="${CSS.escape(name)}"]`).forEach((el) => {
77
+ if (el !== target) {
78
+ // TODO: Consider the privacy implications for various differing input privacy levels
79
+ createRecordIfStateChanged(el, { isChecked: false });
80
+ }
81
+ });
82
+ }
83
+ }
84
+ /**
85
+ * There can be multiple changes on the same node within the same batched mutation observation.
86
+ */
87
+ function createRecordIfStateChanged(target, inputState) {
88
+ const id = scope.nodeIds.get(target);
89
+ if (id === undefined) {
90
+ return;
91
+ }
92
+ const lastInputState = lastInputStateMap.get(target);
93
+ if (!lastInputState ||
94
+ lastInputState.text !== inputState.text ||
95
+ lastInputState.isChecked !== inputState.isChecked) {
96
+ lastInputStateMap.set(target, inputState);
97
+ emitRecord((0, assembly_1.assembleIncrementalSnapshot)(types_1.IncrementalSource.Input, {
98
+ id,
99
+ ...inputState,
100
+ }));
101
+ }
102
+ }
103
+ }
104
+ //# sourceMappingURL=trackInput.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"trackInput.js","sourceRoot":"","sources":["../../../../src/domain/record/trackers/trackInput.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,5 @@
1
+ import type { BrowserIncrementalSnapshotRecord } from '../../../types';
2
+ import type { EmitRecordCallback } from '../record.types';
3
+ import type { RecordingScope } from '../recordingScope';
4
+ import type { Tracker } from './tracker.types';
5
+ export declare function trackMediaInteraction(emitRecord: EmitRecordCallback<BrowserIncrementalSnapshotRecord>, scope: RecordingScope): Tracker;
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.trackMediaInteraction = trackMediaInteraction;
4
+ const browser_core_1 = require("@datadog/browser-core");
5
+ const browser_rum_core_1 = require("@datadog/browser-rum-core");
6
+ const types_1 = require("../../../types");
7
+ const eventsUtils_1 = require("../eventsUtils");
8
+ const assembly_1 = require("../assembly");
9
+ function trackMediaInteraction(emitRecord, scope) {
10
+ return (0, browser_core_1.addEventListeners)(scope.configuration, document, ["play" /* DOM_EVENT.PLAY */, "pause" /* DOM_EVENT.PAUSE */], (event) => {
11
+ const target = (0, eventsUtils_1.getEventTarget)(event);
12
+ if (!target) {
13
+ return;
14
+ }
15
+ const id = scope.nodeIds.get(target);
16
+ if (id === undefined ||
17
+ (0, browser_rum_core_1.getNodePrivacyLevel)(target, scope.configuration.defaultPrivacyLevel) === browser_rum_core_1.NodePrivacyLevel.HIDDEN) {
18
+ return;
19
+ }
20
+ emitRecord((0, assembly_1.assembleIncrementalSnapshot)(types_1.IncrementalSource.MediaInteraction, {
21
+ id,
22
+ type: event.type === "play" /* DOM_EVENT.PLAY */ ? types_1.MediaInteractionType.Play : types_1.MediaInteractionType.Pause,
23
+ }));
24
+ }, {
25
+ capture: true,
26
+ passive: true,
27
+ });
28
+ }
29
+ //# sourceMappingURL=trackMediaInteraction.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"trackMediaInteraction.js","sourceRoot":"","sources":["../../../../src/domain/record/trackers/trackMediaInteraction.ts"],"names":[],"mappings":";;AAUA,sDAgCC;AA1CD,wDAAoE;AACpE,gEAAiF;AAEjF,0CAAwE;AACxE,gDAA+C;AAC/C,0CAAyD;AAKzD,SAAgB,qBAAqB,CACnC,UAAgE,EAChE,KAAqB;IAErB,OAAO,IAAA,gCAAiB,EACtB,KAAK,CAAC,aAAa,EACnB,QAAQ,EACR,4DAAiC,EACjC,CAAC,KAAK,EAAE,EAAE;QACR,MAAM,MAAM,GAAG,IAAA,4BAAc,EAAC,KAAK,CAAC,CAAA;QACpC,IAAI,CAAC,MAAM,EAAE,CAAC;YACZ,OAAM;QACR,CAAC;QACD,MAAM,EAAE,GAAG,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;QACpC,IACE,EAAE,KAAK,SAAS;YAChB,IAAA,sCAAmB,EAAC,MAAM,EAAE,KAAK,CAAC,aAAa,CAAC,mBAAmB,CAAC,KAAK,mCAAgB,CAAC,MAAM,EAChG,CAAC;YACD,OAAM;QACR,CAAC;QACD,UAAU,CACR,IAAA,sCAA2B,EAAuB,yBAAiB,CAAC,gBAAgB,EAAE;YACpF,EAAE;YACF,IAAI,EAAE,KAAK,CAAC,IAAI,gCAAmB,CAAC,CAAC,CAAC,4BAAoB,CAAC,IAAI,CAAC,CAAC,CAAC,4BAAoB,CAAC,KAAK;SAC7F,CAAC,CACH,CAAA;IACH,CAAC,EACD;QACE,OAAO,EAAE,IAAI;QACb,OAAO,EAAE,IAAI;KACd,CACF,CAAA;AACH,CAAC"}
@@ -0,0 +1,5 @@
1
+ import type { BrowserIncrementalSnapshotRecord } from '../../../types';
2
+ import type { RecordingScope } from '../recordingScope';
3
+ import type { EmitRecordCallback } from '../record.types';
4
+ import type { Tracker } from './tracker.types';
5
+ export declare function trackMouseInteraction(emitRecord: EmitRecordCallback<BrowserIncrementalSnapshotRecord>, scope: RecordingScope): Tracker;
@@ -0,0 +1,59 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.trackMouseInteraction = trackMouseInteraction;
4
+ const browser_core_1 = require("@datadog/browser-core");
5
+ const browser_rum_core_1 = require("@datadog/browser-rum-core");
6
+ const types_1 = require("../../../types");
7
+ const assembly_1 = require("../assembly");
8
+ const eventsUtils_1 = require("../eventsUtils");
9
+ const trackMove_1 = require("./trackMove");
10
+ const eventTypeToMouseInteraction = {
11
+ // Listen for pointerup DOM events instead of mouseup for MouseInteraction/MouseUp records. This
12
+ // allows to reference such records from Frustration records.
13
+ //
14
+ // In the context of supporting Mobile Session Replay, we introduced `PointerInteraction` records
15
+ // used by the Mobile SDKs in place of `MouseInteraction`. In the future, we should replace
16
+ // `MouseInteraction` by `PointerInteraction` in the Browser SDK so we have an uniform way to
17
+ // convey such interaction. This would cleanly solve the issue since we would have
18
+ // `PointerInteraction/Up` records that we could reference from `Frustration` records.
19
+ ["pointerup" /* DOM_EVENT.POINTER_UP */]: types_1.MouseInteractionType.MouseUp,
20
+ ["mousedown" /* DOM_EVENT.MOUSE_DOWN */]: types_1.MouseInteractionType.MouseDown,
21
+ ["click" /* DOM_EVENT.CLICK */]: types_1.MouseInteractionType.Click,
22
+ ["contextmenu" /* DOM_EVENT.CONTEXT_MENU */]: types_1.MouseInteractionType.ContextMenu,
23
+ ["dblclick" /* DOM_EVENT.DBL_CLICK */]: types_1.MouseInteractionType.DblClick,
24
+ ["focus" /* DOM_EVENT.FOCUS */]: types_1.MouseInteractionType.Focus,
25
+ ["blur" /* DOM_EVENT.BLUR */]: types_1.MouseInteractionType.Blur,
26
+ ["touchstart" /* DOM_EVENT.TOUCH_START */]: types_1.MouseInteractionType.TouchStart,
27
+ ["touchend" /* DOM_EVENT.TOUCH_END */]: types_1.MouseInteractionType.TouchEnd,
28
+ };
29
+ function trackMouseInteraction(emitRecord, scope) {
30
+ const handler = (event) => {
31
+ const target = (0, eventsUtils_1.getEventTarget)(event);
32
+ const id = scope.nodeIds.get(target);
33
+ if (id === undefined ||
34
+ (0, browser_rum_core_1.getNodePrivacyLevel)(target, scope.configuration.defaultPrivacyLevel) === browser_rum_core_1.NodePrivacyLevel.HIDDEN) {
35
+ return;
36
+ }
37
+ const type = eventTypeToMouseInteraction[event.type];
38
+ let interaction;
39
+ if (type !== types_1.MouseInteractionType.Blur && type !== types_1.MouseInteractionType.Focus) {
40
+ const coordinates = (0, trackMove_1.tryToComputeCoordinates)(event);
41
+ if (!coordinates) {
42
+ return;
43
+ }
44
+ interaction = { id, type, x: coordinates.x, y: coordinates.y };
45
+ }
46
+ else {
47
+ interaction = { id, type };
48
+ }
49
+ emitRecord({
50
+ id: scope.eventIds.getOrInsert(event),
51
+ ...(0, assembly_1.assembleIncrementalSnapshot)(types_1.IncrementalSource.MouseInteraction, interaction),
52
+ });
53
+ };
54
+ return (0, browser_core_1.addEventListeners)(scope.configuration, document, Object.keys(eventTypeToMouseInteraction), handler, {
55
+ capture: true,
56
+ passive: true,
57
+ });
58
+ }
59
+ //# sourceMappingURL=trackMouseInteraction.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"trackMouseInteraction.js","sourceRoot":"","sources":["../../../../src/domain/record/trackers/trackMouseInteraction.ts"],"names":[],"mappings":";;AAgCA,sDAyCC;AAzED,wDAAoE;AACpE,gEAAiF;AAEjF,0CAAwE;AACxE,0CAAyD;AACzD,gDAA+C;AAG/C,2CAAqD;AAGrD,MAAM,2BAA2B,GAAG;IAClC,gGAAgG;IAChG,6DAA6D;IAC7D,EAAE;IACF,iGAAiG;IACjG,2FAA2F;IAC3F,6FAA6F;IAC7F,kFAAkF;IAClF,sFAAsF;IACtF,wCAAsB,EAAE,4BAAoB,CAAC,OAAO;IAEpD,wCAAsB,EAAE,4BAAoB,CAAC,SAAS;IACtD,+BAAiB,EAAE,4BAAoB,CAAC,KAAK;IAC7C,4CAAwB,EAAE,4BAAoB,CAAC,WAAW;IAC1D,sCAAqB,EAAE,4BAAoB,CAAC,QAAQ;IACpD,+BAAiB,EAAE,4BAAoB,CAAC,KAAK;IAC7C,6BAAgB,EAAE,4BAAoB,CAAC,IAAI;IAC3C,0CAAuB,EAAE,4BAAoB,CAAC,UAAU;IACxD,sCAAqB,EAAE,4BAAoB,CAAC,QAAQ;CACrD,CAAA;AAED,SAAgB,qBAAqB,CACnC,UAAgE,EAChE,KAAqB;IAErB,MAAM,OAAO,GAAG,CAAC,KAA2C,EAAE,EAAE;QAC9D,MAAM,MAAM,GAAG,IAAA,4BAAc,EAAC,KAAK,CAAC,CAAA;QACpC,MAAM,EAAE,GAAG,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;QACpC,IACE,EAAE,KAAK,SAAS;YAChB,IAAA,sCAAmB,EAAC,MAAM,EAAE,KAAK,CAAC,aAAa,CAAC,mBAAmB,CAAC,KAAK,mCAAgB,CAAC,MAAM,EAChG,CAAC;YACD,OAAM;QACR,CAAC;QACD,MAAM,IAAI,GAAG,2BAA2B,CAAC,KAAK,CAAC,IAAgD,CAAC,CAAA;QAEhG,IAAI,WAA6B,CAAA;QACjC,IAAI,IAAI,KAAK,4BAAoB,CAAC,IAAI,IAAI,IAAI,KAAK,4BAAoB,CAAC,KAAK,EAAE,CAAC;YAC9E,MAAM,WAAW,GAAG,IAAA,mCAAuB,EAAC,KAAgC,CAAC,CAAA;YAC7E,IAAI,CAAC,WAAW,EAAE,CAAC;gBACjB,OAAM;YACR,CAAC;YACD,WAAW,GAAG,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,WAAW,CAAC,CAAC,EAAE,CAAC,EAAE,WAAW,CAAC,CAAC,EAAE,CAAA;QAChE,CAAC;aAAM,CAAC;YACN,WAAW,GAAG,EAAE,EAAE,EAAE,IAAI,EAAE,CAAA;QAC5B,CAAC;QAED,UAAU,CAAC;YACT,EAAE,EAAE,KAAK,CAAC,QAAQ,CAAC,WAAW,CAAC,KAAK,CAAC;YACrC,GAAG,IAAA,sCAA2B,EAAuB,yBAAiB,CAAC,gBAAgB,EAAE,WAAW,CAAC;SACtG,CAAC,CAAA;IACJ,CAAC,CAAA;IACD,OAAO,IAAA,gCAAiB,EACtB,KAAK,CAAC,aAAa,EACnB,QAAQ,EACR,MAAM,CAAC,IAAI,CAAC,2BAA2B,CAAoD,EAC3F,OAAO,EACP;QACE,OAAO,EAAE,IAAI;QACb,OAAO,EAAE,IAAI;KACd,CACF,CAAA;AACH,CAAC"}