@maxim_mazurok/gapi.client.drive-v3 0.1.20251104 → 0.1.20251114
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 +6 -6
- 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: 20251114
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -224,7 +224,7 @@ declare namespace gapi.client {
|
|
|
224
224
|
interface Comment {
|
|
225
225
|
/** A region of the document represented as a JSON string. For details on defining anchor properties, refer to [Manage comments and replies](https://developers.google.com/workspace/drive/api/v3/manage-comments). */
|
|
226
226
|
anchor?: string;
|
|
227
|
-
/** Output only. The email of the user
|
|
227
|
+
/** Output only. The email address of the user assigned to this comment. If no user is assigned, the field is unset. */
|
|
228
228
|
assigneeEmailAddress?: string;
|
|
229
229
|
/** Output only. The author of the comment. The author's email address and permission ID will not be populated. */
|
|
230
230
|
author?: User;
|
|
@@ -240,7 +240,7 @@ declare namespace gapi.client {
|
|
|
240
240
|
id?: string;
|
|
241
241
|
/** Output only. Identifies what kind of resource this is. Value: the fixed string `"drive#comment"`. */
|
|
242
242
|
kind?: string;
|
|
243
|
-
/** Output only.
|
|
243
|
+
/** Output only. A list of email addresses for users mentioned in this comment. If no users are mentioned, the list is empty. */
|
|
244
244
|
mentionedEmailAddresses?: string[];
|
|
245
245
|
/** The last time the comment or any of its replies was modified (RFC 3339 date-time). */
|
|
246
246
|
modifiedTime?: string;
|
|
@@ -873,7 +873,7 @@ declare namespace gapi.client {
|
|
|
873
873
|
interface Reply {
|
|
874
874
|
/** The action the reply performed to the parent comment. Valid values are: * `resolve` * `reopen` */
|
|
875
875
|
action?: string;
|
|
876
|
-
/** Output only. The email of the user
|
|
876
|
+
/** Output only. The email address of the user assigned to this comment. If no user is assigned, the field is unset. */
|
|
877
877
|
assigneeEmailAddress?: string;
|
|
878
878
|
/** Output only. The author of the reply. The author's email address and permission ID will not be populated. */
|
|
879
879
|
author?: User;
|
|
@@ -889,7 +889,7 @@ declare namespace gapi.client {
|
|
|
889
889
|
id?: string;
|
|
890
890
|
/** Output only. Identifies what kind of resource this is. Value: the fixed string `"drive#reply"`. */
|
|
891
891
|
kind?: string;
|
|
892
|
-
/** Output only.
|
|
892
|
+
/** Output only. A list of email addresses for users mentioned in this comment. If no users are mentioned, the list is empty. */
|
|
893
893
|
mentionedEmailAddresses?: string[];
|
|
894
894
|
/** The last time the reply was modified (RFC 3339 date-time). */
|
|
895
895
|
modifiedTime?: string;
|
|
@@ -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
|
|