Socket
Socket
Sign inDemoInstall

botframework-streaming

Package Overview
Dependencies
Maintainers
1
Versions
508
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

botframework-streaming - npm Package Compare versions

Comparing version 4.9.0 to 4.9.1

1

browser/utilities/index.d.ts

@@ -10,4 +10,3 @@ /**

export * from './doesGlobalWebSocketExist';
export * from './createNodeServer';
export * from './protocol-base';
//# sourceMappingURL=index.d.ts.map

@@ -15,4 +15,3 @@ "use strict";

__export(require("./doesGlobalWebSocketExist"));
__export(require("./createNodeServer"));
__export(require("./protocol-base"));
//# sourceMappingURL=index.js.map

6

lib/namedPipe/namedPipeServer.js

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

const namedPipeTransport_1 = require("./namedPipeTransport");
const utilities_1 = require("../utilities");
const createNodeServer_1 = require("../utilities/createNodeServer");
/**

@@ -66,3 +66,3 @@ * Streaming transport server implementation that uses named pipes for inter-process communication.

const incoming = new Promise(resolve => {
this._incomingServer = utilities_1.createNodeServer((socket) => {
this._incomingServer = createNodeServer_1.createNodeServer((socket) => {
this._receiver.connect(new namedPipeTransport_1.NamedPipeTransport(socket));

@@ -73,3 +73,3 @@ resolve();

const outgoing = new Promise(resolve => {
this._outgoingServer = utilities_1.createNodeServer((socket) => {
this._outgoingServer = createNodeServer_1.createNodeServer((socket) => {
this._sender.connect(new namedPipeTransport_1.NamedPipeTransport(socket));

@@ -76,0 +76,0 @@ resolve();

@@ -10,4 +10,3 @@ /**

export * from './doesGlobalWebSocketExist';
export * from './createNodeServer';
export * from './protocol-base';
//# sourceMappingURL=index.d.ts.map

@@ -15,4 +15,3 @@ "use strict";

__export(require("./doesGlobalWebSocketExist"));
__export(require("./createNodeServer"));
__export(require("./protocol-base"));
//# sourceMappingURL=index.js.map

@@ -5,3 +5,3 @@ {

"description": "Streaming library for the Microsoft Bot Framework",
"version": "4.9.0",
"version": "4.9.1",
"license": "MIT",

@@ -52,3 +52,3 @@ "keywords": [

"eslint-fix": "eslint ./src/*.ts ./src/**/*.ts --fix",
"set-version": "npm version --allow-same-version 4.9.0",
"set-version": "npm version --allow-same-version 4.9.1",
"test": "npm run build && nyc mocha tests/",

@@ -55,0 +55,0 @@ "test:compat": "api-extractor run --verbose"

@@ -18,3 +18,3 @@ /**

import { INodeServer, INodeSocket, IStreamingTransportServer, IReceiveResponse } from '../interfaces';
import { createNodeServer } from '../utilities';
import { createNodeServer } from '../utilities/createNodeServer';

@@ -21,0 +21,0 @@ /**

@@ -11,3 +11,2 @@ /**

export * from './doesGlobalWebSocketExist';
export * from './createNodeServer';
export * from './protocol-base';

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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