react-jssip-kit 0.7.7 → 0.7.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +664 -91
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +664 -91
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -57,6 +57,11 @@ type SipConfiguration = Omit<UAConfiguration, "password" | "uri"> & {
|
|
|
57
57
|
* Maximum allowed concurrent sessions. Additional sessions are rejected.
|
|
58
58
|
*/
|
|
59
59
|
maxSessionCount?: number;
|
|
60
|
+
/**
|
|
61
|
+
* Delay before calling event.ready() on ICE candidates (ms).
|
|
62
|
+
* When set, ICE gathering can be short-circuited for slow connections.
|
|
63
|
+
*/
|
|
64
|
+
iceCandidateReadyDelayMs?: number;
|
|
60
65
|
};
|
|
61
66
|
|
|
62
67
|
type StartOpts = {
|
|
@@ -178,6 +183,7 @@ declare class SipClient extends EventTargetEmitter<JsSIPEventMap> {
|
|
|
178
183
|
private readonly errorHandler;
|
|
179
184
|
private debugPattern?;
|
|
180
185
|
private maxSessionCount;
|
|
186
|
+
private iceCandidateReadyDelayMs?;
|
|
181
187
|
private sessionManager;
|
|
182
188
|
private lifecycle;
|
|
183
189
|
private micRecovery;
|
|
@@ -232,7 +238,6 @@ declare class SipClient extends EventTargetEmitter<JsSIPEventMap> {
|
|
|
232
238
|
private detachBeforeUnload;
|
|
233
239
|
private syncDebugInspector;
|
|
234
240
|
private toggleStateLogger;
|
|
235
|
-
private diffState;
|
|
236
241
|
private getPersistedDebug;
|
|
237
242
|
private requestMicrophoneStreamInternal;
|
|
238
243
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -57,6 +57,11 @@ type SipConfiguration = Omit<UAConfiguration, "password" | "uri"> & {
|
|
|
57
57
|
* Maximum allowed concurrent sessions. Additional sessions are rejected.
|
|
58
58
|
*/
|
|
59
59
|
maxSessionCount?: number;
|
|
60
|
+
/**
|
|
61
|
+
* Delay before calling event.ready() on ICE candidates (ms).
|
|
62
|
+
* When set, ICE gathering can be short-circuited for slow connections.
|
|
63
|
+
*/
|
|
64
|
+
iceCandidateReadyDelayMs?: number;
|
|
60
65
|
};
|
|
61
66
|
|
|
62
67
|
type StartOpts = {
|
|
@@ -178,6 +183,7 @@ declare class SipClient extends EventTargetEmitter<JsSIPEventMap> {
|
|
|
178
183
|
private readonly errorHandler;
|
|
179
184
|
private debugPattern?;
|
|
180
185
|
private maxSessionCount;
|
|
186
|
+
private iceCandidateReadyDelayMs?;
|
|
181
187
|
private sessionManager;
|
|
182
188
|
private lifecycle;
|
|
183
189
|
private micRecovery;
|
|
@@ -232,7 +238,6 @@ declare class SipClient extends EventTargetEmitter<JsSIPEventMap> {
|
|
|
232
238
|
private detachBeforeUnload;
|
|
233
239
|
private syncDebugInspector;
|
|
234
240
|
private toggleStateLogger;
|
|
235
|
-
private diffState;
|
|
236
241
|
private getPersistedDebug;
|
|
237
242
|
private requestMicrophoneStreamInternal;
|
|
238
243
|
}
|