mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2026-02-23 15:49:49 +01:00
chore(code): update everything to latest google API versions
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
[package]
|
||||
|
||||
name = "google-coordinate1-cli"
|
||||
version = "0.3.2+20141215"
|
||||
version = "0.3.2+20150811"
|
||||
authors = ["Sebastian Thiel <byronimo@gmail.com>"]
|
||||
description = "A complete library to interact with coordinate (protocol v1)"
|
||||
repository = "https://github.com/Byron/google-apis-rs/tree/master/gen/coordinate1-cli"
|
||||
|
||||
@@ -24,7 +24,7 @@ Find the source code [on github](https://github.com/Byron/google-apis-rs/tree/ma
|
||||
|
||||
# Usage
|
||||
|
||||
This documentation was generated from the *coordinate* API at revision *20141215*. The CLI is at version *0.3.2*.
|
||||
This documentation was generated from the *coordinate* API at revision *20150811*. The CLI is at version *0.3.2*.
|
||||
|
||||
```bash
|
||||
coordinate1 [options]
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
site_name: coordinate v0.3.2+20141215
|
||||
site_name: coordinate v0.3.2+20150811
|
||||
site_url: http://byron.github.io/google-apis-rs/google-coordinate1-cli
|
||||
site_description: Write integrating applications with bcore
|
||||
|
||||
|
||||
@@ -274,6 +274,9 @@ impl<'n, 'a> Engine<'n, 'a> {
|
||||
"page-token" => {
|
||||
call = call.page_token(value.unwrap_or(""));
|
||||
},
|
||||
"omit-job-changes" => {
|
||||
call = call.omit_job_changes(arg_from_str(value.unwrap_or("false"), err, "omit-job-changes", "boolean"));
|
||||
},
|
||||
"min-modified-timestamp-ms" => {
|
||||
call = call.min_modified_timestamp_ms(value.unwrap_or(""));
|
||||
},
|
||||
@@ -293,7 +296,7 @@ impl<'n, 'a> Engine<'n, 'a> {
|
||||
err.issues.push(CLIError::UnknownParameter(key.to_string(),
|
||||
{let mut v = Vec::new();
|
||||
v.extend(self.gp.iter().map(|v|*v));
|
||||
v.extend(["page-token", "max-results", "min-modified-timestamp-ms"].iter().map(|v|*v));
|
||||
v.extend(["page-token", "min-modified-timestamp-ms", "max-results", "omit-job-changes"].iter().map(|v|*v));
|
||||
v } ));
|
||||
}
|
||||
}
|
||||
@@ -1567,7 +1570,7 @@ fn main() {
|
||||
|
||||
let mut app = App::new("coordinate1")
|
||||
.author("Sebastian Thiel <byronimo@gmail.com>")
|
||||
.version("0.3.2+20141215")
|
||||
.version("0.3.2+20150811")
|
||||
.about("Lets you view and manage jobs in a Coordinate team.")
|
||||
.after_help("All documentation details can be found at http://byron.github.io/google-apis-rs/google_coordinate1_cli")
|
||||
.arg(Arg::with_name("url")
|
||||
|
||||
Reference in New Issue
Block a user