@maxim_mazurok/gapi.client.drive-v3
Advanced tools
Comparing version 0.0.20241102 to 0.0.20241110
{ | ||
"name": "@maxim_mazurok/gapi.client.drive-v3", | ||
"version": "0.0.20241102", | ||
"version": "0.0.20241110", | ||
"description": "TypeScript typings for Google Drive API v3", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -106,2 +106,17 @@ # TypeScript typings for Google Drive API v3 | ||
/* | ||
Retrieves an AccessProposal by ID. | ||
*/ | ||
await gapi.client.drive.accessproposals.get({ fileId: "fileId", proposalId: "proposalId", }); | ||
/* | ||
List the AccessProposals on a file. Note: Only approvers are able to list AccessProposals on a file. If the user is not an approver, returns a 403. | ||
*/ | ||
await gapi.client.drive.accessproposals.list({ fileId: "fileId", }); | ||
/* | ||
Used to approve or deny an Access Proposal. | ||
*/ | ||
await gapi.client.drive.accessproposals.resolve({ fileId: "fileId", proposalId: "proposalId", }); | ||
/* | ||
Gets a specific app. | ||
@@ -108,0 +123,0 @@ */ |
Sorry, the diff of this file is too big to display
234505
3733
390