mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2026-02-23 15:49:49 +01:00
update dependencies
This commit is contained in:
@@ -116,7 +116,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"revision": "20220302",
|
||||
"revision": "20230117",
|
||||
"rootUrl": "https://chromeuxreport.googleapis.com/",
|
||||
"schemas": {
|
||||
"Bin": {
|
||||
@@ -139,6 +139,43 @@
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"CollectionPeriod": {
|
||||
"description": "The collection period is a date range which includes the `first` and `last` day.",
|
||||
"id": "CollectionPeriod",
|
||||
"properties": {
|
||||
"firstDate": {
|
||||
"$ref": "Date",
|
||||
"description": "The first day in the collection period, inclusive."
|
||||
},
|
||||
"lastDate": {
|
||||
"$ref": "Date",
|
||||
"description": "The last day in the collection period, inclusive."
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"Date": {
|
||||
"description": "Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values. * A month and day, with a zero year (for example, an anniversary). * A year on its own, with a zero month and a zero day. * A year and month, with a zero day (for example, a credit card expiration date). Related types: * google.type.TimeOfDay * google.type.DateTime * google.protobuf.Timestamp",
|
||||
"id": "Date",
|
||||
"properties": {
|
||||
"day": {
|
||||
"description": "Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.",
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
"month": {
|
||||
"description": "Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.",
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
"year": {
|
||||
"description": "Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.",
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"Key": {
|
||||
"description": "Key defines all the dimensions that identify this record as unique.",
|
||||
"id": "Key",
|
||||
@@ -187,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"
|
||||
@@ -228,7 +265,7 @@
|
||||
"type": "string"
|
||||
},
|
||||
"metrics": {
|
||||
"description": "The metrics that should be included in the response. If none are specified then any metrics found will be returned. Allowed values: [\"first_contentful_paint\", \"first_input_delay\", \"largest_contentful_paint\", \"cumulative_layout_shift\", \"experimental_uncapped_cumulative_layout_shift\"]",
|
||||
"description": "The metrics that should be included in the response. If none are specified then any metrics found will be returned. Allowed values: [\"first_contentful_paint\", \"first_input_delay\", \"largest_contentful_paint\", \"cumulative_layout_shift\", \"experimental_time_to_first_byte\", \"experimental_interaction_to_next_paint\"]",
|
||||
"items": {
|
||||
"type": "string"
|
||||
},
|
||||
@@ -264,6 +301,10 @@
|
||||
"description": "Record is a single Chrome UX report data record. It contains use experience statistics for a single url pattern and set of dimensions.",
|
||||
"id": "Record",
|
||||
"properties": {
|
||||
"collectionPeriod": {
|
||||
"$ref": "CollectionPeriod",
|
||||
"description": "The collection period indicates when the data reflected in this record was collected."
|
||||
},
|
||||
"key": {
|
||||
"$ref": "Key",
|
||||
"description": "Key defines all of the unique querying parameters needed to look up a user experience record."
|
||||
@@ -272,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"
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user