| Index: generated/googleapis/lib/drive/v3.dart
|
| diff --git a/generated/googleapis/lib/drive/v3.dart b/generated/googleapis/lib/drive/v3.dart
|
| index 54dd06a9819f1e6650378cbf8b9e2342fecc2dcb..9bc90a4fc4dcdb821c60ac584142f4f810c19d91 100644
|
| --- a/generated/googleapis/lib/drive/v3.dart
|
| +++ b/generated/googleapis/lib/drive/v3.dart
|
| @@ -829,7 +829,8 @@ class FilesResourceApi {
|
| }
|
|
|
| /**
|
| - * Exports a Google Doc to the requested MIME type.
|
| + * Exports a Google Doc to the requested MIME type and returns the exported
|
| + * content.
|
| *
|
| * Request parameters:
|
| *
|
| @@ -2542,6 +2543,11 @@ class FileCapabilities {
|
| /** Whether the user can edit the file's content. */
|
| core.bool canEdit;
|
| /**
|
| + * Whether the current user has read access to the Revisions resource of the
|
| + * file.
|
| + */
|
| + core.bool canReadRevisions;
|
| + /**
|
| * Whether the user can modify the file's permissions and sharing settings.
|
| */
|
| core.bool canShare;
|
| @@ -2558,6 +2564,9 @@ class FileCapabilities {
|
| if (_json.containsKey("canEdit")) {
|
| canEdit = _json["canEdit"];
|
| }
|
| + if (_json.containsKey("canReadRevisions")) {
|
| + canReadRevisions = _json["canReadRevisions"];
|
| + }
|
| if (_json.containsKey("canShare")) {
|
| canShare = _json["canShare"];
|
| }
|
| @@ -2574,6 +2583,9 @@ class FileCapabilities {
|
| if (canEdit != null) {
|
| _json["canEdit"] = canEdit;
|
| }
|
| + if (canReadRevisions != null) {
|
| + _json["canReadRevisions"] = canReadRevisions;
|
| + }
|
| if (canShare != null) {
|
| _json["canShare"] = canShare;
|
| }
|
|
|