@maxim_mazurok/gapi.client.keep-v1 0.0.20250121 → 0.0.20250210
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 +5 -5
- package/package.json +1 -1
- package/readme.md +2 -2
package/index.d.ts
CHANGED
|
@@ -9,14 +9,14 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://keep.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250210
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
16
16
|
declare namespace gapi.client {
|
|
17
17
|
/** Load Google Keep API v1 */
|
|
18
18
|
function load(
|
|
19
|
-
urlOrObject: 'https://keep.googleapis.com/$discovery/rest?version=v1'
|
|
19
|
+
urlOrObject: 'https://keep.googleapis.com/$discovery/rest?version=v1',
|
|
20
20
|
): Promise<void>;
|
|
21
21
|
/** @deprecated Please load APIs with discovery documents. */
|
|
22
22
|
function load(name: 'keep', version: 'v1'): Promise<void>;
|
|
@@ -210,7 +210,7 @@ declare namespace gapi.client {
|
|
|
210
210
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
211
211
|
uploadType?: string;
|
|
212
212
|
},
|
|
213
|
-
body: BatchCreatePermissionsRequest
|
|
213
|
+
body: BatchCreatePermissionsRequest,
|
|
214
214
|
): Request<BatchCreatePermissionsResponse>;
|
|
215
215
|
/** 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. */
|
|
216
216
|
batchDelete(request: {
|
|
@@ -268,7 +268,7 @@ declare namespace gapi.client {
|
|
|
268
268
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
269
269
|
uploadType?: string;
|
|
270
270
|
},
|
|
271
|
-
body: BatchDeletePermissionsRequest
|
|
271
|
+
body: BatchDeletePermissionsRequest,
|
|
272
272
|
): Request<{}>;
|
|
273
273
|
}
|
|
274
274
|
interface NotesResource {
|
|
@@ -324,7 +324,7 @@ declare namespace gapi.client {
|
|
|
324
324
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
325
325
|
uploadType?: string;
|
|
326
326
|
},
|
|
327
|
-
body: Note
|
|
327
|
+
body: Note,
|
|
328
328
|
): Request<Note>;
|
|
329
329
|
/** 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. */
|
|
330
330
|
delete(request?: {
|
package/package.json
CHANGED
package/readme.md
CHANGED