forked from dialogflow/dialogflow-nodejs-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
222 lines (180 loc) · 5.04 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
// Type definitions for apiai 3.0.4
// Project: https://github.com/api-ai/apiai-nodejs-client.git
// Definitions by: Dmitry Kuragin <https://github.com/sstepashka>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="typescript" />
/// <reference types="node" />
/* =================== USAGE ===================
import * as apiai from "apiai";
const app = apiai("YOUR_ACCESS_TOKEN");
=============================================== */
import * as events from "events";
import * as stream from "stream";
declare const apiai: apiai.ApiaiStatic;
export as namespace apiai;
export = apiai;
declare namespace apiai {
interface ApiaiStatic {
(clientAccessToken: string, options?: ApplicationOptions): Application;
}
/**
* Base request options. Not uses directly, for inherits only.
*/
interface RequestOptions {
endpoint?: string;
}
/**
* Base class or interface for all inherited requests.
* Not uses directly, for inherits only.
*/
interface Request extends events.EventEmitter {
write(buffer: Buffer | string): void;
end(): void;
}
/**
* Base class or interface for all inherited requests.
* Not uses directly, for inherits only.
*/
interface JSONApiRequest extends Request {
}
/**
* Base query request options.
* See details at https://docs.api.ai/docs/query
*/
interface QueryRequestOptions extends RequestOptions {
timezone?: string;
resetContexts?: boolean;
sessionId: string;
contexts?: [any];
entities?: [any];
version?: string;
requestSource?: string;
originalRequest?: any;
}
/**
* Base query request.
*/
interface QueryRequest extends JSONApiRequest {
}
/**
* Text Request options.
*/
interface TextRequestOptions extends QueryRequestOptions {
}
/**
* Text Request.
*/
interface TextRequest extends QueryRequest {
query: string | [string];
}
/**
* Event Request options.
*/
interface EventRequestOptions extends QueryRequestOptions {
}
/**
* Event model for setn event request.
*/
interface Event {
name: string;
data?: { [key: string]: any; };
}
/**
* Text Request.
*/
interface EventRequest extends QueryRequest {
event: Event;
}
/**
* Contexts Request options.
*/
interface ContextsRequestOptions extends RequestOptions {
sessionId: string;
}
/**
* Contexts Request.
*/
interface ContextsRequest extends JSONApiRequest {
contexts: [any];
}
/**
* Delete Contexts Request options.
*/
interface DeleteContextsRequestOptions extends RequestOptions {
sessionId: string;
}
/**
* Delete Contexts Request.
*/
interface DeleteContextsRequest extends JSONApiRequest {
}
/**
* UserEntityEntry model for user entities request.
*/
interface UserEntityEntry {
value: string;
synonyms: [string];
}
/**
* UserEntity model for user entities request.
*/
interface UserEntity {
name: string;
extend: boolean;
entries: [UserEntityEntry];
}
/**
* UserEntity model for user entities request.
*/
interface UserEntitiesBody {
sessionId: string;
entities: [UserEntity];
}
/**
* UserEntities Request options.
*/
interface UserEntitiesRequestOptions extends RequestOptions {
}
/**
* UserEntities Request.
*/
interface UserEntitiesRequest extends JSONApiRequest {
user_entities_body: UserEntitiesBody;
}
/**
* TTS Request options (deprecated)
*/
//interface TTSRequestOptions extends RequestOptions {
// language?: string;
// writeStream: stream.Writable;
//}
/**
* TTS Request (deprecated)
*/
//interface TTSRequest extends Request {
//}
/**
* Application options. This options uses for
* default parameters for requests.
*/
interface ApplicationOptions {
language?: string;
hostname?: string;
version?: string;
endpoint?: string;
requestSource?: string;
secure?: boolean;
}
/**
* Application is factory for requests to api.ai service.
*/
interface Application {
textRequest(query: string | [string], options: TextRequestOptions): TextRequest;
eventRequest(event: Event, options: EventRequestOptions): EventRequest;
contextsRequest(contexts: [any], options: ContextsRequestOptions): ContextsRequest;
deleteContextsRequest(options: DeleteContextsRequestOptions): DeleteContextsRequest;
userEntitiesRequest(user_entities_body: UserEntitiesBody, options?: UserEntitiesRequestOptions): UserEntitiesRequest;
// Text to speech (TTS) has been deprecated
//ttsRequest(text: string, options: TTSRequestOptions): TTSRequest;
}
}