Skip to content

Commit 8b002c3

Browse files
feat: Automated regeneration of Slides client (#13277)
Auto-created at 2025-04-02 13:15:05 +0000 using the toys pull request generator.
1 parent f85d90b commit 8b002c3

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

clients/slides/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ Install this package from [Hex](https://hex.pm) by adding
1111

1212
```elixir
1313
def deps do
14-
[{:google_api_slides, "~> 0.23"}]
14+
[{:google_api_slides, "~> 0.24"}]
1515
end
1616
```
1717

1818
## For more information
1919

20-
Product documentation is available at [https://developers.google.com/slides/](https://developers.google.com/slides/).
20+
Product documentation is available at [https://developers.google.com/workspace/slides/](https://developers.google.com/workspace/slides/).
2121

2222
Library reference documentation is published on Hexdocs at
2323
[https://hexdocs.pm/google_api_slides](https://hexdocs.pm/google_api_slides).

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

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

23-
@discovery_revision "20250218"
23+
@discovery_revision "20250325"
2424

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

clients/slides/lib/google_api/slides/v1/model/shape.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
defmodule GoogleApi.Slides.V1.Model.Shape do
1919
@moduledoc """
20-
A PageElement kind representing a generic shape that doesn't have a more specific classification. For more information, see [Size and position page elements](https://developers.google.com/slides/api/guides/transform).
20+
A PageElement kind representing a generic shape that doesn't have a more specific classification. For more information, see [Size and position page elements](https://developers.google.com/workspace/slides/api/guides/transform).
2121
2222
## Attributes
2323

clients/slides/lib/google_api/slides/v1/model/substring_match_criteria.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,20 @@ defmodule GoogleApi.Slides.V1.Model.SubstringMatchCriteria do
2222
## Attributes
2323
2424
* `matchCase` (*type:* `boolean()`, *default:* `nil`) - Indicates whether the search should respect case: - `True`: the search is case sensitive. - `False`: the search is case insensitive.
25+
* `searchByRegex` (*type:* `boolean()`, *default:* `nil`) - Optional. True if the find value should be treated as a regular expression. Any backslashes in the pattern should be escaped. - `True`: the search text is treated as a regular expressions. - `False`: the search text is treated as a substring for matching.
2526
* `text` (*type:* `String.t`, *default:* `nil`) - The text to search for in the shape or table.
2627
"""
2728

2829
use GoogleApi.Gax.ModelBase
2930

3031
@type t :: %__MODULE__{
3132
:matchCase => boolean() | nil,
33+
:searchByRegex => boolean() | nil,
3234
:text => String.t() | nil
3335
}
3436

3537
field(:matchCase)
38+
field(:searchByRegex)
3639
field(:text)
3740
end
3841

clients/slides/mix.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
defmodule GoogleApi.Slides.Mixfile do
1919
use Mix.Project
2020

21-
@version "0.23.1"
21+
@version "0.24.0"
2222

2323
def project() do
2424
[
@@ -59,7 +59,7 @@ defmodule GoogleApi.Slides.Mixfile do
5959
licenses: ["Apache-2.0"],
6060
links: %{
6161
"GitHub" => "https://github.com/googleapis/elixir-google-api/tree/master/clients/slides",
62-
"Homepage" => "https://developers.google.com/slides/"
62+
"Homepage" => "https://developers.google.com/workspace/slides/"
6363
}
6464
]
6565
end

0 commit comments

Comments
 (0)