@maxim_mazurok/gapi.client.drive-v3 0.1.20251111 → 0.1.20251119
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +2 -2
- package/package.json +1 -1
- package/readme.md +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://www.googleapis.com/discovery/v1/apis/drive/v3/rest
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20251119
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -3332,7 +3332,7 @@ declare namespace gapi.client {
|
|
|
3332
3332
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3333
3333
|
uploadType?: string;
|
|
3334
3334
|
}): Request<Revision>;
|
|
3335
|
-
/** Lists a file's revisions. For more information, see [Manage file revisions](https://developers.google.com/workspace/drive/api/guides/manage-revisions). */
|
|
3335
|
+
/** Lists a file's revisions. For more information, see [Manage file revisions](https://developers.google.com/workspace/drive/api/guides/manage-revisions). **Important:** The list of revisions returned by this method might be incomplete for files with a large revision history, including frequently edited Google Docs, Sheets, and Slides. Older revisions might be omitted from the response, meaning the first revision returned may not be the oldest existing revision. The revision history visible in the Workspace editor user interface might be more complete than the list returned by the API. */
|
|
3336
3336
|
list(request?: {
|
|
3337
3337
|
/** V1 error format. */
|
|
3338
3338
|
'$.xgafv'?: string;
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -338,7 +338,7 @@ Gets a revision's metadata or content by ID. For more information, see [Manage f
|
|
|
338
338
|
await gapi.client.drive.revisions.get({ fileId: "fileId", revisionId: "revisionId", });
|
|
339
339
|
|
|
340
340
|
/*
|
|
341
|
-
Lists a file's revisions. For more information, see [Manage file revisions](https://developers.google.com/workspace/drive/api/guides/manage-revisions).
|
|
341
|
+
Lists a file's revisions. For more information, see [Manage file revisions](https://developers.google.com/workspace/drive/api/guides/manage-revisions). **Important:** The list of revisions returned by this method might be incomplete for files with a large revision history, including frequently edited Google Docs, Sheets, and Slides. Older revisions might be omitted from the response, meaning the first revision returned may not be the oldest existing revision. The revision history visible in the Workspace editor user interface might be more complete than the list returned by the API.
|
|
342
342
|
*/
|
|
343
343
|
await gapi.client.drive.revisions.list({ fileId: "fileId", });
|
|
344
344
|
|