Skip to content

Commit

Permalink
feat(keep): update the api
Browse files Browse the repository at this point in the history
#### keep:v1

The following keys were added:
- resources.media.methods.download.scopes (Total Keys: 1)
- resources.notes.methods.create.scopes (Total Keys: 1)
- resources.notes.methods.delete.scopes (Total Keys: 1)
- resources.notes.methods.get.scopes (Total Keys: 1)
- resources.notes.methods.list.scopes (Total Keys: 1)
- resources.notes.resources.permissions.methods.batchCreate.scopes (Total Keys: 1)
- resources.notes.resources.permissions.methods.batchDelete.scopes (Total Keys: 1)
  • Loading branch information
yoshi-automation committed Jun 15, 2021
1 parent 3963b48 commit 45eb6da
Showing 1 changed file with 37 additions and 7 deletions.
44 changes: 37 additions & 7 deletions googleapiclient/discovery_cache/documents/keep.v1.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
{
"auth": {
"oauth2": {
"scopes": {
"https://www.googleapis.com/auth/keep": {
"description": "See, edit, create and permanently delete all your Google Keep data"
}
}
}
},
"basePath": "",
"baseUrl": "https://keep.googleapis.com/",
"batchPath": "batch",
Expand Down Expand Up @@ -124,6 +133,9 @@
"response": {
"$ref": "Attachment"
},
"scopes": [
"https://www.googleapis.com/auth/keep"
],
"supportsMediaDownload": true,
"useMediaDownloadService": true
}
Expand All @@ -144,7 +156,10 @@
},
"response": {
"$ref": "Note"
}
},
"scopes": [
"https://www.googleapis.com/auth/keep"
]
},
"delete": {
"description": "Deletes a note. Caller must have the `OWNER` role on the note to delete. Deleting a note removes the resource immediately and cannot be undone. Any collaborators will lose access to the note.",
Expand All @@ -166,7 +181,10 @@
"path": "v1/{+name}",
"response": {
"$ref": "Empty"
}
},
"scopes": [
"https://www.googleapis.com/auth/keep"
]
},
"get": {
"description": "Gets a note.",
Expand All @@ -188,7 +206,10 @@
"path": "v1/{+name}",
"response": {
"$ref": "Note"
}
},
"scopes": [
"https://www.googleapis.com/auth/keep"
]
},
"list": {
"description": "Lists notes. Every list call returns a page of results with `page_size` as the upper bound of returned items. A `page_size` of zero allows the server to choose the upper bound. The ListNotesResponse contains at most `page_size` entries. If there are more things left to list, it provides a `next_page_token` value. (Page tokens are opaque values.) To get the next page of results, copy the result's `next_page_token` into the next request's `page_token`. Repeat until the `next_page_token` returned with a page of results is empty. ListNotes return consistent results in the face of concurrent changes, or signals that it cannot with an ABORTED error.",
Expand Down Expand Up @@ -217,7 +238,10 @@
"path": "v1/notes",
"response": {
"$ref": "ListNotesResponse"
}
},
"scopes": [
"https://www.googleapis.com/auth/keep"
]
}
},
"resources": {
Expand Down Expand Up @@ -246,7 +270,10 @@
},
"response": {
"$ref": "BatchCreatePermissionsResponse"
}
},
"scopes": [
"https://www.googleapis.com/auth/keep"
]
},
"batchDelete": {
"description": "Deletes one or more permissions on the note. The specified entities will immediately lose access. A permission with the `OWNER` role can't be removed. If removing a permission fails, then the entire request fails and no changes are made. Returns a 400 bad request error if a specified permission does not exist on the note.",
Expand All @@ -271,14 +298,17 @@
},
"response": {
"$ref": "Empty"
}
},
"scopes": [
"https://www.googleapis.com/auth/keep"
]
}
}
}
}
}
},
"revision": "20210528",
"revision": "20210608",
"rootUrl": "https://keep.googleapis.com/",
"schemas": {
"Attachment": {
Expand Down

0 comments on commit 45eb6da

Please sign in to comment.