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 Tasks client #10795

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/tasks/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# GoogleApi.Tasks

Tasks API client library.
Google Tasks API client library.

The Google Tasks API lets you manage your tasks and task lists.

Expand Down
2 changes: 1 addition & 1 deletion clients/tasks/lib/google_api/tasks/v1/api/tasks.ex
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ defmodule GoogleApi.Tasks.V1.Api.Tasks do
* `:completedMin` (*type:* `String.t`) - Lower bound for a task's completion date (as a RFC 3339 timestamp) to filter by. Optional. The default is not to filter by completion date.
* `:dueMax` (*type:* `String.t`) - Upper bound for a task's due date (as a RFC 3339 timestamp) to filter by. Optional. The default is not to filter by due date.
* `:dueMin` (*type:* `String.t`) - Lower bound for a task's due date (as a RFC 3339 timestamp) to filter by. Optional. The default is not to filter by due date.
* `:maxResults` (*type:* `integer()`) - Maximum number of task lists returned on one page. Optional. The default is 20 (max allowed: 100).
* `:maxResults` (*type:* `integer()`) - Maximum number of tasks returned on one page. Optional. The default is 20 (max allowed: 100).
* `:pageToken` (*type:* `String.t`) - Token specifying the result page to return. Optional.
* `:showCompleted` (*type:* `boolean()`) - Flag indicating whether completed tasks are returned in the result. Optional. The default is True. Note that showHidden must also be True to show tasks completed in first party clients, such as the web UI and Google's mobile apps.
* `:showDeleted` (*type:* `boolean()`) - Flag indicating whether deleted tasks are returned in the result. Optional. The default is False.
Expand Down
2 changes: 1 addition & 1 deletion clients/tasks/lib/google_api/tasks/v1/metadata.ex
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.Tasks.V1 do
API client metadata for GoogleApi.Tasks.V1.
"""

@discovery_revision "20210709"
@discovery_revision "20240310"

def discovery_revision(), do: @discovery_revision
end
4 changes: 2 additions & 2 deletions clients/tasks/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.Tasks.Mixfile do
use Mix.Project

@version "0.13.0"
@version "0.13.1"

def project() do
[
Expand Down Expand Up @@ -48,7 +48,7 @@ defmodule GoogleApi.Tasks.Mixfile do

defp description() do
"""
Tasks API client library. The Google Tasks API lets you manage your tasks and task lists.
Google Tasks API client library. The Google Tasks API lets you manage your tasks and task lists.
"""
end

Expand Down
Loading