@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,6 @@
1
+ "use strict";
2
+ /**
3
+ * DO NOT MODIFY IT BY HAND. Run `yarn json-schemas:sync` instead.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ //# sourceMappingURL=sessionReplay.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sessionReplay.js","sourceRoot":"","sources":["../../src/types/sessionReplay.ts"],"names":[],"mappings":";AAAA;;GAEG"}
@@ -0,0 +1,71 @@
1
+ import type * as SessionReplay from './sessionReplay';
2
+ export declare const RecordType: {
3
+ FullSnapshot: SessionReplay.BrowserFullSnapshotRecord['type'];
4
+ IncrementalSnapshot: SessionReplay.BrowserIncrementalSnapshotRecord['type'];
5
+ Meta: SessionReplay.MetaRecord['type'];
6
+ Focus: SessionReplay.FocusRecord['type'];
7
+ ViewEnd: SessionReplay.ViewEndRecord['type'];
8
+ VisualViewport: SessionReplay.VisualViewportRecord['type'];
9
+ FrustrationRecord: SessionReplay.FrustrationRecord['type'];
10
+ Change: SessionReplay.BrowserChangeRecord['type'];
11
+ };
12
+ export type RecordType = (typeof RecordType)[keyof typeof RecordType];
13
+ export declare const NodeType: {
14
+ Document: SessionReplay.DocumentNode['type'];
15
+ DocumentType: SessionReplay.DocumentTypeNode['type'];
16
+ Element: SessionReplay.ElementNode['type'];
17
+ Text: SessionReplay.TextNode['type'];
18
+ CDATA: SessionReplay.CDataNode['type'];
19
+ DocumentFragment: SessionReplay.DocumentFragmentNode['type'];
20
+ };
21
+ export type NodeType = (typeof NodeType)[keyof typeof NodeType];
22
+ type ChangeTypeId<Id, Data> = [Id, ...Data[]] extends SessionReplay.Change ? Id : never;
23
+ export declare const ChangeType: {
24
+ AddString: ChangeTypeId<0, SessionReplay.AddStringChange>;
25
+ AddNode: ChangeTypeId<1, SessionReplay.AddNodeChange>;
26
+ RemoveNode: ChangeTypeId<2, SessionReplay.RemoveNodeChange>;
27
+ Attribute: ChangeTypeId<3, SessionReplay.AttributeChange>;
28
+ Text: ChangeTypeId<4, SessionReplay.TextChange>;
29
+ Size: ChangeTypeId<5, SessionReplay.SizeChange>;
30
+ ScrollPosition: ChangeTypeId<6, SessionReplay.ScrollPositionChange>;
31
+ AddStyleSheet: ChangeTypeId<7, SessionReplay.AddStyleSheetChange>;
32
+ AttachedStyleSheets: ChangeTypeId<8, SessionReplay.AttachedStyleSheetsChange>;
33
+ MediaPlaybackState: ChangeTypeId<9, SessionReplay.MediaPlaybackStateChange>;
34
+ VisualViewport: ChangeTypeId<10, SessionReplay.VisualViewportChange>;
35
+ };
36
+ export type ChangeType = (typeof ChangeType)[keyof typeof ChangeType];
37
+ export declare const PlaybackState: {
38
+ Playing: SessionReplay.PlaybackStatePlaying;
39
+ Paused: SessionReplay.PlaybackStatePaused;
40
+ };
41
+ export type PlaybackState = (typeof PlaybackState)[keyof typeof PlaybackState];
42
+ export declare const IncrementalSource: {
43
+ Mutation: SessionReplay.BrowserMutationData['source'];
44
+ MouseMove: Exclude<SessionReplay.MousemoveData['source'], 6>;
45
+ MouseInteraction: SessionReplay.MouseInteractionData['source'];
46
+ Scroll: SessionReplay.ScrollData['source'];
47
+ ViewportResize: SessionReplay.ViewportResizeData['source'];
48
+ Input: SessionReplay.InputData['source'];
49
+ TouchMove: Exclude<SessionReplay.MousemoveData['source'], 1>;
50
+ MediaInteraction: SessionReplay.MediaInteractionData['source'];
51
+ StyleSheetRule: SessionReplay.StyleSheetRuleData['source'];
52
+ };
53
+ export type IncrementalSource = (typeof IncrementalSource)[keyof typeof IncrementalSource];
54
+ export declare const MouseInteractionType: {
55
+ readonly MouseUp: 0;
56
+ readonly MouseDown: 1;
57
+ readonly Click: 2;
58
+ readonly ContextMenu: 3;
59
+ readonly DblClick: 4;
60
+ readonly Focus: 5;
61
+ readonly Blur: 6;
62
+ readonly TouchStart: 7;
63
+ readonly TouchEnd: 9;
64
+ };
65
+ export type MouseInteractionType = (typeof MouseInteractionType)[keyof typeof MouseInteractionType];
66
+ export declare const MediaInteractionType: {
67
+ readonly Play: 0;
68
+ readonly Pause: 1;
69
+ };
70
+ export type MediaInteractionType = (typeof MediaInteractionType)[keyof typeof MediaInteractionType];
71
+ export {};
@@ -0,0 +1,67 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MediaInteractionType = exports.MouseInteractionType = exports.IncrementalSource = exports.PlaybackState = exports.ChangeType = exports.NodeType = exports.RecordType = void 0;
4
+ exports.RecordType = {
5
+ FullSnapshot: 2,
6
+ IncrementalSnapshot: 3,
7
+ Meta: 4,
8
+ Focus: 6,
9
+ ViewEnd: 7,
10
+ VisualViewport: 8,
11
+ FrustrationRecord: 9,
12
+ Change: 12,
13
+ };
14
+ exports.NodeType = {
15
+ Document: 0,
16
+ DocumentType: 1,
17
+ Element: 2,
18
+ Text: 3,
19
+ CDATA: 4,
20
+ DocumentFragment: 11,
21
+ };
22
+ exports.ChangeType = {
23
+ AddString: 0,
24
+ AddNode: 1,
25
+ RemoveNode: 2,
26
+ Attribute: 3,
27
+ Text: 4,
28
+ Size: 5,
29
+ ScrollPosition: 6,
30
+ AddStyleSheet: 7,
31
+ AttachedStyleSheets: 8,
32
+ MediaPlaybackState: 9,
33
+ VisualViewport: 10,
34
+ };
35
+ exports.PlaybackState = {
36
+ Playing: 0,
37
+ Paused: 1,
38
+ };
39
+ exports.IncrementalSource = {
40
+ Mutation: 0,
41
+ MouseMove: 1,
42
+ MouseInteraction: 2,
43
+ Scroll: 3,
44
+ ViewportResize: 4,
45
+ Input: 5,
46
+ TouchMove: 6,
47
+ MediaInteraction: 7,
48
+ StyleSheetRule: 8,
49
+ // CanvasMutation : 9,
50
+ // Font : 10,
51
+ };
52
+ exports.MouseInteractionType = {
53
+ MouseUp: 0,
54
+ MouseDown: 1,
55
+ Click: 2,
56
+ ContextMenu: 3,
57
+ DblClick: 4,
58
+ Focus: 5,
59
+ Blur: 6,
60
+ TouchStart: 7,
61
+ TouchEnd: 9,
62
+ };
63
+ exports.MediaInteractionType = {
64
+ Play: 0,
65
+ Pause: 1,
66
+ };
67
+ //# sourceMappingURL=sessionReplayConstants.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sessionReplayConstants.js","sourceRoot":"","sources":["../../src/types/sessionReplayConstants.ts"],"names":[],"mappings":";;;AAEa,QAAA,UAAU,GASnB;IACF,YAAY,EAAE,CAAC;IACf,mBAAmB,EAAE,CAAC;IACtB,IAAI,EAAE,CAAC;IACP,KAAK,EAAE,CAAC;IACR,OAAO,EAAE,CAAC;IACV,cAAc,EAAE,CAAC;IACjB,iBAAiB,EAAE,CAAC;IACpB,MAAM,EAAE,EAAE;CACF,CAAA;AAIG,QAAA,QAAQ,GAOjB;IACF,QAAQ,EAAE,CAAC;IACX,YAAY,EAAE,CAAC;IACf,OAAO,EAAE,CAAC;IACV,IAAI,EAAE,CAAC;IACP,KAAK,EAAE,CAAC;IACR,gBAAgB,EAAE,EAAE;CACZ,CAAA;AAQG,QAAA,UAAU,GAYnB;IACF,SAAS,EAAE,CAAC;IACZ,OAAO,EAAE,CAAC;IACV,UAAU,EAAE,CAAC;IACb,SAAS,EAAE,CAAC;IACZ,IAAI,EAAE,CAAC;IACP,IAAI,EAAE,CAAC;IACP,cAAc,EAAE,CAAC;IACjB,aAAa,EAAE,CAAC;IAChB,mBAAmB,EAAE,CAAC;IACtB,kBAAkB,EAAE,CAAC;IACrB,cAAc,EAAE,EAAE;CACV,CAAA;AAIG,QAAA,aAAa,GAGtB;IACF,OAAO,EAAE,CAAC;IACV,MAAM,EAAE,CAAC;CACD,CAAA;AAIG,QAAA,iBAAiB,GAU1B;IACF,QAAQ,EAAE,CAAC;IACX,SAAS,EAAE,CAAC;IACZ,gBAAgB,EAAE,CAAC;IACnB,MAAM,EAAE,CAAC;IACT,cAAc,EAAE,CAAC;IACjB,KAAK,EAAE,CAAC;IACR,SAAS,EAAE,CAAC;IACZ,gBAAgB,EAAE,CAAC;IACnB,cAAc,EAAE,CAAC;IACjB,sBAAsB;IACtB,aAAa;CACL,CAAA;AAIG,QAAA,oBAAoB,GAAG;IAClC,OAAO,EAAE,CAAC;IACV,SAAS,EAAE,CAAC;IACZ,KAAK,EAAE,CAAC;IACR,WAAW,EAAE,CAAC;IACd,QAAQ,EAAE,CAAC;IACX,KAAK,EAAE,CAAC;IACR,IAAI,EAAE,CAAC;IACP,UAAU,EAAE,CAAC;IACb,QAAQ,EAAE,CAAC;CACH,CAAA;AAIG,QAAA,oBAAoB,GAAG;IAClC,IAAI,EAAE,CAAC;IACP,KAAK,EAAE,CAAC;CACA,CAAA"}
@@ -0,0 +1,4 @@
1
+ /**
2
+ * Test for Browser features used while recording
3
+ */
4
+ export declare function isBrowserSupported(): boolean;
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Test for Browser features used while recording
3
+ */
4
+ export function isBrowserSupported() {
5
+ return (
6
+ // Array.from is a bit less supported by browsers than CSSSupportsRule, but has higher chances
7
+ // to be polyfilled. Test for both to be more confident. We could add more things if we find out
8
+ // this test is not sufficient.
9
+ typeof Array.from === 'function' &&
10
+ typeof CSSSupportsRule === 'function' &&
11
+ typeof URL.createObjectURL === 'function' &&
12
+ 'forEach' in NodeList.prototype);
13
+ }
14
+ //# sourceMappingURL=isBrowserSupported.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"isBrowserSupported.js","sourceRoot":"","sources":["../../src/boot/isBrowserSupported.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,UAAU,kBAAkB;IAChC,OAAO;IACL,8FAA8F;IAC9F,gGAAgG;IAChG,+BAA+B;IAC/B,OAAO,KAAK,CAAC,IAAI,KAAK,UAAU;QAChC,OAAO,eAAe,KAAK,UAAU;QACrC,OAAO,GAAG,CAAC,eAAe,KAAK,UAAU;QACzC,SAAS,IAAI,QAAQ,CAAC,SAAS,CAChC,CAAA;AACH,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { createRumProfiler } from '../domain/profiling/profiler';
2
+ export declare function lazyLoadProfiler(): Promise<typeof createRumProfiler | undefined>;
3
+ export declare function importProfiler(): Promise<typeof createRumProfiler>;
@@ -0,0 +1,19 @@
1
+ import { mockable } from '@datadog/browser-core';
2
+ import { reportScriptLoadingError } from '../domain/scriptLoadingError';
3
+ export async function lazyLoadProfiler() {
4
+ try {
5
+ return await mockable(importProfiler)();
6
+ }
7
+ catch (error) {
8
+ reportScriptLoadingError({
9
+ error,
10
+ source: 'Profiler',
11
+ scriptType: 'module',
12
+ });
13
+ }
14
+ }
15
+ export async function importProfiler() {
16
+ const module = await import(/* webpackChunkName: "profiler" */ '../domain/profiling/profiler');
17
+ return module.createRumProfiler;
18
+ }
19
+ //# sourceMappingURL=lazyLoadProfiler.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"lazyLoadProfiler.js","sourceRoot":"","sources":["../../src/boot/lazyLoadProfiler.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAA;AAChD,OAAO,EAAE,wBAAwB,EAAE,MAAM,8BAA8B,CAAA;AAGvE,MAAM,CAAC,KAAK,UAAU,gBAAgB;IACpC,IAAI,CAAC;QACH,OAAO,MAAM,QAAQ,CAAC,cAAc,CAAC,EAAE,CAAA;IACzC,CAAC;IAAC,OAAO,KAAc,EAAE,CAAC;QACxB,wBAAwB,CAAC;YACvB,KAAK;YACL,MAAM,EAAE,UAAU;YAClB,UAAU,EAAE,QAAQ;SACrB,CAAC,CAAA;IACJ,CAAC;AACH,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,cAAc;IAClC,MAAM,MAAM,GAAG,MAAM,MAAM,CAAC,kCAAkC,CAAC,8BAA8B,CAAC,CAAA;IAC9F,OAAO,MAAM,CAAC,iBAAiB,CAAA;AACjC,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { startRecording } from './startRecording';
2
+ export declare function lazyLoadRecorder(): Promise<typeof startRecording | undefined>;
3
+ export declare function importRecorder(): Promise<typeof startRecording>;
@@ -0,0 +1,19 @@
1
+ import { mockable } from '@datadog/browser-core';
2
+ import { reportScriptLoadingError } from '../domain/scriptLoadingError';
3
+ export async function lazyLoadRecorder() {
4
+ try {
5
+ return await mockable(importRecorder)();
6
+ }
7
+ catch (error) {
8
+ reportScriptLoadingError({
9
+ error,
10
+ source: 'Recorder',
11
+ scriptType: 'module',
12
+ });
13
+ }
14
+ }
15
+ export async function importRecorder() {
16
+ const module = await import(/* webpackChunkName: "recorder" */ './startRecording');
17
+ return module.startRecording;
18
+ }
19
+ //# sourceMappingURL=lazyLoadRecorder.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"lazyLoadRecorder.js","sourceRoot":"","sources":["../../src/boot/lazyLoadRecorder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAA;AAChD,OAAO,EAAE,wBAAwB,EAAE,MAAM,8BAA8B,CAAA;AAGvE,MAAM,CAAC,KAAK,UAAU,gBAAgB;IACpC,IAAI,CAAC;QACH,OAAO,MAAM,QAAQ,CAAC,cAAc,CAAC,EAAE,CAAA;IACzC,CAAC;IAAC,OAAO,KAAc,EAAE,CAAC;QACxB,wBAAwB,CAAC;YACvB,KAAK;YACL,MAAM,EAAE,UAAU;YAClB,UAAU,EAAE,QAAQ;SACrB,CAAC,CAAA;IACJ,CAAC;AACH,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,cAAc;IAClC,MAAM,MAAM,GAAG,MAAM,MAAM,CAAC,kCAAkC,CAAC,kBAAkB,CAAC,CAAA;IAClF,OAAO,MAAM,CAAC,cAAc,CAAA;AAC9B,CAAC"}
@@ -0,0 +1,33 @@
1
+ import type { LifeCycle, RumConfiguration, RumSessionManager, StartRecordingOptions, ViewHistory } from '@datadog/browser-rum-core';
2
+ import type { Telemetry, DeflateEncoder } from '@datadog/browser-core';
3
+ import type { startRecording } from './startRecording';
4
+ export type StartRecording = typeof startRecording;
5
+ export declare const enum RecorderStatus {
6
+ Stopped = 0,
7
+ IntentToStart = 1,
8
+ Starting = 2,
9
+ Started = 3
10
+ }
11
+ export type RecorderInitEvent = {
12
+ type: 'start';
13
+ forced: boolean;
14
+ } | {
15
+ type: 'document-ready';
16
+ } | {
17
+ type: 'recorder-settled';
18
+ } | {
19
+ type: 'aborted';
20
+ } | {
21
+ type: 'deflate-encoder-load-failed';
22
+ } | {
23
+ type: 'recorder-load-failed';
24
+ } | {
25
+ type: 'succeeded';
26
+ };
27
+ export interface Strategy {
28
+ start: (options?: StartRecordingOptions) => void;
29
+ stop: () => void;
30
+ isRecording: () => boolean;
31
+ getSessionReplayLink: () => string | undefined;
32
+ }
33
+ export declare function createPostStartStrategy(configuration: RumConfiguration, lifeCycle: LifeCycle, sessionManager: RumSessionManager, viewHistory: ViewHistory, loadRecorder: () => Promise<StartRecording | undefined>, getOrCreateDeflateEncoder: () => DeflateEncoder | undefined, telemetry: Telemetry): Strategy;
@@ -0,0 +1,95 @@
1
+ import { asyncRunOnReadyState, monitorError, Observable } from '@datadog/browser-core';
2
+ import { getSessionReplayLink } from '../domain/getSessionReplayLink';
3
+ import { startRecorderInitTelemetry } from '../domain/startRecorderInitTelemetry';
4
+ export function createPostStartStrategy(configuration, lifeCycle, sessionManager, viewHistory, loadRecorder, getOrCreateDeflateEncoder, telemetry) {
5
+ let status = 0 /* RecorderStatus.Stopped */;
6
+ let stopRecording;
7
+ lifeCycle.subscribe(9 /* LifeCycleEventType.SESSION_EXPIRED */, () => {
8
+ if (status === 2 /* RecorderStatus.Starting */ || status === 3 /* RecorderStatus.Started */) {
9
+ stop();
10
+ status = 1 /* RecorderStatus.IntentToStart */;
11
+ }
12
+ });
13
+ lifeCycle.subscribe(10 /* LifeCycleEventType.SESSION_RENEWED */, () => {
14
+ if (status === 1 /* RecorderStatus.IntentToStart */) {
15
+ start();
16
+ }
17
+ });
18
+ const observable = new Observable();
19
+ startRecorderInitTelemetry(telemetry, observable);
20
+ const doStart = async (forced) => {
21
+ observable.notify({ type: 'start', forced });
22
+ const [startRecordingImpl] = await Promise.all([
23
+ notifyWhenSettled(observable, { type: 'recorder-settled' }, loadRecorder()),
24
+ notifyWhenSettled(observable, { type: 'document-ready' }, asyncRunOnReadyState(configuration, 'interactive')),
25
+ ]);
26
+ if (status !== 2 /* RecorderStatus.Starting */) {
27
+ observable.notify({ type: 'aborted' });
28
+ return;
29
+ }
30
+ if (!startRecordingImpl) {
31
+ status = 0 /* RecorderStatus.Stopped */;
32
+ observable.notify({ type: 'recorder-load-failed' });
33
+ return;
34
+ }
35
+ const deflateEncoder = getOrCreateDeflateEncoder();
36
+ if (!deflateEncoder) {
37
+ status = 0 /* RecorderStatus.Stopped */;
38
+ observable.notify({ type: 'deflate-encoder-load-failed' });
39
+ return;
40
+ }
41
+ ;
42
+ ({ stop: stopRecording } = startRecordingImpl(lifeCycle, configuration, sessionManager, viewHistory, deflateEncoder, telemetry));
43
+ status = 3 /* RecorderStatus.Started */;
44
+ observable.notify({ type: 'succeeded' });
45
+ };
46
+ function start(options) {
47
+ const session = sessionManager.findTrackedSession();
48
+ if (canStartRecording(session, options)) {
49
+ status = 1 /* RecorderStatus.IntentToStart */;
50
+ return;
51
+ }
52
+ if (isRecordingInProgress(status)) {
53
+ return;
54
+ }
55
+ status = 2 /* RecorderStatus.Starting */;
56
+ const forced = shouldForceReplay(session, options) || false;
57
+ // Intentionally not awaiting doStart() to keep it asynchronous
58
+ doStart(forced).catch(monitorError);
59
+ if (forced) {
60
+ sessionManager.setForcedReplay();
61
+ }
62
+ }
63
+ function stop() {
64
+ if (status === 3 /* RecorderStatus.Started */) {
65
+ stopRecording === null || stopRecording === void 0 ? void 0 : stopRecording();
66
+ }
67
+ status = 0 /* RecorderStatus.Stopped */;
68
+ }
69
+ return {
70
+ start,
71
+ stop,
72
+ getSessionReplayLink() {
73
+ return getSessionReplayLink(configuration, sessionManager, viewHistory, status !== 0 /* RecorderStatus.Stopped */);
74
+ },
75
+ isRecording: () => status === 3 /* RecorderStatus.Started */,
76
+ };
77
+ }
78
+ function canStartRecording(session, options) {
79
+ return !session || (session.sessionReplay === 0 /* SessionReplayState.OFF */ && (!options || !options.force));
80
+ }
81
+ function isRecordingInProgress(status) {
82
+ return status === 2 /* RecorderStatus.Starting */ || status === 3 /* RecorderStatus.Started */;
83
+ }
84
+ function shouldForceReplay(session, options) {
85
+ return options && options.force && session.sessionReplay === 0 /* SessionReplayState.OFF */;
86
+ }
87
+ async function notifyWhenSettled(observable, event, promise) {
88
+ try {
89
+ return await promise;
90
+ }
91
+ finally {
92
+ observable.notify(event);
93
+ }
94
+ }
95
+ //# sourceMappingURL=postStartStrategy.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"postStartStrategy.js","sourceRoot":"","sources":["../../src/boot/postStartStrategy.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,6 @@
1
+ import type { RumConfiguration } from '@datadog/browser-rum-core';
2
+ import type { Strategy } from './postStartStrategy';
3
+ export declare function createPreStartStrategy(): {
4
+ strategy: Strategy;
5
+ shouldStartImmediately: (configuration: RumConfiguration) => boolean;
6
+ };
@@ -0,0 +1,21 @@
1
+ import { noop } from '@datadog/browser-core';
2
+ export function createPreStartStrategy() {
3
+ let status = 0 /* PreStartRecorderStatus.None */;
4
+ return {
5
+ strategy: {
6
+ start() {
7
+ status = 1 /* PreStartRecorderStatus.HadManualStart */;
8
+ },
9
+ stop() {
10
+ status = 2 /* PreStartRecorderStatus.HadManualStop */;
11
+ },
12
+ isRecording: () => false,
13
+ getSessionReplayLink: noop,
14
+ },
15
+ shouldStartImmediately(configuration) {
16
+ return (status === 1 /* PreStartRecorderStatus.HadManualStart */ ||
17
+ (status === 0 /* PreStartRecorderStatus.None */ && !configuration.startSessionReplayRecordingManually));
18
+ },
19
+ };
20
+ }
21
+ //# sourceMappingURL=preStartStrategy.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"preStartStrategy.js","sourceRoot":"","sources":["../../src/boot/preStartStrategy.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,uBAAuB,CAAA;AAU5C,MAAM,UAAU,sBAAsB;IAIpC,IAAI,MAAM,sCAA8B,CAAA;IACxC,OAAO;QACL,QAAQ,EAAE;YACR,KAAK;gBACH,MAAM,gDAAwC,CAAA;YAChD,CAAC;YACD,IAAI;gBACF,MAAM,+CAAuC,CAAA;YAC/C,CAAC;YACD,WAAW,EAAE,GAAG,EAAE,CAAC,KAAK;YACxB,oBAAoB,EAAE,IAAgC;SACvD;QACD,sBAAsB,CAAC,aAAa;YAClC,OAAO,CACL,MAAM,kDAA0C;gBAChD,CAAC,MAAM,wCAAgC,IAAI,CAAC,aAAa,CAAC,mCAAmC,CAAC,CAC/F,CAAA;QACH,CAAC;KACF,CAAA;AACH,CAAC"}
@@ -0,0 +1,2 @@
1
+ import type { ProfilerApi } from '@datadog/browser-rum-core';
2
+ export declare function makeProfilerApi(): ProfilerApi;
@@ -0,0 +1,49 @@
1
+ import { isSampled } from '@datadog/browser-rum-core';
2
+ import { monitorError } from '@datadog/browser-core';
3
+ import { isProfilingSupported } from '../domain/profiling/profilingSupported';
4
+ import { startProfilingContext } from '../domain/profiling/profilingContext';
5
+ import { lazyLoadProfiler } from './lazyLoadProfiler';
6
+ export function makeProfilerApi() {
7
+ let profiler;
8
+ function onRumStart(lifeCycle, hooks, configuration, sessionManager, viewHistory, createEncoder) {
9
+ const session = sessionManager.findTrackedSession(); // Check if the session is tracked.
10
+ if (!session) {
11
+ // No session tracked, no profiling.
12
+ // Note: No Profiling context is set at this stage.
13
+ return;
14
+ }
15
+ // Sampling (sticky sampling based on session id)
16
+ if (!isSampled(session.id, configuration.profilingSampleRate)) {
17
+ // No sampling, no profiling.
18
+ // Note: No Profiling context is set at this stage.
19
+ return;
20
+ }
21
+ // Listen to events and add the profiling context to them.
22
+ const profilingContextManager = startProfilingContext(hooks);
23
+ // Browser support check
24
+ if (!isProfilingSupported()) {
25
+ profilingContextManager.set({
26
+ status: 'error',
27
+ error_reason: 'not-supported-by-browser',
28
+ });
29
+ return;
30
+ }
31
+ lazyLoadProfiler()
32
+ .then((createRumProfiler) => {
33
+ if (!createRumProfiler) {
34
+ profilingContextManager.set({ status: 'error', error_reason: 'failed-to-lazy-load' });
35
+ return;
36
+ }
37
+ profiler = createRumProfiler(configuration, lifeCycle, sessionManager, profilingContextManager, createEncoder, viewHistory, undefined);
38
+ profiler.start();
39
+ })
40
+ .catch(monitorError);
41
+ }
42
+ return {
43
+ onRumStart,
44
+ stop: () => {
45
+ profiler === null || profiler === void 0 ? void 0 : profiler.stop();
46
+ },
47
+ };
48
+ }
49
+ //# sourceMappingURL=profilerApi.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"profilerApi.js","sourceRoot":"","sources":["../../src/boot/profilerApi.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,SAAS,EAAE,MAAM,2BAA2B,CAAA;AACrD,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AAEpD,OAAO,EAAE,oBAAoB,EAAE,MAAM,wCAAwC,CAAA;AAC7E,OAAO,EAAE,qBAAqB,EAAE,MAAM,sCAAsC,CAAA;AAC5E,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAA;AAErD,MAAM,UAAU,eAAe;IAC7B,IAAI,QAAiC,CAAA;IAErC,SAAS,UAAU,CACjB,SAAoB,EACpB,KAAY,EACZ,aAA+B,EAC/B,cAAiC,EACjC,WAAwB,EACxB,aAA4D;QAE5D,MAAM,OAAO,GAAG,cAAc,CAAC,kBAAkB,EAAE,CAAA,CAAC,mCAAmC;QAEvF,IAAI,CAAC,OAAO,EAAE,CAAC;YACb,oCAAoC;YACpC,mDAAmD;YACnD,OAAM;QACR,CAAC;QAED,iDAAiD;QACjD,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,EAAE,EAAE,aAAa,CAAC,mBAAmB,CAAC,EAAE,CAAC;YAC9D,6BAA6B;YAC7B,mDAAmD;YACnD,OAAM;QACR,CAAC;QAED,0DAA0D;QAC1D,MAAM,uBAAuB,GAAG,qBAAqB,CAAC,KAAK,CAAC,CAAA;QAE5D,wBAAwB;QACxB,IAAI,CAAC,oBAAoB,EAAE,EAAE,CAAC;YAC5B,uBAAuB,CAAC,GAAG,CAAC;gBAC1B,MAAM,EAAE,OAAO;gBACf,YAAY,EAAE,0BAA0B;aACzC,CAAC,CAAA;YACF,OAAM;QACR,CAAC;QAED,gBAAgB,EAAE;aACf,IAAI,CAAC,CAAC,iBAAiB,EAAE,EAAE;YAC1B,IAAI,CAAC,iBAAiB,EAAE,CAAC;gBACvB,uBAAuB,CAAC,GAAG,CAAC,EAAE,MAAM,EAAE,OAAO,EAAE,YAAY,EAAE,qBAAqB,EAAE,CAAC,CAAA;gBACrF,OAAM;YACR,CAAC;YAED,QAAQ,GAAG,iBAAiB,CAC1B,aAAa,EACb,SAAS,EACT,cAAc,EACd,uBAAuB,EACvB,aAAa,EACb,WAAW,EACX,SAAS,CACV,CAAA;YACD,QAAQ,CAAC,KAAK,EAAE,CAAA;QAClB,CAAC,CAAC;aACD,KAAK,CAAC,YAAY,CAAC,CAAA;IACxB,CAAC;IAED,OAAO;QACL,UAAU;QACV,IAAI,EAAE,GAAG,EAAE;YACT,QAAQ,aAAR,QAAQ,uBAAR,QAAQ,CAAE,IAAI,EAAE,CAAA;QAClB,CAAC;KACF,CAAA;AACH,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { RecorderApi } from '@datadog/browser-rum-core';
2
+ import type { StartRecording } from './postStartStrategy';
3
+ export declare function makeRecorderApi(loadRecorder: () => Promise<StartRecording | undefined>): RecorderApi;
@@ -0,0 +1,68 @@
1
+ import { canUseEventBridge, noop, bridgeSupports, } from '@datadog/browser-core';
2
+ import { getReplayStats as getReplayStatsImpl } from '../domain/replayStats';
3
+ import { createDeflateEncoder, getDeflateWorkerStatus, startDeflateWorker, } from '../domain/deflate';
4
+ import { isBrowserSupported } from './isBrowserSupported';
5
+ import { createPostStartStrategy } from './postStartStrategy';
6
+ import { createPreStartStrategy } from './preStartStrategy';
7
+ export function makeRecorderApi(loadRecorder) {
8
+ if ((canUseEventBridge() && !bridgeSupports("records" /* BridgeCapability.RECORDS */)) || !isBrowserSupported()) {
9
+ return {
10
+ start: noop,
11
+ stop: noop,
12
+ getReplayStats: () => undefined,
13
+ onRumStart: noop,
14
+ isRecording: () => false,
15
+ getSessionReplayLink: () => undefined,
16
+ };
17
+ }
18
+ // eslint-disable-next-line prefer-const
19
+ let { strategy, shouldStartImmediately } = createPreStartStrategy();
20
+ return {
21
+ start: (options) => strategy.start(options),
22
+ stop: () => strategy.stop(),
23
+ getSessionReplayLink: () => strategy.getSessionReplayLink(),
24
+ onRumStart,
25
+ isRecording: () =>
26
+ // The worker is started optimistically, meaning we could have started to record but its
27
+ // initialization fails a bit later. This could happen when:
28
+ // * the worker URL (blob or plain URL) is blocked by CSP in Firefox only (Chromium and Safari
29
+ // throw an exception when instantiating the worker, and IE doesn't care about CSP)
30
+ // * the browser fails to load the worker in case the workerUrl is used
31
+ // * an unexpected error occurs in the Worker before initialization, ex:
32
+ // * a runtime exception collected by monitor()
33
+ // * a syntax error notified by the browser via an error event
34
+ // * the worker is unresponsive for some reason and timeouts
35
+ //
36
+ // It is not expected to happen often. Nonetheless, the "replayable" status on RUM events is
37
+ // an important part of the Datadog App:
38
+ // * If we have a false positive (we set has_replay: true even if no replay data is present),
39
+ // we might display broken links to the Session Replay player.
40
+ // * If we have a false negative (we don't set has_replay: true even if replay data is
41
+ // available), it is less noticeable because no link will be displayed.
42
+ //
43
+ // Thus, it is better to have false negative, so let's make sure the worker is correctly
44
+ // initialized before advertizing that we are recording.
45
+ //
46
+ // In the future, when the compression worker will also be used for RUM data, this will be
47
+ // less important since no RUM event will be sent when the worker fails to initialize.
48
+ getDeflateWorkerStatus() === 3 /* DeflateWorkerStatus.Initialized */ && strategy.isRecording(),
49
+ getReplayStats: (viewId) => getDeflateWorkerStatus() === 3 /* DeflateWorkerStatus.Initialized */ ? getReplayStatsImpl(viewId) : undefined,
50
+ };
51
+ function onRumStart(lifeCycle, configuration, sessionManager, viewHistory, worker, telemetry) {
52
+ let cachedDeflateEncoder;
53
+ function getOrCreateDeflateEncoder() {
54
+ if (!cachedDeflateEncoder) {
55
+ worker !== null && worker !== void 0 ? worker : (worker = startDeflateWorker(configuration, 'Datadog Session Replay', () => strategy.stop()));
56
+ if (worker) {
57
+ cachedDeflateEncoder = createDeflateEncoder(configuration, worker, 1 /* DeflateEncoderStreamId.REPLAY */);
58
+ }
59
+ }
60
+ return cachedDeflateEncoder;
61
+ }
62
+ strategy = createPostStartStrategy(configuration, lifeCycle, sessionManager, viewHistory, loadRecorder, getOrCreateDeflateEncoder, telemetry);
63
+ if (shouldStartImmediately(configuration)) {
64
+ strategy.start();
65
+ }
66
+ }
67
+ }
68
+ //# sourceMappingURL=recorderApi.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"recorderApi.js","sourceRoot":"","sources":["../../src/boot/recorderApi.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,6 @@
1
+ import type { HttpRequest, DeflateEncoder, Telemetry } from '@datadog/browser-core';
2
+ import type { LifeCycle, ViewHistory, RumConfiguration, RumSessionManager } from '@datadog/browser-rum-core';
3
+ import type { ReplayPayload } from '../domain/segmentCollection';
4
+ export declare function startRecording(lifeCycle: LifeCycle, configuration: RumConfiguration, sessionManager: RumSessionManager, viewHistory: ViewHistory, encoder: DeflateEncoder, telemetry: Telemetry, httpRequest?: HttpRequest<ReplayPayload>): {
5
+ stop: () => void;
6
+ };
@@ -0,0 +1,42 @@
1
+ import { createHttpRequest, addTelemetryDebug, canUseEventBridge, noop } from '@datadog/browser-core';
2
+ import { record } from '../domain/record';
3
+ import { startSegmentCollection, SEGMENT_BYTES_LIMIT, startSegmentTelemetry } from '../domain/segmentCollection';
4
+ import { startRecordBridge } from '../domain/startRecordBridge';
5
+ export function startRecording(lifeCycle, configuration, sessionManager, viewHistory, encoder, telemetry, httpRequest) {
6
+ const cleanupTasks = [];
7
+ const reportError = (error) => {
8
+ lifeCycle.notify(14 /* LifeCycleEventType.RAW_ERROR_COLLECTED */, { error });
9
+ // monitor-until: forever, to keep an eye on the errors reported to customers
10
+ addTelemetryDebug('Error reported to customer', { 'error.message': error.message });
11
+ };
12
+ const replayRequest = httpRequest || createHttpRequest([configuration.sessionReplayEndpointBuilder], reportError, SEGMENT_BYTES_LIMIT);
13
+ let addRecord;
14
+ let addStats;
15
+ if (!canUseEventBridge()) {
16
+ const segmentCollection = startSegmentCollection(lifeCycle, configuration, sessionManager, viewHistory, replayRequest, encoder);
17
+ addRecord = segmentCollection.addRecord;
18
+ addStats = segmentCollection.addStats;
19
+ cleanupTasks.push(segmentCollection.stop);
20
+ const segmentTelemetry = startSegmentTelemetry(telemetry, replayRequest.observable);
21
+ cleanupTasks.push(segmentTelemetry.stop);
22
+ }
23
+ else {
24
+ ;
25
+ ({ addRecord } = startRecordBridge(viewHistory));
26
+ addStats = noop;
27
+ }
28
+ const { stop: stopRecording } = record({
29
+ emitRecord: addRecord,
30
+ emitStats: addStats,
31
+ configuration,
32
+ lifeCycle,
33
+ viewHistory,
34
+ });
35
+ cleanupTasks.push(stopRecording);
36
+ return {
37
+ stop: () => {
38
+ cleanupTasks.forEach((task) => task());
39
+ },
40
+ };
41
+ }
42
+ //# sourceMappingURL=startRecording.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"startRecording.js","sourceRoot":"","sources":["../../src/boot/startRecording.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,iBAAiB,EAAE,iBAAiB,EAAE,IAAI,EAAE,MAAM,uBAAuB,CAAA;AAKrG,OAAO,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAA;AAEzC,OAAO,EAAE,sBAAsB,EAAE,mBAAmB,EAAE,qBAAqB,EAAE,MAAM,6BAA6B,CAAA;AAEhH,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAA;AAE/D,MAAM,UAAU,cAAc,CAC5B,SAAoB,EACpB,aAA+B,EAC/B,cAAiC,EACjC,WAAwB,EACxB,OAAuB,EACvB,SAAoB,EACpB,WAAwC;IAExC,MAAM,YAAY,GAAsB,EAAE,CAAA;IAE1C,MAAM,WAAW,GAAG,CAAC,KAAe,EAAE,EAAE;QACtC,SAAS,CAAC,MAAM,kDAAyC,EAAE,KAAK,EAAE,CAAC,CAAA;QACnE,6EAA6E;QAC7E,iBAAiB,CAAC,4BAA4B,EAAE,EAAE,eAAe,EAAE,KAAK,CAAC,OAAO,EAAE,CAAC,CAAA;IACrF,CAAC,CAAA;IAED,MAAM,aAAa,GACjB,WAAW,IAAI,iBAAiB,CAAC,CAAC,aAAa,CAAC,4BAA4B,CAAC,EAAE,WAAW,EAAE,mBAAmB,CAAC,CAAA;IAElH,IAAI,SAA0C,CAAA;IAC9C,IAAI,QAA6C,CAAA;IAEjD,IAAI,CAAC,iBAAiB,EAAE,EAAE,CAAC;QACzB,MAAM,iBAAiB,GAAG,sBAAsB,CAC9C,SAAS,EACT,aAAa,EACb,cAAc,EACd,WAAW,EACX,aAAa,EACb,OAAO,CACR,CAAA;QACD,SAAS,GAAG,iBAAiB,CAAC,SAAS,CAAA;QACvC,QAAQ,GAAG,iBAAiB,CAAC,QAAQ,CAAA;QACrC,YAAY,CAAC,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;QAEzC,MAAM,gBAAgB,GAAG,qBAAqB,CAAC,SAAS,EAAE,aAAa,CAAC,UAAU,CAAC,CAAA;QACnF,YAAY,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAA;IAC1C,CAAC;SAAM,CAAC;QACN,CAAC;QAAA,CAAC,EAAE,SAAS,EAAE,GAAG,iBAAiB,CAAC,WAAW,CAAC,CAAC,CAAA;QACjD,QAAQ,GAAG,IAAI,CAAA;IACjB,CAAC;IAED,MAAM,EAAE,IAAI,EAAE,aAAa,EAAE,GAAG,MAAM,CAAC;QACrC,UAAU,EAAE,SAAS;QACrB,SAAS,EAAE,QAAQ;QACnB,aAAa;QACb,SAAS;QACT,WAAW;KACZ,CAAC,CAAA;IACF,YAAY,CAAC,IAAI,CAAC,aAAa,CAAC,CAAA;IAEhC,OAAO;QACL,IAAI,EAAE,GAAG,EAAE;YACT,YAAY,CAAC,OAAO,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,EAAE,CAAC,CAAA;QACxC,CAAC;KACF,CAAA;AACH,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { DeflateEncoder, DeflateEncoderStreamId, DeflateWorker } from '@datadog/browser-core';
2
+ import type { RumConfiguration } from '@datadog/browser-rum-core';
3
+ export declare function createDeflateEncoder(configuration: RumConfiguration, worker: DeflateWorker, streamId: DeflateEncoderStreamId): DeflateEncoder;