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 #11339

Closed
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/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 "20240318"
@discovery_revision "20240416"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ defmodule GoogleApi.Sheets.V4.Model.SpreadsheetProperties do

* `autoRecalc` (*type:* `String.t`, *default:* `nil`) - The amount of time to wait before volatile functions are recalculated.
* `defaultFormat` (*type:* `GoogleApi.Sheets.V4.Model.CellFormat.t`, *default:* `nil`) - The default format of all cells in the spreadsheet. CellData.effectiveFormat will not be set if the cell's format is equal to this default format. This field is read-only.
* `importFunctionsExternalUrlAccessAllowed` (*type:* `boolean()`, *default:* `nil`) - Whether to allow external url access for image and import functions. Read only when true. When false, you can set to true.
* `importFunctionsExternalUrlAccessAllowed` (*type:* `boolean()`, *default:* `nil`) - Whether to allow external URL access for image and import functions. Read only when true. When false, you can set to true.
* `iterativeCalculationSettings` (*type:* `GoogleApi.Sheets.V4.Model.IterativeCalculationSettings.t`, *default:* `nil`) - Determines whether and how circular references are resolved with iterative calculation. Absence of this field means that circular references result in calculation errors.
* `locale` (*type:* `String.t`, *default:* `nil`) - The locale of the spreadsheet in one of the following formats: * an ISO 639-1 language code such as `en` * an ISO 639-2 language code such as `fil`, if no 639-1 code exists * a combination of the ISO language code and country code, such as `en_US` Note: when updating this field, not all locales/languages are supported.
* `spreadsheetTheme` (*type:* `GoogleApi.Sheets.V4.Model.SpreadsheetTheme.t`, *default:* `nil`) - Theme applied to the spreadsheet.
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.31.0"
@version "0.31.1"

def project() do
[
Expand Down
Loading