sip.js: ConfiguarationParameters: Add missing properties

This commit is contained in:
Sean Bright
2017-06-15 08:47:14 -04:00
parent bda10b63ed
commit 4abaeabc99

View File

@@ -188,9 +188,14 @@ export interface ConfigurationParameters {
authenticationFactory?: WebRTC.MediaHandlerFactory;
authorizationUser?: string;
autostart?: boolean;
autostop?: boolean;
connectionRecoveryMaxInterval?: number;
connectionRecoveryMinInterval?: number;
contactTransport?: string;
displayName?: string;
extraSupported?: string[];
forceRport?: boolean;
hackAllowUnregisteredOptionTags?: boolean;
hackCleanJitsiSdpImageattr?: boolean;
hackStripTcp?: boolean;
hackIpInContact?: boolean;
@@ -198,6 +203,7 @@ export interface ConfigurationParameters {
hackWssInTransport?: boolean;
iceCheckingTimeout?: number;
instanceId?: string;
keepAliveInterval?: number;
log?: {
builtinEnabled?: boolean;
level?: number | string;
@@ -211,6 +217,7 @@ export interface ConfigurationParameters {
registrarServer?: string;
rel100?: string;
replaces?: string;
rtcpMuxPolicy?: string;
stunServers?: string | string[];
traceSip?: boolean;
turnServers?: TurnServer | TurnServer[];