Skip to content

Commit a3c6902

Browse files
feat: Automated regeneration of Sheets client (googleapis#12671)
Auto-created at 2024-12-10 13:15:17 +0000 using the toys pull request generator.
1 parent ec510f2 commit a3c6902

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

clients/sheets/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_sheets, "~> 0.33"}]
14+
[{:google_api_sheets, "~> 0.34"}]
1515
end
1616
```
1717

clients/sheets/lib/google_api/sheets/v4/metadata.ex

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

23-
@discovery_revision "20241008"
23+
@discovery_revision "20241203"
2424

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

clients/sheets/lib/google_api/sheets/v4/model/set_data_validation_request.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,20 @@ defmodule GoogleApi.Sheets.V4.Model.SetDataValidationRequest do
2121
2222
## Attributes
2323
24+
* `filteredRowsIncluded` (*type:* `boolean()`, *default:* `nil`) - Optional. If true, the data validation rule will be applied to the filtered rows as well.
2425
* `range` (*type:* `GoogleApi.Sheets.V4.Model.GridRange.t`, *default:* `nil`) - The range the data validation rule should apply to.
2526
* `rule` (*type:* `GoogleApi.Sheets.V4.Model.DataValidationRule.t`, *default:* `nil`) - The data validation rule to set on each cell in the range, or empty to clear the data validation in the range.
2627
"""
2728

2829
use GoogleApi.Gax.ModelBase
2930

3031
@type t :: %__MODULE__{
32+
:filteredRowsIncluded => boolean() | nil,
3133
:range => GoogleApi.Sheets.V4.Model.GridRange.t() | nil,
3234
:rule => GoogleApi.Sheets.V4.Model.DataValidationRule.t() | nil
3335
}
3436

37+
field(:filteredRowsIncluded)
3538
field(:range, as: GoogleApi.Sheets.V4.Model.GridRange)
3639
field(:rule, as: GoogleApi.Sheets.V4.Model.DataValidationRule)
3740
end

clients/sheets/mix.exs

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

21-
@version "0.33.5"
21+
@version "0.34.0"
2222

2323
def project() do
2424
[

0 commit comments

Comments
 (0)