Skip to content

Commit 72150a9

Browse files
feat: Automated regeneration of BusinessProfilePerformance client (googleapis#12265)
Auto-created at 2024-10-03 13:19:15 +0000 using the toys pull request generator.
1 parent c58cded commit 72150a9

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

clients/business_profile_performance/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_business_profile_performance, "~> 0.3"}]
14+
[{:google_api_business_profile_performance, "~> 0.4"}]
1515
end
1616
```
1717

clients/business_profile_performance/lib/google_api/business_profile_performance/v1/api/locations.ex

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -143,10 +143,10 @@ defmodule GoogleApi.BusinessProfilePerformance.V1.Api.Locations do
143143
* `:"dailyRange.startDate.month"` (*type:* `integer()`) - Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
144144
* `:"dailyRange.startDate.year"` (*type:* `integer()`) - Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
145145
* `:"dailySubEntityType.dayOfWeek"` (*type:* `String.t`) - Represents the day of the week. Eg: MONDAY. Currently supported DailyMetrics = NONE.
146-
* `:"dailySubEntityType.timeOfDay.hours"` (*type:* `integer()`) - Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
147-
* `:"dailySubEntityType.timeOfDay.minutes"` (*type:* `integer()`) - Minutes of hour of day. Must be from 0 to 59.
148-
* `:"dailySubEntityType.timeOfDay.nanos"` (*type:* `integer()`) - Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
149-
* `:"dailySubEntityType.timeOfDay.seconds"` (*type:* `integer()`) - Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.
146+
* `:"dailySubEntityType.timeOfDay.hours"` (*type:* `integer()`) - Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
147+
* `:"dailySubEntityType.timeOfDay.minutes"` (*type:* `integer()`) - Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.
148+
* `:"dailySubEntityType.timeOfDay.nanos"` (*type:* `integer()`) - Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.
149+
* `:"dailySubEntityType.timeOfDay.seconds"` (*type:* `integer()`) - Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds.
150150
* `opts` (*type:* `keyword()`) - Call options
151151
152152
## Returns

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

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

23-
@discovery_revision "20240310"
23+
@discovery_revision "20241002"
2424

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

clients/business_profile_performance/lib/google_api/business_profile_performance/v1/model/time_of_day.ex

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ defmodule GoogleApi.BusinessProfilePerformance.V1.Model.TimeOfDay do
2121
2222
## Attributes
2323
24-
* `hours` (*type:* `integer()`, *default:* `nil`) - Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
25-
* `minutes` (*type:* `integer()`, *default:* `nil`) - Minutes of hour of day. Must be from 0 to 59.
26-
* `nanos` (*type:* `integer()`, *default:* `nil`) - Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
27-
* `seconds` (*type:* `integer()`, *default:* `nil`) - Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.
24+
* `hours` (*type:* `integer()`, *default:* `nil`) - Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
25+
* `minutes` (*type:* `integer()`, *default:* `nil`) - Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.
26+
* `nanos` (*type:* `integer()`, *default:* `nil`) - Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.
27+
* `seconds` (*type:* `integer()`, *default:* `nil`) - Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds.
2828
"""
2929

3030
use GoogleApi.Gax.ModelBase

clients/business_profile_performance/mix.exs

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

21-
@version "0.3.0"
21+
@version "0.4.0"
2222

2323
def project() do
2424
[
@@ -56,7 +56,7 @@ defmodule GoogleApi.BusinessProfilePerformance.Mixfile do
5656
[
5757
files: ["lib", "mix.exs", "README*", "LICENSE"],
5858
maintainers: ["Jeff Ching", "Daniel Azuma"],
59-
licenses: ["Apache 2.0"],
59+
licenses: ["Apache-2.0"],
6060
links: %{
6161
"GitHub" => "https://github.com/googleapis/elixir-google-api/tree/master/clients/business_profile_performance",
6262
"Homepage" => "https://developers.google.com/my-business/"

0 commit comments

Comments
 (0)