diff --git a/proto/lighthouse-result.proto b/proto/lighthouse-result.proto index 7e8ba733246a..d347dc47bca7 100644 --- a/proto/lighthouse-result.proto +++ b/proto/lighthouse-result.proto @@ -206,6 +206,9 @@ message LighthouseResult { // List of the audits that were skipped, empty if all were run // nullable list of strings google.protobuf.Value skip_audits = 15; + + // Flag indicating whether this Lighthouse run was audit-only + google.protobuf.BoolValue audit_mode = 16; } // The settings that were used to run this audit @@ -213,6 +216,15 @@ message LighthouseResult { // i18n info in version 1 message format I18n i18n = 13; + + // Message containing the performance timing data for the Lighthouse run + message Timing { + // The total duration of Lighthouse's run + google.protobuf.DoubleValue total = 1; + } + + // The performance timing data for the Lighthouse run + Timing timing = 14; } // Message containing a category