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 declare type TelemetryBrowserFeaturesUsage = StartSessionReplayRecording
499499/**
500500 * Schema of mobile specific features usage
501501 */
502- export declare type TelemetryMobileFeaturesUsage = AddViewLoadingTime ;
502+ export declare type TelemetryMobileFeaturesUsage = AddViewLoadingTime | TrackWebView ;
503503/**
504504 * Schema of common properties of Telemetry events
505505 */
@@ -876,3 +876,10 @@ export interface AddViewLoadingTime {
876876 overwritten : boolean ;
877877 [ k : string ] : unknown ;
878878}
879+ export interface TrackWebView {
880+ /**
881+ * trackWebView API
882+ */
883+ feature : 'trackWebView' ;
884+ [ k : string ] : unknown ;
885+ }
Original file line number Diff line number Diff line change @@ -499,7 +499,7 @@ export declare type TelemetryBrowserFeaturesUsage = StartSessionReplayRecording
499499/**
500500 * Schema of mobile specific features usage
501501 */
502- export declare type TelemetryMobileFeaturesUsage = AddViewLoadingTime ;
502+ export declare type TelemetryMobileFeaturesUsage = AddViewLoadingTime | TrackWebView ;
503503/**
504504 * Schema of common properties of Telemetry events
505505 */
@@ -876,3 +876,10 @@ export interface AddViewLoadingTime {
876876 overwritten : boolean ;
877877 [ k : string ] : unknown ;
878878}
879+ export interface TrackWebView {
880+ /**
881+ * trackWebView API
882+ */
883+ feature : 'trackWebView' ;
884+ [ k : string ] : unknown ;
885+ }
Original file line number Diff line number Diff line change 2727 "description" : " Whether the loading time was overwritten"
2828 }
2929 }
30+ },
31+ {
32+ "required" : [" feature" ],
33+ "title" : " TrackWebView" ,
34+ "properties" : {
35+ "feature" : {
36+ "type" : " string" ,
37+ "description" : " trackWebView API" ,
38+ "const" : " trackWebView"
39+ }
40+ }
3041 }
3142 ]
3243}
You can’t perform that action at this time.
0 commit comments