New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@signalwire/js

Package Overview
Dependencies
Maintainers
1
Versions
379
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@signalwire/js - npm Package Compare versions

Comparing version

to
1.3.0-cantina.28

3

dist/esm/common/src/webrtc/constants.d.ts

@@ -42,3 +42,4 @@ import { CallOptions } from './interfaces';

Announce = "announce",
DeviceUpdated = "deviceUpdated"
DeviceUpdated = "deviceUpdated",
MediaParams = "mediaParams"
}

@@ -45,0 +46,0 @@ export declare const DEFAULT_CALL_OPTIONS: CallOptions;

@@ -46,2 +46,3 @@ export var PeerType;

Notification["DeviceUpdated"] = "deviceUpdated";
Notification["MediaParams"] = "mediaParams";
})(Notification || (Notification = {}));

@@ -63,2 +64,3 @@ export const DEFAULT_CALL_OPTIONS = {

experimental: false,
autoApplyMediaParams: true,
};

@@ -65,0 +67,0 @@ export var State;

@@ -164,2 +164,3 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {

motionQualityInbound: confState.motionQualityIn || 1,
videoShuffle: confState.videoShuffle || 0,
silentMode: flags['silent-mode'] || false,

@@ -166,0 +167,0 @@ meetingMode: flags['meeting-mode'] || false,

@@ -44,2 +44,3 @@ export interface CallOptions {

experimental?: boolean;
autoApplyMediaParams?: boolean;
}

@@ -178,2 +179,3 @@ export interface ICantinaUser {

motionQualityInbound: number;
videoShuffle: number | string;
silentMode: boolean;

@@ -180,0 +182,0 @@ meetingMode: boolean;

@@ -66,2 +66,3 @@ import BrowserSession from '../BrowserSession';

setConfLayoutMode: (value: string) => any;
shuffleVideo: (value: string) => any;
};

@@ -244,2 +244,5 @@ var __rest = (this && this.__rest) || function (s, e) {

},
shuffleVideo: function (value) {
return _modCommand.call(this, { command: 'shuffle', value });
},
};

@@ -642,2 +642,5 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {

const { mediaParams } = params;
if (this.options.autoApplyMediaParams === false) {
return this._dispatchNotification({ type: Notification.MediaParams, mediaParams });
}
if (this.peer && mediaParams) {

@@ -644,0 +647,0 @@ Object.keys(mediaParams).forEach(kind => {

import Relay from './src/SignalWire';
import Verto from './src/Verto';
import CantinaAuth from '../common/src/webrtc/CantinaAuth';
export declare const VERSION = "1.3.0-cantina.27";
export declare const VERSION = "1.3.0-cantina.28";
export { Relay, Verto, CantinaAuth };

@@ -6,0 +6,0 @@ export * from '../common/src/webrtc/deviceHelpers';

@@ -5,5 +5,5 @@ import Relay from './src/SignalWire';

import CantinaAuth from '../common/src/webrtc/CantinaAuth';
export const VERSION = '1.3.0-cantina.27';
export const VERSION = '1.3.0-cantina.28';
setAgentName(`JavaScript SDK/${VERSION}`);
export { Relay, Verto, CantinaAuth };
export * from '../common/src/webrtc/deviceHelpers';
{
"name": "@signalwire/js",
"version": "1.3.0-cantina.27",
"version": "1.3.0-cantina.28",
"description": "Relay SDK for JavaScript to connect to SignalWire.",

@@ -5,0 +5,0 @@ "author": "SignalWire Team <open.source@signalwire.com>",

Sorry, the diff of this file is too big to display