@signalwire/js 4.0.0-dev-20260422004129 → 4.0.0-dev-20260427214255
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 +2 -1
- package/dist/browser.mjs.map +1 -1
- package/dist/browser.umd.js +3 -0
- package/dist/browser.umd.js.map +1 -1
- package/dist/index.cjs +3 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +47 -4
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +47 -4
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/browser.mjs
CHANGED
|
@@ -21893,6 +21893,7 @@ var EmbedTokenCredentialProvider = class {
|
|
|
21893
21893
|
try {
|
|
21894
21894
|
const response = await fetch(url, {
|
|
21895
21895
|
method: "POST",
|
|
21896
|
+
headers: { "Content-Type": "application/json" },
|
|
21896
21897
|
body: JSON.stringify({ token: this.embedToken }),
|
|
21897
21898
|
signal: controller.signal
|
|
21898
21899
|
});
|
|
@@ -22017,5 +22018,5 @@ emitReadyEvent();
|
|
|
22017
22018
|
if (typeof process === "undefined") globalThis.process = { env: { NODE_ENV: "production" } };
|
|
22018
22019
|
|
|
22019
22020
|
//#endregion
|
|
22020
|
-
export { Address, CallCreateError, ClientPreferences, CollectionFetchError, DPoPInitError, DeviceTokenError, InvalidCredentialsError, MediaTrackError, MessageParseError, OverconstrainedFallbackError, Participant, PreflightError, RecoveryError, SelfCapabilities, SelfParticipant, SignalWire, StaticCredentialProvider, Subscriber, TokenRefreshError, UnexpectedError, VertoPongError, WebRTCCall, embeddableCall, isSelfParticipant, ready, setDebugOptions, setLogLevel, setLogger, version };
|
|
22021
|
+
export { Address, CallCreateError, ClientPreferences, CollectionFetchError, DPoPInitError, DeviceTokenError, EmbedTokenCredentialProvider, InvalidCredentialsError, MediaTrackError, MessageParseError, OverconstrainedFallbackError, Participant, PreflightError, RecoveryError, SelfCapabilities, SelfParticipant, SignalWire, StaticCredentialProvider, Subscriber, TokenRefreshError, UnexpectedError, VertoPongError, WebRTCCall, embeddableCall, getLogger, isSelfParticipant, ready, setDebugOptions, setLogLevel, setLogger, version };
|
|
22021
22022
|
//# sourceMappingURL=browser.mjs.map
|