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

botbuilder

Package Overview
Dependencies
Maintainers
1
Versions
631
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

botbuilder - npm Package Compare versions

Comparing version 0.11.0 to 0.11.1

13

lib/bots/BotConnectorBot.js

@@ -172,7 +172,13 @@ var __extends = (this && this.__extends) || function (d, b) {

reply.totalParticipants = ses.message.totalParticipants;
if (!reply.language && ses.message.language) {
reply.language = ses.message.language;
}
_this.emit('reply', reply);
post(_this.options, endpoint, '/bot/v1.0/messages', reply, function (err) {
post(_this.options, endpoint, '/bot/v1.0/messages', reply, function (err, response) {
if (err) {
_this.emit('error', err);
}
else if (response.statusCode >= 400) {
console.error(response.statusMessage);
}
});

@@ -184,6 +190,9 @@ }

_this.emit('send', reply);
post(_this.options, endpoint, '/bot/v1.0/messages', reply, function (err) {
post(_this.options, endpoint, '/bot/v1.0/messages', reply, function (err, response) {
if (err) {
_this.emit('error', err);
}
else if (response.statusCode >= 400) {
console.error(response.statusMessage);
}
});

@@ -190,0 +199,0 @@ }

2

package.json

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

"description": "Bot Builder is a dialog system for building rich bots on virtually any platform.",
"version": "0.11.0",
"version": "0.11.1",
"license": "MIT",

@@ -8,0 +8,0 @@ "keywords": [

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