@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 @@
1
+ {"version":3,"file":"serializeMutations.js","sourceRoot":"","sources":["../../../../src/domain/record/serialization/serializeMutations.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,5 @@
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
+ export declare function serializeMutationsAsChange(timestamp: TimeStamp, mutations: RumMutationRecord[], emitRecord: EmitRecordCallback, emitStats: EmitStatsCallback, scope: RecordingScope): void;
@@ -0,0 +1,201 @@
1
+ import { isNodeShadowHost, getParentNode, forEachChildNodes, getNodePrivacyLevel, getTextContent, NodePrivacyLevel, } from '@datadog/browser-rum-core';
2
+ import { serializeChangesInTransaction } from './serializationTransaction';
3
+ import { serializeNodeAsChange } from './serializeNodeAsChange';
4
+ import { createChildInsertionCursor } from './insertionCursor';
5
+ import { getElementInputValue } from './serializationUtils';
6
+ import { serializeAttribute } from './serializeAttribute';
7
+ export function serializeMutationsAsChange(timestamp, mutations, emitRecord, emitStats, scope) {
8
+ serializeChangesInTransaction(2 /* SerializationKind.INCREMENTAL_SNAPSHOT */, emitRecord, emitStats, scope, timestamp, (transaction) => processMutations(mutations, transaction));
9
+ }
10
+ function processMutations(mutations, transaction) {
11
+ const addedNodes = new Set();
12
+ const attributeMutations = new Map();
13
+ const characterDataMutations = new Map();
14
+ const removedNodes = new Set();
15
+ // Collect the changes made by this sequence of mutations. It's important to think of
16
+ // the mutations as telling us which parts of the tree are dirty, but not necessarily as
17
+ // specifying exactly which changes have occurred; trying to be too clever will result
18
+ // in incorrect behavior. For example, if we see a sequence of mutations where a node is
19
+ // removed and then added back in the same position, one might be tempted to "cancel
20
+ // out" these two changes and ignore both mutations, but that could cause us to miss
21
+ // changes to the node that occurred while it was detached.
22
+ for (const mutation of mutations) {
23
+ switch (mutation.type) {
24
+ case 'attributes': {
25
+ const node = mutation.target;
26
+ let attributes = attributeMutations.get(node);
27
+ if (!attributes) {
28
+ attributes = new Map();
29
+ attributeMutations.set(node, attributes);
30
+ }
31
+ const attributeName = mutation.attributeName;
32
+ if (!attributes.has(attributeName)) {
33
+ attributes.set(attributeName, mutation.oldValue);
34
+ }
35
+ break;
36
+ }
37
+ case 'characterData':
38
+ if (!characterDataMutations.has(mutation.target)) {
39
+ characterDataMutations.set(mutation.target, mutation.oldValue);
40
+ }
41
+ break;
42
+ case 'childList':
43
+ for (let index = 0; index < mutation.addedNodes.length; index++) {
44
+ addedNodes.add(mutation.addedNodes[index]);
45
+ }
46
+ for (let index = 0; index < mutation.removedNodes.length; index++) {
47
+ removedNodes.add(mutation.removedNodes[index]);
48
+ }
49
+ break;
50
+ }
51
+ }
52
+ // Before we process any mutations, snapshot the id that the next newly-added node will
53
+ // receive. We know that any node with an id greater than or equal to this one is new
54
+ // and will have been serialized in its entirety in processAddedNodes(), so we can skip
55
+ // processing more fine-grained mutations for these nodes.
56
+ const firstNewNodeId = transaction.scope.nodeIds.nextId;
57
+ // Because we process incremental mutations synchronously, we know that privacy levels
58
+ // cannot change during the process, so we use a single, shared privacy level cache.
59
+ const nodePrivacyLevelCache = new Map();
60
+ processRemovedNodes(removedNodes, transaction);
61
+ processAddedNodes(addedNodes, nodePrivacyLevelCache, transaction);
62
+ processCharacterDataMutations(characterDataMutations, firstNewNodeId, nodePrivacyLevelCache, transaction);
63
+ processAttributeMutations(attributeMutations, firstNewNodeId, nodePrivacyLevelCache, transaction);
64
+ }
65
+ function processRemovedNodes(nodes, transaction) {
66
+ const nodeIds = transaction.scope.nodeIds;
67
+ for (const node of nodes) {
68
+ const nodeId = nodeIds.get(node);
69
+ if (nodeId === undefined) {
70
+ continue; // This node wasn't serialized.
71
+ }
72
+ forNodeAndDescendants(node, (node) => {
73
+ if (isNodeShadowHost(node)) {
74
+ transaction.scope.shadowRootsController.removeShadowRoot(node.shadowRoot);
75
+ }
76
+ // Forget this node's identity. If it's added to the DOM again in another mutation,
77
+ // we'll treat it as a new node. This reduces the number of edge cases that we need
78
+ // to deal with; for example, changes in privacy level as a result of the different
79
+ // ancestor chain in the new position are handled without any special effort on our
80
+ // part.
81
+ nodeIds.delete(node);
82
+ });
83
+ transaction.removeNode(nodeId);
84
+ }
85
+ }
86
+ function processAddedNodes(nodes, nodePrivacyLevelCache, transaction) {
87
+ const nodeIds = transaction.scope.nodeIds;
88
+ for (const node of nodes) {
89
+ if (!node.isConnected) {
90
+ continue; // This node is not in the DOM.
91
+ }
92
+ const existingNodeId = nodeIds.get(node);
93
+ if (existingNodeId !== undefined) {
94
+ continue; // This node has already been serialized.
95
+ }
96
+ const parentNode = getParentNode(node);
97
+ if (!parentNode) {
98
+ continue; // This node has no parent.
99
+ }
100
+ const parentId = nodeIds.get(parentNode);
101
+ if (parentId === undefined) {
102
+ // This node's parent hasn't been serialized (e.g. because it has privacy level
103
+ // HIDDEN), so we shouldn't serialize this node either.
104
+ continue;
105
+ }
106
+ const parentNodePrivacyLevel = getNodePrivacyLevel(parentNode, transaction.scope.configuration.defaultPrivacyLevel, nodePrivacyLevelCache);
107
+ const nextSiblingId = getNextSiblingId(node, nodeIds);
108
+ serializeNodeAsChange(createChildInsertionCursor(parentId, nextSiblingId, nodeIds), node, parentNodePrivacyLevel, transaction);
109
+ }
110
+ }
111
+ function processCharacterDataMutations(mutations, firstNewNodeId, nodePrivacyLevelCache, transaction) {
112
+ var _a;
113
+ const nodeIds = transaction.scope.nodeIds;
114
+ for (const [node, oldValue] of mutations) {
115
+ if (node.textContent === oldValue) {
116
+ continue; // No change since the last snapshot.
117
+ }
118
+ if (!node.isConnected) {
119
+ continue; // This node is not in the DOM.
120
+ }
121
+ const nodeId = nodeIds.get(node);
122
+ if (nodeId === undefined) {
123
+ continue; // This node was never serialized.
124
+ }
125
+ if (nodeId >= firstNewNodeId) {
126
+ // This node was just serialized, so we've already got an up-to-date copy of its
127
+ // text content.
128
+ continue;
129
+ }
130
+ const parentNode = getParentNode(node);
131
+ if (!parentNode) {
132
+ continue; // This node has no parent.
133
+ }
134
+ const parentNodePrivacyLevel = getNodePrivacyLevel(parentNode, transaction.scope.configuration.defaultPrivacyLevel, nodePrivacyLevelCache);
135
+ if (parentNodePrivacyLevel === NodePrivacyLevel.HIDDEN || parentNodePrivacyLevel === NodePrivacyLevel.IGNORE) {
136
+ continue; // Mutations to this node should be ignored.
137
+ }
138
+ const content = (_a = getTextContent(node, parentNodePrivacyLevel)) !== null && _a !== void 0 ? _a : '';
139
+ transaction.setText(nodeId, content);
140
+ }
141
+ }
142
+ function processAttributeMutations(mutations, firstNewNodeId, nodePrivacyLevelCache, transaction) {
143
+ const nodeIds = transaction.scope.nodeIds;
144
+ for (const [node, attributeNames] of mutations) {
145
+ if (!node.isConnected) {
146
+ continue; // This node is not in the DOM.
147
+ }
148
+ const nodeId = nodeIds.get(node);
149
+ if (nodeId === undefined) {
150
+ continue; // This node was never serialized.
151
+ }
152
+ if (nodeId >= firstNewNodeId) {
153
+ // This node was just serialized, so we've already got an up-to-date copy of its
154
+ // attributes.
155
+ continue;
156
+ }
157
+ const privacyLevel = getNodePrivacyLevel(node, transaction.scope.configuration.defaultPrivacyLevel, nodePrivacyLevelCache);
158
+ if (privacyLevel === NodePrivacyLevel.HIDDEN || privacyLevel === NodePrivacyLevel.IGNORE) {
159
+ continue; // Mutations to this node should be ignored.
160
+ }
161
+ const change = [nodeId];
162
+ for (const [attributeName, oldValue] of attributeNames) {
163
+ if (node.getAttribute(attributeName) === oldValue) {
164
+ continue; // No change since the last snapshot.
165
+ }
166
+ if (attributeName === 'value') {
167
+ const attributeValue = getElementInputValue(node, privacyLevel);
168
+ if (attributeValue !== undefined) {
169
+ change.push([attributeName, attributeValue]);
170
+ }
171
+ continue;
172
+ }
173
+ const attributeValue = serializeAttribute(node, privacyLevel, attributeName, transaction.scope.configuration);
174
+ if (attributeValue === null) {
175
+ change.push([attributeName]);
176
+ }
177
+ else {
178
+ change.push([attributeName, attributeValue]);
179
+ }
180
+ }
181
+ if (change.length > 1) {
182
+ transaction.setAttributes(change);
183
+ }
184
+ }
185
+ }
186
+ function getNextSiblingId(node, nodeIds) {
187
+ let nextSibling = node.nextSibling;
188
+ while (nextSibling) {
189
+ const id = nodeIds.get(nextSibling);
190
+ if (id !== undefined) {
191
+ return id;
192
+ }
193
+ nextSibling = nextSibling.nextSibling;
194
+ }
195
+ return undefined;
196
+ }
197
+ function forNodeAndDescendants(node, action) {
198
+ action(node);
199
+ forEachChildNodes(node, (childNode) => forNodeAndDescendants(childNode, action));
200
+ }
201
+ //# sourceMappingURL=serializeMutationsAsChange.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"serializeMutationsAsChange.js","sourceRoot":"","sources":["../../../../src/domain/record/serialization/serializeMutationsAsChange.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,7 @@
1
+ import type { DocumentNode, SerializedNodeWithId, ElementNode } from '../../../types';
2
+ import type { ParentNodePrivacyLevel } from './serialization.types';
3
+ import type { SerializationTransaction } from './serializationTransaction';
4
+ export declare function serializeNode(node: Element, parentNodePrivacyLevel: ParentNodePrivacyLevel, transaction: SerializationTransaction): (SerializedNodeWithId & ElementNode) | null;
5
+ export declare function serializeNode(node: Node, parentNodePrivacyLevel: ParentNodePrivacyLevel, transaction: SerializationTransaction): SerializedNodeWithId | null;
6
+ export declare function serializeChildNodes(node: Node, parentNodePrivacyLevel: ParentNodePrivacyLevel, transaction: SerializationTransaction): SerializedNodeWithId[];
7
+ export declare function serializeDocumentNode(document: Document, parentNodePrivacyLevel: ParentNodePrivacyLevel, transaction: SerializationTransaction): DocumentNode & SerializedNodeWithId;
@@ -0,0 +1,149 @@
1
+ import { reducePrivacyLevel, getNodeSelfPrivacyLevel, getTextContent, isNodeShadowRoot, hasChildNodes, forEachChildNodes, NodePrivacyLevel, PRIVACY_ATTR_NAME, PRIVACY_ATTR_VALUE_HIDDEN, } from '@datadog/browser-rum-core';
2
+ import { NodeType } from '../../../types';
3
+ import { getValidTagName } from './serializationUtils';
4
+ import { serializeStyleSheets } from './serializeStyleSheets';
5
+ import { serializeAttributes } from './serializeAttributes';
6
+ export function serializeNode(node, parentNodePrivacyLevel, transaction) {
7
+ switch (node.nodeType) {
8
+ case node.DOCUMENT_NODE:
9
+ return serializeDocumentNode(node, parentNodePrivacyLevel, transaction);
10
+ case node.DOCUMENT_FRAGMENT_NODE:
11
+ return serializeDocumentFragmentNode(node, parentNodePrivacyLevel, transaction);
12
+ case node.DOCUMENT_TYPE_NODE:
13
+ return serializeDocumentTypeNode(node, transaction);
14
+ case node.ELEMENT_NODE:
15
+ return serializeElementNode(node, parentNodePrivacyLevel, transaction);
16
+ case node.TEXT_NODE:
17
+ return serializeTextNode(node, parentNodePrivacyLevel, transaction);
18
+ case node.CDATA_SECTION_NODE:
19
+ return serializeCDataNode(node, transaction);
20
+ default:
21
+ return null;
22
+ }
23
+ }
24
+ export function serializeChildNodes(node, parentNodePrivacyLevel, transaction) {
25
+ const result = [];
26
+ forEachChildNodes(node, (childNode) => {
27
+ const serializedChildNode = serializeNode(childNode, parentNodePrivacyLevel, transaction);
28
+ if (serializedChildNode) {
29
+ result.push(serializedChildNode);
30
+ }
31
+ });
32
+ return result;
33
+ }
34
+ export function serializeDocumentNode(document, parentNodePrivacyLevel, transaction) {
35
+ return {
36
+ type: NodeType.Document,
37
+ id: transaction.assignId(document),
38
+ childNodes: serializeChildNodes(document, parentNodePrivacyLevel, transaction),
39
+ adoptedStyleSheets: serializeStyleSheets(document.adoptedStyleSheets, transaction),
40
+ };
41
+ }
42
+ function serializeDocumentFragmentNode(element, parentNodePrivacyLevel, transaction) {
43
+ const isShadowRoot = isNodeShadowRoot(element);
44
+ if (isShadowRoot) {
45
+ transaction.scope.shadowRootsController.addShadowRoot(element, transaction.scope);
46
+ }
47
+ return {
48
+ type: NodeType.DocumentFragment,
49
+ id: transaction.assignId(element),
50
+ childNodes: serializeChildNodes(element, parentNodePrivacyLevel, transaction),
51
+ isShadowRoot,
52
+ adoptedStyleSheets: isShadowRoot ? serializeStyleSheets(element.adoptedStyleSheets, transaction) : undefined,
53
+ };
54
+ }
55
+ function serializeDocumentTypeNode(documentType, transaction) {
56
+ return {
57
+ type: NodeType.DocumentType,
58
+ id: transaction.assignId(documentType),
59
+ name: documentType.name,
60
+ publicId: documentType.publicId,
61
+ systemId: documentType.systemId,
62
+ };
63
+ }
64
+ /**
65
+ * Serializing Element nodes involves capturing:
66
+ * 1. HTML ATTRIBUTES:
67
+ * 2. JS STATE:
68
+ * - scroll offsets
69
+ * - Form fields (input value, checkbox checked, option selection, range)
70
+ * - Canvas state,
71
+ * - Media (video/audio) play mode + currentTime
72
+ * - iframe contents
73
+ * - webcomponents
74
+ * 3. CUSTOM PROPERTIES:
75
+ * - height+width for when `hidden` to cover the element
76
+ * 4. EXCLUDED INTERACTION STATE:
77
+ * - focus (possible, but not worth perf impact)
78
+ * - hover (tracked only via mouse activity)
79
+ * - fullscreen mode
80
+ */
81
+ function serializeElementNode(element, parentNodePrivacyLevel, transaction) {
82
+ const tagName = getValidTagName(element.tagName);
83
+ const isSVG = isSVGElement(element) || undefined;
84
+ // For performance reason, we don't use getNodePrivacyLevel directly: we leverage the
85
+ // parentNodePrivacyLevel option to avoid iterating over all parents
86
+ const nodePrivacyLevel = reducePrivacyLevel(getNodeSelfPrivacyLevel(element), parentNodePrivacyLevel);
87
+ if (nodePrivacyLevel === NodePrivacyLevel.HIDDEN) {
88
+ const { width, height } = element.getBoundingClientRect();
89
+ return {
90
+ type: NodeType.Element,
91
+ id: transaction.assignId(element),
92
+ tagName,
93
+ attributes: {
94
+ rr_width: `${width}px`,
95
+ rr_height: `${height}px`,
96
+ [PRIVACY_ATTR_NAME]: PRIVACY_ATTR_VALUE_HIDDEN,
97
+ },
98
+ childNodes: [],
99
+ isSVG,
100
+ };
101
+ }
102
+ // Ignore Elements like Script and some Link, Metas
103
+ if (nodePrivacyLevel === NodePrivacyLevel.IGNORE) {
104
+ return null;
105
+ }
106
+ const id = transaction.assignId(element);
107
+ const attributes = serializeAttributes(element, nodePrivacyLevel, transaction);
108
+ let childNodes = [];
109
+ if (hasChildNodes(element) &&
110
+ // Do not serialize style children as the css rules are already in the _cssText attribute
111
+ tagName !== 'style') {
112
+ childNodes = serializeChildNodes(element, nodePrivacyLevel, transaction);
113
+ }
114
+ return {
115
+ type: NodeType.Element,
116
+ id,
117
+ tagName,
118
+ attributes,
119
+ childNodes,
120
+ isSVG,
121
+ };
122
+ }
123
+ function isSVGElement(el) {
124
+ return el.tagName === 'svg' || el instanceof SVGElement;
125
+ }
126
+ /**
127
+ * Text Nodes are dependant on Element nodes
128
+ * Privacy levels are set on elements so we check the parentElement of a text node
129
+ * for privacy level.
130
+ */
131
+ function serializeTextNode(textNode, parentNodePrivacyLevel, transaction) {
132
+ const textContent = getTextContent(textNode, parentNodePrivacyLevel);
133
+ if (textContent === undefined) {
134
+ return null;
135
+ }
136
+ return {
137
+ type: NodeType.Text,
138
+ id: transaction.assignId(textNode),
139
+ textContent,
140
+ };
141
+ }
142
+ function serializeCDataNode(node, transaction) {
143
+ return {
144
+ type: NodeType.CDATA,
145
+ id: transaction.assignId(node),
146
+ textContent: '',
147
+ };
148
+ }
149
+ //# sourceMappingURL=serializeNode.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"serializeNode.js","sourceRoot":"","sources":["../../../../src/domain/record/serialization/serializeNode.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,4 @@
1
+ import { NodePrivacyLevel } from '@datadog/browser-rum-core';
2
+ import type { InsertionCursor } from './insertionCursor';
3
+ import type { ChangeSerializationTransaction } from './serializationTransaction';
4
+ export declare function serializeNodeAsChange(cursor: InsertionCursor, node: Node, parentPrivacyLevel: NodePrivacyLevel, transaction: ChangeSerializationTransaction): void;
@@ -0,0 +1,150 @@
1
+ import { reducePrivacyLevel, getNodeSelfPrivacyLevel, getTextContent, isNodeShadowRoot, forEachChildNodes, NodePrivacyLevel, PRIVACY_ATTR_NAME, PRIVACY_ATTR_VALUE_HIDDEN, getScrollX, getScrollY, isElementNode, } from '@datadog/browser-rum-core';
2
+ import { MediaInteractionType } from '../../../types';
3
+ import { serializeDOMAttributes, serializeVirtualAttributes } from './serializeAttributes';
4
+ export function serializeNodeAsChange(cursor, node, parentPrivacyLevel, transaction) {
5
+ var _a;
6
+ // Ignore the children of <style> elements; the CSS rules they contain are already
7
+ // serialized as StyleSheetSnapshots.
8
+ if (((_a = node.parentNode) === null || _a === void 0 ? void 0 : _a.nodeName) === 'STYLE') {
9
+ return;
10
+ }
11
+ let privacyLevel;
12
+ const selfPrivacyLevel = getNodeSelfPrivacyLevel(node);
13
+ if (selfPrivacyLevel) {
14
+ privacyLevel = reducePrivacyLevel(selfPrivacyLevel, parentPrivacyLevel);
15
+ }
16
+ else {
17
+ privacyLevel = parentPrivacyLevel;
18
+ }
19
+ if (privacyLevel === NodePrivacyLevel.HIDDEN) {
20
+ serializeHiddenNodePlaceholder(cursor, node, transaction);
21
+ return;
22
+ }
23
+ // Totally ignore risky or unwanted elements. (e.g. <script>, some <link> and <meta> elements)
24
+ if (privacyLevel === NodePrivacyLevel.IGNORE) {
25
+ return;
26
+ }
27
+ switch (node.nodeType) {
28
+ case node.CDATA_SECTION_NODE:
29
+ serializeCDataNodeAsChange(cursor, node, transaction);
30
+ break;
31
+ case node.DOCUMENT_NODE:
32
+ serializeDocumentNodeAsChange(cursor, node, transaction);
33
+ break;
34
+ case node.DOCUMENT_FRAGMENT_NODE:
35
+ serializeDocumentFragmentNodeAsChange(cursor, node, transaction);
36
+ break;
37
+ case node.DOCUMENT_TYPE_NODE:
38
+ serializeDocumentTypeNodeAsChange(cursor, node, transaction);
39
+ break;
40
+ case node.ELEMENT_NODE:
41
+ serializeElementNodeAsChange(cursor, node, privacyLevel, transaction);
42
+ break;
43
+ case node.TEXT_NODE:
44
+ serializeTextNodeAsChange(cursor, node, privacyLevel, transaction);
45
+ break;
46
+ default:
47
+ return;
48
+ }
49
+ // If this node can't have children, we're done.
50
+ switch (node.nodeType) {
51
+ case node.CDATA_SECTION_NODE:
52
+ case node.DOCUMENT_TYPE_NODE:
53
+ case node.TEXT_NODE:
54
+ return;
55
+ }
56
+ cursor.descend();
57
+ forEachChildNodes(node, (childNode) => {
58
+ serializeNodeAsChange(cursor, childNode, privacyLevel, transaction);
59
+ });
60
+ cursor.ascend();
61
+ }
62
+ function serializeDocumentNodeAsChange(cursor, document, transaction) {
63
+ const { nodeId, insertionPoint } = cursor.advance(document);
64
+ transaction.addNode(insertionPoint, '#document');
65
+ transaction.setScrollPosition(nodeId, getScrollX(), getScrollY());
66
+ serializeStyleSheetsAsChange(document.adoptedStyleSheets, nodeId, transaction);
67
+ }
68
+ function serializeDocumentFragmentNodeAsChange(cursor, documentFragment, transaction) {
69
+ const { nodeId, insertionPoint } = cursor.advance(documentFragment);
70
+ const isShadowRoot = isNodeShadowRoot(documentFragment);
71
+ if (!isShadowRoot) {
72
+ transaction.addNode(insertionPoint, '#document-fragment');
73
+ return;
74
+ }
75
+ transaction.addNode(insertionPoint, '#shadow-root');
76
+ transaction.scope.shadowRootsController.addShadowRoot(documentFragment, transaction.scope);
77
+ serializeStyleSheetsAsChange(documentFragment.adoptedStyleSheets, nodeId, transaction);
78
+ }
79
+ function serializeDocumentTypeNodeAsChange(cursor, documentType, transaction) {
80
+ const { insertionPoint } = cursor.advance(documentType);
81
+ transaction.addNode(insertionPoint, '#doctype', documentType.name, documentType.publicId, documentType.systemId);
82
+ }
83
+ function serializeElementNodeAsChange(cursor, element, privacyLevel, transaction) {
84
+ const { nodeId, insertionPoint } = cursor.advance(element);
85
+ const domAttributes = Object.entries(serializeDOMAttributes(element, privacyLevel, transaction));
86
+ transaction.addNode(insertionPoint, encodedElementName(element), ...domAttributes);
87
+ const { _cssText: cssText, rr_mediaState: mediaState, rr_scrollLeft: scrollLeft, rr_scrollTop: scrollTop, } = serializeVirtualAttributes(element, privacyLevel, transaction);
88
+ const linkOrStyle = element;
89
+ if (cssText !== undefined && linkOrStyle.sheet) {
90
+ const sheetId = transaction.scope.styleSheetIds.getOrInsert(linkOrStyle.sheet);
91
+ transaction.addStyleSheet(cssText);
92
+ transaction.attachStyleSheets(nodeId, [sheetId]);
93
+ }
94
+ if (mediaState === 'played') {
95
+ transaction.setMediaPlaybackState(nodeId, MediaInteractionType.Play);
96
+ }
97
+ else if (mediaState === 'paused') {
98
+ transaction.setMediaPlaybackState(nodeId, MediaInteractionType.Pause);
99
+ }
100
+ if (scrollLeft !== undefined || scrollTop !== undefined) {
101
+ transaction.setScrollPosition(nodeId, scrollLeft || 0, scrollTop || 0);
102
+ }
103
+ }
104
+ function serializeTextNodeAsChange(cursor, textNode, privacyLevel, transaction) {
105
+ const textContent = getTextContent(textNode, privacyLevel);
106
+ if (textContent === undefined) {
107
+ return;
108
+ }
109
+ const { insertionPoint } = cursor.advance(textNode);
110
+ transaction.addNode(insertionPoint, '#text', textContent);
111
+ }
112
+ function serializeCDataNodeAsChange(cursor, cdataNode, transaction) {
113
+ const { insertionPoint } = cursor.advance(cdataNode);
114
+ transaction.addNode(insertionPoint, '#cdata-section');
115
+ }
116
+ function serializeHiddenNodePlaceholder(cursor, node, transaction) {
117
+ // We only generate placeholders for element nodes; other hidden nodes are simply not
118
+ // serialized.
119
+ if (!isElementNode(node)) {
120
+ return;
121
+ }
122
+ const { nodeId, insertionPoint } = cursor.advance(node);
123
+ transaction.addNode(insertionPoint, encodedElementName(node), [PRIVACY_ATTR_NAME, PRIVACY_ATTR_VALUE_HIDDEN]);
124
+ const { width, height } = node.getBoundingClientRect();
125
+ transaction.setSize(nodeId, width, height);
126
+ }
127
+ function serializeStyleSheetsAsChange(sheets, nodeId, transaction) {
128
+ if (!sheets || sheets.length === 0) {
129
+ return undefined;
130
+ }
131
+ transaction.attachStyleSheets(nodeId, sheets.map((sheet) => serializeStyleSheetAsChange(sheet, transaction)));
132
+ }
133
+ function serializeStyleSheetAsChange(sheet, transaction) {
134
+ const rules = Array.from(sheet.cssRules || sheet.rules, (rule) => rule.cssText);
135
+ const mediaList = sheet.media.length > 0 ? Array.from(sheet.media) : undefined;
136
+ transaction.addMetric('cssText', rules.reduce((totalLength, rule) => totalLength + rule.length, 0));
137
+ transaction.addStyleSheet(rules, mediaList, sheet.disabled);
138
+ return transaction.scope.styleSheetIds.getOrInsert(sheet);
139
+ }
140
+ function encodedElementName(element) {
141
+ const nodeName = element.nodeName;
142
+ if (isSVGElement(element)) {
143
+ return `svg>${nodeName}`;
144
+ }
145
+ return nodeName;
146
+ }
147
+ function isSVGElement(element) {
148
+ return element.namespaceURI === 'http://www.w3.org/2000/svg';
149
+ }
150
+ //# sourceMappingURL=serializeNodeAsChange.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"serializeNodeAsChange.js","sourceRoot":"","sources":["../../../../src/domain/record/serialization/serializeNodeAsChange.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,3 @@
1
+ import type { StyleSheet } from '../../../types';
2
+ import type { SerializationTransaction } from './serializationTransaction';
3
+ export declare function serializeStyleSheets(cssStyleSheets: CSSStyleSheet[] | undefined, transaction: SerializationTransaction): StyleSheet[] | undefined;
@@ -0,0 +1,27 @@
1
+ export function serializeStyleSheets(cssStyleSheets, transaction) {
2
+ if (cssStyleSheets === undefined || cssStyleSheets.length === 0) {
3
+ return undefined;
4
+ }
5
+ const serializeStylesheet = (cssStyleSheet) => {
6
+ const rules = cssStyleSheet.cssRules || cssStyleSheet.rules;
7
+ const cssRules = Array.from(rules, (cssRule) => cssRule.cssText);
8
+ transaction.addMetric('cssText', cssRules.reduce((totalLength, rule) => totalLength + rule.length, 0));
9
+ const styleSheet = {
10
+ cssRules,
11
+ disabled: cssStyleSheet.disabled || undefined,
12
+ media: cssStyleSheet.media.length > 0 ? Array.from(cssStyleSheet.media) : undefined,
13
+ };
14
+ return styleSheet;
15
+ };
16
+ // Safari iOS 16.x implements adoptedStyleSheets as a FrozenArray that:
17
+ // - can't be iterated over through map or for...of
18
+ // - can't be converted to regular array with Array.from
19
+ // - can't be detected with Array.isArray or Object.isFrozen
20
+ // Use index access to avoid the issue
21
+ const styleSheets = [];
22
+ for (let index = 0; index < cssStyleSheets.length; index++) {
23
+ styleSheets.push(serializeStylesheet(cssStyleSheets[index]));
24
+ }
25
+ return styleSheets;
26
+ }
27
+ //# sourceMappingURL=serializeStyleSheets.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"serializeStyleSheets.js","sourceRoot":"","sources":["../../../../src/domain/record/serialization/serializeStyleSheets.ts"],"names":[],"mappings":"AAGA,MAAM,UAAU,oBAAoB,CAClC,cAA2C,EAC3C,WAAqC;IAErC,IAAI,cAAc,KAAK,SAAS,IAAI,cAAc,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;QAChE,OAAO,SAAS,CAAA;IAClB,CAAC;IACD,MAAM,mBAAmB,GAAG,CAAC,aAA4B,EAAE,EAAE;QAC3D,MAAM,KAAK,GAAG,aAAa,CAAC,QAAQ,IAAI,aAAa,CAAC,KAAK,CAAA;QAC3D,MAAM,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,OAAO,CAAC,CAAA;QAChE,WAAW,CAAC,SAAS,CACnB,SAAS,EACT,QAAQ,CAAC,MAAM,CAAC,CAAC,WAAW,EAAE,IAAI,EAAE,EAAE,CAAC,WAAW,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,CAAC,CACrE,CAAA;QAED,MAAM,UAAU,GAAe;YAC7B,QAAQ;YACR,QAAQ,EAAE,aAAa,CAAC,QAAQ,IAAI,SAAS;YAC7C,KAAK,EAAE,aAAa,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,SAAS;SACpF,CAAA;QACD,OAAO,UAAU,CAAA;IACnB,CAAC,CAAA;IACD,uEAAuE;IACvE,mDAAmD;IACnD,wDAAwD;IACxD,4DAA4D;IAC5D,sCAAsC;IACtC,MAAM,WAAW,GAAiB,EAAE,CAAA;IACpC,KAAK,IAAI,KAAK,GAAG,CAAC,EAAE,KAAK,GAAG,cAAc,CAAC,MAAM,EAAE,KAAK,EAAE,EAAE,CAAC;QAC3D,WAAW,CAAC,IAAI,CAAC,mBAAmB,CAAC,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC,CAAA;IAC9D,CAAC;IACD,OAAO,WAAW,CAAA;AACpB,CAAC"}
@@ -0,0 +1,18 @@
1
+ import type { RecordingScope } from './recordingScope';
2
+ /**
3
+ * SerializationVerifier compares the output of the V1 and Change serialization
4
+ * algorithms. It's designed to seamlessly add verification to existing test suites which
5
+ * are written against the V1 serialization algorithm.
6
+ *
7
+ * To use it, create a SerializationVerifier configured with the same RecordingScope used
8
+ * by the current test. The SerializationVerifier will automatically listen for V1
9
+ * serializations being performed by the test code and will perform the corresponding
10
+ * Change serialization. It will then convert the resulting BrowserChangeRecord to the old
11
+ * V1 format and compare the results to verify that the two algorithms produce the same
12
+ * output.
13
+ */
14
+ export interface SerializationVerifier {
15
+ stop(this: void): void;
16
+ }
17
+ export type OnVerificationError = (message: string, context?: any) => void;
18
+ export declare function createSerializationVerifier(scope: RecordingScope, onError: OnVerificationError): SerializationVerifier;