Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@daily-co/daily-js

Package Overview
Dependencies
Maintainers
11
Versions
152
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@daily-co/daily-js - npm Package Compare versions

Comparing version 0.10.0 to 0.11.0

11

index.d.ts

@@ -153,2 +153,3 @@ // Type definitions for daily-js

byUser?: boolean;
byRemoteRequest?: boolean;
byBandwidth?: boolean;

@@ -328,3 +329,2 @@ };

| 'left-meeting'
| 'recording-started'
| 'recording-stopped'

@@ -382,2 +382,8 @@ | 'recording-stats'

export interface DailyEventObjectRecordingStarted {
action: Extract<DailyEvent, 'recording-started'>;
local?: boolean;
recordingId?: string;
}
export interface DailyEventObjectMouseEvent {

@@ -471,2 +477,4 @@ action: Extract<

? DailyEventObjectTrack
: T extends DailyEventObjectRecordingStarted['action']
? DailyEventObjectRecordingStarted
: T extends DailyEventObjectMouseEvent['action']

@@ -516,2 +524,3 @@ ? DailyEventObjectMouseEvent

preset: 'default';
maxCamStreams?: number;
}

@@ -518,0 +527,0 @@

2

package.json
{
"name": "@daily-co/daily-js",
"version": "0.10.0",
"version": "0.11.0",
"engines": {

@@ -5,0 +5,0 @@ "node": ">=10.0.0"

@@ -106,3 +106,4 @@ import ScriptMessageChannel from './ScriptMessageChannel';

forwardPackagedMessageToCallMachine(msg, iframe, newCallFrameId) {
msg.callFrameId = newCallFrameId;
const newMsg = { ...msg };
newMsg.callFrameId = newCallFrameId;
const w = iframe ? iframe.contentWindow : window;

@@ -113,3 +114,3 @@ // console.log(

// );
w.postMessage(msg, '*');
w.postMessage(newMsg, '*');
}

@@ -116,0 +117,0 @@

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

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc