File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -499,7 +499,7 @@ export type TelemetryBrowserFeaturesUsage = StartSessionReplayRecording | StartD
499499/**
500500 * Schema of mobile specific features usage
501501 */
502- export type TelemetryMobileFeaturesUsage = AddViewLoadingTime | TrackWebView ;
502+ export type TelemetryMobileFeaturesUsage = AddViewLoadingTime | TrackWebView | AndroidNetworkInstrumentation ;
503503/**
504504 * Schema of common properties of Telemetry events
505505 */
@@ -890,3 +890,14 @@ export interface TrackWebView {
890890 feature : 'trackWebView' ;
891891 [ k : string ] : unknown ;
892892}
893+ export interface AndroidNetworkInstrumentation {
894+ /**
895+ * Android network instrumentation
896+ */
897+ feature : 'androidNetworkInstrumentation' ;
898+ /**
899+ * The network instrumentation API used
900+ */
901+ type : 'CRONET' | 'OKHTTP' ;
902+ [ k : string ] : unknown ;
903+ }
Original file line number Diff line number Diff line change @@ -499,7 +499,7 @@ export type TelemetryBrowserFeaturesUsage = StartSessionReplayRecording | StartD
499499/**
500500 * Schema of mobile specific features usage
501501 */
502- export type TelemetryMobileFeaturesUsage = AddViewLoadingTime | TrackWebView ;
502+ export type TelemetryMobileFeaturesUsage = AddViewLoadingTime | TrackWebView | AndroidNetworkInstrumentation ;
503503/**
504504 * Schema of common properties of Telemetry events
505505 */
@@ -890,3 +890,14 @@ export interface TrackWebView {
890890 feature : 'trackWebView' ;
891891 [ k : string ] : unknown ;
892892}
893+ export interface AndroidNetworkInstrumentation {
894+ /**
895+ * Android network instrumentation
896+ */
897+ feature : 'androidNetworkInstrumentation' ;
898+ /**
899+ * The network instrumentation API used
900+ */
901+ type : 'CRONET' | 'OKHTTP' ;
902+ [ k : string ] : unknown ;
903+ }
Original file line number Diff line number Diff line change 3838 "const" : " trackWebView"
3939 }
4040 }
41+ },
42+ {
43+ "required" : [" feature" , " type" ],
44+ "title" : " AndroidNetworkInstrumentation" ,
45+ "properties" : {
46+ "feature" : {
47+ "type" : " string" ,
48+ "description" : " Android network instrumentation" ,
49+ "const" : " androidNetworkInstrumentation"
50+ },
51+ "type" : {
52+ "type" : " string" ,
53+ "description" : " The network instrumentation API used" ,
54+ "enum" : [" CRONET" , " OKHTTP" ]
55+ }
56+ }
4157 }
4258 ]
4359}
You can’t perform that action at this time.
0 commit comments