Skip to content

Commit

Permalink
fix(chromeuxreport): update the API
Browse files Browse the repository at this point in the history
#### chromeuxreport:v1

The following keys were changed:
- schemas.Metric.properties.percentiles.description
- schemas.Record.properties.metrics.description
  • Loading branch information
yoshi-automation authored and sofisl committed Feb 2, 2023
1 parent 9c8277a commit 4b307dc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions discovery/chromeuxreport-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
}
}
},
"revision": "20220919",
"revision": "20230117",
"rootUrl": "https://chromeuxreport.googleapis.com/",
"schemas": {
"Bin": {
Expand Down Expand Up @@ -224,7 +224,7 @@
},
"percentiles": {
"$ref": "Percentiles",
"description": "Common useful percentiles of the Metric. The value type for the percentiles will be the same as the value types given for the Histogram bins."
"description": "Commonly useful percentiles of the Metric. The value type for the percentiles will be the same as the value types given for the Histogram bins."
}
},
"type": "object"
Expand Down Expand Up @@ -313,7 +313,7 @@
"additionalProperties": {
"$ref": "Metric"
},
"description": "Metrics is the map of user experience data available for the record defined in the key field. Metrics are keyed on the metric name. Allowed key values: [\"first_contentful_paint\", \"first_input_delay\", \"largest_contentful_paint\", \"cumulative_layout_shift\"]",
"description": "Metrics is the map of user experience data available for the record defined in the key field. Metrics are keyed on the metric name. Allowed key values: [\"first_contentful_paint\", \"first_input_delay\", \"largest_contentful_paint\", \"cumulative_layout_shift\", \"experimental_time_to_first_byte\", \"experimental_interaction_to_next_paint\"]",
"type": "object"
}
},
Expand Down
4 changes: 2 additions & 2 deletions src/apis/chromeuxreport/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export namespace chromeuxreport_v1 {
*/
histogram?: Schema$Bin[];
/**
* Common useful percentiles of the Metric. The value type for the percentiles will be the same as the value types given for the Histogram bins.
* Commonly useful percentiles of the Metric. The value type for the percentiles will be the same as the value types given for the Histogram bins.
*/
percentiles?: Schema$Percentiles;
}
Expand Down Expand Up @@ -265,7 +265,7 @@ export namespace chromeuxreport_v1 {
*/
key?: Schema$Key;
/**
* Metrics is the map of user experience data available for the record defined in the key field. Metrics are keyed on the metric name. Allowed key values: ["first_contentful_paint", "first_input_delay", "largest_contentful_paint", "cumulative_layout_shift"]
* Metrics is the map of user experience data available for the record defined in the key field. Metrics are keyed on the metric name. Allowed key values: ["first_contentful_paint", "first_input_delay", "largest_contentful_paint", "cumulative_layout_shift", "experimental_time_to_first_byte", "experimental_interaction_to_next_paint"]
*/
metrics?: {[key: string]: Schema$Metric} | null;
}
Expand Down

0 comments on commit 4b307dc

Please sign in to comment.