-
Notifications
You must be signed in to change notification settings - Fork 0
/
Interfaces.ts
89 lines (81 loc) · 2.09 KB
/
Interfaces.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
import {ApiAiConstants} from "./ApiAiConstants";
export interface IRequestOptions {
query?: string;
event?: {name: string, data?: IStringMap};
sessionId?: string;
lang?: ApiAiConstants.AVAILABLE_LANGUAGES;
}
export interface IServerResponse {
id?: string;
result?: {
action: string,
resolvedQuery: string,
speech: string;
fulfillment?: {
speech: string
}
};
status: {
code: number,
errorDetails?: string,
errorID?: string,
errorType: string
};
}
export interface IStringMap { [s: string]: string; }
export interface IApiClientOptions {
lang?: ApiAiConstants.AVAILABLE_LANGUAGES;
version?: string;
baseUrl?: string;
sessionId?: string;
streamClientClass?: IStreamClientConstructor;
accessToken: string;
}
export interface IStreamClientConstructor {
new (options: IStreamClientOptions): IStreamClient;
}
export interface IStreamClient {
init(): void;
open(): void;
close(): void;
startListening(): void;
stopListening(): void;
}
export interface IStreamClientOptions {
server?: string;
token?: string;
sessionId?: string;
lang?: ApiAiConstants.AVAILABLE_LANGUAGES;
contentType?: string;
readingInterval?: string;
onOpen?: () => void;
onClose?: () => void;
onInit?: () => void;
onStartListening?: () => void;
onStopListening?: () => void;
onResults?: (data: IServerResponse) => void;
onEvent?: (eventCode: IStreamClient.EVENT, message: string) => void;
onError?: (errorCode: IStreamClient.ERROR, message: string) => void;
}
export namespace IStreamClient {
export enum ERROR {
ERR_NETWORK,
ERR_AUDIO,
ERR_SERVER,
ERR_CLIENT
}
export enum EVENT {
MSG_WAITING_MICROPHONE,
MSG_MEDIA_STREAM_CREATED,
MSG_INIT_RECORDER,
MSG_RECORDING,
MSG_SEND,
MSG_SEND_EMPTY,
MSG_SEND_EOS_OR_JSON,
MSG_WEB_SOCKET,
MSG_WEB_SOCKET_OPEN,
MSG_WEB_SOCKET_CLOSE,
MSG_STOP,
MSG_CONFIG_CHANGED
}
}