Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Automated regeneration of Sheets client #12671

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion clients/sheets/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Install this package from [Hex](https://hex.pm) by adding

```elixir
def deps do
[{:google_api_sheets, "~> 0.33"}]
[{:google_api_sheets, "~> 0.34"}]
end
```

Expand Down
2 changes: 1 addition & 1 deletion clients/sheets/lib/google_api/sheets/v4/metadata.ex
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.Sheets.V4 do
API client metadata for GoogleApi.Sheets.V4.
"""

@discovery_revision "20241008"
@discovery_revision "20241203"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,20 @@ defmodule GoogleApi.Sheets.V4.Model.SetDataValidationRequest do

## Attributes

* `filteredRowsIncluded` (*type:* `boolean()`, *default:* `nil`) - Optional. If true, the data validation rule will be applied to the filtered rows as well.
* `range` (*type:* `GoogleApi.Sheets.V4.Model.GridRange.t`, *default:* `nil`) - The range the data validation rule should apply to.
* `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.
"""

use GoogleApi.Gax.ModelBase

@type t :: %__MODULE__{
:filteredRowsIncluded => boolean() | nil,
:range => GoogleApi.Sheets.V4.Model.GridRange.t() | nil,
:rule => GoogleApi.Sheets.V4.Model.DataValidationRule.t() | nil
}

field(:filteredRowsIncluded)
field(:range, as: GoogleApi.Sheets.V4.Model.GridRange)
field(:rule, as: GoogleApi.Sheets.V4.Model.DataValidationRule)
end
Expand Down
2 changes: 1 addition & 1 deletion clients/sheets/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.Sheets.Mixfile do
use Mix.Project

@version "0.33.5"
@version "0.34.0"

def project() do
[
Expand Down
Loading