forked from react-native-webrtc/react-native-callkeep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
284 lines (232 loc) · 8.27 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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
declare module 'react-native-callkeep' {
export type NativeEvents = {
didReceiveStartCallAction: 'RNCallKeepDidReceiveStartCallAction';
answerCall: 'RNCallKeepPerformAnswerCallAction';
endCall: 'RNCallKeepPerformEndCallAction';
didActivateAudioSession: 'RNCallKeepDidActivateAudioSession';
didDeactivateAudioSession: 'RNCallKeepDidDeactivateAudioSession';
didDisplayIncomingCall: 'RNCallKeepDidDisplayIncomingCall';
didPerformSetMutedCallAction: 'RNCallKeepDidPerformSetMutedCallAction';
didToggleHoldCallAction: 'RNCallKeepDidToggleHoldAction';
didChangeAudioRoute: 'RNCallKeepDidChangeAudioRoute';
didPerformDTMFAction: 'RNCallKeepDidPerformDTMFAction';
showIncomingCallUi: 'RNCallKeepShowIncomingCallUi';
silenceIncomingCall: 'RNCallKeepOnSilenceIncomingCall';
createIncomingConnectionFailed: 'RNCallKeepOnIncomingConnectionFailed';
checkReachability: 'RNCallKeepCheckReachability';
didResetProvider: 'RNCallKeepProviderReset';
didLoadWithEvents: 'RNCallKeepDidLoadWithEvents';
onHasActiveCall : 'onHasActiveCall';
}
export type InitialEvents = Array<{
[Event in Events]: { name: NativeEvents[Event], data: EventsPayload[Event] }
}[Events]>
export type Events = keyof NativeEvents;
export type EventsPayload = {
didReceiveStartCallAction: { handle: string, callUUID?: string, name?: string };
answerCall: { callUUID: string };
endCall: { callUUID: string };
didActivateAudioSession: undefined;
didDeactivateAudioSession: undefined;
didDisplayIncomingCall: {
error?: string,
errorCode?: 'Unentitled' | 'CallUUIDAlreadyExists' | 'FilteredByDoNotDisturb' | 'FilteredByBlockList' | 'Unknown',
callUUID: string,
handle: string,
localizedCallerName: string,
hasVideo: '1' | '0',
fromPushKit: '1' | '0',
payload: object,
};
didPerformSetMutedCallAction: { muted: boolean, callUUID: string };
didToggleHoldCallAction: { hold: boolean, callUUID: string };
didChangeAudioRoute: {
output: string,
reason?: number,
handle?: string,
callUUID?: string,
};
didPerformDTMFAction: { digits: string, callUUID: string };
showIncomingCallUi: { handle: string, callUUID: string, name: string };
silenceIncomingCall: { handle: string, callUUID: string, name: string };
createIncomingConnectionFailed: { handle: string, callUUID: string, name: string };
checkReachability: undefined;
didResetProvider: undefined;
didLoadWithEvents: InitialEvents;
onHasActiveCall : undefined;
}
type HandleType = 'generic' | 'number' | 'email';
export type AudioRoute = {
name: string,
type: string,
selected?: boolean
}
export enum AudioSessionCategoryOption {
mixWithOthers = 0x1,
duckOthers = 0x2,
interruptSpokenAudioAndMixWithOthers = 0x11,
allowBluetooth = 0x4,
allowBluetoothA2DP = 0x20,
allowAirPlay = 0x40,
defaultToSpeaker = 0x8,
overrideMutedMicrophoneInterruption = 0x80,
}
export enum AudioSessionMode {
default = 'AVAudioSessionModeDefault',
gameChat = 'AVAudioSessionModeGameChat',
measurement = 'AVAudioSessionModeMeasurement',
moviePlayback = 'AVAudioSessionModeMoviePlayback',
spokenAudio = 'AVAudioSessionModeSpokenAudio',
videoChat = 'AVAudioSessionModeVideoChat',
videoRecording = 'AVAudioSessionModeVideoRecording',
voiceChat = 'AVAudioSessionModeVoiceChat',
voicePrompt = 'AVAudioSessionModeVoicePrompt',
}
interface IOptions {
ios: {
appName: string,
imageName?: string,
supportsVideo?: boolean,
maximumCallGroups?: string,
maximumCallsPerCallGroup?: string,
ringtoneSound?: string,
includesCallsInRecents?: boolean
audioSession?: {
categoryOptions?: AudioSessionCategoryOption | number,
mode?: AudioSessionMode | string,
}
},
android: {
alertTitle: string,
alertDescription: string,
cancelButton: string,
okButton: string,
imageName?: string,
additionalPermissions: string[],
selfManaged?: boolean,
foregroundService?: {
channelId: string,
channelName: string,
notificationTitle: string,
notificationIcon?: string
}
}
}
export const CONSTANTS: {
END_CALL_REASONS: {
FAILED: 1,
REMOTE_ENDED: 2,
UNANSWERED: 3,
ANSWERED_ELSEWHERE: 4,
DECLINED_ELSEWHERE: 5 | 2,
MISSED: 2 | 6
}
};
export class EventListener {
remove(): void
}
export default class RNCallKeep {
static getInitialEvents(): Promise<InitialEvents>
static clearInitialEvents(): void
static addEventListener<Event extends Events>(
type: Event,
handler: (args: EventsPayload[Event]) => void,
): EventListener
static removeEventListener(type: Events): void
static setup(options: IOptions): Promise<boolean>
static hasDefaultPhoneAccount(): boolean
static answerIncomingCall(uuid: string): void
static registerPhoneAccount(options: IOptions): void
static registerAndroidEvents(): void
static unregisterAndroidEvents(): void
static displayIncomingCall(
uuid: string,
handle: string,
localizedCallerName?: string,
handleType?: HandleType,
hasVideo?: boolean,
options?: object,
): void
static startCall(
uuid: string,
handle: string,
contactIdentifier?: string,
handleType?: HandleType,
hasVideo?: boolean,
): void
static updateDisplay(
uuid: string,
displayName: string,
handle: string,
options?: object,
): void
static checkPhoneAccountEnabled(): Promise<boolean>;
static isConnectionServiceAvailable(): Promise<boolean>;
/**
* @description reportConnectedOutgoingCallWithUUID method is available only on iOS.
*/
static reportConnectedOutgoingCallWithUUID(uuid: string): void
/**
* @description reportConnectedOutgoingCallWithUUID method is available only on iOS.
*/
static reportConnectingOutgoingCallWithUUID(uuid: string): void
static reportEndCallWithUUID(uuid: string, reason: number): void
static rejectCall(uuid: string): void
static endCall(uuid: string): void
static endAllCalls(): void
static setReachable(): void
static setSettings(settings: IOptions): void;
/**
* @description isCallActive method is available only on iOS.
*/
static isCallActive(uuid: string): Promise<boolean>
static getCalls(): Promise<{
callUUID: string,
hasConnected: boolean,
hasEnded: boolean,
onHold: boolean,
outgoing: boolean
}[] | void>
static getAudioRoutes(): Promise<void>
static setAudioRoute: (uuid: string, inputName: string) => Promise<void>
/**
* @description supportConnectionService method is available only on Android.
*/
static supportConnectionService(): boolean
/**
* @description hasPhoneAccount method is available only on Android.
*/
static hasPhoneAccount(): Promise<boolean>
static hasOutgoingCall(): Promise<boolean>
/**
* @description setMutedCall method is available only on iOS.
*/
static setMutedCall(uuid: string, muted: boolean): void
/**
* @description toggleAudioRouteSpeaker method is available only on Android.
* @param uuid
* @param routeSpeaker
*/
static toggleAudioRouteSpeaker(uuid: string, routeSpeaker: boolean): void
static setOnHold(uuid: string, held: boolean): void
static setConnectionState(uuid: string, state: number): void
/**
* @descriptions sendDTMF is used to send DTMF tones to the PBX.
*/
static sendDTMF(uuid: string, key: string): void
static checkIfBusy(): Promise<boolean>
static checkSpeaker(): Promise<boolean>
/**
* @description setAvailable method is available only on Android.
*/
static setAvailable(active: boolean): void
static setForegroundServiceSettings(settings: NonNullable<IOptions['android']['foregroundService']>): void
static canMakeMultipleCalls(allow: boolean): void
static setCurrentCallActive(callUUID: string): void
static backToForeground(): void
/**
* @descriptions Android Only, Check if there is active native call
*/
static checkIsInManagedCall(): Promise<boolean>
}
}