File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,6 @@ export interface ReplayMultiClickFrame extends ReplayBaseBreadcrumbFrame {
114
114
115
115
interface ReplayOptionFrame {
116
116
blockAllMedia : boolean ;
117
- canvas : boolean ;
118
117
errorSampleRate : number ;
119
118
maskAllInputs : boolean ;
120
119
maskAllText : boolean ;
@@ -123,6 +122,7 @@ interface ReplayOptionFrame {
123
122
networkRequestHasHeaders : boolean ;
124
123
networkResponseHasHeaders : boolean ;
125
124
sessionSampleRate : number ;
125
+ shouldRecordCanvas : boolean ;
126
126
useCompression : boolean ;
127
127
useCompressionOption : boolean ;
128
128
}
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ export function createOptionsEvent(replay: ReplayContainer): ReplayOptionFrameEv
122
122
data : {
123
123
tag : 'options' ,
124
124
payload : {
125
- canvas : replay . isRecordingCanvas ( ) ,
125
+ shouldRecordCanvas : replay . isRecordingCanvas ( ) ,
126
126
sessionSampleRate : options . sessionSampleRate ,
127
127
errorSampleRate : options . errorSampleRate ,
128
128
useCompressionOption : options . useCompression ,
You can’t perform that action at this time.
0 commit comments