@maxim_mazurok/gapi.client.drive-v3 0.0.20221002 → 0.0.20221023
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/tests.ts +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: 20221023
|
13
13
|
|
14
14
|
/// <reference types="gapi.client" />
|
15
15
|
|
@@ -392,7 +392,7 @@ declare namespace gapi.client {
|
|
392
392
|
canReadLabels?: boolean;
|
393
393
|
/**
|
394
394
|
* Whether the current user can read the revisions resource of this file. For a shared drive item, whether revisions of non-folder descendants of this item, or this item itself if
|
395
|
-
* it
|
395
|
+
* it isn't a folder, can be read.
|
396
396
|
*/
|
397
397
|
canReadRevisions?: boolean;
|
398
398
|
/** Deprecated - use canReadDrive instead. */
|
@@ -417,7 +417,7 @@ declare namespace gapi.client {
|
|
417
417
|
};
|
418
418
|
/** Additional information about the content of the file. These fields are never populated in responses. */
|
419
419
|
contentHints?: {
|
420
|
-
/** Text to be indexed for the file to improve fullText queries. This is limited to
|
420
|
+
/** Text to be indexed for the file to improve fullText queries. This is limited to 128 KB in length and may contain HTML elements. For more information, see Manage file metadata. */
|
421
421
|
indexableText?: string;
|
422
422
|
/** A thumbnail for the file. This will only be used if Google Drive cannot generate a standard thumbnail. */
|
423
423
|
thumbnail?: {
|
@@ -451,7 +451,7 @@ declare namespace gapi.client {
|
|
451
451
|
/**
|
452
452
|
* The full file extension extracted from the name field. May contain multiple concatenated extensions, such as "tar.gz". This is only available for files with binary content in Google
|
453
453
|
* Drive.
|
454
|
-
* This is automatically updated when the name field changes, however it
|
454
|
+
* This is automatically updated when the name field changes, however it isn't cleared if the new name does not contain a valid extension.
|
455
455
|
*/
|
456
456
|
fullFileExtension?: string;
|
457
457
|
/** Whether there are permissions directly on this file. This field is only populated for items in shared drives. */
|
@@ -582,12 +582,12 @@ declare namespace gapi.client {
|
|
582
582
|
/** A key needed to access the item via a shared link. */
|
583
583
|
resourceKey?: string;
|
584
584
|
/**
|
585
|
-
* The SHA1 checksum associated with this file, if available. This field is only populated for files with content stored in Google Drive; it
|
585
|
+
* The SHA1 checksum associated with this file, if available. This field is only populated for files with content stored in Google Drive; it isn't populated for Docs Editors or
|
586
586
|
* shortcut files.
|
587
587
|
*/
|
588
588
|
sha1Checksum?: string;
|
589
589
|
/**
|
590
|
-
* The SHA256 checksum associated with this file, if available. This field is only populated for files with content stored in Google Drive; it
|
590
|
+
* The SHA256 checksum associated with this file, if available. This field is only populated for files with content stored in Google Drive; it isn't populated for Docs Editors or
|
591
591
|
* shortcut files.
|
592
592
|
*/
|
593
593
|
sha256Checksum?: string;
|
package/package.json
CHANGED
package/tests.ts
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
5
5
|
|
6
|
-
// Revision:
|
6
|
+
// Revision: 20221023
|
7
7
|
|
8
8
|
gapi.load('client', async () => {
|
9
9
|
/** now we can use gapi.client */
|