Skip to content

Commit

Permalink
feat: Automated regeneration of Sheets client
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Dec 10, 2024
1 parent 99c1ef2 commit 54d0e5a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
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

0 comments on commit 54d0e5a

Please sign in to comment.