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.6.0 to 0.6.1

1

lib/botbuilder.js

@@ -0,1 +1,2 @@

"use strict";
var session = require('./Session');

@@ -2,0 +3,0 @@ var dialog = require('./dialogs/Dialog');

7

lib/bots/BotConnectorBot.js

@@ -0,1 +1,2 @@

"use strict";
var __extends = (this && this.__extends) || function (d, b) {

@@ -16,3 +17,3 @@ for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];

this.options = {
endpoint: process.env['endpoint'] || 'https://intercomppe.azure-api.net',
endpoint: process.env['endpoint'] || 'https://api.botframework.com',
appId: process.env['appId'] || '',

@@ -233,3 +234,3 @@ appSecret: process.env['appSecret'] || '',

return BotConnectorBot;
})(collection.DialogCollection);
}(collection.DialogCollection));
exports.BotConnectorBot = BotConnectorBot;

@@ -242,3 +243,3 @@ var BotConnectorSession = (function (_super) {

return BotConnectorSession;
})(session.Session);
}(session.Session));
exports.BotConnectorSession = BotConnectorSession;

@@ -0,1 +1,2 @@

"use strict";
var __extends = (this && this.__extends) || function (d, b) {

@@ -205,3 +206,3 @@ for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];

return SkypeBot;
})(collection.DialogCollection);
}(collection.DialogCollection));
exports.SkypeBot = SkypeBot;

@@ -215,5 +216,5 @@ var SkypeSession = (function (_super) {

if (text) {
text = text.replace('&', '&');
text = text.replace('<', '&lt;');
text = text.replace('>', '&gt;');
text = text.replace(/&/g, '&amp;');
text = text.replace(/</g, '&lt;');
text = text.replace(/>/g, '&gt;');
}

@@ -224,5 +225,5 @@ return text;

if (text) {
text = text.replace('&amp;', '&');
text = text.replace('&lt;', '<');
text = text.replace('&gt;', '>');
text = text.replace(/&amp;/g, '&');
text = text.replace(/&lt;/g, '<');
text = text.replace(/&gt;/g, '>');
}

@@ -232,3 +233,3 @@ return text;

return SkypeSession;
})(session.Session);
}(session.Session));
exports.SkypeSession = SkypeSession;

@@ -0,1 +1,2 @@

"use strict";
var __extends = (this && this.__extends) || function (d, b) {

@@ -250,3 +251,3 @@ for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];

return SlackBot;
})(collection.DialogCollection);
}(collection.DialogCollection));
exports.SlackBot = SlackBot;

@@ -260,5 +261,5 @@ var SlackSession = (function (_super) {

if (text) {
text = text.replace('&', '&amp;');
text = text.replace('<', '&lt;');
text = text.replace('>', '&gt;');
text = text.replace(/&/g, '&amp;');
text = text.replace(/</g, '&lt;');
text = text.replace(/>/g, '&gt;');
}

@@ -269,5 +270,5 @@ return text;

if (text) {
text = text.replace('&amp;', '&');
text = text.replace('&lt;', '<');
text = text.replace('&gt;', '>');
text = text.replace(/&amp;/g, '&');
text = text.replace(/&lt;/g, '<');
text = text.replace(/&gt;/g, '>');
}

@@ -277,3 +278,3 @@ return text;

return SlackSession;
})(session.Session);
}(session.Session));
exports.SlackSession = SlackSession;

@@ -0,1 +1,2 @@

"use strict";
var __extends = (this && this.__extends) || function (d, b) {

@@ -161,3 +162,3 @@ for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];

return TextBot;
})(collection.DialogCollection);
}(collection.DialogCollection));
exports.TextBot = TextBot;

@@ -0,1 +1,2 @@

"use strict";
exports.Data = {

@@ -2,0 +3,0 @@ SessionState: 'BotBuilder.Data.SessionState',

@@ -0,1 +1,2 @@

"use strict";
var __extends = (this && this.__extends) || function (d, b) {

@@ -125,3 +126,3 @@ for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];

return CommandDialog;
})(dialog.Dialog);
}(dialog.Dialog));
exports.CommandDialog = CommandDialog;

