@maxim_mazurok/gapi.client.tasks-v1 0.0.20230328 → 0.0.20230401
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 +3 -3
- package/package.json +2 -2
- package/readme.md +3 -3
- package/tests.ts +1 -1
package/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* Type definitions for non-npm package Tasks API v1 0.0 */
|
|
1
|
+
/* Type definitions for non-npm package Google Tasks API v1 0.0 */
|
|
2
2
|
// Project: https://developers.google.com/tasks/
|
|
3
3
|
// Definitions by: Maxim Mazurok <https://github.com/Maxim-Mazurok>
|
|
4
4
|
// Nick Amoscato <https://github.com/namoscato>
|
|
@@ -9,12 +9,12 @@
|
|
|
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://tasks.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230401
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
16
16
|
declare namespace gapi.client {
|
|
17
|
-
/** Load Tasks API v1 */
|
|
17
|
+
/** Load Google Tasks API v1 */
|
|
18
18
|
function load(urlOrObject: "https://tasks.googleapis.com/$discovery/rest?version=v1"): Promise<void>;
|
|
19
19
|
/** @deprecated Please load APIs with discovery documents. */
|
|
20
20
|
function load(name: "tasks", version: "v1"): Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maxim_mazurok/gapi.client.tasks-v1",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "TypeScript typings for Tasks API v1",
|
|
3
|
+
"version": "0.0.20230401",
|
|
4
|
+
"description": "TypeScript typings for Google Tasks API v1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
7
7
|
"email": "maxim@mazurok.com",
|
package/readme.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
# TypeScript typings for Tasks API v1
|
|
1
|
+
# TypeScript typings for Google Tasks API v1
|
|
2
2
|
|
|
3
3
|
The Google Tasks API lets you manage your tasks and task lists.
|
|
4
4
|
For detailed description please check [documentation](https://developers.google.com/tasks/).
|
|
5
5
|
|
|
6
6
|
## Installing
|
|
7
7
|
|
|
8
|
-
Install typings for Tasks API:
|
|
8
|
+
Install typings for Google Tasks API:
|
|
9
9
|
|
|
10
10
|
```
|
|
11
11
|
npm install @types/gapi.client.tasks-v1 --save-dev
|
|
@@ -65,7 +65,7 @@ gapi.auth.authorize(
|
|
|
65
65
|
});
|
|
66
66
|
```
|
|
67
67
|
|
|
68
|
-
After that you can use Tasks API resources: <!-- TODO: make this work for multiple namespaces -->
|
|
68
|
+
After that you can use Google Tasks API resources: <!-- TODO: make this work for multiple namespaces -->
|
|
69
69
|
|
|
70
70
|
```typescript
|
|
71
71
|
|
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: 20230401
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|