@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.
- package/LICENSE +201 -0
- package/README.md +25 -0
- package/bundle/chunks/profiler-9f1c1103f1ef0aa98257-datadog-rum.js +1 -0
- package/bundle/chunks/recorder-926b641c6ef51d09a378-datadog-rum.js +1 -0
- package/bundle/datadog-rum.js +1 -0
- package/changes.json +5 -0
- package/cjs/boot/isBrowserSupported.d.ts +4 -0
- package/cjs/boot/isBrowserSupported.js +17 -0
- package/cjs/boot/isBrowserSupported.js.map +1 -0
- package/cjs/boot/lazyLoadProfiler.d.ts +3 -0
- package/cjs/boot/lazyLoadProfiler.js +56 -0
- package/cjs/boot/lazyLoadProfiler.js.map +1 -0
- package/cjs/boot/lazyLoadRecorder.d.ts +3 -0
- package/cjs/boot/lazyLoadRecorder.js +56 -0
- package/cjs/boot/lazyLoadRecorder.js.map +1 -0
- package/cjs/boot/postStartStrategy.d.ts +33 -0
- package/cjs/boot/postStartStrategy.js +98 -0
- package/cjs/boot/postStartStrategy.js.map +1 -0
- package/cjs/boot/preStartStrategy.d.ts +6 -0
- package/cjs/boot/preStartStrategy.js +24 -0
- package/cjs/boot/preStartStrategy.js.map +1 -0
- package/cjs/boot/profilerApi.d.ts +2 -0
- package/cjs/boot/profilerApi.js +52 -0
- package/cjs/boot/profilerApi.js.map +1 -0
- package/cjs/boot/recorderApi.d.ts +3 -0
- package/cjs/boot/recorderApi.js +71 -0
- package/cjs/boot/recorderApi.js.map +1 -0
- package/cjs/boot/startRecording.d.ts +6 -0
- package/cjs/boot/startRecording.js +45 -0
- package/cjs/boot/startRecording.js.map +1 -0
- package/cjs/domain/deflate/deflateEncoder.d.ts +3 -0
- package/cjs/domain/deflate/deflateEncoder.js +110 -0
- package/cjs/domain/deflate/deflateEncoder.js.map +1 -0
- package/cjs/domain/deflate/deflateWorker.d.ts +29 -0
- package/cjs/domain/deflate/deflateWorker.js +105 -0
- package/cjs/domain/deflate/deflateWorker.js.map +1 -0
- package/cjs/domain/deflate/index.d.ts +3 -0
- package/cjs/domain/deflate/index.js +11 -0
- package/cjs/domain/deflate/index.js.map +1 -0
- package/cjs/domain/getSessionReplayLink.d.ts +2 -0
- package/cjs/domain/getSessionReplayLink.js +35 -0
- package/cjs/domain/getSessionReplayLink.js.map +1 -0
- package/cjs/domain/profiling/actionHistory.d.ts +10 -0
- package/cjs/domain/profiling/actionHistory.js +49 -0
- package/cjs/domain/profiling/actionHistory.js.map +1 -0
- package/cjs/domain/profiling/longTaskHistory.d.ts +11 -0
- package/cjs/domain/profiling/longTaskHistory.js +28 -0
- package/cjs/domain/profiling/longTaskHistory.js.map +1 -0
- package/cjs/domain/profiling/profiler.d.ts +7 -0
- package/cjs/domain/profiling/profiler.js +267 -0
- package/cjs/domain/profiling/profiler.js.map +1 -0
- package/cjs/domain/profiling/profilingContext.d.ts +6 -0
- package/cjs/domain/profiling/profilingContext.js +31 -0
- package/cjs/domain/profiling/profilingContext.js.map +1 -0
- package/cjs/domain/profiling/profilingSupported.d.ts +1 -0
- package/cjs/domain/profiling/profilingSupported.js +11 -0
- package/cjs/domain/profiling/profilingSupported.js.map +1 -0
- package/cjs/domain/profiling/test-utils/mockedTrace.d.ts +3 -0
- package/cjs/domain/profiling/test-utils/mockedTrace.js +57 -0
- package/cjs/domain/profiling/test-utils/mockedTrace.js.map +1 -0
- package/cjs/domain/profiling/transport/assembly.d.ts +7 -0
- package/cjs/domain/profiling/transport/assembly.js +45 -0
- package/cjs/domain/profiling/transport/assembly.js.map +1 -0
- package/cjs/domain/profiling/transport/buildProfileEventAttributes.d.ts +33 -0
- package/cjs/domain/profiling/transport/buildProfileEventAttributes.js +63 -0
- package/cjs/domain/profiling/transport/buildProfileEventAttributes.js.map +1 -0
- package/cjs/domain/profiling/types/index.d.ts +2 -0
- package/cjs/domain/profiling/types/index.js +3 -0
- package/cjs/domain/profiling/types/index.js.map +1 -0
- package/cjs/domain/profiling/types/profilerApi.types.d.ts +58 -0
- package/cjs/domain/profiling/types/profilerApi.types.js +5 -0
- package/cjs/domain/profiling/types/profilerApi.types.js.map +1 -0
- package/cjs/domain/profiling/types/rumProfiler.types.d.ts +55 -0
- package/cjs/domain/profiling/types/rumProfiler.types.js +3 -0
- package/cjs/domain/profiling/types/rumProfiler.types.js.map +1 -0
- package/cjs/domain/profiling/utils/getCustomOrDefaultViewName.d.ts +1 -0
- package/cjs/domain/profiling/utils/getCustomOrDefaultViewName.js +7 -0
- package/cjs/domain/profiling/utils/getCustomOrDefaultViewName.js.map +1 -0
- package/cjs/domain/profiling/utils/getDefaultViewName.d.ts +1 -0
- package/cjs/domain/profiling/utils/getDefaultViewName.js +14 -0
- package/cjs/domain/profiling/utils/getDefaultViewName.js.map +1 -0
- package/cjs/domain/profiling/utils/getNumberOfSamples.d.ts +8 -0
- package/cjs/domain/profiling/utils/getNumberOfSamples.js +19 -0
- package/cjs/domain/profiling/utils/getNumberOfSamples.js.map +1 -0
- package/cjs/domain/profiling/vitalHistory.d.ts +10 -0
- package/cjs/domain/profiling/vitalHistory.js +42 -0
- package/cjs/domain/profiling/vitalHistory.js.map +1 -0
- package/cjs/domain/record/assembly.d.ts +3 -0
- package/cjs/domain/record/assembly.js +16 -0
- package/cjs/domain/record/assembly.js.map +1 -0
- package/cjs/domain/record/elementsScrollPositions.d.ts +10 -0
- package/cjs/domain/record/elementsScrollPositions.js +23 -0
- package/cjs/domain/record/elementsScrollPositions.js.map +1 -0
- package/cjs/domain/record/eventsUtils.d.ts +2 -0
- package/cjs/domain/record/eventsUtils.js +15 -0
- package/cjs/domain/record/eventsUtils.js.map +1 -0
- package/cjs/domain/record/index.d.ts +6 -0
- package/cjs/domain/record/index.js +17 -0
- package/cjs/domain/record/index.js.map +1 -0
- package/cjs/domain/record/internalApi.d.ts +22 -0
- package/cjs/domain/record/internalApi.js +55 -0
- package/cjs/domain/record/internalApi.js.map +1 -0
- package/cjs/domain/record/itemIds.d.ts +40 -0
- package/cjs/domain/record/itemIds.js +58 -0
- package/cjs/domain/record/itemIds.js.map +1 -0
- package/cjs/domain/record/mutationBatch.d.ts +12 -0
- package/cjs/domain/record/mutationBatch.js +44 -0
- package/cjs/domain/record/mutationBatch.js.map +1 -0
- package/cjs/domain/record/record.d.ts +16 -0
- package/cjs/domain/record/record.js +88 -0
- package/cjs/domain/record/record.js.map +1 -0
- package/cjs/domain/record/record.types.d.ts +18 -0
- package/cjs/domain/record/record.types.js +3 -0
- package/cjs/domain/record/record.types.js.map +1 -0
- package/cjs/domain/record/recordingScope.d.ts +24 -0
- package/cjs/domain/record/recordingScope.js +29 -0
- package/cjs/domain/record/recordingScope.js.map +1 -0
- package/cjs/domain/record/serialization/changeEncoder.d.ts +22 -0
- package/cjs/domain/record/serialization/changeEncoder.js +59 -0
- package/cjs/domain/record/serialization/changeEncoder.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/changeConverter.d.ts +10 -0
- package/cjs/domain/record/serialization/conversions/changeConverter.js +216 -0
- package/cjs/domain/record/serialization/conversions/changeConverter.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/changeDecoder.d.ts +16 -0
- package/cjs/domain/record/serialization/conversions/changeDecoder.js +137 -0
- package/cjs/domain/record/serialization/conversions/changeDecoder.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/index.d.ts +7 -0
- package/cjs/domain/record/serialization/conversions/index.js +11 -0
- package/cjs/domain/record/serialization/conversions/index.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/mutationLog.d.ts +15 -0
- package/cjs/domain/record/serialization/conversions/mutationLog.js +36 -0
- package/cjs/domain/record/serialization/conversions/mutationLog.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/nodeIdRemapper.d.ts +10 -0
- package/cjs/domain/record/serialization/conversions/nodeIdRemapper.js +53 -0
- package/cjs/domain/record/serialization/conversions/nodeIdRemapper.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/renderOptions.d.ts +6 -0
- package/cjs/domain/record/serialization/conversions/renderOptions.js +12 -0
- package/cjs/domain/record/serialization/conversions/renderOptions.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/stringTable.d.ts +5 -0
- package/cjs/domain/record/serialization/conversions/stringTable.js +22 -0
- package/cjs/domain/record/serialization/conversions/stringTable.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/vDocument.d.ts +23 -0
- package/cjs/domain/record/serialization/conversions/vDocument.js +176 -0
- package/cjs/domain/record/serialization/conversions/vDocument.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/vNode.d.ts +66 -0
- package/cjs/domain/record/serialization/conversions/vNode.js +285 -0
- package/cjs/domain/record/serialization/conversions/vNode.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/vStyleSheet.d.ts +16 -0
- package/cjs/domain/record/serialization/conversions/vStyleSheet.js +29 -0
- package/cjs/domain/record/serialization/conversions/vStyleSheet.js.map +1 -0
- package/cjs/domain/record/serialization/experimentalFeatures.d.ts +2 -0
- package/cjs/domain/record/serialization/experimentalFeatures.js +16 -0
- package/cjs/domain/record/serialization/experimentalFeatures.js.map +1 -0
- package/cjs/domain/record/serialization/index.d.ts +17 -0
- package/cjs/domain/record/serialization/index.js +37 -0
- package/cjs/domain/record/serialization/index.js.map +1 -0
- package/cjs/domain/record/serialization/insertionCursor.d.ts +57 -0
- package/cjs/domain/record/serialization/insertionCursor.js +68 -0
- package/cjs/domain/record/serialization/insertionCursor.js.map +1 -0
- package/cjs/domain/record/serialization/serialization.types.d.ts +24 -0
- package/cjs/domain/record/serialization/serialization.types.js +3 -0
- package/cjs/domain/record/serialization/serialization.types.js.map +1 -0
- package/cjs/domain/record/serialization/serializationStats.d.ts +12 -0
- package/cjs/domain/record/serialization/serializationStats.js +32 -0
- package/cjs/domain/record/serialization/serializationStats.js.map +1 -0
- package/cjs/domain/record/serialization/serializationTransaction.d.ts +96 -0
- package/cjs/domain/record/serialization/serializationTransaction.js +103 -0
- package/cjs/domain/record/serialization/serializationTransaction.js.map +1 -0
- package/cjs/domain/record/serialization/serializationUtils.d.ts +18 -0
- package/cjs/domain/record/serialization/serializationUtils.js +88 -0
- package/cjs/domain/record/serialization/serializationUtils.js.map +1 -0
- package/cjs/domain/record/serialization/serializeAttribute.d.ts +4 -0
- package/cjs/domain/record/serialization/serializeAttribute.js +42 -0
- package/cjs/domain/record/serialization/serializeAttribute.js.map +1 -0
- package/cjs/domain/record/serialization/serializeAttributes.d.ts +7 -0
- package/cjs/domain/record/serialization/serializeAttributes.js +167 -0
- package/cjs/domain/record/serialization/serializeAttributes.js.map +1 -0
- package/cjs/domain/record/serialization/serializeFullSnapshot.d.ts +5 -0
- package/cjs/domain/record/serialization/serializeFullSnapshot.js +34 -0
- package/cjs/domain/record/serialization/serializeFullSnapshot.js.map +1 -0
- package/cjs/domain/record/serialization/serializeFullSnapshotAsChange.d.ts +5 -0
- package/cjs/domain/record/serialization/serializeFullSnapshotAsChange.js +13 -0
- package/cjs/domain/record/serialization/serializeFullSnapshotAsChange.js.map +1 -0
- package/cjs/domain/record/serialization/serializeMutations.d.ts +11 -0
- package/cjs/domain/record/serialization/serializeMutations.js +262 -0
- package/cjs/domain/record/serialization/serializeMutations.js.map +1 -0
- package/cjs/domain/record/serialization/serializeMutationsAsChange.d.ts +5 -0
- package/cjs/domain/record/serialization/serializeMutationsAsChange.js +204 -0
- package/cjs/domain/record/serialization/serializeMutationsAsChange.js.map +1 -0
- package/cjs/domain/record/serialization/serializeNode.d.ts +7 -0
- package/cjs/domain/record/serialization/serializeNode.js +154 -0
- package/cjs/domain/record/serialization/serializeNode.js.map +1 -0
- package/cjs/domain/record/serialization/serializeNodeAsChange.d.ts +4 -0
- package/cjs/domain/record/serialization/serializeNodeAsChange.js +153 -0
- package/cjs/domain/record/serialization/serializeNodeAsChange.js.map +1 -0
- package/cjs/domain/record/serialization/serializeStyleSheets.d.ts +3 -0
- package/cjs/domain/record/serialization/serializeStyleSheets.js +30 -0
- package/cjs/domain/record/serialization/serializeStyleSheets.js.map +1 -0
- package/cjs/domain/record/serializationVerifier.d.ts +18 -0
- package/cjs/domain/record/serializationVerifier.js +126 -0
- package/cjs/domain/record/serializationVerifier.js.map +1 -0
- package/cjs/domain/record/shadowRootsController.d.ts +11 -0
- package/cjs/domain/record/shadowRootsController.js +45 -0
- package/cjs/domain/record/shadowRootsController.js.map +1 -0
- package/cjs/domain/record/startFullSnapshots.d.ts +10 -0
- package/cjs/domain/record/startFullSnapshots.js +50 -0
- package/cjs/domain/record/startFullSnapshots.js.map +1 -0
- package/cjs/domain/record/trackers/index.d.ts +12 -0
- package/cjs/domain/record/trackers/index.js +27 -0
- package/cjs/domain/record/trackers/index.js.map +1 -0
- package/cjs/domain/record/trackers/trackFocus.d.ts +5 -0
- package/cjs/domain/record/trackers/trackFocus.js +15 -0
- package/cjs/domain/record/trackers/trackFocus.js.map +1 -0
- package/cjs/domain/record/trackers/trackFrustration.d.ts +6 -0
- package/cjs/domain/record/trackers/trackFrustration.js +31 -0
- package/cjs/domain/record/trackers/trackFrustration.js.map +1 -0
- package/cjs/domain/record/trackers/trackInput.d.ts +4 -0
- package/cjs/domain/record/trackers/trackInput.js +104 -0
- package/cjs/domain/record/trackers/trackInput.js.map +1 -0
- package/cjs/domain/record/trackers/trackMediaInteraction.d.ts +5 -0
- package/cjs/domain/record/trackers/trackMediaInteraction.js +29 -0
- package/cjs/domain/record/trackers/trackMediaInteraction.js.map +1 -0
- package/cjs/domain/record/trackers/trackMouseInteraction.d.ts +5 -0
- package/cjs/domain/record/trackers/trackMouseInteraction.js +59 -0
- package/cjs/domain/record/trackers/trackMouseInteraction.js.map +1 -0
- package/cjs/domain/record/trackers/trackMove.d.ts +9 -0
- package/cjs/domain/record/trackers/trackMove.js +55 -0
- package/cjs/domain/record/trackers/trackMove.js.map +1 -0
- package/cjs/domain/record/trackers/trackMutation.d.ts +13 -0
- package/cjs/domain/record/trackers/trackMutation.js +41 -0
- package/cjs/domain/record/trackers/trackMutation.js.map +1 -0
- package/cjs/domain/record/trackers/trackScroll.d.ts +5 -0
- package/cjs/domain/record/trackers/trackScroll.js +48 -0
- package/cjs/domain/record/trackers/trackScroll.js.map +1 -0
- package/cjs/domain/record/trackers/trackStyleSheet.d.ts +6 -0
- package/cjs/domain/record/trackers/trackStyleSheet.js +89 -0
- package/cjs/domain/record/trackers/trackStyleSheet.js.map +1 -0
- package/cjs/domain/record/trackers/trackViewEnd.d.ts +5 -0
- package/cjs/domain/record/trackers/trackViewEnd.js +20 -0
- package/cjs/domain/record/trackers/trackViewEnd.js.map +1 -0
- package/cjs/domain/record/trackers/trackViewportResize.d.ts +6 -0
- package/cjs/domain/record/trackers/trackViewportResize.js +46 -0
- package/cjs/domain/record/trackers/trackViewportResize.js.map +1 -0
- package/cjs/domain/record/trackers/tracker.types.d.ts +3 -0
- package/cjs/domain/record/trackers/tracker.types.js +3 -0
- package/cjs/domain/record/trackers/tracker.types.js.map +1 -0
- package/cjs/domain/record/viewports.d.ts +20 -0
- package/cjs/domain/record/viewports.js +60 -0
- package/cjs/domain/record/viewports.js.map +1 -0
- package/cjs/domain/replayStats.d.ts +8 -0
- package/cjs/domain/replayStats.js +60 -0
- package/cjs/domain/replayStats.js.map +1 -0
- package/cjs/domain/scriptLoadingError.d.ts +6 -0
- package/cjs/domain/scriptLoadingError.js +26 -0
- package/cjs/domain/scriptLoadingError.js.map +1 -0
- package/cjs/domain/segmentCollection/buildReplayPayload.d.ts +15 -0
- package/cjs/domain/segmentCollection/buildReplayPayload.js +26 -0
- package/cjs/domain/segmentCollection/buildReplayPayload.js.map +1 -0
- package/cjs/domain/segmentCollection/index.d.ts +4 -0
- package/cjs/domain/segmentCollection/index.js +11 -0
- package/cjs/domain/segmentCollection/index.js.map +1 -0
- package/cjs/domain/segmentCollection/segment.d.ts +16 -0
- package/cjs/domain/segmentCollection/segment.js +82 -0
- package/cjs/domain/segmentCollection/segment.js.map +1 -0
- package/cjs/domain/segmentCollection/segmentCollection.d.ts +31 -0
- package/cjs/domain/segmentCollection/segmentCollection.js +113 -0
- package/cjs/domain/segmentCollection/segmentCollection.js.map +1 -0
- package/cjs/domain/segmentCollection/startSegmentTelemetry.d.ts +6 -0
- package/cjs/domain/segmentCollection/startSegmentTelemetry.js +52 -0
- package/cjs/domain/segmentCollection/startSegmentTelemetry.js.map +1 -0
- package/cjs/domain/startRecordBridge.d.ts +5 -0
- package/cjs/domain/startRecordBridge.js +17 -0
- package/cjs/domain/startRecordBridge.js.map +1 -0
- package/cjs/domain/startRecorderInitTelemetry.d.ts +15 -0
- package/cjs/domain/startRecorderInitTelemetry.js +55 -0
- package/cjs/domain/startRecorderInitTelemetry.js.map +1 -0
- package/cjs/entries/internal.d.ts +11 -0
- package/cjs/entries/internal.js +28 -0
- package/cjs/entries/internal.js.map +1 -0
- package/cjs/entries/internalSynthetics.d.ts +2 -0
- package/cjs/entries/internalSynthetics.js +27 -0
- package/cjs/entries/internalSynthetics.js.map +1 -0
- package/cjs/entries/main.d.ts +23 -0
- package/cjs/entries/main.js +35 -0
- package/cjs/entries/main.js.map +1 -0
- package/cjs/types/index.d.ts +3 -0
- package/cjs/types/index.js +18 -0
- package/cjs/types/index.js.map +1 -0
- package/cjs/types/profiling.d.ts +296 -0
- package/cjs/types/profiling.js +6 -0
- package/cjs/types/profiling.js.map +1 -0
- package/cjs/types/sessionReplay.d.ts +934 -0
- package/cjs/types/sessionReplay.js +6 -0
- package/cjs/types/sessionReplay.js.map +1 -0
- package/cjs/types/sessionReplayConstants.d.ts +71 -0
- package/cjs/types/sessionReplayConstants.js +67 -0
- package/cjs/types/sessionReplayConstants.js.map +1 -0
- package/esm/boot/isBrowserSupported.d.ts +4 -0
- package/esm/boot/isBrowserSupported.js +14 -0
- package/esm/boot/isBrowserSupported.js.map +1 -0
- package/esm/boot/lazyLoadProfiler.d.ts +3 -0
- package/esm/boot/lazyLoadProfiler.js +19 -0
- package/esm/boot/lazyLoadProfiler.js.map +1 -0
- package/esm/boot/lazyLoadRecorder.d.ts +3 -0
- package/esm/boot/lazyLoadRecorder.js +19 -0
- package/esm/boot/lazyLoadRecorder.js.map +1 -0
- package/esm/boot/postStartStrategy.d.ts +33 -0
- package/esm/boot/postStartStrategy.js +95 -0
- package/esm/boot/postStartStrategy.js.map +1 -0
- package/esm/boot/preStartStrategy.d.ts +6 -0
- package/esm/boot/preStartStrategy.js +21 -0
- package/esm/boot/preStartStrategy.js.map +1 -0
- package/esm/boot/profilerApi.d.ts +2 -0
- package/esm/boot/profilerApi.js +49 -0
- package/esm/boot/profilerApi.js.map +1 -0
- package/esm/boot/recorderApi.d.ts +3 -0
- package/esm/boot/recorderApi.js +68 -0
- package/esm/boot/recorderApi.js.map +1 -0
- package/esm/boot/startRecording.d.ts +6 -0
- package/esm/boot/startRecording.js +42 -0
- package/esm/boot/startRecording.js.map +1 -0
- package/esm/domain/deflate/deflateEncoder.d.ts +3 -0
- package/esm/domain/deflate/deflateEncoder.js +107 -0
- package/esm/domain/deflate/deflateEncoder.js.map +1 -0
- package/esm/domain/deflate/deflateWorker.d.ts +29 -0
- package/esm/domain/deflate/deflateWorker.js +97 -0
- package/esm/domain/deflate/deflateWorker.js.map +1 -0
- package/esm/domain/deflate/index.d.ts +3 -0
- package/esm/domain/deflate/index.js +3 -0
- package/esm/domain/deflate/index.js.map +1 -0
- package/esm/domain/getSessionReplayLink.d.ts +2 -0
- package/esm/domain/getSessionReplayLink.js +32 -0
- package/esm/domain/getSessionReplayLink.js.map +1 -0
- package/esm/domain/profiling/actionHistory.d.ts +10 -0
- package/esm/domain/profiling/actionHistory.js +45 -0
- package/esm/domain/profiling/actionHistory.js.map +1 -0
- package/esm/domain/profiling/longTaskHistory.d.ts +11 -0
- package/esm/domain/profiling/longTaskHistory.js +24 -0
- package/esm/domain/profiling/longTaskHistory.js.map +1 -0
- package/esm/domain/profiling/profiler.d.ts +7 -0
- package/esm/domain/profiling/profiler.js +263 -0
- package/esm/domain/profiling/profiler.js.map +1 -0
- package/esm/domain/profiling/profilingContext.d.ts +6 -0
- package/esm/domain/profiling/profilingContext.js +28 -0
- package/esm/domain/profiling/profilingContext.js.map +1 -0
- package/esm/domain/profiling/profilingSupported.d.ts +1 -0
- package/esm/domain/profiling/profilingSupported.js +8 -0
- package/esm/domain/profiling/profilingSupported.js.map +1 -0
- package/esm/domain/profiling/test-utils/mockedTrace.d.ts +3 -0
- package/esm/domain/profiling/test-utils/mockedTrace.js +54 -0
- package/esm/domain/profiling/test-utils/mockedTrace.js.map +1 -0
- package/esm/domain/profiling/transport/assembly.d.ts +7 -0
- package/esm/domain/profiling/transport/assembly.js +42 -0
- package/esm/domain/profiling/transport/assembly.js.map +1 -0
- package/esm/domain/profiling/transport/buildProfileEventAttributes.d.ts +33 -0
- package/esm/domain/profiling/transport/buildProfileEventAttributes.js +60 -0
- package/esm/domain/profiling/transport/buildProfileEventAttributes.js.map +1 -0
- package/esm/domain/profiling/types/index.d.ts +2 -0
- package/esm/domain/profiling/types/index.js +2 -0
- package/esm/domain/profiling/types/index.js.map +1 -0
- package/esm/domain/profiling/types/profilerApi.types.d.ts +58 -0
- package/esm/domain/profiling/types/profilerApi.types.js +4 -0
- package/esm/domain/profiling/types/profilerApi.types.js.map +1 -0
- package/esm/domain/profiling/types/rumProfiler.types.d.ts +55 -0
- package/esm/domain/profiling/types/rumProfiler.types.js +2 -0
- package/esm/domain/profiling/types/rumProfiler.types.js.map +1 -0
- package/esm/domain/profiling/utils/getCustomOrDefaultViewName.d.ts +1 -0
- package/esm/domain/profiling/utils/getCustomOrDefaultViewName.js +3 -0
- package/esm/domain/profiling/utils/getCustomOrDefaultViewName.js.map +1 -0
- package/esm/domain/profiling/utils/getDefaultViewName.d.ts +1 -0
- package/esm/domain/profiling/utils/getDefaultViewName.js +11 -0
- package/esm/domain/profiling/utils/getDefaultViewName.js.map +1 -0
- package/esm/domain/profiling/utils/getNumberOfSamples.d.ts +8 -0
- package/esm/domain/profiling/utils/getNumberOfSamples.js +16 -0
- package/esm/domain/profiling/utils/getNumberOfSamples.js.map +1 -0
- package/esm/domain/profiling/vitalHistory.d.ts +10 -0
- package/esm/domain/profiling/vitalHistory.js +38 -0
- package/esm/domain/profiling/vitalHistory.js.map +1 -0
- package/esm/domain/record/assembly.d.ts +3 -0
- package/esm/domain/record/assembly.js +13 -0
- package/esm/domain/record/assembly.js.map +1 -0
- package/esm/domain/record/elementsScrollPositions.d.ts +10 -0
- package/esm/domain/record/elementsScrollPositions.js +20 -0
- package/esm/domain/record/elementsScrollPositions.js.map +1 -0
- package/esm/domain/record/eventsUtils.d.ts +2 -0
- package/esm/domain/record/eventsUtils.js +11 -0
- package/esm/domain/record/eventsUtils.js.map +1 -0
- package/esm/domain/record/index.d.ts +6 -0
- package/esm/domain/record/index.js +5 -0
- package/esm/domain/record/index.js.map +1 -0
- package/esm/domain/record/internalApi.d.ts +22 -0
- package/esm/domain/record/internalApi.js +51 -0
- package/esm/domain/record/internalApi.js.map +1 -0
- package/esm/domain/record/itemIds.d.ts +40 -0
- package/esm/domain/record/itemIds.js +52 -0
- package/esm/domain/record/itemIds.js.map +1 -0
- package/esm/domain/record/mutationBatch.d.ts +12 -0
- package/esm/domain/record/mutationBatch.js +40 -0
- package/esm/domain/record/mutationBatch.js.map +1 -0
- package/esm/domain/record/record.d.ts +16 -0
- package/esm/domain/record/record.js +52 -0
- package/esm/domain/record/record.js.map +1 -0
- package/esm/domain/record/record.types.d.ts +18 -0
- package/esm/domain/record/record.types.js +2 -0
- package/esm/domain/record/record.types.js.map +1 -0
- package/esm/domain/record/recordingScope.d.ts +24 -0
- package/esm/domain/record/recordingScope.js +26 -0
- package/esm/domain/record/recordingScope.js.map +1 -0
- package/esm/domain/record/serialization/changeEncoder.d.ts +22 -0
- package/esm/domain/record/serialization/changeEncoder.js +56 -0
- package/esm/domain/record/serialization/changeEncoder.js.map +1 -0
- package/esm/domain/record/serialization/conversions/changeConverter.d.ts +10 -0
- package/esm/domain/record/serialization/conversions/changeConverter.js +213 -0
- package/esm/domain/record/serialization/conversions/changeConverter.js.map +1 -0
- package/esm/domain/record/serialization/conversions/changeDecoder.d.ts +16 -0
- package/esm/domain/record/serialization/conversions/changeDecoder.js +134 -0
- package/esm/domain/record/serialization/conversions/changeDecoder.js.map +1 -0
- package/esm/domain/record/serialization/conversions/index.d.ts +7 -0
- package/esm/domain/record/serialization/conversions/index.js +4 -0
- package/esm/domain/record/serialization/conversions/index.js.map +1 -0
- package/esm/domain/record/serialization/conversions/mutationLog.d.ts +15 -0
- package/esm/domain/record/serialization/conversions/mutationLog.js +33 -0
- package/esm/domain/record/serialization/conversions/mutationLog.js.map +1 -0
- package/esm/domain/record/serialization/conversions/nodeIdRemapper.d.ts +10 -0
- package/esm/domain/record/serialization/conversions/nodeIdRemapper.js +49 -0
- package/esm/domain/record/serialization/conversions/nodeIdRemapper.js.map +1 -0
- package/esm/domain/record/serialization/conversions/renderOptions.d.ts +6 -0
- package/esm/domain/record/serialization/conversions/renderOptions.js +9 -0
- package/esm/domain/record/serialization/conversions/renderOptions.js.map +1 -0
- package/esm/domain/record/serialization/conversions/stringTable.d.ts +5 -0
- package/esm/domain/record/serialization/conversions/stringTable.js +19 -0
- package/esm/domain/record/serialization/conversions/stringTable.js.map +1 -0
- package/esm/domain/record/serialization/conversions/vDocument.d.ts +23 -0
- package/esm/domain/record/serialization/conversions/vDocument.js +173 -0
- package/esm/domain/record/serialization/conversions/vDocument.js.map +1 -0
- package/esm/domain/record/serialization/conversions/vNode.d.ts +66 -0
- package/esm/domain/record/serialization/conversions/vNode.js +282 -0
- package/esm/domain/record/serialization/conversions/vNode.js.map +1 -0
- package/esm/domain/record/serialization/conversions/vStyleSheet.d.ts +16 -0
- package/esm/domain/record/serialization/conversions/vStyleSheet.js +26 -0
- package/esm/domain/record/serialization/conversions/vStyleSheet.js.map +1 -0
- package/esm/domain/record/serialization/experimentalFeatures.d.ts +2 -0
- package/esm/domain/record/serialization/experimentalFeatures.js +12 -0
- package/esm/domain/record/serialization/experimentalFeatures.js.map +1 -0
- package/esm/domain/record/serialization/index.d.ts +17 -0
- package/esm/domain/record/serialization/index.js +14 -0
- package/esm/domain/record/serialization/index.js.map +1 -0
- package/esm/domain/record/serialization/insertionCursor.d.ts +57 -0
- package/esm/domain/record/serialization/insertionCursor.js +64 -0
- package/esm/domain/record/serialization/insertionCursor.js.map +1 -0
- package/esm/domain/record/serialization/serialization.types.d.ts +24 -0
- package/esm/domain/record/serialization/serialization.types.js +2 -0
- package/esm/domain/record/serialization/serialization.types.js.map +1 -0
- package/esm/domain/record/serialization/serializationStats.d.ts +12 -0
- package/esm/domain/record/serialization/serializationStats.js +27 -0
- package/esm/domain/record/serialization/serializationStats.js.map +1 -0
- package/esm/domain/record/serialization/serializationTransaction.d.ts +96 -0
- package/esm/domain/record/serialization/serializationTransaction.js +99 -0
- package/esm/domain/record/serialization/serializationTransaction.js.map +1 -0
- package/esm/domain/record/serialization/serializationUtils.d.ts +18 -0
- package/esm/domain/record/serialization/serializationUtils.js +80 -0
- package/esm/domain/record/serialization/serializationUtils.js.map +1 -0
- package/esm/domain/record/serialization/serializeAttribute.d.ts +4 -0
- package/esm/domain/record/serialization/serializeAttribute.js +38 -0
- package/esm/domain/record/serialization/serializeAttribute.js.map +1 -0
- package/esm/domain/record/serialization/serializeAttributes.d.ts +7 -0
- package/esm/domain/record/serialization/serializeAttributes.js +161 -0
- package/esm/domain/record/serialization/serializeAttributes.js.map +1 -0
- package/esm/domain/record/serialization/serializeFullSnapshot.d.ts +5 -0
- package/esm/domain/record/serialization/serializeFullSnapshot.js +31 -0
- package/esm/domain/record/serialization/serializeFullSnapshot.js.map +1 -0
- package/esm/domain/record/serialization/serializeFullSnapshotAsChange.d.ts +5 -0
- package/esm/domain/record/serialization/serializeFullSnapshotAsChange.js +10 -0
- package/esm/domain/record/serialization/serializeFullSnapshotAsChange.js.map +1 -0
- package/esm/domain/record/serialization/serializeMutations.d.ts +11 -0
- package/esm/domain/record/serialization/serializeMutations.js +257 -0
- package/esm/domain/record/serialization/serializeMutations.js.map +1 -0
- package/esm/domain/record/serialization/serializeMutationsAsChange.d.ts +5 -0
- package/esm/domain/record/serialization/serializeMutationsAsChange.js +201 -0
- package/esm/domain/record/serialization/serializeMutationsAsChange.js.map +1 -0
- package/esm/domain/record/serialization/serializeNode.d.ts +7 -0
- package/esm/domain/record/serialization/serializeNode.js +149 -0
- package/esm/domain/record/serialization/serializeNode.js.map +1 -0
- package/esm/domain/record/serialization/serializeNodeAsChange.d.ts +4 -0
- package/esm/domain/record/serialization/serializeNodeAsChange.js +150 -0
- package/esm/domain/record/serialization/serializeNodeAsChange.js.map +1 -0
- package/esm/domain/record/serialization/serializeStyleSheets.d.ts +3 -0
- package/esm/domain/record/serialization/serializeStyleSheets.js +27 -0
- package/esm/domain/record/serialization/serializeStyleSheets.js.map +1 -0
- package/esm/domain/record/serializationVerifier.d.ts +18 -0
- package/esm/domain/record/serializationVerifier.js +123 -0
- package/esm/domain/record/serializationVerifier.js.map +1 -0
- package/esm/domain/record/shadowRootsController.d.ts +11 -0
- package/esm/domain/record/shadowRootsController.js +41 -0
- package/esm/domain/record/shadowRootsController.js.map +1 -0
- package/esm/domain/record/startFullSnapshots.d.ts +10 -0
- package/esm/domain/record/startFullSnapshots.js +46 -0
- package/esm/domain/record/startFullSnapshots.js.map +1 -0
- package/esm/domain/record/trackers/index.d.ts +12 -0
- package/esm/domain/record/trackers/index.js +12 -0
- package/esm/domain/record/trackers/index.js.map +1 -0
- package/esm/domain/record/trackers/trackFocus.d.ts +5 -0
- package/esm/domain/record/trackers/trackFocus.js +12 -0
- package/esm/domain/record/trackers/trackFocus.js.map +1 -0
- package/esm/domain/record/trackers/trackFrustration.d.ts +6 -0
- package/esm/domain/record/trackers/trackFrustration.js +28 -0
- package/esm/domain/record/trackers/trackFrustration.js.map +1 -0
- package/esm/domain/record/trackers/trackInput.d.ts +4 -0
- package/esm/domain/record/trackers/trackInput.js +101 -0
- package/esm/domain/record/trackers/trackInput.js.map +1 -0
- package/esm/domain/record/trackers/trackMediaInteraction.d.ts +5 -0
- package/esm/domain/record/trackers/trackMediaInteraction.js +26 -0
- package/esm/domain/record/trackers/trackMediaInteraction.js.map +1 -0
- package/esm/domain/record/trackers/trackMouseInteraction.d.ts +5 -0
- package/esm/domain/record/trackers/trackMouseInteraction.js +56 -0
- package/esm/domain/record/trackers/trackMouseInteraction.js.map +1 -0
- package/esm/domain/record/trackers/trackMove.d.ts +9 -0
- package/esm/domain/record/trackers/trackMove.js +51 -0
- package/esm/domain/record/trackers/trackMove.js.map +1 -0
- package/esm/domain/record/trackers/trackMutation.d.ts +13 -0
- package/esm/domain/record/trackers/trackMutation.js +38 -0
- package/esm/domain/record/trackers/trackMutation.js.map +1 -0
- package/esm/domain/record/trackers/trackScroll.d.ts +5 -0
- package/esm/domain/record/trackers/trackScroll.js +45 -0
- package/esm/domain/record/trackers/trackScroll.js.map +1 -0
- package/esm/domain/record/trackers/trackStyleSheet.d.ts +6 -0
- package/esm/domain/record/trackers/trackStyleSheet.js +85 -0
- package/esm/domain/record/trackers/trackStyleSheet.js.map +1 -0
- package/esm/domain/record/trackers/trackViewEnd.d.ts +5 -0
- package/esm/domain/record/trackers/trackViewEnd.js +17 -0
- package/esm/domain/record/trackers/trackViewEnd.js.map +1 -0
- package/esm/domain/record/trackers/trackViewportResize.d.ts +6 -0
- package/esm/domain/record/trackers/trackViewportResize.js +42 -0
- package/esm/domain/record/trackers/trackViewportResize.js.map +1 -0
- package/esm/domain/record/trackers/tracker.types.d.ts +3 -0
- package/esm/domain/record/trackers/tracker.types.js +2 -0
- package/esm/domain/record/trackers/tracker.types.js.map +1 -0
- package/esm/domain/record/viewports.d.ts +20 -0
- package/esm/domain/record/viewports.js +55 -0
- package/esm/domain/record/viewports.js.map +1 -0
- package/esm/domain/replayStats.d.ts +8 -0
- package/esm/domain/replayStats.js +51 -0
- package/esm/domain/replayStats.js.map +1 -0
- package/esm/domain/scriptLoadingError.d.ts +6 -0
- package/esm/domain/scriptLoadingError.js +23 -0
- package/esm/domain/scriptLoadingError.js.map +1 -0
- package/esm/domain/segmentCollection/buildReplayPayload.d.ts +15 -0
- package/esm/domain/segmentCollection/buildReplayPayload.js +23 -0
- package/esm/domain/segmentCollection/buildReplayPayload.js.map +1 -0
- package/esm/domain/segmentCollection/index.d.ts +4 -0
- package/esm/domain/segmentCollection/index.js +4 -0
- package/esm/domain/segmentCollection/index.js.map +1 -0
- package/esm/domain/segmentCollection/segment.d.ts +16 -0
- package/esm/domain/segmentCollection/segment.js +46 -0
- package/esm/domain/segmentCollection/segment.js.map +1 -0
- package/esm/domain/segmentCollection/segmentCollection.d.ts +31 -0
- package/esm/domain/segmentCollection/segmentCollection.js +106 -0
- package/esm/domain/segmentCollection/segmentCollection.js.map +1 -0
- package/esm/domain/segmentCollection/startSegmentTelemetry.d.ts +6 -0
- package/esm/domain/segmentCollection/startSegmentTelemetry.js +49 -0
- package/esm/domain/segmentCollection/startSegmentTelemetry.js.map +1 -0
- package/esm/domain/startRecordBridge.d.ts +5 -0
- package/esm/domain/startRecordBridge.js +14 -0
- package/esm/domain/startRecordBridge.js.map +1 -0
- package/esm/domain/startRecorderInitTelemetry.d.ts +15 -0
- package/esm/domain/startRecorderInitTelemetry.js +52 -0
- package/esm/domain/startRecorderInitTelemetry.js.map +1 -0
- package/esm/entries/internal.d.ts +11 -0
- package/esm/entries/internal.js +4 -0
- package/esm/entries/internal.js.map +1 -0
- package/esm/entries/internalSynthetics.d.ts +2 -0
- package/esm/entries/internalSynthetics.js +23 -0
- package/esm/entries/internalSynthetics.js.map +1 -0
- package/esm/entries/main.d.ts +23 -0
- package/esm/entries/main.js +31 -0
- package/esm/entries/main.js.map +1 -0
- package/esm/types/index.d.ts +3 -0
- package/esm/types/index.js +2 -0
- package/esm/types/index.js.map +1 -0
- package/esm/types/profiling.d.ts +296 -0
- package/esm/types/profiling.js +5 -0
- package/esm/types/profiling.js.map +1 -0
- package/esm/types/sessionReplay.d.ts +934 -0
- package/esm/types/sessionReplay.js +5 -0
- package/esm/types/sessionReplay.js.map +1 -0
- package/esm/types/sessionReplayConstants.d.ts +71 -0
- package/esm/types/sessionReplayConstants.js +64 -0
- package/esm/types/sessionReplayConstants.js.map +1 -0
- package/internal/package.json +6 -0
- package/internal-synthetics/package.json +6 -0
- package/package.json +52 -0
- package/src/boot/isBrowserSupported.ts +14 -0
- package/src/boot/lazyLoadProfiler.ts +20 -0
- package/src/boot/lazyLoadRecorder.ts +20 -0
- package/src/boot/postStartStrategy.ts +176 -0
- package/src/boot/preStartStrategy.ts +34 -0
- package/src/boot/profilerApi.ts +82 -0
- package/src/boot/recorderApi.ts +113 -0
- package/src/boot/startRecording.ts +70 -0
- package/src/domain/deflate/deflateEncoder.ts +144 -0
- package/src/domain/deflate/deflateWorker.ts +152 -0
- package/src/domain/deflate/index.ts +9 -0
- package/src/domain/getSessionReplayLink.ts +40 -0
- package/src/domain/profiling/actionHistory.ts +65 -0
- package/src/domain/profiling/longTaskHistory.ts +40 -0
- package/src/domain/profiling/profiler.ts +366 -0
- package/src/domain/profiling/profilingContext.ts +39 -0
- package/src/domain/profiling/profilingSupported.ts +10 -0
- package/src/domain/profiling/test-utils/mockedTrace.ts +58 -0
- package/src/domain/profiling/transport/assembly.ts +63 -0
- package/src/domain/profiling/transport/buildProfileEventAttributes.ts +106 -0
- package/src/domain/profiling/types/index.ts +2 -0
- package/src/domain/profiling/types/profilerApi.types.ts +87 -0
- package/src/domain/profiling/types/rumProfiler.types.ts +62 -0
- package/src/domain/profiling/utils/getCustomOrDefaultViewName.ts +4 -0
- package/src/domain/profiling/utils/getDefaultViewName.ts +12 -0
- package/src/domain/profiling/utils/getNumberOfSamples.ts +17 -0
- package/src/domain/profiling/vitalHistory.ts +58 -0
- package/src/domain/record/assembly.ts +19 -0
- package/src/domain/record/elementsScrollPositions.ts +28 -0
- package/src/domain/record/eventsUtils.ts +12 -0
- package/src/domain/record/index.ts +12 -0
- package/src/domain/record/internalApi.ts +84 -0
- package/src/domain/record/itemIds.ts +97 -0
- package/src/domain/record/mutationBatch.ts +47 -0
- package/src/domain/record/record.ts +90 -0
- package/src/domain/record/record.types.ts +22 -0
- package/src/domain/record/recordingScope.ts +58 -0
- package/src/domain/record/serialization/changeEncoder.ts +89 -0
- package/src/domain/record/serialization/conversions/changeConverter.ts +277 -0
- package/src/domain/record/serialization/conversions/changeDecoder.ts +192 -0
- package/src/domain/record/serialization/conversions/index.ts +7 -0
- package/src/domain/record/serialization/conversions/mutationLog.ts +56 -0
- package/src/domain/record/serialization/conversions/nodeIdRemapper.ts +69 -0
- package/src/domain/record/serialization/conversions/renderOptions.ts +14 -0
- package/src/domain/record/serialization/conversions/stringTable.ts +25 -0
- package/src/domain/record/serialization/conversions/vDocument.ts +239 -0
- package/src/domain/record/serialization/conversions/vNode.ts +417 -0
- package/src/domain/record/serialization/conversions/vStyleSheet.ts +47 -0
- package/src/domain/record/serialization/experimentalFeatures.ts +15 -0
- package/src/domain/record/serialization/index.ts +21 -0
- package/src/domain/record/serialization/insertionCursor.ts +131 -0
- package/src/domain/record/serialization/serialization.types.ts +38 -0
- package/src/domain/record/serialization/serializationStats.ts +43 -0
- package/src/domain/record/serialization/serializationTransaction.ts +255 -0
- package/src/domain/record/serialization/serializationUtils.ts +103 -0
- package/src/domain/record/serialization/serializeAttribute.ts +55 -0
- package/src/domain/record/serialization/serializeAttributes.ts +194 -0
- package/src/domain/record/serialization/serializeFullSnapshot.ts +46 -0
- package/src/domain/record/serialization/serializeFullSnapshotAsChange.ts +33 -0
- package/src/domain/record/serialization/serializeMutations.ts +395 -0
- package/src/domain/record/serialization/serializeMutationsAsChange.ts +298 -0
- package/src/domain/record/serialization/serializeNode.ts +229 -0
- package/src/domain/record/serialization/serializeNodeAsChange.ts +237 -0
- package/src/domain/record/serialization/serializeStyleSheets.ts +36 -0
- package/src/domain/record/serializationVerifier.ts +208 -0
- package/src/domain/record/shadowRootsController.ts +62 -0
- package/src/domain/record/startFullSnapshots.ts +92 -0
- package/src/domain/record/trackers/index.ts +12 -0
- package/src/domain/record/trackers/trackFocus.ts +16 -0
- package/src/domain/record/trackers/trackFrustration.ts +39 -0
- package/src/domain/record/trackers/trackInput.ts +128 -0
- package/src/domain/record/trackers/trackMediaInteraction.ts +43 -0
- package/src/domain/record/trackers/trackMouseInteraction.ts +74 -0
- package/src/domain/record/trackers/trackMove.ts +78 -0
- package/src/domain/record/trackers/trackMutation.ts +74 -0
- package/src/domain/record/trackers/trackScroll.ts +61 -0
- package/src/domain/record/trackers/trackStyleSheet.ts +117 -0
- package/src/domain/record/trackers/trackViewEnd.ts +27 -0
- package/src/domain/record/trackers/trackViewportResize.ts +69 -0
- package/src/domain/record/trackers/tracker.types.ts +3 -0
- package/src/domain/record/viewports.ts +68 -0
- package/src/domain/replayStats.ts +61 -0
- package/src/domain/scriptLoadingError.ts +36 -0
- package/src/domain/segmentCollection/buildReplayPayload.ts +52 -0
- package/src/domain/segmentCollection/index.ts +4 -0
- package/src/domain/segmentCollection/segment.ts +79 -0
- package/src/domain/segmentCollection/segmentCollection.ts +200 -0
- package/src/domain/segmentCollection/startSegmentTelemetry.ts +91 -0
- package/src/domain/startRecordBridge.ts +17 -0
- package/src/domain/startRecorderInitTelemetry.ts +90 -0
- package/src/entries/internal.ts +18 -0
- package/src/entries/internalSynthetics.ts +24 -0
- package/src/entries/main.ts +96 -0
- package/src/types/index.ts +3 -0
- package/src/types/profiling.ts +298 -0
- package/src/types/sessionReplay.ts +990 -0
- package/src/types/sessionReplayConstants.ts +130 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { NodePrivacyLevel } from '@datadog/browser-rum-core';
|
|
2
|
+
import type { ChangeSerializationTransaction, SerializationTransaction } from './serializationTransaction';
|
|
3
|
+
import type { VirtualAttributes } from './serialization.types';
|
|
4
|
+
export declare function serializeAttributes(element: Element, nodePrivacyLevel: NodePrivacyLevel, transaction: ChangeSerializationTransaction | SerializationTransaction): Record<string, number | string>;
|
|
5
|
+
export declare function serializeDOMAttributes(element: Element, nodePrivacyLevel: NodePrivacyLevel, transaction: ChangeSerializationTransaction | SerializationTransaction): Record<string, string>;
|
|
6
|
+
export declare function serializeVirtualAttributes(element: Element, nodePrivacyLevel: NodePrivacyLevel, transaction: ChangeSerializationTransaction | SerializationTransaction): VirtualAttributes;
|
|
7
|
+
export declare function getCssRulesString(cssStyleSheet: CSSStyleSheet | undefined | null): string | null;
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.serializeAttributes = serializeAttributes;
|
|
4
|
+
exports.serializeDOMAttributes = serializeDOMAttributes;
|
|
5
|
+
exports.serializeVirtualAttributes = serializeVirtualAttributes;
|
|
6
|
+
exports.getCssRulesString = getCssRulesString;
|
|
7
|
+
const browser_rum_core_1 = require("@datadog/browser-rum-core");
|
|
8
|
+
const browser_core_1 = require("@datadog/browser-core");
|
|
9
|
+
const serializationUtils_1 = require("./serializationUtils");
|
|
10
|
+
const serializeAttribute_1 = require("./serializeAttribute");
|
|
11
|
+
function serializeAttributes(element, nodePrivacyLevel, transaction) {
|
|
12
|
+
return {
|
|
13
|
+
...serializeDOMAttributes(element, nodePrivacyLevel, transaction),
|
|
14
|
+
...serializeVirtualAttributes(element, nodePrivacyLevel, transaction),
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
function serializeDOMAttributes(element, nodePrivacyLevel, transaction) {
|
|
18
|
+
if (nodePrivacyLevel === browser_rum_core_1.NodePrivacyLevel.HIDDEN) {
|
|
19
|
+
return {};
|
|
20
|
+
}
|
|
21
|
+
const attrs = {};
|
|
22
|
+
const tagName = (0, serializationUtils_1.normalizedTagName)(element);
|
|
23
|
+
for (let i = 0; i < element.attributes.length; i += 1) {
|
|
24
|
+
const attribute = element.attributes.item(i);
|
|
25
|
+
const attributeName = attribute.name;
|
|
26
|
+
const attributeValue = (0, serializeAttribute_1.serializeAttribute)(element, nodePrivacyLevel, attributeName, transaction.scope.configuration);
|
|
27
|
+
if (attributeValue !== null) {
|
|
28
|
+
attrs[attributeName] = attributeValue;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
if (element.value &&
|
|
32
|
+
(tagName === 'textarea' || tagName === 'select' || tagName === 'option' || tagName === 'input')) {
|
|
33
|
+
const formValue = (0, serializationUtils_1.getElementInputValue)(element, nodePrivacyLevel);
|
|
34
|
+
if (formValue !== undefined) {
|
|
35
|
+
attrs.value = formValue;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* <Option> can be selected, which occurs if its `value` matches ancestor `<Select>.value`
|
|
40
|
+
*/
|
|
41
|
+
if (tagName === 'option') {
|
|
42
|
+
const optionElement = element;
|
|
43
|
+
if (optionElement.selected && !(0, browser_rum_core_1.shouldMaskNode)(optionElement, nodePrivacyLevel)) {
|
|
44
|
+
attrs.selected = '';
|
|
45
|
+
}
|
|
46
|
+
else {
|
|
47
|
+
delete attrs.selected;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* Forms: input[type=checkbox,radio]
|
|
52
|
+
* The `checked` property for <input> is a little bit special:
|
|
53
|
+
* 1. el.checked is a setter that returns if truthy.
|
|
54
|
+
* 2. getAttribute returns the string value
|
|
55
|
+
* getAttribute('checked') does not sync with `Element.checked`, so use JS property
|
|
56
|
+
* NOTE: `checked` property exists on `HTMLInputElement`. For serializer assumptions, we check for type=radio|check.
|
|
57
|
+
*/
|
|
58
|
+
const inputElement = element;
|
|
59
|
+
if (tagName === 'input' && (inputElement.type === 'radio' || inputElement.type === 'checkbox')) {
|
|
60
|
+
if (inputElement.checked && !(0, browser_rum_core_1.shouldMaskNode)(inputElement, nodePrivacyLevel)) {
|
|
61
|
+
attrs.checked = '';
|
|
62
|
+
}
|
|
63
|
+
else {
|
|
64
|
+
delete attrs.checked;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
return attrs;
|
|
68
|
+
}
|
|
69
|
+
function serializeVirtualAttributes(element, nodePrivacyLevel, transaction) {
|
|
70
|
+
if (nodePrivacyLevel === browser_rum_core_1.NodePrivacyLevel.HIDDEN) {
|
|
71
|
+
return {};
|
|
72
|
+
}
|
|
73
|
+
const attrs = {};
|
|
74
|
+
const doc = element.ownerDocument;
|
|
75
|
+
const tagName = (0, serializationUtils_1.normalizedTagName)(element);
|
|
76
|
+
// remote css
|
|
77
|
+
if (tagName === 'link') {
|
|
78
|
+
const stylesheet = Array.from(doc.styleSheets).find((s) => s.href === element.href);
|
|
79
|
+
const cssText = getCssRulesString(stylesheet);
|
|
80
|
+
if (cssText && stylesheet) {
|
|
81
|
+
transaction.addMetric('cssText', cssText.length);
|
|
82
|
+
attrs._cssText = cssText;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
// dynamic stylesheet
|
|
86
|
+
if (tagName === 'style' && element.sheet) {
|
|
87
|
+
const cssText = getCssRulesString(element.sheet);
|
|
88
|
+
if (cssText) {
|
|
89
|
+
transaction.addMetric('cssText', cssText.length);
|
|
90
|
+
attrs._cssText = cssText;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
/**
|
|
94
|
+
* Serialize the media playback state
|
|
95
|
+
*/
|
|
96
|
+
if (tagName === 'audio' || tagName === 'video') {
|
|
97
|
+
const mediaElement = element;
|
|
98
|
+
attrs.rr_mediaState = mediaElement.paused ? 'paused' : 'played';
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* Serialize the scroll state for each element only for full snapshot
|
|
102
|
+
*/
|
|
103
|
+
let scrollTop;
|
|
104
|
+
let scrollLeft;
|
|
105
|
+
switch (transaction.kind) {
|
|
106
|
+
case 0 /* SerializationKind.INITIAL_FULL_SNAPSHOT */:
|
|
107
|
+
scrollTop = Math.round(element.scrollTop);
|
|
108
|
+
scrollLeft = Math.round(element.scrollLeft);
|
|
109
|
+
if (scrollTop || scrollLeft) {
|
|
110
|
+
transaction.scope.elementsScrollPositions.set(element, { scrollTop, scrollLeft });
|
|
111
|
+
}
|
|
112
|
+
break;
|
|
113
|
+
case 1 /* SerializationKind.SUBSEQUENT_FULL_SNAPSHOT */:
|
|
114
|
+
if (transaction.scope.elementsScrollPositions.has(element)) {
|
|
115
|
+
;
|
|
116
|
+
({ scrollTop, scrollLeft } = transaction.scope.elementsScrollPositions.get(element));
|
|
117
|
+
}
|
|
118
|
+
break;
|
|
119
|
+
}
|
|
120
|
+
if (scrollLeft) {
|
|
121
|
+
attrs.rr_scrollLeft = scrollLeft;
|
|
122
|
+
}
|
|
123
|
+
if (scrollTop) {
|
|
124
|
+
attrs.rr_scrollTop = scrollTop;
|
|
125
|
+
}
|
|
126
|
+
return attrs;
|
|
127
|
+
}
|
|
128
|
+
function getCssRulesString(cssStyleSheet) {
|
|
129
|
+
if (!cssStyleSheet) {
|
|
130
|
+
return null;
|
|
131
|
+
}
|
|
132
|
+
let rules;
|
|
133
|
+
try {
|
|
134
|
+
rules = cssStyleSheet.rules || cssStyleSheet.cssRules;
|
|
135
|
+
}
|
|
136
|
+
catch (_a) {
|
|
137
|
+
// if css is protected by CORS we cannot access cssRules see: https://www.w3.org/TR/cssom-1/#the-cssstylesheet-interface
|
|
138
|
+
}
|
|
139
|
+
if (!rules) {
|
|
140
|
+
return null;
|
|
141
|
+
}
|
|
142
|
+
const styleSheetCssText = Array.from(rules, (0, browser_core_1.isSafari)() ? getCssRuleStringForSafari : getCssRuleString).join('');
|
|
143
|
+
return (0, serializationUtils_1.switchToAbsoluteUrl)(styleSheetCssText, cssStyleSheet.href);
|
|
144
|
+
}
|
|
145
|
+
function getCssRuleStringForSafari(rule) {
|
|
146
|
+
// Safari does not escape attribute selectors containing : properly
|
|
147
|
+
// https://bugs.webkit.org/show_bug.cgi?id=184604
|
|
148
|
+
if (isCSSStyleRule(rule) && rule.selectorText.includes(':')) {
|
|
149
|
+
// This regex replaces [foo:bar] by [foo\\:bar]
|
|
150
|
+
const escapeColon = /(\[[\w-]+[^\\])(:[^\]]+\])/g;
|
|
151
|
+
return rule.cssText.replace(escapeColon, '$1\\$2');
|
|
152
|
+
}
|
|
153
|
+
return getCssRuleString(rule);
|
|
154
|
+
}
|
|
155
|
+
function getCssRuleString(rule) {
|
|
156
|
+
// If it's an @import rule, try to inline sub-rules recursively with `getCssRulesString`. This
|
|
157
|
+
// operation can fail if the imported stylesheet is protected by CORS, in which case we fallback
|
|
158
|
+
// to the @import rule CSS text.
|
|
159
|
+
return (isCSSImportRule(rule) && getCssRulesString(rule.styleSheet)) || rule.cssText;
|
|
160
|
+
}
|
|
161
|
+
function isCSSImportRule(rule) {
|
|
162
|
+
return 'styleSheet' in rule;
|
|
163
|
+
}
|
|
164
|
+
function isCSSStyleRule(rule) {
|
|
165
|
+
return 'selectorText' in rule;
|
|
166
|
+
}
|
|
167
|
+
//# sourceMappingURL=serializeAttributes.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"serializeAttributes.js","sourceRoot":"","sources":["../../../../src/domain/record/serialization/serializeAttributes.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { TimeStamp } from '@datadog/browser-core';
|
|
2
|
+
import type { EmitRecordCallback, EmitStatsCallback } from '../record.types';
|
|
3
|
+
import type { RecordingScope } from '../recordingScope';
|
|
4
|
+
import type { SerializationKind } from './serializationTransaction';
|
|
5
|
+
export declare function serializeFullSnapshot(timestamp: TimeStamp, kind: SerializationKind, document: Document, emitRecord: EmitRecordCallback, emitStats: EmitStatsCallback, scope: RecordingScope): void;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.serializeFullSnapshot = serializeFullSnapshot;
|
|
4
|
+
const browser_rum_core_1 = require("@datadog/browser-rum-core");
|
|
5
|
+
const types_1 = require("../../../types");
|
|
6
|
+
const serializeNode_1 = require("./serializeNode");
|
|
7
|
+
const serializationTransaction_1 = require("./serializationTransaction");
|
|
8
|
+
function serializeFullSnapshot(timestamp, kind, document, emitRecord, emitStats, scope) {
|
|
9
|
+
(0, serializationTransaction_1.serializeInTransaction)(kind, emitRecord, emitStats, scope, (transaction) => {
|
|
10
|
+
const defaultPrivacyLevel = transaction.scope.configuration.defaultPrivacyLevel;
|
|
11
|
+
// We are sure that Documents are never ignored, so this function never returns null.
|
|
12
|
+
const node = (0, serializeNode_1.serializeNode)(document, defaultPrivacyLevel, transaction);
|
|
13
|
+
const record = {
|
|
14
|
+
data: {
|
|
15
|
+
node,
|
|
16
|
+
initialOffset: {
|
|
17
|
+
left: (0, browser_rum_core_1.getScrollX)(),
|
|
18
|
+
top: (0, browser_rum_core_1.getScrollY)(),
|
|
19
|
+
},
|
|
20
|
+
},
|
|
21
|
+
type: types_1.RecordType.FullSnapshot,
|
|
22
|
+
timestamp,
|
|
23
|
+
};
|
|
24
|
+
transaction.add(record);
|
|
25
|
+
scope.serializeObservable.notify({
|
|
26
|
+
type: 'full',
|
|
27
|
+
kind,
|
|
28
|
+
target: document,
|
|
29
|
+
timestamp,
|
|
30
|
+
v1: record,
|
|
31
|
+
});
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
//# sourceMappingURL=serializeFullSnapshot.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"serializeFullSnapshot.js","sourceRoot":"","sources":["../../../../src/domain/record/serialization/serializeFullSnapshot.ts"],"names":[],"mappings":";;AAUA,sDAmCC;AA7CD,gEAAkE;AAGlE,0CAA2C;AAG3C,mDAA+C;AAC/C,yEAAmE;AAGnE,SAAgB,qBAAqB,CACnC,SAAoB,EACpB,IAAuB,EACvB,QAAkB,EAClB,UAA8B,EAC9B,SAA4B,EAC5B,KAAqB;IAErB,IAAA,iDAAsB,EAAC,IAAI,EAAE,UAAU,EAAE,SAAS,EAAE,KAAK,EAAE,CAAC,WAAqC,EAAE,EAAE;QACnG,MAAM,mBAAmB,GAAG,WAAW,CAAC,KAAK,CAAC,aAAa,CAAC,mBAAmB,CAAA;QAE/E,qFAAqF;QACrF,MAAM,IAAI,GAAG,IAAA,6BAAa,EAAC,QAAQ,EAAE,mBAAmB,EAAE,WAAW,CAAE,CAAA;QAEvE,MAAM,MAAM,GAA8B;YACxC,IAAI,EAAE;gBACJ,IAAI;gBACJ,aAAa,EAAE;oBACb,IAAI,EAAE,IAAA,6BAAU,GAAE;oBAClB,GAAG,EAAE,IAAA,6BAAU,GAAE;iBAClB;aACF;YACD,IAAI,EAAE,kBAAU,CAAC,YAAY;YAC7B,SAAS;SACV,CAAA;QACD,WAAW,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;QAEvB,KAAK,CAAC,mBAAmB,CAAC,MAAM,CAAC;YAC/B,IAAI,EAAE,MAAM;YACZ,IAAI;YACJ,MAAM,EAAE,QAAQ;YAChB,SAAS;YACT,EAAE,EAAE,MAAM;SACX,CAAC,CAAA;IACJ,CAAC,CAAC,CAAA;AACJ,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { TimeStamp } from '@datadog/browser-core';
|
|
2
|
+
import type { EmitRecordCallback, EmitStatsCallback } from '../record.types';
|
|
3
|
+
import type { RecordingScope } from '../recordingScope';
|
|
4
|
+
import type { SerializationKind } from './serializationTransaction';
|
|
5
|
+
export declare function serializeFullSnapshotAsChange(timestamp: TimeStamp, kind: SerializationKind, document: Document, emitRecord: EmitRecordCallback, emitStats: EmitStatsCallback, scope: RecordingScope): void;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.serializeFullSnapshotAsChange = serializeFullSnapshotAsChange;
|
|
4
|
+
const serializationTransaction_1 = require("./serializationTransaction");
|
|
5
|
+
const serializeNodeAsChange_1 = require("./serializeNodeAsChange");
|
|
6
|
+
const insertionCursor_1 = require("./insertionCursor");
|
|
7
|
+
function serializeFullSnapshotAsChange(timestamp, kind, document, emitRecord, emitStats, scope) {
|
|
8
|
+
scope.resetIds();
|
|
9
|
+
(0, serializationTransaction_1.serializeChangesInTransaction)(kind, emitRecord, emitStats, scope, timestamp, (transaction) => {
|
|
10
|
+
(0, serializeNodeAsChange_1.serializeNodeAsChange)((0, insertionCursor_1.createRootInsertionCursor)(scope.nodeIds), document, scope.configuration.defaultPrivacyLevel, transaction);
|
|
11
|
+
});
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=serializeFullSnapshotAsChange.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"serializeFullSnapshotAsChange.js","sourceRoot":"","sources":["../../../../src/domain/record/serialization/serializeFullSnapshotAsChange.ts"],"names":[],"mappings":";;AAQA,sEAwBC;AA7BD,yEAA0E;AAE1E,mEAA+D;AAC/D,uDAA6D;AAE7D,SAAgB,6BAA6B,CAC3C,SAAoB,EACpB,IAAuB,EACvB,QAAkB,EAClB,UAA8B,EAC9B,SAA4B,EAC5B,KAAqB;IAErB,KAAK,CAAC,QAAQ,EAAE,CAAA;IAChB,IAAA,wDAA6B,EAC3B,IAAI,EACJ,UAAU,EACV,SAAS,EACT,KAAK,EACL,SAAS,EACT,CAAC,WAA2C,EAAE,EAAE;QAC9C,IAAA,6CAAqB,EACnB,IAAA,2CAAyB,EAAC,KAAK,CAAC,OAAO,CAAC,EACxC,QAAQ,EACR,KAAK,CAAC,aAAa,CAAC,mBAAmB,EACvC,WAAW,CACZ,CAAA;IACH,CAAC,CACF,CAAA;AACH,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { RumMutationRecord } from '@datadog/browser-rum-core';
|
|
2
|
+
import type { TimeStamp } from '@datadog/browser-core';
|
|
3
|
+
import type { RecordingScope } from '../recordingScope';
|
|
4
|
+
import type { EmitRecordCallback, EmitStatsCallback } from '../record.types';
|
|
5
|
+
import type { NodeIds } from '../itemIds';
|
|
6
|
+
export type NodeWithSerializedNode = Node & {
|
|
7
|
+
__brand: 'NodeWithSerializedNode';
|
|
8
|
+
};
|
|
9
|
+
export declare function serializeMutations(timestamp: TimeStamp, mutations: RumMutationRecord[], emitRecord: EmitRecordCallback, emitStats: EmitStatsCallback, scope: RecordingScope): void;
|
|
10
|
+
export declare function sortAddedAndMovedNodes(nodes: Node[]): void;
|
|
11
|
+
export declare function idsAreAssignedForNodeAndAncestors(node: Node, nodeIds: NodeIds): node is NodeWithSerializedNode;
|
|
@@ -0,0 +1,262 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.serializeMutations = serializeMutations;
|
|
4
|
+
exports.sortAddedAndMovedNodes = sortAddedAndMovedNodes;
|
|
5
|
+
exports.idsAreAssignedForNodeAndAncestors = idsAreAssignedForNodeAndAncestors;
|
|
6
|
+
const browser_rum_core_1 = require("@datadog/browser-rum-core");
|
|
7
|
+
const types_1 = require("../../../types");
|
|
8
|
+
const assembly_1 = require("../assembly");
|
|
9
|
+
const serializationTransaction_1 = require("./serializationTransaction");
|
|
10
|
+
const serializeNode_1 = require("./serializeNode");
|
|
11
|
+
const serializeAttribute_1 = require("./serializeAttribute");
|
|
12
|
+
const serializationUtils_1 = require("./serializationUtils");
|
|
13
|
+
function serializeMutations(timestamp, mutations, emitRecord, emitStats, scope) {
|
|
14
|
+
(0, serializationTransaction_1.serializeInTransaction)(2 /* SerializationKind.INCREMENTAL_SNAPSHOT */, emitRecord, emitStats, scope, (transaction) => processMutations(timestamp, mutations, transaction));
|
|
15
|
+
}
|
|
16
|
+
function processMutations(timestamp, mutations, transaction) {
|
|
17
|
+
const nodePrivacyLevelCache = new Map();
|
|
18
|
+
mutations
|
|
19
|
+
.filter((mutation) => mutation.type === 'childList')
|
|
20
|
+
.forEach((mutation) => {
|
|
21
|
+
mutation.removedNodes.forEach((removedNode) => {
|
|
22
|
+
traverseRemovedShadowDom(removedNode, transaction.scope.shadowRootsController.removeShadowRoot);
|
|
23
|
+
});
|
|
24
|
+
});
|
|
25
|
+
// Discard any mutation with a 'target' node that:
|
|
26
|
+
// * isn't injected in the current document or isn't known/serialized yet: those nodes are likely
|
|
27
|
+
// part of a mutation occurring in a parent Node
|
|
28
|
+
// * should be hidden or ignored
|
|
29
|
+
const filteredMutations = mutations.filter((mutation) => mutation.target.isConnected &&
|
|
30
|
+
idsAreAssignedForNodeAndAncestors(mutation.target, transaction.scope.nodeIds) &&
|
|
31
|
+
(0, browser_rum_core_1.getNodePrivacyLevel)(mutation.target, transaction.scope.configuration.defaultPrivacyLevel, nodePrivacyLevelCache) !== browser_rum_core_1.NodePrivacyLevel.HIDDEN);
|
|
32
|
+
const { adds, removes, hasBeenSerialized } = processChildListMutations(filteredMutations.filter((mutation) => mutation.type === 'childList'), nodePrivacyLevelCache, transaction);
|
|
33
|
+
const texts = processCharacterDataMutations(filteredMutations.filter((mutation) => mutation.type === 'characterData' && !hasBeenSerialized(mutation.target)), nodePrivacyLevelCache, transaction);
|
|
34
|
+
const attributes = processAttributesMutations(filteredMutations.filter((mutation) => mutation.type === 'attributes' && !hasBeenSerialized(mutation.target)), nodePrivacyLevelCache, transaction);
|
|
35
|
+
if (!texts.length && !attributes.length && !removes.length && !adds.length) {
|
|
36
|
+
return;
|
|
37
|
+
}
|
|
38
|
+
const record = (0, assembly_1.assembleIncrementalSnapshot)(types_1.IncrementalSource.Mutation, {
|
|
39
|
+
adds,
|
|
40
|
+
removes,
|
|
41
|
+
texts,
|
|
42
|
+
attributes,
|
|
43
|
+
}, timestamp);
|
|
44
|
+
transaction.add(record);
|
|
45
|
+
transaction.scope.serializeObservable.notify({
|
|
46
|
+
type: 'incremental',
|
|
47
|
+
target: mutations,
|
|
48
|
+
timestamp,
|
|
49
|
+
v1: record,
|
|
50
|
+
});
|
|
51
|
+
}
|
|
52
|
+
function processChildListMutations(mutations, nodePrivacyLevelCache, transaction) {
|
|
53
|
+
// First, we iterate over mutations to collect:
|
|
54
|
+
//
|
|
55
|
+
// * nodes that have been added in the document and not removed by a subsequent mutation
|
|
56
|
+
// * nodes that have been removed from the document but were not added in a previous mutation
|
|
57
|
+
//
|
|
58
|
+
// For this second category, we also collect their previous parent (mutation.target) because we'll
|
|
59
|
+
// need it to emit a 'remove' mutation.
|
|
60
|
+
//
|
|
61
|
+
// Those two categories may overlap: if a node moved from a position to another, it is reported as
|
|
62
|
+
// two mutation records, one with a "removedNodes" and the other with "addedNodes". In this case,
|
|
63
|
+
// the node will be in both sets.
|
|
64
|
+
const addedAndMovedNodes = new Set();
|
|
65
|
+
const removedNodes = new Map();
|
|
66
|
+
for (const mutation of mutations) {
|
|
67
|
+
mutation.addedNodes.forEach((node) => {
|
|
68
|
+
addedAndMovedNodes.add(node);
|
|
69
|
+
});
|
|
70
|
+
mutation.removedNodes.forEach((node) => {
|
|
71
|
+
if (!addedAndMovedNodes.has(node)) {
|
|
72
|
+
removedNodes.set(node, mutation.target);
|
|
73
|
+
}
|
|
74
|
+
addedAndMovedNodes.delete(node);
|
|
75
|
+
});
|
|
76
|
+
}
|
|
77
|
+
// Then, we sort nodes that are still in the document by topological order, for two reasons:
|
|
78
|
+
//
|
|
79
|
+
// * We will serialize each added nodes with their descendants. We don't want to serialize a node
|
|
80
|
+
// twice, so we need to iterate over the parent nodes first and skip any node that is contained in
|
|
81
|
+
// a precedent node.
|
|
82
|
+
//
|
|
83
|
+
// * To emit "add" mutations, we need references to the parent and potential next sibling of each
|
|
84
|
+
// added node. So we need to iterate over the parent nodes first, and when multiple nodes are
|
|
85
|
+
// siblings, we want to iterate from last to first. This will ensure that any "next" node is
|
|
86
|
+
// already serialized and have an id.
|
|
87
|
+
const sortedAddedAndMovedNodes = Array.from(addedAndMovedNodes);
|
|
88
|
+
sortAddedAndMovedNodes(sortedAddedAndMovedNodes);
|
|
89
|
+
// Then, we iterate over our sorted node sets to emit mutations. We collect the newly serialized
|
|
90
|
+
// node ids in a set to be able to skip subsequent related mutations.
|
|
91
|
+
transaction.serializedNodeIds = new Set();
|
|
92
|
+
const addedNodeMutations = [];
|
|
93
|
+
for (const node of sortedAddedAndMovedNodes) {
|
|
94
|
+
if (hasBeenSerialized(node)) {
|
|
95
|
+
continue;
|
|
96
|
+
}
|
|
97
|
+
const parentNodePrivacyLevel = (0, browser_rum_core_1.getNodePrivacyLevel)(node.parentNode, transaction.scope.configuration.defaultPrivacyLevel, nodePrivacyLevelCache);
|
|
98
|
+
if (parentNodePrivacyLevel === browser_rum_core_1.NodePrivacyLevel.HIDDEN || parentNodePrivacyLevel === browser_rum_core_1.NodePrivacyLevel.IGNORE) {
|
|
99
|
+
continue;
|
|
100
|
+
}
|
|
101
|
+
const serializedNode = (0, serializeNode_1.serializeNode)(node, parentNodePrivacyLevel, transaction);
|
|
102
|
+
if (!serializedNode) {
|
|
103
|
+
continue;
|
|
104
|
+
}
|
|
105
|
+
const parentNode = (0, browser_rum_core_1.getParentNode)(node);
|
|
106
|
+
addedNodeMutations.push({
|
|
107
|
+
nextId: getNextSibling(node),
|
|
108
|
+
parentId: transaction.scope.nodeIds.get(parentNode),
|
|
109
|
+
node: serializedNode,
|
|
110
|
+
});
|
|
111
|
+
}
|
|
112
|
+
// Finally, we emit remove mutations.
|
|
113
|
+
const removedNodeMutations = [];
|
|
114
|
+
removedNodes.forEach((parent, node) => {
|
|
115
|
+
const parentId = transaction.scope.nodeIds.get(parent);
|
|
116
|
+
const id = transaction.scope.nodeIds.get(node);
|
|
117
|
+
if (parentId !== undefined && id !== undefined) {
|
|
118
|
+
removedNodeMutations.push({ parentId, id });
|
|
119
|
+
}
|
|
120
|
+
});
|
|
121
|
+
return { adds: addedNodeMutations, removes: removedNodeMutations, hasBeenSerialized };
|
|
122
|
+
function hasBeenSerialized(node) {
|
|
123
|
+
var _a;
|
|
124
|
+
const id = transaction.scope.nodeIds.get(node);
|
|
125
|
+
return id !== undefined && ((_a = transaction.serializedNodeIds) === null || _a === void 0 ? void 0 : _a.has(id));
|
|
126
|
+
}
|
|
127
|
+
function getNextSibling(node) {
|
|
128
|
+
let nextSibling = node.nextSibling;
|
|
129
|
+
while (nextSibling) {
|
|
130
|
+
const id = transaction.scope.nodeIds.get(nextSibling);
|
|
131
|
+
if (id !== undefined) {
|
|
132
|
+
return id;
|
|
133
|
+
}
|
|
134
|
+
nextSibling = nextSibling.nextSibling;
|
|
135
|
+
}
|
|
136
|
+
return null;
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
function processCharacterDataMutations(mutations, nodePrivacyLevelCache, transaction) {
|
|
140
|
+
var _a;
|
|
141
|
+
const textMutations = [];
|
|
142
|
+
// Deduplicate mutations based on their target node
|
|
143
|
+
const handledNodes = new Set();
|
|
144
|
+
const filteredMutations = mutations.filter((mutation) => {
|
|
145
|
+
if (handledNodes.has(mutation.target)) {
|
|
146
|
+
return false;
|
|
147
|
+
}
|
|
148
|
+
handledNodes.add(mutation.target);
|
|
149
|
+
return true;
|
|
150
|
+
});
|
|
151
|
+
// Emit mutations
|
|
152
|
+
for (const mutation of filteredMutations) {
|
|
153
|
+
const value = mutation.target.textContent;
|
|
154
|
+
if (value === mutation.oldValue) {
|
|
155
|
+
continue;
|
|
156
|
+
}
|
|
157
|
+
const id = transaction.scope.nodeIds.get(mutation.target);
|
|
158
|
+
if (id === undefined) {
|
|
159
|
+
continue;
|
|
160
|
+
}
|
|
161
|
+
const parentNodePrivacyLevel = (0, browser_rum_core_1.getNodePrivacyLevel)((0, browser_rum_core_1.getParentNode)(mutation.target), transaction.scope.configuration.defaultPrivacyLevel, nodePrivacyLevelCache);
|
|
162
|
+
if (parentNodePrivacyLevel === browser_rum_core_1.NodePrivacyLevel.HIDDEN || parentNodePrivacyLevel === browser_rum_core_1.NodePrivacyLevel.IGNORE) {
|
|
163
|
+
continue;
|
|
164
|
+
}
|
|
165
|
+
textMutations.push({
|
|
166
|
+
id,
|
|
167
|
+
value: (_a = (0, browser_rum_core_1.getTextContent)(mutation.target, parentNodePrivacyLevel)) !== null && _a !== void 0 ? _a : null,
|
|
168
|
+
});
|
|
169
|
+
}
|
|
170
|
+
return textMutations;
|
|
171
|
+
}
|
|
172
|
+
function processAttributesMutations(mutations, nodePrivacyLevelCache, transaction) {
|
|
173
|
+
const attributeMutations = [];
|
|
174
|
+
// Deduplicate mutations based on their target node and changed attribute
|
|
175
|
+
const handledElements = new Map();
|
|
176
|
+
const filteredMutations = mutations.filter((mutation) => {
|
|
177
|
+
const handledAttributes = handledElements.get(mutation.target);
|
|
178
|
+
if (handledAttributes && handledAttributes.has(mutation.attributeName)) {
|
|
179
|
+
return false;
|
|
180
|
+
}
|
|
181
|
+
if (!handledAttributes) {
|
|
182
|
+
handledElements.set(mutation.target, new Set([mutation.attributeName]));
|
|
183
|
+
}
|
|
184
|
+
else {
|
|
185
|
+
handledAttributes.add(mutation.attributeName);
|
|
186
|
+
}
|
|
187
|
+
return true;
|
|
188
|
+
});
|
|
189
|
+
// Emit mutations
|
|
190
|
+
const emittedMutations = new Map();
|
|
191
|
+
for (const mutation of filteredMutations) {
|
|
192
|
+
const uncensoredValue = mutation.target.getAttribute(mutation.attributeName);
|
|
193
|
+
if (uncensoredValue === mutation.oldValue) {
|
|
194
|
+
continue;
|
|
195
|
+
}
|
|
196
|
+
const id = transaction.scope.nodeIds.get(mutation.target);
|
|
197
|
+
if (id === undefined) {
|
|
198
|
+
continue;
|
|
199
|
+
}
|
|
200
|
+
const privacyLevel = (0, browser_rum_core_1.getNodePrivacyLevel)(mutation.target, transaction.scope.configuration.defaultPrivacyLevel, nodePrivacyLevelCache);
|
|
201
|
+
const attributeValue = (0, serializeAttribute_1.serializeAttribute)(mutation.target, privacyLevel, mutation.attributeName, transaction.scope.configuration);
|
|
202
|
+
let transformedValue;
|
|
203
|
+
if (mutation.attributeName === 'value') {
|
|
204
|
+
const inputValue = (0, serializationUtils_1.getElementInputValue)(mutation.target, privacyLevel);
|
|
205
|
+
if (inputValue === undefined) {
|
|
206
|
+
continue;
|
|
207
|
+
}
|
|
208
|
+
transformedValue = inputValue;
|
|
209
|
+
}
|
|
210
|
+
else if (typeof attributeValue === 'string') {
|
|
211
|
+
transformedValue = attributeValue;
|
|
212
|
+
}
|
|
213
|
+
else {
|
|
214
|
+
transformedValue = null;
|
|
215
|
+
}
|
|
216
|
+
let emittedMutation = emittedMutations.get(mutation.target);
|
|
217
|
+
if (!emittedMutation) {
|
|
218
|
+
emittedMutation = { id, attributes: {} };
|
|
219
|
+
attributeMutations.push(emittedMutation);
|
|
220
|
+
emittedMutations.set(mutation.target, emittedMutation);
|
|
221
|
+
}
|
|
222
|
+
emittedMutation.attributes[mutation.attributeName] = transformedValue;
|
|
223
|
+
}
|
|
224
|
+
return attributeMutations;
|
|
225
|
+
}
|
|
226
|
+
function sortAddedAndMovedNodes(nodes) {
|
|
227
|
+
nodes.sort((a, b) => {
|
|
228
|
+
const position = a.compareDocumentPosition(b);
|
|
229
|
+
/* eslint-disable no-bitwise */
|
|
230
|
+
if (position & Node.DOCUMENT_POSITION_CONTAINED_BY) {
|
|
231
|
+
return -1;
|
|
232
|
+
}
|
|
233
|
+
else if (position & Node.DOCUMENT_POSITION_CONTAINS) {
|
|
234
|
+
return 1;
|
|
235
|
+
}
|
|
236
|
+
else if (position & Node.DOCUMENT_POSITION_FOLLOWING) {
|
|
237
|
+
return 1;
|
|
238
|
+
}
|
|
239
|
+
else if (position & Node.DOCUMENT_POSITION_PRECEDING) {
|
|
240
|
+
return -1;
|
|
241
|
+
}
|
|
242
|
+
/* eslint-enable no-bitwise */
|
|
243
|
+
return 0;
|
|
244
|
+
});
|
|
245
|
+
}
|
|
246
|
+
function traverseRemovedShadowDom(removedNode, shadowDomRemovedCallback) {
|
|
247
|
+
if ((0, browser_rum_core_1.isNodeShadowHost)(removedNode)) {
|
|
248
|
+
shadowDomRemovedCallback(removedNode.shadowRoot);
|
|
249
|
+
}
|
|
250
|
+
(0, browser_rum_core_1.forEachChildNodes)(removedNode, (childNode) => traverseRemovedShadowDom(childNode, shadowDomRemovedCallback));
|
|
251
|
+
}
|
|
252
|
+
function idsAreAssignedForNodeAndAncestors(node, nodeIds) {
|
|
253
|
+
let current = node;
|
|
254
|
+
while (current) {
|
|
255
|
+
if (nodeIds.get(current) === undefined && !(0, browser_rum_core_1.isNodeShadowRoot)(current)) {
|
|
256
|
+
return false;
|
|
257
|
+
}
|
|
258
|
+
current = (0, browser_rum_core_1.getParentNode)(current);
|
|
259
|
+
}
|
|
260
|
+
return true;
|
|
261
|
+
}
|
|
262
|
+
//# sourceMappingURL=serializeMutations.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"serializeMutations.js","sourceRoot":"","sources":["../../../../src/domain/record/serialization/serializeMutations.ts"],"names":[],"mappings":";;AAuCA,gDAcC;AAmTD,wDAgBC;AASD,8EASC;AAnYD,gEAQkC;AAElC,0CAAkD;AAUlD,0CAAyD;AAIzD,yEAAsF;AACtF,mDAA+C;AAC/C,6DAAyD;AACzD,6DAA2D;AAK3D,SAAgB,kBAAkB,CAChC,SAAoB,EACpB,SAA8B,EAC9B,UAA8B,EAC9B,SAA4B,EAC5B,KAAqB;IAErB,IAAA,iDAAsB,kDAEpB,UAAU,EACV,SAAS,EACT,KAAK,EACL,CAAC,WAAqC,EAAE,EAAE,CAAC,gBAAgB,CAAC,SAAS,EAAE,SAAS,EAAE,WAAW,CAAC,CAC/F,CAAA;AACH,CAAC;AAED,SAAS,gBAAgB,CACvB,SAAoB,EACpB,SAA8B,EAC9B,WAAqC;IAErC,MAAM,qBAAqB,GAA0B,IAAI,GAAG,EAAE,CAAA;IAE9D,SAAS;SACN,MAAM,CAAC,CAAC,QAAQ,EAA0C,EAAE,CAAC,QAAQ,CAAC,IAAI,KAAK,WAAW,CAAC;SAC3F,OAAO,CAAC,CAAC,QAAQ,EAAE,EAAE;QACpB,QAAQ,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC,WAAW,EAAE,EAAE;YAC5C,wBAAwB,CAAC,WAAW,EAAE,WAAW,CAAC,KAAK,CAAC,qBAAqB,CAAC,gBAAgB,CAAC,CAAA;QACjG,CAAC,CAAC,CAAA;IACJ,CAAC,CAAC,CAAA;IAEJ,kDAAkD;IAClD,iGAAiG;IACjG,gDAAgD;IAChD,gCAAgC;IAChC,MAAM,iBAAiB,GAAG,SAAS,CAAC,MAAM,CACxC,CAAC,QAAQ,EAAuD,EAAE,CAChE,QAAQ,CAAC,MAAM,CAAC,WAAW;QAC3B,iCAAiC,CAAC,QAAQ,CAAC,MAAM,EAAE,WAAW,CAAC,KAAK,CAAC,OAAO,CAAC;QAC7E,IAAA,sCAAmB,EACjB,QAAQ,CAAC,MAAM,EACf,WAAW,CAAC,KAAK,CAAC,aAAa,CAAC,mBAAmB,EACnD,qBAAqB,CACtB,KAAK,mCAAgB,CAAC,MAAM,CAChC,CAAA;IAED,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,iBAAiB,EAAE,GAAG,yBAAyB,CACpE,iBAAiB,CAAC,MAAM,CACtB,CAAC,QAAQ,EAAgE,EAAE,CAAC,QAAQ,CAAC,IAAI,KAAK,WAAW,CAC1G,EACD,qBAAqB,EACrB,WAAW,CACZ,CAAA;IAED,MAAM,KAAK,GAAG,6BAA6B,CACzC,iBAAiB,CAAC,MAAM,CACtB,CAAC,QAAQ,EAAoE,EAAE,CAC7E,QAAQ,CAAC,IAAI,KAAK,eAAe,IAAI,CAAC,iBAAiB,CAAC,QAAQ,CAAC,MAAM,CAAC,CAC3E,EACD,qBAAqB,EACrB,WAAW,CACZ,CAAA;IAED,MAAM,UAAU,GAAG,0BAA0B,CAC3C,iBAAiB,CAAC,MAAM,CACtB,CAAC,QAAQ,EAAiE,EAAE,CAC1E,QAAQ,CAAC,IAAI,KAAK,YAAY,IAAI,CAAC,iBAAiB,CAAC,QAAQ,CAAC,MAAM,CAAC,CACxE,EACD,qBAAqB,EACrB,WAAW,CACZ,CAAA;IAED,IAAI,CAAC,KAAK,CAAC,MAAM,IAAI,CAAC,UAAU,CAAC,MAAM,IAAI,CAAC,OAAO,CAAC,MAAM,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;QAC3E,OAAM;IACR,CAAC;IAED,MAAM,MAAM,GAAG,IAAA,sCAA2B,EACxC,yBAAiB,CAAC,QAAQ,EAC1B;QACE,IAAI;QACJ,OAAO;QACP,KAAK;QACL,UAAU;KACX,EACD,SAAS,CACV,CAAA;IACD,WAAW,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;IAEvB,WAAW,CAAC,KAAK,CAAC,mBAAmB,CAAC,MAAM,CAAC;QAC3C,IAAI,EAAE,aAAa;QACnB,MAAM,EAAE,SAAS;QACjB,SAAS;QACT,EAAE,EAAE,MAAM;KACX,CAAC,CAAA;AACJ,CAAC;AAED,SAAS,yBAAyB,CAChC,SAAkE,EAClE,qBAA4C,EAC5C,WAAqC;IAErC,+CAA+C;IAC/C,EAAE;IACF,wFAAwF;IACxF,6FAA6F;IAC7F,EAAE;IACF,kGAAkG;IAClG,uCAAuC;IACvC,EAAE;IACF,kGAAkG;IAClG,iGAAiG;IACjG,iCAAiC;IACjC,MAAM,kBAAkB,GAAG,IAAI,GAAG,EAAQ,CAAA;IAC1C,MAAM,YAAY,GAAG,IAAI,GAAG,EAAgC,CAAA;IAC5D,KAAK,MAAM,QAAQ,IAAI,SAAS,EAAE,CAAC;QACjC,QAAQ,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC,IAAI,EAAE,EAAE;YACnC,kBAAkB,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAC9B,CAAC,CAAC,CAAA;QACF,QAAQ,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC,IAAI,EAAE,EAAE;YACrC,IAAI,CAAC,kBAAkB,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC;gBAClC,YAAY,CAAC,GAAG,CAAC,IAAI,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAA;YACzC,CAAC;YACD,kBAAkB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAA;QACjC,CAAC,CAAC,CAAA;IACJ,CAAC;IAED,4FAA4F;IAC5F,EAAE;IACF,iGAAiG;IACjG,kGAAkG;IAClG,oBAAoB;IACpB,EAAE;IACF,iGAAiG;IACjG,6FAA6F;IAC7F,4FAA4F;IAC5F,qCAAqC;IACrC,MAAM,wBAAwB,GAAG,KAAK,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAA;IAC/D,sBAAsB,CAAC,wBAAwB,CAAC,CAAA;IAEhD,gGAAgG;IAChG,qEAAqE;IACrE,WAAW,CAAC,iBAAiB,GAAG,IAAI,GAAG,EAAU,CAAA;IAEjD,MAAM,kBAAkB,GAAwB,EAAE,CAAA;IAClD,KAAK,MAAM,IAAI,IAAI,wBAAwB,EAAE,CAAC;QAC5C,IAAI,iBAAiB,CAAC,IAAI,CAAC,EAAE,CAAC;YAC5B,SAAQ;QACV,CAAC;QAED,MAAM,sBAAsB,GAAG,IAAA,sCAAmB,EAChD,IAAI,CAAC,UAAW,EAChB,WAAW,CAAC,KAAK,CAAC,aAAa,CAAC,mBAAmB,EACnD,qBAAqB,CACtB,CAAA;QACD,IAAI,sBAAsB,KAAK,mCAAgB,CAAC,MAAM,IAAI,sBAAsB,KAAK,mCAAgB,CAAC,MAAM,EAAE,CAAC;YAC7G,SAAQ;QACV,CAAC;QAED,MAAM,cAAc,GAAG,IAAA,6BAAa,EAAC,IAAI,EAAE,sBAAsB,EAAE,WAAW,CAAC,CAAA;QAC/E,IAAI,CAAC,cAAc,EAAE,CAAC;YACpB,SAAQ;QACV,CAAC;QAED,MAAM,UAAU,GAAG,IAAA,gCAAa,EAAC,IAAI,CAAE,CAAA;QACvC,kBAAkB,CAAC,IAAI,CAAC;YACtB,MAAM,EAAE,cAAc,CAAC,IAAI,CAAC;YAC5B,QAAQ,EAAE,WAAW,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,UAAU,CAAE;YACpD,IAAI,EAAE,cAAc;SACrB,CAAC,CAAA;IACJ,CAAC;IACD,qCAAqC;IACrC,MAAM,oBAAoB,GAA0B,EAAE,CAAA;IACtD,YAAY,CAAC,OAAO,CAAC,CAAC,MAAM,EAAE,IAAI,EAAE,EAAE;QACpC,MAAM,QAAQ,GAAG,WAAW,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;QACtD,MAAM,EAAE,GAAG,WAAW,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAC9C,IAAI,QAAQ,KAAK,SAAS,IAAI,EAAE,KAAK,SAAS,EAAE,CAAC;YAC/C,oBAAoB,CAAC,IAAI,CAAC,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC,CAAA;QAC7C,CAAC;IACH,CAAC,CAAC,CAAA;IAEF,OAAO,EAAE,IAAI,EAAE,kBAAkB,EAAE,OAAO,EAAE,oBAAoB,EAAE,iBAAiB,EAAE,CAAA;IAErF,SAAS,iBAAiB,CAAC,IAAU;;QACnC,MAAM,EAAE,GAAG,WAAW,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAC9C,OAAO,EAAE,KAAK,SAAS,KAAI,MAAA,WAAW,CAAC,iBAAiB,0CAAE,GAAG,CAAC,EAAE,CAAC,CAAA,CAAA;IACnE,CAAC;IAED,SAAS,cAAc,CAAC,IAAU;QAChC,IAAI,WAAW,GAAG,IAAI,CAAC,WAAW,CAAA;QAClC,OAAO,WAAW,EAAE,CAAC;YACnB,MAAM,EAAE,GAAG,WAAW,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,CAAC,CAAA;YACrD,IAAI,EAAE,KAAK,SAAS,EAAE,CAAC;gBACrB,OAAO,EAAE,CAAA;YACX,CAAC;YACD,WAAW,GAAG,WAAW,CAAC,WAAW,CAAA;QACvC,CAAC;QAED,OAAO,IAAI,CAAA;IACb,CAAC;AACH,CAAC;AAED,SAAS,6BAA6B,CACpC,SAAsE,EACtE,qBAA4C,EAC5C,WAAqC;;IAErC,MAAM,aAAa,GAAmB,EAAE,CAAA;IAExC,mDAAmD;IACnD,MAAM,YAAY,GAAG,IAAI,GAAG,EAAQ,CAAA;IACpC,MAAM,iBAAiB,GAAG,SAAS,CAAC,MAAM,CAAC,CAAC,QAAQ,EAAE,EAAE;QACtD,IAAI,YAAY,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,CAAC;YACtC,OAAO,KAAK,CAAA;QACd,CAAC;QACD,YAAY,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAA;QACjC,OAAO,IAAI,CAAA;IACb,CAAC,CAAC,CAAA;IAEF,iBAAiB;IACjB,KAAK,MAAM,QAAQ,IAAI,iBAAiB,EAAE,CAAC;QACzC,MAAM,KAAK,GAAG,QAAQ,CAAC,MAAM,CAAC,WAAW,CAAA;QACzC,IAAI,KAAK,KAAK,QAAQ,CAAC,QAAQ,EAAE,CAAC;YAChC,SAAQ;QACV,CAAC;QAED,MAAM,EAAE,GAAG,WAAW,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAA;QACzD,IAAI,EAAE,KAAK,SAAS,EAAE,CAAC;YACrB,SAAQ;QACV,CAAC;QAED,MAAM,sBAAsB,GAAG,IAAA,sCAAmB,EAChD,IAAA,gCAAa,EAAC,QAAQ,CAAC,MAAM,CAAE,EAC/B,WAAW,CAAC,KAAK,CAAC,aAAa,CAAC,mBAAmB,EACnD,qBAAqB,CACtB,CAAA;QACD,IAAI,sBAAsB,KAAK,mCAAgB,CAAC,MAAM,IAAI,sBAAsB,KAAK,mCAAgB,CAAC,MAAM,EAAE,CAAC;YAC7G,SAAQ;QACV,CAAC;QAED,aAAa,CAAC,IAAI,CAAC;YACjB,EAAE;YACF,KAAK,EAAE,MAAA,IAAA,iCAAc,EAAC,QAAQ,CAAC,MAAM,EAAE,sBAAsB,CAAC,mCAAI,IAAI;SACvE,CAAC,CAAA;IACJ,CAAC;IAED,OAAO,aAAa,CAAA;AACtB,CAAC;AAED,SAAS,0BAA0B,CACjC,SAAmE,EACnE,qBAA4C,EAC5C,WAAqC;IAErC,MAAM,kBAAkB,GAAwB,EAAE,CAAA;IAElD,yEAAyE;IACzE,MAAM,eAAe,GAAG,IAAI,GAAG,EAAwB,CAAA;IACvD,MAAM,iBAAiB,GAAG,SAAS,CAAC,MAAM,CAAC,CAAC,QAAQ,EAAE,EAAE;QACtD,MAAM,iBAAiB,GAAG,eAAe,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAA;QAC9D,IAAI,iBAAiB,IAAI,iBAAiB,CAAC,GAAG,CAAC,QAAQ,CAAC,aAAc,CAAC,EAAE,CAAC;YACxE,OAAO,KAAK,CAAA;QACd,CAAC;QACD,IAAI,CAAC,iBAAiB,EAAE,CAAC;YACvB,eAAe,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,EAAE,IAAI,GAAG,CAAC,CAAC,QAAQ,CAAC,aAAc,CAAC,CAAC,CAAC,CAAA;QAC1E,CAAC;aAAM,CAAC;YACN,iBAAiB,CAAC,GAAG,CAAC,QAAQ,CAAC,aAAc,CAAC,CAAA;QAChD,CAAC;QACD,OAAO,IAAI,CAAA;IACb,CAAC,CAAC,CAAA;IAEF,iBAAiB;IACjB,MAAM,gBAAgB,GAAG,IAAI,GAAG,EAA8B,CAAA;IAC9D,KAAK,MAAM,QAAQ,IAAI,iBAAiB,EAAE,CAAC;QACzC,MAAM,eAAe,GAAG,QAAQ,CAAC,MAAM,CAAC,YAAY,CAAC,QAAQ,CAAC,aAAc,CAAC,CAAA;QAC7E,IAAI,eAAe,KAAK,QAAQ,CAAC,QAAQ,EAAE,CAAC;YAC1C,SAAQ;QACV,CAAC;QAED,MAAM,EAAE,GAAG,WAAW,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAA;QACzD,IAAI,EAAE,KAAK,SAAS,EAAE,CAAC;YACrB,SAAQ;QACV,CAAC;QAED,MAAM,YAAY,GAAG,IAAA,sCAAmB,EACtC,QAAQ,CAAC,MAAM,EACf,WAAW,CAAC,KAAK,CAAC,aAAa,CAAC,mBAAmB,EACnD,qBAAqB,CACtB,CAAA;QACD,MAAM,cAAc,GAAG,IAAA,uCAAkB,EACvC,QAAQ,CAAC,MAAM,EACf,YAAY,EACZ,QAAQ,CAAC,aAAc,EACvB,WAAW,CAAC,KAAK,CAAC,aAAa,CAChC,CAAA;QAED,IAAI,gBAA+B,CAAA;QACnC,IAAI,QAAQ,CAAC,aAAa,KAAK,OAAO,EAAE,CAAC;YACvC,MAAM,UAAU,GAAG,IAAA,yCAAoB,EAAC,QAAQ,CAAC,MAAM,EAAE,YAAY,CAAC,CAAA;YACtE,IAAI,UAAU,KAAK,SAAS,EAAE,CAAC;gBAC7B,SAAQ;YACV,CAAC;YACD,gBAAgB,GAAG,UAAU,CAAA;QAC/B,CAAC;aAAM,IAAI,OAAO,cAAc,KAAK,QAAQ,EAAE,CAAC;YAC9C,gBAAgB,GAAG,cAAc,CAAA;QACnC,CAAC;aAAM,CAAC;YACN,gBAAgB,GAAG,IAAI,CAAA;QACzB,CAAC;QAED,IAAI,eAAe,GAAG,gBAAgB,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAA;QAC3D,IAAI,CAAC,eAAe,EAAE,CAAC;YACrB,eAAe,GAAG,EAAE,EAAE,EAAE,UAAU,EAAE,EAAE,EAAE,CAAA;YACxC,kBAAkB,CAAC,IAAI,CAAC,eAAe,CAAC,CAAA;YACxC,gBAAgB,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,EAAE,eAAe,CAAC,CAAA;QACxD,CAAC;QAED,eAAe,CAAC,UAAU,CAAC,QAAQ,CAAC,aAAc,CAAC,GAAG,gBAAgB,CAAA;IACxE,CAAC;IAED,OAAO,kBAAkB,CAAA;AAC3B,CAAC;AAED,SAAgB,sBAAsB,CAAC,KAAa;IAClD,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE;QAClB,MAAM,QAAQ,GAAG,CAAC,CAAC,uBAAuB,CAAC,CAAC,CAAC,CAAA;QAC7C,+BAA+B;QAC/B,IAAI,QAAQ,GAAG,IAAI,CAAC,8BAA8B,EAAE,CAAC;YACnD,OAAO,CAAC,CAAC,CAAA;QACX,CAAC;aAAM,IAAI,QAAQ,GAAG,IAAI,CAAC,0BAA0B,EAAE,CAAC;YACtD,OAAO,CAAC,CAAA;QACV,CAAC;aAAM,IAAI,QAAQ,GAAG,IAAI,CAAC,2BAA2B,EAAE,CAAC;YACvD,OAAO,CAAC,CAAA;QACV,CAAC;aAAM,IAAI,QAAQ,GAAG,IAAI,CAAC,2BAA2B,EAAE,CAAC;YACvD,OAAO,CAAC,CAAC,CAAA;QACX,CAAC;QACD,8BAA8B;QAC9B,OAAO,CAAC,CAAA;IACV,CAAC,CAAC,CAAA;AACJ,CAAC;AAED,SAAS,wBAAwB,CAAC,WAAiB,EAAE,wBAAkD;IACrG,IAAI,IAAA,mCAAgB,EAAC,WAAW,CAAC,EAAE,CAAC;QAClC,wBAAwB,CAAC,WAAW,CAAC,UAAU,CAAC,CAAA;IAClD,CAAC;IACD,IAAA,oCAAiB,EAAC,WAAW,EAAE,CAAC,SAAS,EAAE,EAAE,CAAC,wBAAwB,CAAC,SAAS,EAAE,wBAAwB,CAAC,CAAC,CAAA;AAC9G,CAAC;AAED,SAAgB,iCAAiC,CAAC,IAAU,EAAE,OAAgB;IAC5E,IAAI,OAAO,GAAgB,IAAI,CAAA;IAC/B,OAAO,OAAO,EAAE,CAAC;QACf,IAAI,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,KAAK,SAAS,IAAI,CAAC,IAAA,mCAAgB,EAAC,OAAO,CAAC,EAAE,CAAC;YACrE,OAAO,KAAK,CAAA;QACd,CAAC;QACD,OAAO,GAAG,IAAA,gCAAa,EAAC,OAAO,CAAC,CAAA;IAClC,CAAC;IACD,OAAO,IAAI,CAAA;AACb,CAAC"}
|
|
@@ -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;
|