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

@signalapp/mock-server

Package Overview
Dependencies
Maintainers
5
Versions
116
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@signalapp/mock-server - npm Package Compare versions

Comparing version 2.15.0 to 2.16.0

2

package.json
{
"name": "@signalapp/mock-server",
"version": "2.15.0",
"version": "2.16.0",
"description": "Mock Signal Server for writing tests",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -190,2 +190,3 @@ /// <reference types="node" />

sendText(target: Device, text: string, options?: EncryptTextOptions): Promise<void>;
sendRaw(target: Device, content: Proto.IContent, options?: EncryptOptions): Promise<void>;
receive(source: Device, encrypted: Buffer): Promise<void>;

@@ -192,0 +193,0 @@ waitForMessage(): Promise<MessageQueueEntry>;

@@ -685,2 +685,5 @@ "use strict";

}
async sendRaw(target, content, options) {
await this.config.send(target, await this.encryptContent(target, content, options));
}
async receive(source, encrypted) {

@@ -687,0 +690,0 @@ const envelope = compiled_1.signalservice.Envelope.decode(encrypted);

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