Upgrade to latest API versions + code regen

This commit is contained in:
Sebastian Thiel
2017-12-12 14:30:54 +01:00
parent dc30217711
commit 357a0e650e
776 changed files with 356718 additions and 104442 deletions

View File

@@ -186,6 +186,9 @@ impl<'n> Engine<'n> {
for parg in opt.values_of("v").map(|i|i.collect()).unwrap_or(Vec::new()).iter() {
let (key, value) = parse_kv_arg(&*parg, err, false);
match key {
"send-notifications" => {
call = call.send_notifications(arg_from_str(value.unwrap_or("false"), err, "send-notifications", "boolean"));
},
_ => {
let mut found = false;
for param in &self.gp {
@@ -199,6 +202,7 @@ impl<'n> Engine<'n> {
err.issues.push(CLIError::UnknownParameter(key.to_string(),
{let mut v = Vec::new();
v.extend(self.gp.iter().map(|v|*v));
v.extend(["send-notifications"].iter().map(|v|*v));
v } ));
}
}
@@ -341,6 +345,9 @@ impl<'n> Engine<'n> {
for parg in opt.values_of("v").map(|i|i.collect()).unwrap_or(Vec::new()).iter() {
let (key, value) = parse_kv_arg(&*parg, err, false);
match key {
"send-notifications" => {
call = call.send_notifications(arg_from_str(value.unwrap_or("false"), err, "send-notifications", "boolean"));
},
_ => {
let mut found = false;
for param in &self.gp {
@@ -354,6 +361,7 @@ impl<'n> Engine<'n> {
err.issues.push(CLIError::UnknownParameter(key.to_string(),
{let mut v = Vec::new();
v.extend(self.gp.iter().map(|v|*v));
v.extend(["send-notifications"].iter().map(|v|*v));
v } ));
}
}
@@ -431,6 +439,9 @@ impl<'n> Engine<'n> {
for parg in opt.values_of("v").map(|i|i.collect()).unwrap_or(Vec::new()).iter() {
let (key, value) = parse_kv_arg(&*parg, err, false);
match key {
"send-notifications" => {
call = call.send_notifications(arg_from_str(value.unwrap_or("false"), err, "send-notifications", "boolean"));
},
_ => {
let mut found = false;
for param in &self.gp {
@@ -444,6 +455,7 @@ impl<'n> Engine<'n> {
err.issues.push(CLIError::UnknownParameter(key.to_string(),
{let mut v = Vec::new();
v.extend(self.gp.iter().map(|v|*v));
v.extend(["send-notifications"].iter().map(|v|*v));
v } ));
}
}
@@ -4386,7 +4398,7 @@ fn main() {
let mut app = App::new("calendar3")
.author("Sebastian Thiel <byronimo@gmail.com>")
.version("1.0.6+20170919")
.version("1.0.6+20171205")
.about("Manipulates events and other calendar data.")
.after_help("All documentation details can be found at http://byron.github.io/google-apis-rs/google_calendar3_cli")
.arg(Arg::with_name("url")