@maxim_mazurok/gapi.client.drive-v3 0.0.20220731 → 0.0.20220822
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 +11 -1
- package/package.json +1 -1
- package/tests.ts +7 -1
package/index.d.ts
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
11
11
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
12
12
|
// Generated from: https://www.googleapis.com/discovery/v1/apis/drive/v3/rest
|
13
|
-
// Revision:
|
13
|
+
// Revision: 20220822
|
14
14
|
|
15
15
|
/// <reference types="gapi.client" />
|
16
16
|
|
@@ -582,6 +582,16 @@ declare namespace gapi.client {
|
|
582
582
|
quotaBytesUsed?: string;
|
583
583
|
/** A key needed to access the item via a shared link. */
|
584
584
|
resourceKey?: string;
|
585
|
+
/**
|
586
|
+
* The SHA1 checksum associated with this file, if available. This field is only populated for files with content stored in Google Drive; it is not populated for Docs Editors or
|
587
|
+
* shortcut files.
|
588
|
+
*/
|
589
|
+
sha1Checksum?: string;
|
590
|
+
/**
|
591
|
+
* The SHA256 checksum associated with this file, if available. This field is only populated for files with content stored in Google Drive; it is not populated for Docs Editors or
|
592
|
+
* shortcut files.
|
593
|
+
*/
|
594
|
+
sha256Checksum?: string;
|
585
595
|
/** Whether the file has been shared. Not populated for items in shared drives. */
|
586
596
|
shared?: boolean;
|
587
597
|
/** The time at which the file was shared with the user, if applicable (RFC 3339 date-time). */
|
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: 20220822
|
7
7
|
|
8
8
|
gapi.load('client', async () => {
|
9
9
|
/** now we can use gapi.client */
|
@@ -582,6 +582,8 @@ gapi.load('client', async () => {
|
|
582
582
|
},
|
583
583
|
quotaBytesUsed: "Test string",
|
584
584
|
resourceKey: "Test string",
|
585
|
+
sha1Checksum: "Test string",
|
586
|
+
sha256Checksum: "Test string",
|
585
587
|
shared: true,
|
586
588
|
sharedWithMeTime: "Test string",
|
587
589
|
sharingUser: {
|
@@ -863,6 +865,8 @@ gapi.load('client', async () => {
|
|
863
865
|
},
|
864
866
|
quotaBytesUsed: "Test string",
|
865
867
|
resourceKey: "Test string",
|
868
|
+
sha1Checksum: "Test string",
|
869
|
+
sha256Checksum: "Test string",
|
866
870
|
shared: true,
|
867
871
|
sharedWithMeTime: "Test string",
|
868
872
|
sharingUser: {
|
@@ -1242,6 +1246,8 @@ gapi.load('client', async () => {
|
|
1242
1246
|
},
|
1243
1247
|
quotaBytesUsed: "Test string",
|
1244
1248
|
resourceKey: "Test string",
|
1249
|
+
sha1Checksum: "Test string",
|
1250
|
+
sha256Checksum: "Test string",
|
1245
1251
|
shared: true,
|
1246
1252
|
sharedWithMeTime: "Test string",
|
1247
1253
|
sharingUser: {
|