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

@openreplay/tracker-assist

Package Overview
Dependencies
Maintainers
3
Versions
99
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@openreplay/tracker-assist - npm Package Compare versions

Comparing version 3.5.2 to 3.5.3

9

cjs/Assist.d.ts
import type { Properties } from 'csstype';
import { App } from '@openreplay/tracker/cjs';
import type { Options as ConfirmOptions } from './ConfirmWindow.js';
declare type BehinEndCallback = () => ((() => {}) | void);
export interface Options {
onAgentConnect: () => ((() => {}) | void);
onCallStart: () => ((() => {}) | void);
onAgentConnect: BehinEndCallback;
onCallStart: BehinEndCallback;
onRemoteControlStart: BehinEndCallback;
session_calling_peer_key: string;

@@ -18,3 +20,3 @@ session_control_peer_key: string;

private readonly noSecureMode;
readonly version = "3.5.2";
readonly version = "3.5.3";
private socket;

@@ -33,1 +35,2 @@ private peer;

}
export {};

@@ -22,3 +22,3 @@ "use strict";

this.noSecureMode = noSecureMode;
this.version = "3.5.2";
this.version = "3.5.3";
this.socket = null;

@@ -36,2 +36,3 @@ this.peer = null;

onAgentConnect: () => { },
onRemoteControlStart: () => { },
callConfirm: {},

@@ -127,8 +128,12 @@ controlConfirm: {}, // TODO: clear options passing/merging/overriting

};
let onRemoteControlStop = null;
const grantControl = (id) => {
controllingAgent = id;
mouse.mount();
onRemoteControlStop = this.options.onRemoteControlStart() || null;
sessionStorage.setItem(this.options.session_control_peer_key, id);
};
const releaseControl = () => {
typeof onRemoteControlStop === 'function' && onRemoteControlStop();
onRemoteControlStop = null;
confirmRC === null || confirmRC === void 0 ? void 0 : confirmRC.remove();

@@ -135,0 +140,0 @@ mouse.remove();

import type { Properties } from 'csstype';
import { App } from '@openreplay/tracker';
import type { Options as ConfirmOptions } from './ConfirmWindow.js';
declare type BehinEndCallback = () => ((() => {}) | void);
export interface Options {
onAgentConnect: () => ((() => {}) | void);
onCallStart: () => ((() => {}) | void);
onAgentConnect: BehinEndCallback;
onCallStart: BehinEndCallback;
onRemoteControlStart: BehinEndCallback;
session_calling_peer_key: string;

@@ -18,3 +20,3 @@ session_control_peer_key: string;

private readonly noSecureMode;
readonly version = "3.5.2";
readonly version = "3.5.3";
private socket;

@@ -33,1 +35,2 @@ private peer;

}
export {};

@@ -20,3 +20,3 @@ import io from 'socket.io-client';

this.noSecureMode = noSecureMode;
this.version = "3.5.2";
this.version = "3.5.3";
this.socket = null;

@@ -34,2 +34,3 @@ this.peer = null;

onAgentConnect: () => { },
onRemoteControlStart: () => { },
callConfirm: {},

@@ -125,8 +126,12 @@ controlConfirm: {}, // TODO: clear options passing/merging/overriting

};
let onRemoteControlStop = null;
const grantControl = (id) => {
controllingAgent = id;
mouse.mount();
onRemoteControlStop = this.options.onRemoteControlStart() || null;
sessionStorage.setItem(this.options.session_control_peer_key, id);
};
const releaseControl = () => {
typeof onRemoteControlStop === 'function' && onRemoteControlStop();
onRemoteControlStop = null;
confirmRC === null || confirmRC === void 0 ? void 0 : confirmRC.remove();

@@ -133,0 +138,0 @@ mouse.remove();

{
"name": "@openreplay/tracker-assist",
"description": "Tracker plugin for screen assistance through the WebRTC",
"version": "3.5.2",
"version": "3.5.3",
"keywords": [

@@ -6,0 +6,0 @@ "WebRTC",

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