File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1359,6 +1359,10 @@ export interface CommonProperties {
13591359 * The percentage of sessions with traced resources
13601360 */
13611361 readonly trace_sample_rate ?: number ;
1362+ /**
1363+ * Session Replay experimental features enabled in the SDK configuration
1364+ */
1365+ readonly session_replay_experimental_features ?: string [ ] ;
13621366 [ k : string ] : unknown ;
13631367 } ;
13641368 /**
Original file line number Diff line number Diff line change @@ -1359,6 +1359,10 @@ export interface CommonProperties {
13591359 * The percentage of sessions with traced resources
13601360 */
13611361 readonly trace_sample_rate ?: number ;
1362+ /**
1363+ * Session Replay experimental features enabled in the SDK configuration
1364+ */
1365+ readonly session_replay_experimental_features ?: string [ ] ;
13621366 [ k : string ] : unknown ;
13631367 } ;
13641368 /**
Original file line number Diff line number Diff line change 110110 "configuration" : {
111111 "session_sample_rate" : 12.45 ,
112112 "session_replay_sample_rate" : 100 ,
113+ "session_replay_experimental_features" : [" layer_tree_recording" ],
113114 "start_session_replay_recording_manually" : true
114115 },
115116 "profiling" : {
Original file line number Diff line number Diff line change 469469 "minimum" : 0 ,
470470 "maximum" : 100 ,
471471 "readOnly" : true
472+ },
473+ "session_replay_experimental_features" : {
474+ "type" : " array" ,
475+ "description" : " Session Replay experimental features enabled in the SDK configuration" ,
476+ "items" : {
477+ "type" : " string"
478+ },
479+ "readOnly" : true
472480 }
473481 }
474482 },
You can’t perform that action at this time.
0 commit comments