@@ -0,1 +1,2 @@

"use strict";
(function (ResumeReason) {

@@ -29,3 +30,3 @@ ResumeReason[ResumeReason["completed"] = 0] = "completed";

return Dialog;
})();
}());
exports.Dialog = Dialog;

@@ -0,1 +1,2 @@

"use strict";
var session = require('../Session');

@@ -90,3 +91,3 @@ var dialog = require('./Dialog');

return DialogAction;
})();
}());
exports.DialogAction = DialogAction;

@@ -0,1 +1,2 @@

"use strict";
var __extends = (this && this.__extends) || function (d, b) {

@@ -55,3 +56,3 @@ for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];

return DialogCollection;
})(events.EventEmitter);
}(events.EventEmitter));
exports.DialogCollection = DialogCollection;

@@ -0,1 +1,2 @@

"use strict";
var utils = require('../utils');

@@ -200,3 +201,3 @@ var chrono = require('chrono-node');

return EntityRecognizer;
})();
}());
exports.EntityRecognizer = EntityRecognizer;

@@ -0,1 +1,2 @@

"use strict";
var __extends = (this && this.__extends) || function (d, b) {

@@ -190,3 +191,3 @@ for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];

return IntentDialog;
})(dialog.Dialog);
}(dialog.Dialog));
exports.IntentDialog = IntentDialog;

@@ -222,3 +223,3 @@ var IntentGroup = (function () {

return IntentGroup;
})();
}());
exports.IntentGroup = IntentGroup;

@@ -0,1 +1,2 @@

"use strict";
var __extends = (this && this.__extends) || function (d, b) {

@@ -44,3 +45,3 @@ for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];

return LuisDialog;
})(intent.IntentDialog);
}(intent.IntentDialog));
exports.LuisDialog = LuisDialog;

@@ -111,3 +112,3 @@ var LuisEntityResolver = (function () {

return LuisEntityResolver;
})();
}());
exports.LuisEntityResolver = LuisEntityResolver;

@@ -0,1 +1,2 @@

"use strict";
var __extends = (this && this.__extends) || function (d, b) {

@@ -97,3 +98,3 @@ for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];

return SimplePromptRecognizer;
})();
}());
exports.SimplePromptRecognizer = SimplePromptRecognizer;

@@ -209,3 +210,3 @@ var Prompts = (function (_super) {

return Prompts;
})(dialog.Dialog);
}(dialog.Dialog));
exports.Prompts = Prompts;

@@ -212,0 +213,0 @@ function beginPrompt(ses, args) {

@@ -0,1 +1,2 @@

"use strict";
var __extends = (this && this.__extends) || function (d, b) {

@@ -28,3 +29,3 @@ for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];

return SimpleDialog;
})(dialog.Dialog);
}(dialog.Dialog));
exports.SimpleDialog = SimpleDialog;

@@ -0,1 +1,2 @@

"use strict";
var __extends = (this && this.__extends) || function (d, b) {

@@ -201,3 +202,3 @@ for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];

return Session;
})(events.EventEmitter);
}(events.EventEmitter));
exports.Session = Session;

@@ -243,2 +244,2 @@ var SessionConfidenceComparor = (function () {

return SessionConfidenceComparor;
})();
}());

@@ -0,1 +1,2 @@

"use strict";
var utils = require('../utils');

@@ -26,3 +27,3 @@ var MemoryStorage = (function () {

return MemoryStorage;
})();
}());
exports.MemoryStorage = MemoryStorage;

@@ -0,1 +1,2 @@

"use strict";
var sprintf = require('sprintf-js');

@@ -2,0 +3,0 @@ function clone(obj) {

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

"description": "Bot Builder is a dialog system for building rich bots on virtually any platform.",
"version": "0.6.0",
"version": "0.6.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