Call requests: caller
This commit is contained in:
parent
a196e4dd49
commit
c57f7f1cdb
8 changed files with 185 additions and 6 deletions
|
@ -7,6 +7,27 @@ export enum CallState {
|
|||
Ended = 'ended',
|
||||
}
|
||||
|
||||
// Must be kept in sync with RingRTC.CallEndedReason
|
||||
export enum CallEndedReason {
|
||||
LocalHangup = 'LocalHangup',
|
||||
RemoteHangup = 'RemoteHangup',
|
||||
RemoteHangupNeedPermission = 'RemoteHangupNeedPermission',
|
||||
Declined = 'Declined',
|
||||
Busy = 'Busy',
|
||||
Glare = 'Glare',
|
||||
ReceivedOfferExpired = 'ReceivedOfferExpired',
|
||||
ReceivedOfferWhileActive = 'ReceivedOfferWhileActive',
|
||||
ReceivedOfferWithGlare = 'ReceivedOfferWithGlare',
|
||||
SignalingFailure = 'SignalingFailure',
|
||||
ConnectionFailure = 'ConnectionFailure',
|
||||
InternalFailure = 'InternalFailure',
|
||||
Timeout = 'Timeout',
|
||||
AcceptedOnAnotherDevice = 'AcceptedOnAnotherDevice',
|
||||
DeclinedOnAnotherDevice = 'DeclinedOnAnotherDevice',
|
||||
BusyOnAnotherDevice = 'BusyOnAnotherDevice',
|
||||
CallerIsNotMultiring = 'CallerIsNotMultiring',
|
||||
}
|
||||
|
||||
// Must be kept in sync with RingRTC.AudioDevice
|
||||
export interface AudioDevice {
|
||||
// Device name.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue