@maxim_mazurok/gapi.client.dialogflow-v2 0.0.20220811

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/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "@maxim_mazurok/gapi.client.dialogflow-v2",
3
+ "version": "0.0.20220811",
4
+ "description": "TypeScript typings for Dialogflow API v2",
5
+ "license": "MIT",
6
+ "author": {
7
+ "email": "maxim@mazurok.com",
8
+ "name": "Maxim Mazurok",
9
+ "url": "https://maxim.mazurok.com"
10
+ },
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/Maxim-Mazurok/google-api-typings-generator.git"
14
+ },
15
+ "types": "index.d.ts",
16
+ "dependencies": {
17
+ "@types/gapi.client": "*",
18
+ "@types/gapi.client.discovery": "*"
19
+ }
20
+ }
package/readme.md ADDED
@@ -0,0 +1,86 @@
1
+ # TypeScript typings for Dialogflow API v2
2
+
3
+ Builds conversational interfaces (for example, chatbots, and voice-powered apps and devices).
4
+ For detailed description please check [documentation](https://cloud.google.com/dialogflow/).
5
+
6
+ ## Installing
7
+
8
+ Install typings for Dialogflow API:
9
+
10
+ ```
11
+ npm install @types/gapi.client.dialogflow-v2 --save-dev
12
+ ```
13
+
14
+ ## Usage
15
+
16
+ You need to initialize Google API client in your code:
17
+
18
+ ```typescript
19
+ gapi.load('client', () => {
20
+ // now we can use gapi.client
21
+ // ...
22
+ });
23
+ ```
24
+
25
+ Then load api client wrapper:
26
+
27
+ ```typescript
28
+ gapi.client.load('https://dialogflow.googleapis.com/$discovery/rest?version=v2', () => {
29
+ // now we can use:
30
+ // gapi.client.dialogflow
31
+ });
32
+ ```
33
+
34
+ ```typescript
35
+ // Deprecated, use discovery document URL, see https://github.com/google/google-api-javascript-client/blob/master/docs/reference.md#----gapiclientloadname----version----callback--
36
+ gapi.client.load('dialogflow', 'v2', () => {
37
+ // now we can use:
38
+ // gapi.client.dialogflow
39
+ });
40
+ ```
41
+
42
+ Don't forget to authenticate your client before sending any request to resources:
43
+
44
+ ```typescript
45
+ // declare client_id registered in Google Developers Console
46
+ var client_id = '',
47
+ scope = [
48
+ // See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
49
+ 'https://www.googleapis.com/auth/cloud-platform',
50
+
51
+ // View, manage and query your Dialogflow agents
52
+ 'https://www.googleapis.com/auth/dialogflow',
53
+ ],
54
+ immediate = true;
55
+ // ...
56
+
57
+ gapi.auth.authorize(
58
+ { client_id: client_id, scope: scope, immediate: immediate },
59
+ authResult => {
60
+ if (authResult && !authResult.error) {
61
+ /* handle successful authorization */
62
+ } else {
63
+ /* handle authorization error */
64
+ }
65
+ });
66
+ ```
67
+
68
+ After that you can use Dialogflow API resources: <!-- TODO: make this work for multiple namespaces -->
69
+
70
+ ```typescript
71
+
72
+ /*
73
+ Deletes the specified agent.
74
+ */
75
+ await gapi.client.dialogflow.projects.deleteAgent({ parent: "parent", });
76
+
77
+ /*
78
+ Retrieves the specified agent.
79
+ */
80
+ await gapi.client.dialogflow.projects.getAgent({ parent: "parent", });
81
+
82
+ /*
83
+ Creates/updates the specified agent. Note: You should always train an agent prior to sending it queries. See the [training documentation](https://cloud.google.com/dialogflow/es/docs/training).
84
+ */
85
+ await gapi.client.dialogflow.projects.setAgent({ parent: "parent", });
86
+ ```