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 1.0.0 to 1.0.1

2

lib/dialogs/IntentDialog.js

@@ -147,3 +147,3 @@ var __extends = (this && this.__extends) || function (d, b) {

}
if (match) {
if (match && match.handler) {
session.dialogData[consts.Data.Group] = match.groupId;

@@ -150,0 +150,0 @@ session.dialogData[consts.Data.Intent] = topIntent.intent;

@@ -161,6 +161,6 @@ var __extends = (this && this.__extends) || function (d, b) {

if (retry === void 0) { retry = false; }
if (retry && typeof args.retryPrompt === 'object') {
if (retry && typeof args.retryPrompt === 'object' && !Array.isArray(args.retryPrompt)) {
session.send(args.retryPrompt);
}
else if (typeof args.prompt === 'object') {
else if (typeof args.prompt === 'object' && !Array.isArray(args.prompt)) {
session.send(args.prompt);

@@ -167,0 +167,0 @@ }

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

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

@@ -23,2 +23,3 @@ "keywords": [

"dependencies": {
"async": "^1.5.2",
"chrono-node": "^1.1.3",

@@ -29,8 +30,8 @@ "node-uuid": "^1.4.7",

},
"devDependencies": {
"mocha": "^2.4.5"
},
"scripts": {
"test": "mocha tests/*.js"
"devDependencies": {
"mocha": "^2.4.5"
},
"scripts": {
"test": "mocha tests/*.js"
}
}
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