@signalwire/js 4.0.0-dev-20260224152911 → 4.0.0-dev-20260224174952
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/browser.mjs +5 -2
- package/dist/browser.mjs.map +1 -1
- package/dist/browser.umd.js +7 -1
- package/dist/browser.umd.js.map +1 -1
- package/dist/index.cjs +7 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +46 -6
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +46 -6
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +5 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/browser.mjs
CHANGED
|
@@ -15556,6 +15556,9 @@ var ClientSessionWrapper = class {
|
|
|
15556
15556
|
get signalingEvent$() {
|
|
15557
15557
|
return this.clientSessionManager.signalingEvent$;
|
|
15558
15558
|
}
|
|
15559
|
+
get iceServers() {
|
|
15560
|
+
return this.clientSessionManager.iceServers;
|
|
15561
|
+
}
|
|
15559
15562
|
async execute(request, options) {
|
|
15560
15563
|
return this.clientSessionManager.execute(request, options);
|
|
15561
15564
|
}
|
|
@@ -16203,7 +16206,7 @@ var SignalWire = class extends Destroyable {
|
|
|
16203
16206
|
async init() {
|
|
16204
16207
|
this._subscriber$.next(new Subscriber(this._deps.http));
|
|
16205
16208
|
if (!this._options.skipConnection) await this.connect();
|
|
16206
|
-
if (this._options.
|
|
16209
|
+
if (!this._options.reconnectAttachedCalls && this._attachManager) await this._attachManager.flush();
|
|
16207
16210
|
if (!this._options.skipRegister) this.register();
|
|
16208
16211
|
this.handleAttachments();
|
|
16209
16212
|
}
|
|
@@ -16634,5 +16637,5 @@ emitReadyEvent();
|
|
|
16634
16637
|
if (typeof process === "undefined") globalThis.process = { env: { NODE_ENV: "production" } };
|
|
16635
16638
|
|
|
16636
16639
|
//#endregion
|
|
16637
|
-
export { Address, CallCreateError, ClientPreferences, CollectionFetchError, MediaTrackError, MessageParseError, Participant, SelfParticipant, SignalWire, StaticCredentialProvider, Subscriber, VertoPongError, WebRTCCall, embeddableCall, isSelfParticipant, ready, version };
|
|
16640
|
+
export { Address, CallCreateError, ClientPreferences, CollectionFetchError, InvalidCredentialsError, MediaTrackError, MessageParseError, Participant, SelfCapabilities, SelfParticipant, SignalWire, StaticCredentialProvider, Subscriber, UnexpectedError, VertoPongError, WebRTCCall, embeddableCall, isSelfParticipant, ready, version };
|
|
16638
16641
|
//# sourceMappingURL=browser.mjs.map
|