File tree Expand file tree Collapse file tree 2 files changed +8
-25
lines changed Expand file tree Collapse file tree 2 files changed +8
-25
lines changed Original file line number Diff line number Diff line change 1
1
export { Replay } from './integration' ;
2
2
export type {
3
- // From ./types/replayFrame
4
3
BreadcrumbFrame ,
5
4
BreadcrumbFrameEvent ,
6
5
OptionFrameEvent ,
7
6
ReplayFrame ,
8
7
ReplayFrameEvent ,
9
8
SpanFrame ,
10
9
SpanFrameEvent ,
11
-
12
- // From ./types/performance
13
- AllEntryData ,
14
- AllPerformanceEntryData ,
15
- ExperimentalPerformanceResourceTiming ,
16
- HistoryData ,
17
- LargestContentfulPaintData ,
18
- MemoryData ,
19
- NavigationData ,
20
- NetworkRequestData ,
21
- PaintData ,
22
- PerformanceNavigationTiming ,
23
- PerformancePaintTiming ,
24
- ReplayNetworkRequestData ,
25
- ResourceData ,
26
-
27
- // From rrweb
28
10
EventType ,
29
11
} from './types' ;
12
+
Original file line number Diff line number Diff line change @@ -110,17 +110,17 @@ interface SlowClickFrame extends BaseBreadcrumbFrame {
110
110
}
111
111
112
112
interface OptionFrame {
113
- sessionSampleRate : number ;
114
- errorSampleRate : number ;
115
- useCompressionOption : boolean ;
116
113
blockAllMedia : boolean ;
117
- maskAllText : boolean ;
114
+ errorSampleRate : number ;
118
115
maskAllInputs : boolean ;
119
- useCompression : boolean ;
120
- networkDetailHasUrls : boolean ;
116
+ maskAllText : boolean ;
121
117
networkCaptureBodies : boolean ;
118
+ networkDetailHasUrls : boolean ;
122
119
networkRequestHasHeaders : boolean ;
123
120
networkResponseHasHeaders : boolean ;
121
+ sessionSampleRate : number ;
122
+ useCompression : boolean ;
123
+ useCompressionOption : boolean ;
124
124
}
125
125
126
126
export type BreadcrumbFrame =
@@ -141,7 +141,7 @@ interface BaseSpanFrame {
141
141
description : string ;
142
142
startTimestamp : number ;
143
143
endTimestamp : number ;
144
- data ?: Record < string , any > ;
144
+ data ?: undefined | Record < string , any > ;
145
145
}
146
146
147
147
interface HistoryFrame extends BaseSpanFrame {
You can’t perform that action at this time.
0 commit comments