@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,51 @@
1
+ import { addEventListeners, throttle } from '@datadog/browser-core';
2
+ import { IncrementalSource } from '../../../types';
3
+ import { getEventTarget, isTouchEvent } from '../eventsUtils';
4
+ import { convertMouseEventToLayoutCoordinates } from '../viewports';
5
+ import { assembleIncrementalSnapshot } from '../assembly';
6
+ const MOUSE_MOVE_OBSERVER_THRESHOLD = 50;
7
+ export function trackMove(emitRecord, scope) {
8
+ const { throttled: updatePosition, cancel: cancelThrottle } = throttle((event) => {
9
+ const target = getEventTarget(event);
10
+ const id = scope.nodeIds.get(target);
11
+ if (id === undefined) {
12
+ return;
13
+ }
14
+ const coordinates = tryToComputeCoordinates(event);
15
+ if (!coordinates) {
16
+ return;
17
+ }
18
+ const position = {
19
+ id,
20
+ timeOffset: 0,
21
+ x: coordinates.x,
22
+ y: coordinates.y,
23
+ };
24
+ emitRecord(assembleIncrementalSnapshot(isTouchEvent(event) ? IncrementalSource.TouchMove : IncrementalSource.MouseMove, { positions: [position] }));
25
+ }, MOUSE_MOVE_OBSERVER_THRESHOLD, {
26
+ trailing: false,
27
+ });
28
+ const { stop: removeListener } = addEventListeners(scope.configuration, document, ["mousemove" /* DOM_EVENT.MOUSE_MOVE */, "touchmove" /* DOM_EVENT.TOUCH_MOVE */], updatePosition, {
29
+ capture: true,
30
+ passive: true,
31
+ });
32
+ return {
33
+ stop: () => {
34
+ removeListener();
35
+ cancelThrottle();
36
+ },
37
+ };
38
+ }
39
+ export function tryToComputeCoordinates(event) {
40
+ let { clientX: x, clientY: y } = isTouchEvent(event) ? event.changedTouches[0] : event;
41
+ if (window.visualViewport) {
42
+ const { visualViewportX, visualViewportY } = convertMouseEventToLayoutCoordinates(x, y);
43
+ x = visualViewportX;
44
+ y = visualViewportY;
45
+ }
46
+ if (!Number.isFinite(x) || !Number.isFinite(y)) {
47
+ return undefined;
48
+ }
49
+ return { x, y };
50
+ }
51
+ //# sourceMappingURL=trackMove.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"trackMove.js","sourceRoot":"","sources":["../../../../src/domain/record/trackers/trackMove.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAa,QAAQ,EAAE,MAAM,uBAAuB,CAAA;AAE9E,OAAO,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAA;AAClD,OAAO,EAAE,cAAc,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAC7D,OAAO,EAAE,oCAAoC,EAAE,MAAM,cAAc,CAAA;AACnE,OAAO,EAAE,2BAA2B,EAAE,MAAM,aAAa,CAAA;AAKzD,MAAM,6BAA6B,GAAG,EAAE,CAAA;AAExC,MAAM,UAAU,SAAS,CACvB,UAAgE,EAChE,KAAqB;IAErB,MAAM,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,EAAE,cAAc,EAAE,GAAG,QAAQ,CACpE,CAAC,KAA8B,EAAE,EAAE;QACjC,MAAM,MAAM,GAAG,cAAc,CAAC,KAAK,CAAC,CAAA;QACpC,MAAM,EAAE,GAAG,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;QACpC,IAAI,EAAE,KAAK,SAAS,EAAE,CAAC;YACrB,OAAM;QACR,CAAC;QACD,MAAM,WAAW,GAAG,uBAAuB,CAAC,KAAK,CAAC,CAAA;QAClD,IAAI,CAAC,WAAW,EAAE,CAAC;YACjB,OAAM;QACR,CAAC;QACD,MAAM,QAAQ,GAAkB;YAC9B,EAAE;YACF,UAAU,EAAE,CAAC;YACb,CAAC,EAAE,WAAW,CAAC,CAAC;YAChB,CAAC,EAAE,WAAW,CAAC,CAAC;SACjB,CAAA;QAED,UAAU,CACR,2BAA2B,CACzB,YAAY,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,iBAAiB,CAAC,SAAS,CAAC,CAAC,CAAC,iBAAiB,CAAC,SAAS,EAC/E,EAAE,SAAS,EAAE,CAAC,QAAQ,CAAC,EAAE,CAC1B,CACF,CAAA;IACH,CAAC,EACD,6BAA6B,EAC7B;QACE,QAAQ,EAAE,KAAK;KAChB,CACF,CAAA;IAED,MAAM,EAAE,IAAI,EAAE,cAAc,EAAE,GAAG,iBAAiB,CAChD,KAAK,CAAC,aAAa,EACnB,QAAQ,EACR,gFAA4C,EAC5C,cAAc,EACd;QACE,OAAO,EAAE,IAAI;QACb,OAAO,EAAE,IAAI;KACd,CACF,CAAA;IAED,OAAO;QACL,IAAI,EAAE,GAAG,EAAE;YACT,cAAc,EAAE,CAAA;YAChB,cAAc,EAAE,CAAA;QAClB,CAAC;KACF,CAAA;AACH,CAAC;AAED,MAAM,UAAU,uBAAuB,CAAC,KAA8B;IACpE,IAAI,EAAE,OAAO,EAAE,CAAC,EAAE,OAAO,EAAE,CAAC,EAAE,GAAG,YAAY,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAA;IACtF,IAAI,MAAM,CAAC,cAAc,EAAE,CAAC;QAC1B,MAAM,EAAE,eAAe,EAAE,eAAe,EAAE,GAAG,oCAAoC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAA;QACvF,CAAC,GAAG,eAAe,CAAA;QACnB,CAAC,GAAG,eAAe,CAAA;IACrB,CAAC;IACD,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC;QAC/C,OAAO,SAAS,CAAA;IAClB,CAAC;IACD,OAAO,EAAE,CAAC,EAAE,CAAC,EAAE,CAAA;AACjB,CAAC"}
@@ -0,0 +1,13 @@
1
+ import type { TimeStamp } from '@datadog/browser-core';
2
+ import type { RumMutationRecord } from '@datadog/browser-rum-core';
3
+ import type { RecordingScope } from '../recordingScope';
4
+ import type { EmitRecordCallback, EmitStatsCallback } from '../record.types';
5
+ import type { Tracker } from './tracker.types';
6
+ export type MutationTracker = Tracker & {
7
+ flush: () => void;
8
+ };
9
+ export type SerializeMutationsCallback = (timestamp: TimeStamp, mutations: RumMutationRecord[], emitRecord: EmitRecordCallback, emitStats: EmitStatsCallback, scope: RecordingScope) => void;
10
+ /**
11
+ * Buffers and aggregate mutations generated by a MutationObserver into MutationPayload
12
+ */
13
+ export declare function trackMutation(target: Node, emitRecord: EmitRecordCallback, emitStats: EmitStatsCallback, scope: RecordingScope, serialize?: SerializeMutationsCallback): MutationTracker;
@@ -0,0 +1,38 @@
1
+ import { monitor, noop, timeStampNow } from '@datadog/browser-core';
2
+ import { getMutationObserverConstructor } from '@datadog/browser-rum-core';
3
+ import { createMutationBatch } from '../mutationBatch';
4
+ import { isIncrementalSnapshotChangeRecordsEnabled, serializeMutations, serializeMutationsAsChange, } from '../serialization';
5
+ /**
6
+ * Buffers and aggregate mutations generated by a MutationObserver into MutationPayload
7
+ */
8
+ export function trackMutation(target, emitRecord, emitStats, scope, serialize = defaultSerializeMutationsCallback()) {
9
+ const MutationObserver = getMutationObserverConstructor();
10
+ if (!MutationObserver) {
11
+ return { stop: noop, flush: noop };
12
+ }
13
+ const mutationBatch = createMutationBatch((mutations) => {
14
+ serialize(timeStampNow(), mutations.concat(observer.takeRecords()), emitRecord, emitStats, scope);
15
+ });
16
+ const observer = new MutationObserver(monitor(mutationBatch.addMutations));
17
+ observer.observe(target, {
18
+ attributeOldValue: true,
19
+ attributes: true,
20
+ characterData: true,
21
+ characterDataOldValue: true,
22
+ childList: true,
23
+ subtree: true,
24
+ });
25
+ return {
26
+ stop: () => {
27
+ observer.disconnect();
28
+ mutationBatch.stop();
29
+ },
30
+ flush: () => {
31
+ mutationBatch.flush();
32
+ },
33
+ };
34
+ }
35
+ function defaultSerializeMutationsCallback() {
36
+ return isIncrementalSnapshotChangeRecordsEnabled() ? serializeMutationsAsChange : serializeMutations;
37
+ }
38
+ //# sourceMappingURL=trackMutation.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"trackMutation.js","sourceRoot":"","sources":["../../../../src/domain/record/trackers/trackMutation.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AAEnE,OAAO,EAAE,8BAA8B,EAAE,MAAM,2BAA2B,CAAA;AAE1E,OAAO,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAA;AAEtD,OAAO,EACL,yCAAyC,EACzC,kBAAkB,EAClB,0BAA0B,GAC3B,MAAM,kBAAkB,CAAA;AAazB;;GAEG;AACH,MAAM,UAAU,aAAa,CAC3B,MAAY,EACZ,UAA8B,EAC9B,SAA4B,EAC5B,KAAqB,EACrB,YAAwC,iCAAiC,EAAE;IAE3E,MAAM,gBAAgB,GAAG,8BAA8B,EAAE,CAAA;IACzD,IAAI,CAAC,gBAAgB,EAAE,CAAC;QACtB,OAAO,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,CAAA;IACpC,CAAC;IAED,MAAM,aAAa,GAAG,mBAAmB,CAAC,CAAC,SAAS,EAAE,EAAE;QACtD,SAAS,CACP,YAAY,EAAE,EACd,SAAS,CAAC,MAAM,CAAC,QAAQ,CAAC,WAAW,EAAyB,CAAC,EAC/D,UAAU,EACV,SAAS,EACT,KAAK,CACN,CAAA;IACH,CAAC,CAAC,CAAA;IAEF,MAAM,QAAQ,GAAG,IAAI,gBAAgB,CAAC,OAAO,CAAC,aAAa,CAAC,YAAY,CAA4C,CAAC,CAAA;IAErH,QAAQ,CAAC,OAAO,CAAC,MAAM,EAAE;QACvB,iBAAiB,EAAE,IAAI;QACvB,UAAU,EAAE,IAAI;QAChB,aAAa,EAAE,IAAI;QACnB,qBAAqB,EAAE,IAAI;QAC3B,SAAS,EAAE,IAAI;QACf,OAAO,EAAE,IAAI;KACd,CAAC,CAAA;IAEF,OAAO;QACL,IAAI,EAAE,GAAG,EAAE;YACT,QAAQ,CAAC,UAAU,EAAE,CAAA;YACrB,aAAa,CAAC,IAAI,EAAE,CAAA;QACtB,CAAC;QACD,KAAK,EAAE,GAAG,EAAE;YACV,aAAa,CAAC,KAAK,EAAE,CAAA;QACvB,CAAC;KACF,CAAA;AACH,CAAC;AAED,SAAS,iCAAiC;IACxC,OAAO,yCAAyC,EAAE,CAAC,CAAC,CAAC,0BAA0B,CAAC,CAAC,CAAC,kBAAkB,CAAA;AACtG,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 trackScroll(target: Document | ShadowRoot, emitRecord: EmitRecordCallback<BrowserIncrementalSnapshotRecord>, scope: RecordingScope): Tracker;
@@ -0,0 +1,45 @@
1
+ import { throttle, addEventListener } from '@datadog/browser-core';
2
+ import { getScrollX, getScrollY, getNodePrivacyLevel, NodePrivacyLevel } from '@datadog/browser-rum-core';
3
+ import { getEventTarget } from '../eventsUtils';
4
+ import { IncrementalSource } from '../../../types';
5
+ import { assembleIncrementalSnapshot } from '../assembly';
6
+ const SCROLL_OBSERVER_THRESHOLD = 100;
7
+ export function trackScroll(target, emitRecord, scope) {
8
+ const { throttled: updatePosition, cancel: cancelThrottle } = throttle((event) => {
9
+ const target = getEventTarget(event);
10
+ if (!target) {
11
+ return;
12
+ }
13
+ const id = scope.nodeIds.get(target);
14
+ if (id === undefined ||
15
+ getNodePrivacyLevel(target, scope.configuration.defaultPrivacyLevel) === NodePrivacyLevel.HIDDEN) {
16
+ return;
17
+ }
18
+ const scrollPositions = target === document
19
+ ? {
20
+ scrollTop: getScrollY(),
21
+ scrollLeft: getScrollX(),
22
+ }
23
+ : {
24
+ scrollTop: Math.round(target.scrollTop),
25
+ scrollLeft: Math.round(target.scrollLeft),
26
+ };
27
+ scope.elementsScrollPositions.set(target, scrollPositions);
28
+ emitRecord(assembleIncrementalSnapshot(IncrementalSource.Scroll, {
29
+ id,
30
+ x: scrollPositions.scrollLeft,
31
+ y: scrollPositions.scrollTop,
32
+ }));
33
+ }, SCROLL_OBSERVER_THRESHOLD);
34
+ const { stop: removeListener } = addEventListener(scope.configuration, target, "scroll" /* DOM_EVENT.SCROLL */, updatePosition, {
35
+ capture: true,
36
+ passive: true,
37
+ });
38
+ return {
39
+ stop: () => {
40
+ removeListener();
41
+ cancelThrottle();
42
+ },
43
+ };
44
+ }
45
+ //# sourceMappingURL=trackScroll.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"trackScroll.js","sourceRoot":"","sources":["../../../../src/domain/record/trackers/trackScroll.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,QAAQ,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAA;AAC7E,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,mBAAmB,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAA;AACzG,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAA;AAC/C,OAAO,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAA;AAElD,OAAO,EAAE,2BAA2B,EAAE,MAAM,aAAa,CAAA;AAKzD,MAAM,yBAAyB,GAAG,GAAG,CAAA;AAErC,MAAM,UAAU,WAAW,CACzB,MAA6B,EAC7B,UAAgE,EAChE,KAAqB;IAErB,MAAM,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,EAAE,cAAc,EAAE,GAAG,QAAQ,CAAC,CAAC,KAAY,EAAE,EAAE;QACtF,MAAM,MAAM,GAAG,cAAc,CAAC,KAAK,CAA2B,CAAA;QAC9D,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,mBAAmB,CAAC,MAAM,EAAE,KAAK,CAAC,aAAa,CAAC,mBAAmB,CAAC,KAAK,gBAAgB,CAAC,MAAM,EAChG,CAAC;YACD,OAAM;QACR,CAAC;QACD,MAAM,eAAe,GACnB,MAAM,KAAK,QAAQ;YACjB,CAAC,CAAC;gBACE,SAAS,EAAE,UAAU,EAAE;gBACvB,UAAU,EAAE,UAAU,EAAE;aACzB;YACH,CAAC,CAAC;gBACE,SAAS,EAAE,IAAI,CAAC,KAAK,CAAE,MAAsB,CAAC,SAAS,CAAC;gBACxD,UAAU,EAAE,IAAI,CAAC,KAAK,CAAE,MAAsB,CAAC,UAAU,CAAC;aAC3D,CAAA;QACP,KAAK,CAAC,uBAAuB,CAAC,GAAG,CAAC,MAAM,EAAE,eAAe,CAAC,CAAA;QAC1D,UAAU,CACR,2BAA2B,CAAa,iBAAiB,CAAC,MAAM,EAAE;YAChE,EAAE;YACF,CAAC,EAAE,eAAe,CAAC,UAAU;YAC7B,CAAC,EAAE,eAAe,CAAC,SAAS;SAC7B,CAAC,CACH,CAAA;IACH,CAAC,EAAE,yBAAyB,CAAC,CAAA;IAE7B,MAAM,EAAE,IAAI,EAAE,cAAc,EAAE,GAAG,gBAAgB,CAAC,KAAK,CAAC,aAAa,EAAE,MAAM,mCAAoB,cAAc,EAAE;QAC/G,OAAO,EAAE,IAAI;QACb,OAAO,EAAE,IAAI;KACd,CAAC,CAAA;IAEF,OAAO;QACL,IAAI,EAAE,GAAG,EAAE;YACT,cAAc,EAAE,CAAA;YAChB,cAAc,EAAE,CAAA;QAClB,CAAC;KACF,CAAA;AACH,CAAC"}
@@ -0,0 +1,6 @@
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 trackStyleSheet(emitRecord: EmitRecordCallback<BrowserIncrementalSnapshotRecord>, scope: RecordingScope): Tracker;
6
+ export declare function getPathToNestedCSSRule(rule: CSSRule): number[] | undefined;
@@ -0,0 +1,85 @@
1
+ import { instrumentMethod } from '@datadog/browser-core';
2
+ import { IncrementalSource } from '../../../types';
3
+ import { assembleIncrementalSnapshot } from '../assembly';
4
+ export function trackStyleSheet(emitRecord, scope) {
5
+ function checkStyleSheetAndCallback(styleSheet, callback) {
6
+ if (!styleSheet || !styleSheet.ownerNode) {
7
+ return;
8
+ }
9
+ const id = scope.nodeIds.get(styleSheet.ownerNode);
10
+ if (id === undefined) {
11
+ return;
12
+ }
13
+ callback(id);
14
+ }
15
+ const instrumentationStoppers = [
16
+ instrumentMethod(CSSStyleSheet.prototype, 'insertRule', ({ target: styleSheet, parameters: [rule, index] }) => {
17
+ checkStyleSheetAndCallback(styleSheet, (id) => emitRecord(assembleIncrementalSnapshot(IncrementalSource.StyleSheetRule, {
18
+ id,
19
+ adds: [{ rule, index }],
20
+ })));
21
+ }),
22
+ instrumentMethod(CSSStyleSheet.prototype, 'deleteRule', ({ target: styleSheet, parameters: [index] }) => {
23
+ checkStyleSheetAndCallback(styleSheet, (id) => emitRecord(assembleIncrementalSnapshot(IncrementalSource.StyleSheetRule, {
24
+ id,
25
+ removes: [{ index }],
26
+ })));
27
+ }),
28
+ ];
29
+ if (typeof CSSGroupingRule !== 'undefined') {
30
+ instrumentGroupingCSSRuleClass(CSSGroupingRule);
31
+ }
32
+ else {
33
+ instrumentGroupingCSSRuleClass(CSSMediaRule);
34
+ instrumentGroupingCSSRuleClass(CSSSupportsRule);
35
+ }
36
+ function instrumentGroupingCSSRuleClass(cls) {
37
+ instrumentationStoppers.push(instrumentMethod(cls.prototype, 'insertRule', ({ target: styleSheet, parameters: [rule, index] }) => {
38
+ checkStyleSheetAndCallback(styleSheet.parentStyleSheet, (id) => {
39
+ const path = getPathToNestedCSSRule(styleSheet);
40
+ if (path) {
41
+ path.push(index || 0);
42
+ emitRecord(assembleIncrementalSnapshot(IncrementalSource.StyleSheetRule, {
43
+ id,
44
+ adds: [{ rule, index: path }],
45
+ }));
46
+ }
47
+ });
48
+ }), instrumentMethod(cls.prototype, 'deleteRule', ({ target: styleSheet, parameters: [index] }) => {
49
+ checkStyleSheetAndCallback(styleSheet.parentStyleSheet, (id) => {
50
+ const path = getPathToNestedCSSRule(styleSheet);
51
+ if (path) {
52
+ path.push(index);
53
+ emitRecord(assembleIncrementalSnapshot(IncrementalSource.StyleSheetRule, {
54
+ id,
55
+ removes: [{ index: path }],
56
+ }));
57
+ }
58
+ });
59
+ }));
60
+ }
61
+ return {
62
+ stop: () => {
63
+ instrumentationStoppers.forEach((stopper) => stopper.stop());
64
+ },
65
+ };
66
+ }
67
+ export function getPathToNestedCSSRule(rule) {
68
+ const path = [];
69
+ let currentRule = rule;
70
+ while (currentRule.parentRule) {
71
+ const rules = Array.from(currentRule.parentRule.cssRules);
72
+ const index = rules.indexOf(currentRule);
73
+ path.unshift(index);
74
+ currentRule = currentRule.parentRule;
75
+ }
76
+ // A rule may not be attached to a stylesheet
77
+ if (!currentRule.parentStyleSheet) {
78
+ return;
79
+ }
80
+ const rules = Array.from(currentRule.parentStyleSheet.cssRules);
81
+ const index = rules.indexOf(currentRule);
82
+ path.unshift(index);
83
+ return path;
84
+ }
85
+ //# sourceMappingURL=trackStyleSheet.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"trackStyleSheet.js","sourceRoot":"","sources":["../../../../src/domain/record/trackers/trackStyleSheet.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAA;AACxD,OAAO,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAA;AAElD,OAAO,EAAE,2BAA2B,EAAE,MAAM,aAAa,CAAA;AAOzD,MAAM,UAAU,eAAe,CAC7B,UAAgE,EAChE,KAAqB;IAErB,SAAS,0BAA0B,CAAC,UAAgC,EAAE,QAA8B;QAClG,IAAI,CAAC,UAAU,IAAI,CAAC,UAAU,CAAC,SAAS,EAAE,CAAC;YACzC,OAAM;QACR,CAAC;QACD,MAAM,EAAE,GAAG,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,UAAU,CAAC,SAAS,CAAC,CAAA;QAClD,IAAI,EAAE,KAAK,SAAS,EAAE,CAAC;YACrB,OAAM;QACR,CAAC;QACD,QAAQ,CAAC,EAAE,CAAC,CAAA;IACd,CAAC;IAED,MAAM,uBAAuB,GAAG;QAC9B,gBAAgB,CAAC,aAAa,CAAC,SAAS,EAAE,YAAY,EAAE,CAAC,EAAE,MAAM,EAAE,UAAU,EAAE,UAAU,EAAE,CAAC,IAAI,EAAE,KAAK,CAAC,EAAE,EAAE,EAAE;YAC5G,0BAA0B,CAAC,UAAU,EAAE,CAAC,EAAE,EAAE,EAAE,CAC5C,UAAU,CACR,2BAA2B,CAAqB,iBAAiB,CAAC,cAAc,EAAE;gBAChF,EAAE;gBACF,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;aACxB,CAAC,CACH,CACF,CAAA;QACH,CAAC,CAAC;QAEF,gBAAgB,CAAC,aAAa,CAAC,SAAS,EAAE,YAAY,EAAE,CAAC,EAAE,MAAM,EAAE,UAAU,EAAE,UAAU,EAAE,CAAC,KAAK,CAAC,EAAE,EAAE,EAAE;YACtG,0BAA0B,CAAC,UAAU,EAAE,CAAC,EAAE,EAAE,EAAE,CAC5C,UAAU,CACR,2BAA2B,CAAqB,iBAAiB,CAAC,cAAc,EAAE;gBAChF,EAAE;gBACF,OAAO,EAAE,CAAC,EAAE,KAAK,EAAE,CAAC;aACrB,CAAC,CACH,CACF,CAAA;QACH,CAAC,CAAC;KACH,CAAA;IAED,IAAI,OAAO,eAAe,KAAK,WAAW,EAAE,CAAC;QAC3C,8BAA8B,CAAC,eAAe,CAAC,CAAA;IACjD,CAAC;SAAM,CAAC;QACN,8BAA8B,CAAC,YAAY,CAAC,CAAA;QAC5C,8BAA8B,CAAC,eAAe,CAAC,CAAA;IACjD,CAAC;IAED,SAAS,8BAA8B,CAAC,GAAyB;QAC/D,uBAAuB,CAAC,IAAI,CAC1B,gBAAgB,CAAC,GAAG,CAAC,SAAS,EAAE,YAAY,EAAE,CAAC,EAAE,MAAM,EAAE,UAAU,EAAE,UAAU,EAAE,CAAC,IAAI,EAAE,KAAK,CAAC,EAAE,EAAE,EAAE;YAClG,0BAA0B,CAAC,UAAU,CAAC,gBAAgB,EAAE,CAAC,EAAE,EAAE,EAAE;gBAC7D,MAAM,IAAI,GAAG,sBAAsB,CAAC,UAAU,CAAC,CAAA;gBAC/C,IAAI,IAAI,EAAE,CAAC;oBACT,IAAI,CAAC,IAAI,CAAC,KAAK,IAAI,CAAC,CAAC,CAAA;oBACrB,UAAU,CACR,2BAA2B,CAAqB,iBAAiB,CAAC,cAAc,EAAE;wBAChF,EAAE;wBACF,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;qBAC9B,CAAC,CACH,CAAA;gBACH,CAAC;YACH,CAAC,CAAC,CAAA;QACJ,CAAC,CAAC,EAEF,gBAAgB,CAAC,GAAG,CAAC,SAAS,EAAE,YAAY,EAAE,CAAC,EAAE,MAAM,EAAE,UAAU,EAAE,UAAU,EAAE,CAAC,KAAK,CAAC,EAAE,EAAE,EAAE;YAC5F,0BAA0B,CAAC,UAAU,CAAC,gBAAgB,EAAE,CAAC,EAAE,EAAE,EAAE;gBAC7D,MAAM,IAAI,GAAG,sBAAsB,CAAC,UAAU,CAAC,CAAA;gBAC/C,IAAI,IAAI,EAAE,CAAC;oBACT,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAA;oBAChB,UAAU,CACR,2BAA2B,CAAqB,iBAAiB,CAAC,cAAc,EAAE;wBAChF,EAAE;wBACF,OAAO,EAAE,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;qBAC3B,CAAC,CACH,CAAA;gBACH,CAAC;YACH,CAAC,CAAC,CAAA;QACJ,CAAC,CAAC,CACH,CAAA;IACH,CAAC;IAED,OAAO;QACL,IAAI,EAAE,GAAG,EAAE;YACT,uBAAuB,CAAC,OAAO,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,IAAI,EAAE,CAAC,CAAA;QAC9D,CAAC;KACF,CAAA;AACH,CAAC;AAED,MAAM,UAAU,sBAAsB,CAAC,IAAa;IAClD,MAAM,IAAI,GAAa,EAAE,CAAA;IACzB,IAAI,WAAW,GAAG,IAAI,CAAA;IACtB,OAAO,WAAW,CAAC,UAAU,EAAE,CAAC;QAC9B,MAAM,KAAK,GAAG,KAAK,CAAC,IAAI,CAAE,WAAW,CAAC,UAA8B,CAAC,QAAQ,CAAC,CAAA;QAC9E,MAAM,KAAK,GAAG,KAAK,CAAC,OAAO,CAAC,WAAW,CAAC,CAAA;QACxC,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;QACnB,WAAW,GAAG,WAAW,CAAC,UAAU,CAAA;IACtC,CAAC;IACD,6CAA6C;IAC7C,IAAI,CAAC,WAAW,CAAC,gBAAgB,EAAE,CAAC;QAClC,OAAM;IACR,CAAC;IAED,MAAM,KAAK,GAAG,KAAK,CAAC,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,QAAQ,CAAC,CAAA;IAC/D,MAAM,KAAK,GAAG,KAAK,CAAC,OAAO,CAAC,WAAW,CAAC,CAAA;IACxC,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAEnB,OAAO,IAAI,CAAA;AACb,CAAC"}
@@ -0,0 +1,5 @@
1
+ import type { LifeCycle } from '@datadog/browser-rum-core';
2
+ import type { ViewEndRecord } from '../../../types';
3
+ import type { EmitRecordCallback } from '../record.types';
4
+ import type { Tracker } from './tracker.types';
5
+ export declare function trackViewEnd(lifeCycle: LifeCycle, emitRecord: EmitRecordCallback<ViewEndRecord>, flushMutations: () => void): Tracker;
@@ -0,0 +1,17 @@
1
+ import { timeStampNow } from '@datadog/browser-core';
2
+ import { RecordType } from '../../../types';
3
+ export function trackViewEnd(lifeCycle, emitRecord, flushMutations) {
4
+ const viewEndSubscription = lifeCycle.subscribe(5 /* LifeCycleEventType.VIEW_ENDED */, () => {
5
+ flushMutations();
6
+ emitRecord({
7
+ timestamp: timeStampNow(),
8
+ type: RecordType.ViewEnd,
9
+ });
10
+ });
11
+ return {
12
+ stop: () => {
13
+ viewEndSubscription.unsubscribe();
14
+ },
15
+ };
16
+ }
17
+ //# sourceMappingURL=trackViewEnd.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"trackViewEnd.js","sourceRoot":"","sources":["../../../../src/domain/record/trackers/trackViewEnd.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AAIpD,OAAO,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAA;AAI3C,MAAM,UAAU,YAAY,CAC1B,SAAoB,EACpB,UAA6C,EAC7C,cAA0B;IAE1B,MAAM,mBAAmB,GAAG,SAAS,CAAC,SAAS,wCAAgC,GAAG,EAAE;QAClF,cAAc,EAAE,CAAA;QAChB,UAAU,CAAC;YACT,SAAS,EAAE,YAAY,EAAE;YACzB,IAAI,EAAE,UAAU,CAAC,OAAO;SACzB,CAAC,CAAA;IACJ,CAAC,CAAC,CAAA;IAEF,OAAO;QACL,IAAI,EAAE,GAAG,EAAE;YACT,mBAAmB,CAAC,WAAW,EAAE,CAAA;QACnC,CAAC;KACF,CAAA;AACH,CAAC"}
@@ -0,0 +1,6 @@
1
+ import type { BrowserIncrementalSnapshotRecord, VisualViewportRecord } 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 trackViewportResize(emitRecord: EmitRecordCallback<BrowserIncrementalSnapshotRecord>, scope: RecordingScope): Tracker;
6
+ export declare function trackVisualViewportResize(emitRecord: EmitRecordCallback<VisualViewportRecord>, scope: RecordingScope): Tracker;
@@ -0,0 +1,42 @@
1
+ import { throttle, addEventListeners, timeStampNow, noop } from '@datadog/browser-core';
2
+ import { initViewportObservable } from '@datadog/browser-rum-core';
3
+ import { IncrementalSource, RecordType } from '../../../types';
4
+ import { getVisualViewport } from '../viewports';
5
+ import { assembleIncrementalSnapshot } from '../assembly';
6
+ const VISUAL_VIEWPORT_OBSERVER_THRESHOLD = 200;
7
+ export function trackViewportResize(emitRecord, scope) {
8
+ const viewportResizeSubscription = initViewportObservable(scope.configuration).subscribe((data) => {
9
+ emitRecord(assembleIncrementalSnapshot(IncrementalSource.ViewportResize, data));
10
+ });
11
+ return {
12
+ stop: () => {
13
+ viewportResizeSubscription.unsubscribe();
14
+ },
15
+ };
16
+ }
17
+ export function trackVisualViewportResize(emitRecord, scope) {
18
+ const visualViewport = window.visualViewport;
19
+ if (!visualViewport) {
20
+ return { stop: noop };
21
+ }
22
+ const { throttled: updateDimension, cancel: cancelThrottle } = throttle(() => {
23
+ emitRecord({
24
+ data: getVisualViewport(visualViewport),
25
+ type: RecordType.VisualViewport,
26
+ timestamp: timeStampNow(),
27
+ });
28
+ }, VISUAL_VIEWPORT_OBSERVER_THRESHOLD, {
29
+ trailing: false,
30
+ });
31
+ const { stop: removeListener } = addEventListeners(scope.configuration, visualViewport, ["resize" /* DOM_EVENT.RESIZE */, "scroll" /* DOM_EVENT.SCROLL */], updateDimension, {
32
+ capture: true,
33
+ passive: true,
34
+ });
35
+ return {
36
+ stop: () => {
37
+ removeListener();
38
+ cancelThrottle();
39
+ },
40
+ };
41
+ }
42
+ //# sourceMappingURL=trackViewportResize.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"trackViewportResize.js","sourceRoot":"","sources":["../../../../src/domain/record/trackers/trackViewportResize.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAa,iBAAiB,EAAE,YAAY,EAAE,IAAI,EAAE,MAAM,uBAAuB,CAAA;AAElG,OAAO,EAAE,sBAAsB,EAAE,MAAM,2BAA2B,CAAA;AAClE,OAAO,EAAE,iBAAiB,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAA;AAE9D,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAA;AAChD,OAAO,EAAE,2BAA2B,EAAE,MAAM,aAAa,CAAA;AAKzD,MAAM,kCAAkC,GAAG,GAAG,CAAA;AAE9C,MAAM,UAAU,mBAAmB,CACjC,UAAgE,EAChE,KAAqB;IAErB,MAAM,0BAA0B,GAAG,sBAAsB,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,SAAS,CACtF,CAAC,IAAuB,EAAE,EAAE;QAC1B,UAAU,CAAC,2BAA2B,CAAqB,iBAAiB,CAAC,cAAc,EAAE,IAAI,CAAC,CAAC,CAAA;IACrG,CAAC,CACF,CAAA;IAED,OAAO;QACL,IAAI,EAAE,GAAG,EAAE;YACT,0BAA0B,CAAC,WAAW,EAAE,CAAA;QAC1C,CAAC;KACF,CAAA;AACH,CAAC;AAED,MAAM,UAAU,yBAAyB,CACvC,UAAoD,EACpD,KAAqB;IAErB,MAAM,cAAc,GAAG,MAAM,CAAC,cAAc,CAAA;IAC5C,IAAI,CAAC,cAAc,EAAE,CAAC;QACpB,OAAO,EAAE,IAAI,EAAE,IAAI,EAAE,CAAA;IACvB,CAAC;IACD,MAAM,EAAE,SAAS,EAAE,eAAe,EAAE,MAAM,EAAE,cAAc,EAAE,GAAG,QAAQ,CACrE,GAAG,EAAE;QACH,UAAU,CAAC;YACT,IAAI,EAAE,iBAAiB,CAAC,cAAc,CAAC;YACvC,IAAI,EAAE,UAAU,CAAC,cAAc;YAC/B,SAAS,EAAE,YAAY,EAAE;SAC1B,CAAC,CAAA;IACJ,CAAC,EACD,kCAAkC,EAClC;QACE,QAAQ,EAAE,KAAK;KAChB,CACF,CAAA;IACD,MAAM,EAAE,IAAI,EAAE,cAAc,EAAE,GAAG,iBAAiB,CAChD,KAAK,CAAC,aAAa,EACnB,cAAc,EACd,kEAAoC,EACpC,eAAe,EACf;QACE,OAAO,EAAE,IAAI;QACb,OAAO,EAAE,IAAI;KACd,CACF,CAAA;IAED,OAAO;QACL,IAAI,EAAE,GAAG,EAAE;YACT,cAAc,EAAE,CAAA;YAChB,cAAc,EAAE,CAAA;QAClB,CAAC;KACF,CAAA;AACH,CAAC"}
@@ -0,0 +1,3 @@
1
+ export interface Tracker {
2
+ stop: () => void;
3
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=tracker.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tracker.types.js","sourceRoot":"","sources":["../../../../src/domain/record/trackers/tracker.types.ts"],"names":[],"mappings":""}
@@ -0,0 +1,20 @@
1
+ /**
2
+ * Browsers have not standardized various dimension properties. Mobile devices typically report
3
+ * dimensions in reference to the visual viewport, while desktop uses the layout viewport. For example,
4
+ * Mobile Chrome will change innerWidth when a pinch zoom takes place, while Chrome Desktop (mac) will not.
5
+ *
6
+ * With the new Viewport API, we now calculate and normalize dimension properties to the layout viewport.
7
+ * If the VisualViewport API is not supported by a browser, it isn't reasonably possible to detect or normalize
8
+ * which viewport is being measured. Therefore these exported functions will fallback to assuming that the layout
9
+ * viewport is being measured by the browser
10
+ */
11
+ import type { VisualViewportRecord } from '../../types';
12
+ interface LayoutCoordinates {
13
+ layoutViewportX: number;
14
+ layoutViewportY: number;
15
+ visualViewportX: number;
16
+ visualViewportY: number;
17
+ }
18
+ export declare const convertMouseEventToLayoutCoordinates: (clientX: number, clientY: number) => LayoutCoordinates;
19
+ export declare const getVisualViewport: (visualViewport: VisualViewport) => VisualViewportRecord["data"];
20
+ export {};
@@ -0,0 +1,55 @@
1
+ /**
2
+ * Browsers have not standardized various dimension properties. Mobile devices typically report
3
+ * dimensions in reference to the visual viewport, while desktop uses the layout viewport. For example,
4
+ * Mobile Chrome will change innerWidth when a pinch zoom takes place, while Chrome Desktop (mac) will not.
5
+ *
6
+ * With the new Viewport API, we now calculate and normalize dimension properties to the layout viewport.
7
+ * If the VisualViewport API is not supported by a browser, it isn't reasonably possible to detect or normalize
8
+ * which viewport is being measured. Therefore these exported functions will fallback to assuming that the layout
9
+ * viewport is being measured by the browser
10
+ */
11
+ // Scrollbar widths vary across properties on different devices and browsers
12
+ const TOLERANCE = 25;
13
+ /**
14
+ * Use the Visual Viewport API's properties to measure scrollX/Y in reference to the layout viewport
15
+ * in order to determine if window.scrollX/Y is measuring the layout or visual viewport.
16
+ * This finding corresponds to which viewport mouseEvent.clientX/Y and window.innerWidth/Height measures.
17
+ */
18
+ function isVisualViewportFactoredIn(visualViewport) {
19
+ return (Math.abs(visualViewport.pageTop - visualViewport.offsetTop - window.scrollY) > TOLERANCE ||
20
+ Math.abs(visualViewport.pageLeft - visualViewport.offsetLeft - window.scrollX) > TOLERANCE);
21
+ }
22
+ export const convertMouseEventToLayoutCoordinates = (clientX, clientY) => {
23
+ const visualViewport = window.visualViewport;
24
+ const normalized = {
25
+ layoutViewportX: clientX,
26
+ layoutViewportY: clientY,
27
+ visualViewportX: clientX,
28
+ visualViewportY: clientY,
29
+ };
30
+ if (!visualViewport) {
31
+ // On old browsers, we cannot normalize, so fallback to clientX/Y
32
+ return normalized;
33
+ }
34
+ else if (isVisualViewportFactoredIn(visualViewport)) {
35
+ // Typically Mobile Devices
36
+ normalized.layoutViewportX = Math.round(clientX + visualViewport.offsetLeft);
37
+ normalized.layoutViewportY = Math.round(clientY + visualViewport.offsetTop);
38
+ }
39
+ else {
40
+ // Typically Desktop Devices
41
+ normalized.visualViewportX = Math.round(clientX - visualViewport.offsetLeft);
42
+ normalized.visualViewportY = Math.round(clientY - visualViewport.offsetTop);
43
+ }
44
+ return normalized;
45
+ };
46
+ export const getVisualViewport = (visualViewport) => ({
47
+ scale: visualViewport.scale,
48
+ offsetLeft: visualViewport.offsetLeft,
49
+ offsetTop: visualViewport.offsetTop,
50
+ pageLeft: visualViewport.pageLeft,
51
+ pageTop: visualViewport.pageTop,
52
+ height: visualViewport.height,
53
+ width: visualViewport.width,
54
+ });
55
+ //# sourceMappingURL=viewports.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"viewports.js","sourceRoot":"","sources":["../../../src/domain/record/viewports.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAIH,4EAA4E;AAC5E,MAAM,SAAS,GAAG,EAAE,CAAA;AAEpB;;;;GAIG;AACH,SAAS,0BAA0B,CAAC,cAA8B;IAChE,OAAO,CACL,IAAI,CAAC,GAAG,CAAC,cAAc,CAAC,OAAO,GAAG,cAAc,CAAC,SAAS,GAAG,MAAM,CAAC,OAAO,CAAC,GAAG,SAAS;QACxF,IAAI,CAAC,GAAG,CAAC,cAAc,CAAC,QAAQ,GAAG,cAAc,CAAC,UAAU,GAAG,MAAM,CAAC,OAAO,CAAC,GAAG,SAAS,CAC3F,CAAA;AACH,CAAC;AASD,MAAM,CAAC,MAAM,oCAAoC,GAAG,CAAC,OAAe,EAAE,OAAe,EAAqB,EAAE;IAC1G,MAAM,cAAc,GAAG,MAAM,CAAC,cAAc,CAAA;IAC5C,MAAM,UAAU,GAAsB;QACpC,eAAe,EAAE,OAAO;QACxB,eAAe,EAAE,OAAO;QACxB,eAAe,EAAE,OAAO;QACxB,eAAe,EAAE,OAAO;KACzB,CAAA;IAED,IAAI,CAAC,cAAc,EAAE,CAAC;QACpB,iEAAiE;QACjE,OAAO,UAAU,CAAA;IACnB,CAAC;SAAM,IAAI,0BAA0B,CAAC,cAAc,CAAC,EAAE,CAAC;QACtD,2BAA2B;QAC3B,UAAU,CAAC,eAAe,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,GAAG,cAAc,CAAC,UAAU,CAAC,CAAA;QAC5E,UAAU,CAAC,eAAe,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,GAAG,cAAc,CAAC,SAAS,CAAC,CAAA;IAC7E,CAAC;SAAM,CAAC;QACN,4BAA4B;QAC5B,UAAU,CAAC,eAAe,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,GAAG,cAAc,CAAC,UAAU,CAAC,CAAA;QAC5E,UAAU,CAAC,eAAe,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,GAAG,cAAc,CAAC,SAAS,CAAC,CAAA;IAC7E,CAAC;IACD,OAAO,UAAU,CAAA;AACnB,CAAC,CAAA;AAED,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,cAA8B,EAAgC,EAAE,CAAC,CAAC;IAClG,KAAK,EAAE,cAAc,CAAC,KAAK;IAC3B,UAAU,EAAE,cAAc,CAAC,UAAU;IACrC,SAAS,EAAE,cAAc,CAAC,SAAS;IACnC,QAAQ,EAAE,cAAc,CAAC,QAAQ;IACjC,OAAO,EAAE,cAAc,CAAC,OAAO;IAC/B,MAAM,EAAE,cAAc,CAAC,MAAM;IAC7B,KAAK,EAAE,cAAc,CAAC,KAAK;CAC5B,CAAC,CAAA"}
@@ -0,0 +1,8 @@
1
+ import type { ReplayStats } from '@datadog/browser-rum-core';
2
+ export declare const MAX_STATS_HISTORY = 1000;
3
+ export declare function getSegmentsCount(viewId: string): number;
4
+ export declare function addSegment(viewId: string): void;
5
+ export declare function addRecord(viewId: string): void;
6
+ export declare function addWroteData(viewId: string, additionalBytesCount: number): void;
7
+ export declare function getReplayStats(viewId: string): ReplayStats | undefined;
8
+ export declare function resetReplayStats(): void;
@@ -0,0 +1,51 @@
1
+ export const MAX_STATS_HISTORY = 1000;
2
+ let statsPerView;
3
+ export function getSegmentsCount(viewId) {
4
+ return getOrCreateReplayStats(viewId).segments_count;
5
+ }
6
+ export function addSegment(viewId) {
7
+ getOrCreateReplayStats(viewId).segments_count += 1;
8
+ }
9
+ export function addRecord(viewId) {
10
+ getOrCreateReplayStats(viewId).records_count += 1;
11
+ }
12
+ export function addWroteData(viewId, additionalBytesCount) {
13
+ getOrCreateReplayStats(viewId).segments_total_raw_size += additionalBytesCount;
14
+ }
15
+ export function getReplayStats(viewId) {
16
+ return statsPerView === null || statsPerView === void 0 ? void 0 : statsPerView.get(viewId);
17
+ }
18
+ export function resetReplayStats() {
19
+ statsPerView = undefined;
20
+ }
21
+ function getOrCreateReplayStats(viewId) {
22
+ if (!statsPerView) {
23
+ statsPerView = new Map();
24
+ }
25
+ let replayStats;
26
+ if (statsPerView.has(viewId)) {
27
+ replayStats = statsPerView.get(viewId);
28
+ }
29
+ else {
30
+ replayStats = {
31
+ records_count: 0,
32
+ segments_count: 0,
33
+ segments_total_raw_size: 0,
34
+ };
35
+ statsPerView.set(viewId, replayStats);
36
+ if (statsPerView.size > MAX_STATS_HISTORY) {
37
+ deleteOldestStats();
38
+ }
39
+ }
40
+ return replayStats;
41
+ }
42
+ function deleteOldestStats() {
43
+ if (!statsPerView) {
44
+ return;
45
+ }
46
+ const toDelete = statsPerView.keys().next().value;
47
+ if (toDelete) {
48
+ statsPerView.delete(toDelete);
49
+ }
50
+ }
51
+ //# sourceMappingURL=replayStats.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"replayStats.js","sourceRoot":"","sources":["../../src/domain/replayStats.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,iBAAiB,GAAG,IAAI,CAAA;AACrC,IAAI,YAAkD,CAAA;AAEtD,MAAM,UAAU,gBAAgB,CAAC,MAAc;IAC7C,OAAO,sBAAsB,CAAC,MAAM,CAAC,CAAC,cAAc,CAAA;AACtD,CAAC;AAED,MAAM,UAAU,UAAU,CAAC,MAAc;IACvC,sBAAsB,CAAC,MAAM,CAAC,CAAC,cAAc,IAAI,CAAC,CAAA;AACpD,CAAC;AAED,MAAM,UAAU,SAAS,CAAC,MAAc;IACtC,sBAAsB,CAAC,MAAM,CAAC,CAAC,aAAa,IAAI,CAAC,CAAA;AACnD,CAAC;AAED,MAAM,UAAU,YAAY,CAAC,MAAc,EAAE,oBAA4B;IACvE,sBAAsB,CAAC,MAAM,CAAC,CAAC,uBAAuB,IAAI,oBAAoB,CAAA;AAChF,CAAC;AAED,MAAM,UAAU,cAAc,CAAC,MAAc;IAC3C,OAAO,YAAY,aAAZ,YAAY,uBAAZ,YAAY,CAAE,GAAG,CAAC,MAAM,CAAC,CAAA;AAClC,CAAC;AAED,MAAM,UAAU,gBAAgB;IAC9B,YAAY,GAAG,SAAS,CAAA;AAC1B,CAAC;AAED,SAAS,sBAAsB,CAAC,MAAc;IAC5C,IAAI,CAAC,YAAY,EAAE,CAAC;QAClB,YAAY,GAAG,IAAI,GAAG,EAAE,CAAA;IAC1B,CAAC;IAED,IAAI,WAAwB,CAAA;IAC5B,IAAI,YAAY,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC;QAC7B,WAAW,GAAG,YAAY,CAAC,GAAG,CAAC,MAAM,CAAE,CAAA;IACzC,CAAC;SAAM,CAAC;QACN,WAAW,GAAG;YACZ,aAAa,EAAE,CAAC;YAChB,cAAc,EAAE,CAAC;YACjB,uBAAuB,EAAE,CAAC;SAC3B,CAAA;QACD,YAAY,CAAC,GAAG,CAAC,MAAM,EAAE,WAAW,CAAC,CAAA;QACrC,IAAI,YAAY,CAAC,IAAI,GAAG,iBAAiB,EAAE,CAAC;YAC1C,iBAAiB,EAAE,CAAA;QACrB,CAAC;IACH,CAAC;IAED,OAAO,WAAW,CAAA;AACpB,CAAC;AAED,SAAS,iBAAiB;IACxB,IAAI,CAAC,YAAY,EAAE,CAAC;QAClB,OAAM;IACR,CAAC;IACD,MAAM,QAAQ,GAAG,YAAY,CAAC,IAAI,EAAE,CAAC,IAAI,EAAE,CAAC,KAAK,CAAA;IACjD,IAAI,QAAQ,EAAE,CAAC;QACb,YAAY,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAA;IAC/B,CAAC;AACH,CAAC"}
@@ -0,0 +1,6 @@
1
+ export declare function reportScriptLoadingError({ configuredUrl, error, source, scriptType, }: {
2
+ configuredUrl?: string | undefined;
3
+ error: unknown;
4
+ source: string;
5
+ scriptType: 'module' | 'worker';
6
+ }): void;
@@ -0,0 +1,23 @@
1
+ import { addTelemetryError, display, DOCS_ORIGIN } from '@datadog/browser-core';
2
+ export function reportScriptLoadingError({ configuredUrl, error, source, scriptType, }) {
3
+ display.error(`${source} failed to start: an error occurred while initializing the ${scriptType}:`, error);
4
+ if (error instanceof Event || (error instanceof Error && isMessageCspRelated(error.message))) {
5
+ let baseMessage;
6
+ if (configuredUrl) {
7
+ baseMessage = `Please make sure the ${scriptType} URL ${configuredUrl} is correct and CSP is correctly configured.`;
8
+ }
9
+ else {
10
+ baseMessage = 'Please make sure CSP is correctly configured.';
11
+ }
12
+ display.error(`${baseMessage} See documentation at ${DOCS_ORIGIN}/integrations/content_security_policy_logs/#use-csp-with-real-user-monitoring-and-session-replay`);
13
+ }
14
+ else if (scriptType === 'worker') {
15
+ addTelemetryError(error);
16
+ }
17
+ }
18
+ function isMessageCspRelated(message) {
19
+ return (message.includes('Content Security Policy') ||
20
+ // Related to `require-trusted-types-for` CSP: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/require-trusted-types-for
21
+ message.includes("requires 'TrustedScriptURL'"));
22
+ }
23
+ //# sourceMappingURL=scriptLoadingError.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scriptLoadingError.js","sourceRoot":"","sources":["../../src/domain/scriptLoadingError.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAA;AAE/E,MAAM,UAAU,wBAAwB,CAAC,EACvC,aAAa,EACb,KAAK,EACL,MAAM,EACN,UAAU,GAMX;IACC,OAAO,CAAC,KAAK,CAAC,GAAG,MAAM,8DAA8D,UAAU,GAAG,EAAE,KAAK,CAAC,CAAA;IAC1G,IAAI,KAAK,YAAY,KAAK,IAAI,CAAC,KAAK,YAAY,KAAK,IAAI,mBAAmB,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC;QAC7F,IAAI,WAAW,CAAA;QACf,IAAI,aAAa,EAAE,CAAC;YAClB,WAAW,GAAG,wBAAwB,UAAU,QAAQ,aAAa,8CAA8C,CAAA;QACrH,CAAC;aAAM,CAAC;YACN,WAAW,GAAG,+CAA+C,CAAA;QAC/D,CAAC;QACD,OAAO,CAAC,KAAK,CACX,GAAG,WAAW,yBAAyB,WAAW,kGAAkG,CACrJ,CAAA;IACH,CAAC;SAAM,IAAI,UAAU,KAAK,QAAQ,EAAE,CAAC;QACnC,iBAAiB,CAAC,KAAK,CAAC,CAAA;IAC1B,CAAC;AACH,CAAC;AAED,SAAS,mBAAmB,CAAC,OAAe;IAC1C,OAAO,CACL,OAAO,CAAC,QAAQ,CAAC,yBAAyB,CAAC;QAC3C,0JAA0J;QAC1J,OAAO,CAAC,QAAQ,CAAC,6BAA6B,CAAC,CAChD,CAAA;AACH,CAAC"}
@@ -0,0 +1,15 @@
1
+ import type { Payload, Uint8ArrayBuffer } from '@datadog/browser-core';
2
+ import type { BrowserSegmentMetadata } from '../../types';
3
+ import type { SerializationMetric, SerializationStats } from '../record';
4
+ export type BrowserSegmentMetadataAndSegmentSizes = BrowserSegmentMetadata & {
5
+ raw_segment_size: number;
6
+ compressed_segment_size: number;
7
+ };
8
+ export type ReplayPayload = Payload & {
9
+ cssText: SerializationMetric;
10
+ isFullSnapshot: boolean;
11
+ rawSize: number;
12
+ recordCount: number;
13
+ serializationDuration: SerializationMetric;
14
+ };
15
+ export declare function buildReplayPayload(data: Uint8ArrayBuffer, metadata: BrowserSegmentMetadata, stats: SerializationStats, rawSegmentBytesCount: number): ReplayPayload;
@@ -0,0 +1,23 @@
1
+ export function buildReplayPayload(data, metadata, stats, rawSegmentBytesCount) {
2
+ const formData = new FormData();
3
+ formData.append('segment', new Blob([data], {
4
+ type: 'application/octet-stream',
5
+ }), `${metadata.session.id}-${metadata.start}`);
6
+ const metadataAndSegmentSizes = {
7
+ raw_segment_size: rawSegmentBytesCount,
8
+ compressed_segment_size: data.byteLength,
9
+ ...metadata,
10
+ };
11
+ const serializedMetadataAndSegmentSizes = JSON.stringify(metadataAndSegmentSizes);
12
+ formData.append('event', new Blob([serializedMetadataAndSegmentSizes], { type: 'application/json' }));
13
+ return {
14
+ data: formData,
15
+ bytesCount: data.byteLength,
16
+ cssText: stats.cssText,
17
+ isFullSnapshot: metadata.index_in_view === 0,
18
+ rawSize: rawSegmentBytesCount,
19
+ recordCount: metadata.records_count,
20
+ serializationDuration: stats.serializationDuration,
21
+ };
22
+ }
23
+ //# sourceMappingURL=buildReplayPayload.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"buildReplayPayload.js","sourceRoot":"","sources":["../../../src/domain/segmentCollection/buildReplayPayload.ts"],"names":[],"mappings":"AAiBA,MAAM,UAAU,kBAAkB,CAChC,IAAsB,EACtB,QAAgC,EAChC,KAAyB,EACzB,oBAA4B;IAE5B,MAAM,QAAQ,GAAG,IAAI,QAAQ,EAAE,CAAA;IAE/B,QAAQ,CAAC,MAAM,CACb,SAAS,EACT,IAAI,IAAI,CAAC,CAAC,IAAI,CAAC,EAAE;QACf,IAAI,EAAE,0BAA0B;KACjC,CAAC,EACF,GAAG,QAAQ,CAAC,OAAO,CAAC,EAAE,IAAI,QAAQ,CAAC,KAAK,EAAE,CAC3C,CAAA;IAED,MAAM,uBAAuB,GAA0C;QACrE,gBAAgB,EAAE,oBAAoB;QACtC,uBAAuB,EAAE,IAAI,CAAC,UAAU;QACxC,GAAG,QAAQ;KACZ,CAAA;IAED,MAAM,iCAAiC,GAAG,IAAI,CAAC,SAAS,CAAC,uBAAuB,CAAC,CAAA;IACjF,QAAQ,CAAC,MAAM,CAAC,OAAO,EAAE,IAAI,IAAI,CAAC,CAAC,iCAAiC,CAAC,EAAE,EAAE,IAAI,EAAE,kBAAkB,EAAE,CAAC,CAAC,CAAA;IAErG,OAAO;QACL,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE,IAAI,CAAC,UAAU;QAC3B,OAAO,EAAE,KAAK,CAAC,OAAO;QACtB,cAAc,EAAE,QAAQ,CAAC,aAAa,KAAK,CAAC;QAC5C,OAAO,EAAE,oBAAoB;QAC7B,WAAW,EAAE,QAAQ,CAAC,aAAa;QACnC,qBAAqB,EAAE,KAAK,CAAC,qBAAqB;KACnD,CAAA;AACH,CAAC"}
@@ -0,0 +1,4 @@
1
+ export { startSegmentCollection, setSegmentBytesLimit } from './segmentCollection';
2
+ export { SEGMENT_BYTES_LIMIT } from './segmentCollection';
3
+ export type { BrowserSegmentMetadataAndSegmentSizes, ReplayPayload } from './buildReplayPayload';
4
+ export { startSegmentTelemetry } from './startSegmentTelemetry';
@@ -0,0 +1,4 @@
1
+ export { startSegmentCollection, setSegmentBytesLimit } from './segmentCollection';
2
+ export { SEGMENT_BYTES_LIMIT } from './segmentCollection';
3
+ export { startSegmentTelemetry } from './startSegmentTelemetry';
4
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/domain/segmentCollection/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,oBAAoB,EAAE,MAAM,qBAAqB,CAAA;AAClF,OAAO,EAAE,mBAAmB,EAAE,MAAM,qBAAqB,CAAA;AAEzD,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAA"}