Skip to content

Commit bf31383

Browse files
feat(chromeuxreport): update the API
#### chromeuxreport:v1 The following keys were added: - schemas.QueryHistoryRequest.properties.collectionPeriodCount.description - schemas.QueryHistoryRequest.properties.collectionPeriodCount.format - schemas.QueryHistoryRequest.properties.collectionPeriodCount.type
1 parent 473143f commit bf31383

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

‎discovery/chromeuxreport-v1.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
}
132132
}
133133
},
134-
"revision": "20240916",
134+
"revision": "20250409",
135135
"rootUrl": "https://chromeuxreport.googleapis.com/",
136136
"schemas": {
137137
"Bin": {
@@ -362,6 +362,11 @@
362362
"description": "Request payload sent by a physical web client. This request includes all necessary context to load a particular user experience history record.",
363363
"id": "QueryHistoryRequest",
364364
"properties": {
365+
"collectionPeriodCount": {
366+
"description": "The number of collection periods to return. If not specified, the default is 25. If present, must be in the range [1, 40].",
367+
"format": "int32",
368+
"type": "integer"
369+
},
365370
"formFactor": {
366371
"description": "The form factor is a query dimension that specifies the device class that the record's data should belong to. Note: If no form factor is specified, then a special record with aggregated data over all form factors will be returned.",
367372
"enum": [

‎src/apis/chromeuxreport/v1.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,10 @@ export namespace chromeuxreport_v1 {
282282
* Request payload sent by a physical web client. This request includes all necessary context to load a particular user experience history record.
283283
*/
284284
export interface Schema$QueryHistoryRequest {
285+
/**
286+
* The number of collection periods to return. If not specified, the default is 25. If present, must be in the range [1, 40].
287+
*/
288+
collectionPeriodCount?: number | null;
285289
/**
286290
* The form factor is a query dimension that specifies the device class that the record's data should belong to. Note: If no form factor is specified, then a special record with aggregated data over all form factors will be returned.
287291
*/

0 commit comments

Comments
 (0)