Skip to content

Commit c5b130a

Browse files
feat: Automated regeneration of ChromeUXReport client (#13304)
Auto-created at 2025-04-10 13:18:29 +0000 using the toys pull request generator.
1 parent 967a476 commit c5b130a

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

clients/chrome_ux_report/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Install this package from [Hex](https://hex.pm) by adding
1111

1212
```elixir
1313
def deps do
14-
[{:google_api_chrome_ux_report, "~> 0.5"}]
14+
[{:google_api_chrome_ux_report, "~> 0.6"}]
1515
end
1616
```
1717

clients/chrome_ux_report/lib/google_api/chrome_ux_report/v1/metadata.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ defmodule GoogleApi.ChromeUXReport.V1 do
2020
API client metadata for GoogleApi.ChromeUXReport.V1.
2121
"""
2222

23-
@discovery_revision "20240916"
23+
@discovery_revision "20250409"
2424

2525
def discovery_revision(), do: @discovery_revision
2626
end

clients/chrome_ux_report/lib/google_api/chrome_ux_report/v1/model/query_history_request.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ defmodule GoogleApi.ChromeUXReport.V1.Model.QueryHistoryRequest do
2121
2222
## Attributes
2323
24+
* `collectionPeriodCount` (*type:* `integer()`, *default:* `nil`) - The number of collection periods to return. If not specified, the default is 25. If present, must be in the range [1, 40].
2425
* `formFactor` (*type:* `String.t`, *default:* `nil`) - 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.
2526
* `metrics` (*type:* `list(String.t)`, *default:* `nil`) - 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"]
2627
* `origin` (*type:* `String.t`, *default:* `nil`) - The url pattern "origin" refers to a url pattern that is the origin of a website. Examples: "https://example.com", "https://cloud.google.com"
@@ -30,12 +31,14 @@ defmodule GoogleApi.ChromeUXReport.V1.Model.QueryHistoryRequest do
3031
use GoogleApi.Gax.ModelBase
3132

3233
@type t :: %__MODULE__{
34+
:collectionPeriodCount => integer() | nil,
3335
:formFactor => String.t() | nil,
3436
:metrics => list(String.t()) | nil,
3537
:origin => String.t() | nil,
3638
:url => String.t() | nil
3739
}
3840

41+
field(:collectionPeriodCount)
3942
field(:formFactor)
4043
field(:metrics, type: :list)
4144
field(:origin)

clients/chrome_ux_report/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
defmodule GoogleApi.ChromeUXReport.Mixfile do
1919
use Mix.Project
2020

21-
@version "0.5.0"
21+
@version "0.6.0"
2222

2323
def project() do
2424
[

0 commit comments

Comments
 (0)