update all code after version update

This commit is contained in:
Sebastian Thiel
2020-07-10 09:41:44 +08:00
parent c949124df5
commit d1ffa68287
1798 changed files with 692798 additions and 59942 deletions

View File

@@ -4,11 +4,10 @@
[package]
name = "google-tasks1-cli"
version = "1.0.13+20190628"
version = "1.0.14+20200704"
authors = ["Sebastian Thiel <byronimo@gmail.com>"]
description = "A complete library to interact with tasks (protocol v1)"
description = "A complete library to interact with Tasks (protocol v1)"
repository = "https://github.com/Byron/google-apis-rs/tree/master/gen/tasks1-cli"
homepage = "https://developers.google.com/google-apps/tasks/firstapp"
documentation = "http://byron.github.io/google-apis-rs/google_tasks1_cli"
license = "MIT"
keywords = ["tasks", "google", "cli"]
@@ -42,4 +41,4 @@ rustls = ["yup-oauth2/no-openssl"]
[dependencies.google-tasks1]
path = "../tasks1"
version = "1.0.13+20190628"
version = "1.0.14+20200704"

View File

@@ -3,16 +3,13 @@ DO NOT EDIT !
This file was generated automatically from 'src/mako/cli/README.md.mako'
DO NOT EDIT !
-->
The `tasks1` command-line interface *(CLI)* allows to use most features of the *Google tasks* service from the comfort of your terminal.
The `tasks1` command-line interface *(CLI)* allows to use most features of the *Google Tasks* service from the comfort of your terminal.
By default all output is printed to standard out, but flags can be set to direct it into a file independent of your shell's
capabilities. Errors will be printed to standard error, and cause the program's exit code to be non-zero.
If data-structures are requested, these will be returned as pretty-printed JSON, to be useful as input to other tools.
Everything else about the *tasks* API can be found at the
[official documentation site](https://developers.google.com/google-apps/tasks/firstapp).
# Installation and Source Code
Install the command-line interface with cargo using:
@@ -25,7 +22,7 @@ Find the source code [on github](https://github.com/Byron/google-apis-rs/tree/ma
# Usage
This documentation was generated from the *tasks* API at revision *20190628*. The CLI is at version *1.0.13*.
This documentation was generated from the *Tasks* API at revision *20200704*. The CLI is at version *1.0.14*.
```bash
tasks1 [options]

View File

@@ -1,6 +1,6 @@
site_name: tasks v1.0.13+20190628
site_name: Tasks v1.0.14+20200704
site_url: http://byron.github.io/google-apis-rs/google-tasks1-cli
site_description: A complete library to interact with tasks (protocol v1)
site_description: A complete library to interact with Tasks (protocol v1)
repo_url: https://github.com/Byron/google-apis-rs/tree/master/gen/tasks1-cli

View File

@@ -242,7 +242,7 @@ impl<'n> Engine<'n> {
call = call.page_token(value.unwrap_or(""));
},
"max-results" => {
call = call.max_results(value.unwrap_or(""));
call = call.max_results(arg_from_str(value.unwrap_or("-0"), err, "max-results", "integer"));
},
_ => {
let mut found = false;
@@ -738,7 +738,7 @@ impl<'n> Engine<'n> {
call = call.page_token(value.unwrap_or(""));
},
"max-results" => {
call = call.max_results(value.unwrap_or(""));
call = call.max_results(arg_from_str(value.unwrap_or("-0"), err, "max-results", "integer"));
},
"due-min" => {
call = call.due_min(value.unwrap_or(""));
@@ -1172,12 +1172,15 @@ impl<'n> Engine<'n> {
let engine = Engine {
opt: opt,
hub: api::TasksHub::new(client, auth),
gp: vec!["alt", "fields", "key", "oauth-token", "pretty-print", "quota-user", "user-ip"],
gp: vec!["$-xgafv", "access-token", "alt", "callback", "fields", "key", "oauth-token", "pretty-print", "quota-user", "upload-type", "upload-protocol"],
gpm: vec![
("$-xgafv", "$.xgafv"),
("access-token", "access_token"),
("oauth-token", "oauth_token"),
("pretty-print", "prettyPrint"),
("quota-user", "quotaUser"),
("user-ip", "userIp"),
("upload-type", "uploadType"),
("upload-protocol", "upload_protocol"),
]
};
@@ -1277,7 +1280,8 @@ fn main() {
Some(false)),
]),
("patch",
Some(r##"Updates the authenticated user's specified task list. This method supports patch semantics."##),
Some(r##"Updates the authenticated user's specified task list. This method supports
patch semantics."##),
"Details at http://byron.github.io/google-apis-rs/google_tasks1_cli/tasklists_patch",
vec![
(Some(r##"tasklist"##),
@@ -1336,7 +1340,9 @@ fn main() {
("tasks", "methods: 'clear', 'delete', 'get', 'insert', 'list', 'move', 'patch' and 'update'", vec![
("clear",
Some(r##"Clears all completed tasks from the specified task list. The affected tasks will be marked as 'hidden' and no longer be returned by default when retrieving all tasks for a task list."##),
Some(r##"Clears all completed tasks from the specified task list. The affected tasks
will be marked as 'hidden' and no longer be returned by default when
retrieving all tasks for a task list."##),
"Details at http://byron.github.io/google-apis-rs/google_tasks1_cli/tasks_clear",
vec![
(Some(r##"tasklist"##),
@@ -1452,7 +1458,9 @@ fn main() {
Some(false)),
]),
("move",
Some(r##"Moves the specified task to another position in the task list. This can include putting it as a child task under a new parent and/or move it to a different position among its sibling tasks."##),
Some(r##"Moves the specified task to another position in the task list. This can
include putting it as a child task under a new parent and/or move it to a
different position among its sibling tasks."##),
"Details at http://byron.github.io/google-apis-rs/google_tasks1_cli/tasks_move",
vec![
(Some(r##"tasklist"##),
@@ -1553,8 +1561,8 @@ fn main() {
let mut app = App::new("tasks1")
.author("Sebastian Thiel <byronimo@gmail.com>")
.version("1.0.13+20190628")
.about("Manages your tasks and task lists.")
.version("1.0.14+20200704")
.about("The Google Tasks API lets you manage your tasks and task lists.")
.after_help("All documentation details can be found at http://byron.github.io/google-apis-rs/google_tasks1_cli")
.arg(Arg::with_name("url")
.long("scope")