@maxim_mazurok/gapi.client.drive-v3
Advanced tools
Comparing version 0.0.20241202 to 0.0.20241206
{ | ||
"name": "@maxim_mazurok/gapi.client.drive-v3", | ||
"version": "0.0.20241202", | ||
"version": "0.0.20241206", | ||
"description": "TypeScript typings for Google Drive API v3", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -101,3 +101,3 @@ # TypeScript typings for Google Drive API v3 | ||
/* | ||
Gets information about the user, the user's Drive, and system capabilities. | ||
Gets information about the user, the user's Drive, and system capabilities. For more information, see [Return user info](https://developers.google.com/drive/api/guides/user-info). Required: The `fields` parameter must be set. To return the exact fields you need, see [Return specific fields](https://developers.google.com/drive/api/guides/fields-parameter). | ||
*/ | ||
@@ -122,3 +122,3 @@ await gapi.client.drive.about.get({ }); | ||
/* | ||
Gets a specific app. | ||
Gets a specific app. For more information, see [Return user info](https://developers.google.com/drive/api/guides/user-info). | ||
*/ | ||
@@ -128,3 +128,3 @@ await gapi.client.drive.apps.get({ appId: "appId", }); | ||
/* | ||
Lists a user's installed apps. | ||
Lists a user's installed apps. For more information, see [Return user info](https://developers.google.com/drive/api/guides/user-info). | ||
*/ | ||
@@ -134,3 +134,3 @@ await gapi.client.drive.apps.list({ }); | ||
/* | ||
Gets the starting pageToken for listing future changes. | ||
Gets the starting pageToken for listing future changes. For more information, see [Retrieve changes](https://developers.google.com/drive/api/guides/manage-changes). | ||
*/ | ||
@@ -140,3 +140,3 @@ await gapi.client.drive.changes.getStartPageToken({ }); | ||
/* | ||
Lists the changes for a user or shared drive. | ||
Lists the changes for a user or shared drive. For more information, see [Retrieve changes](https://developers.google.com/drive/api/guides/manage-changes). | ||
*/ | ||
@@ -146,3 +146,3 @@ await gapi.client.drive.changes.list({ pageToken: "pageToken", }); | ||
/* | ||
Subscribes to changes for a user. | ||
Subscribes to changes for a user. For more information, see [Notifications for resource changes](https://developers.google.com/drive/api/guides/push). | ||
*/ | ||
@@ -152,3 +152,3 @@ await gapi.client.drive.changes.watch({ pageToken: "pageToken", }); | ||
/* | ||
Stops watching resources through this channel. | ||
Stops watching resources through this channel. For more information, see [Notifications for resource changes](https://developers.google.com/drive/api/guides/push). | ||
*/ | ||
@@ -158,3 +158,3 @@ await gapi.client.drive.channels.stop({ }); | ||
/* | ||
Creates a comment on a file. | ||
Creates a comment on a file. For more information, see [Manage comments and replies](https://developers.google.com/drive/api/guides/manage-comments). Required: The `fields` parameter must be set. To return the exact fields you need, see [Return specific fields](https://developers.google.com/drive/api/guides/fields-parameter). | ||
*/ | ||
@@ -164,3 +164,3 @@ await gapi.client.drive.comments.create({ fileId: "fileId", }); | ||
/* | ||
Deletes a comment. | ||
Deletes a comment. For more information, see [Manage comments and replies](https://developers.google.com/drive/api/guides/manage-comments). Required: The `fields` parameter must be set. To return the exact fields you need, see [Return specific fields](https://developers.google.com/drive/api/guides/fields-parameter). | ||
*/ | ||
@@ -170,3 +170,3 @@ await gapi.client.drive.comments.delete({ commentId: "commentId", fileId: "fileId", }); | ||
/* | ||
Gets a comment by ID. | ||
Gets a comment by ID. For more information, see [Manage comments and replies](https://developers.google.com/drive/api/guides/manage-comments). Required: The `fields` parameter must be set. To return the exact fields you need, see [Return specific fields](https://developers.google.com/drive/api/guides/fields-parameter). | ||
*/ | ||
@@ -176,3 +176,3 @@ await gapi.client.drive.comments.get({ commentId: "commentId", fileId: "fileId", }); | ||
/* | ||
Lists a file's comments. | ||
Lists a file's comments. For more information, see [Manage comments and replies](https://developers.google.com/drive/api/guides/manage-comments). Required: The `fields` parameter must be set. To return the exact fields you need, see [Return specific fields](https://developers.google.com/drive/api/guides/fields-parameter). | ||
*/ | ||
@@ -182,3 +182,3 @@ await gapi.client.drive.comments.list({ fileId: "fileId", }); | ||
/* | ||
Updates a comment with patch semantics. | ||
Updates a comment with patch semantics. For more information, see [Manage comments and replies](https://developers.google.com/drive/api/guides/manage-comments). Required: The `fields` parameter must be set. To return the exact fields you need, see [Return specific fields](https://developers.google.com/drive/api/guides/fields-parameter). | ||
*/ | ||
@@ -185,0 +185,0 @@ await gapi.client.drive.comments.update({ commentId: "commentId", fileId: "fileId", }); |
Sorry, the diff of this file is too big to display
239383
3739