@maxim_mazurok/gapi.client.drive-v3 0.0.20230413 → 0.0.20230430
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 +2560 -1399
- package/package.json +1 -1
- package/readme.md +2 -2
- package/tests.ts +3 -3
package/package.json
CHANGED
package/readme.md
CHANGED
@@ -188,7 +188,7 @@ Permanently deletes a file owned by the user without moving it to the trash. If
|
|
188
188
|
await gapi.client.drive.files.delete({ fileId: "fileId", });
|
189
189
|
|
190
190
|
/*
|
191
|
-
Permanently deletes all of
|
191
|
+
Permanently deletes all trashed files of a user or shared drive.
|
192
192
|
*/
|
193
193
|
await gapi.client.drive.files.emptyTrash({ });
|
194
194
|
|
@@ -228,7 +228,7 @@ Updates a file's metadata and/or content. When calling this method, only populat
|
|
228
228
|
await gapi.client.drive.files.update({ fileId: "fileId", });
|
229
229
|
|
230
230
|
/*
|
231
|
-
|
231
|
+
Subscribe to changes on a file.
|
232
232
|
*/
|
233
233
|
await gapi.client.drive.files.watch({ fileId: "fileId", });
|
234
234
|
|
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: 20230430
|
7
7
|
|
8
8
|
gapi.load('client', async () => {
|
9
9
|
/** now we can use gapi.client */
|
@@ -927,7 +927,7 @@ gapi.load('client', async () => {
|
|
927
927
|
supportsAllDrives: true,
|
928
928
|
supportsTeamDrives: true,
|
929
929
|
});
|
930
|
-
/** Permanently deletes all of
|
930
|
+
/** Permanently deletes all trashed files of a user or shared drive. */
|
931
931
|
await gapi.client.drive.files.emptyTrash({
|
932
932
|
driveId: "Test string",
|
933
933
|
enforceSingleParent: true,
|
@@ -1299,7 +1299,7 @@ gapi.load('client', async () => {
|
|
1299
1299
|
webViewLink: "Test string",
|
1300
1300
|
writersCanShare: true,
|
1301
1301
|
});
|
1302
|
-
/**
|
1302
|
+
/** Subscribe to changes on a file. */
|
1303
1303
|
await gapi.client.drive.files.watch({
|
1304
1304
|
acknowledgeAbuse: true,
|
1305
1305
|
fileId: "Test string",
|