Update docs.
diff --git a/docs/dyn/drive_v2.apps.html b/docs/dyn/drive_v2.apps.html
index cc81146..5777e69 100644
--- a/docs/dyn/drive_v2.apps.html
+++ b/docs/dyn/drive_v2.apps.html
@@ -78,7 +78,7 @@
<code><a href="#get">get(appId)</a></code></p>
<p class="firstline">Gets a specific app.</p>
<p class="toc_element">
- <code><a href="#list">list()</a></code></p>
+ <code><a href="#list">list(languageCode=None, appFilterMimeTypes=None, appFilterExtensions=None)</a></code></p>
<p class="firstline">Lists a user's installed apps.</p>
<h3>Method Details</h3>
<div class="method">
@@ -100,6 +100,7 @@
"productUrl": "A String", # A link to the product listing for this app.
"shortDescription": "A String", # A short description of the app.
"id": "A String", # The ID of the app.
+ "hasDriveWideScope": True or False, # Whether the app has drive-wide scope. An app with drive-wide scope can access all files in the user's drive.
"objectType": "A String", # The type of object this app creates (e.g. Chart). If empty, the app name should be used instead.
"primaryFileExtensions": [ # The list of primary file extensions.
"A String",
@@ -122,6 +123,7 @@
"productId": "A String", # The ID of the product listing for this app.
"longDescription": "A String", # A long description of the app.
"supportsCreate": True or False, # Whether this app supports creating new objects.
+ "supportsOfflineCreate": True or False, # Whether this app supports creating new files when offline.
"kind": "drive#app", # This is always drive#app.
"name": "A String", # The name of the app.
"createUrl": "A String", # The url to create a new file with this app.
@@ -135,10 +137,13 @@
</div>
<div class="method">
- <code class="details" id="list">list()</code>
+ <code class="details" id="list">list(languageCode=None, appFilterMimeTypes=None, appFilterExtensions=None)</code>
<pre>Lists a user's installed apps.
Args:
+ languageCode: string, A language or locale code, as defined by BCP 47, with some extensions from Unicode's LDML format (http://www.unicode.org/reports/tr35/).
+ appFilterMimeTypes: string, A comma-separated list of MIME types for open with filtering. All apps within the given app query scope which can open any of the given MIME types will be included in the response. If appFilterExtensions are provided as well, the result is a union of the two resulting app lists.
+ appFilterExtensions: string, A comma-separated list of file extensions for open with filtering. All apps within the given app query scope which can open any of the given file extensions will be included in the response. If appFilterMimeTypes are provided as well, the result is a union of the two resulting app lists.
Returns:
An object of the form:
@@ -154,6 +159,7 @@
"productUrl": "A String", # A link to the product listing for this app.
"shortDescription": "A String", # A short description of the app.
"id": "A String", # The ID of the app.
+ "hasDriveWideScope": True or False, # Whether the app has drive-wide scope. An app with drive-wide scope can access all files in the user's drive.
"objectType": "A String", # The type of object this app creates (e.g. Chart). If empty, the app name should be used instead.
"primaryFileExtensions": [ # The list of primary file extensions.
"A String",
@@ -176,6 +182,7 @@
"productId": "A String", # The ID of the product listing for this app.
"longDescription": "A String", # A long description of the app.
"supportsCreate": True or False, # Whether this app supports creating new objects.
+ "supportsOfflineCreate": True or False, # Whether this app supports creating new files when offline.
"kind": "drive#app", # This is always drive#app.
"name": "A String", # The name of the app.
"createUrl": "A String", # The url to create a new file with this app.
@@ -190,6 +197,9 @@
"kind": "drive#appList", # This is always drive#appList.
"etag": "A String", # The ETag of the list.
"selfLink": "A String", # A link back to this list.
+ "defaultAppIds": [ # List of app IDs that the user has specified to use by default. The list is in reverse-priority order (lowest to highest).
+ "A String",
+ ],
}</pre>
</div>