Skip to content

Commit

Permalink
[Node] Update botbuilder package to 3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pcostantini committed Feb 25, 2017
1 parent 2c17b35 commit 39ef7a1
Show file tree
Hide file tree
Showing 21 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion Node/cards-CarouselCards/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"url": "https://github.com/Microsoft/BotBuilder-Samples.git"
},
"dependencies": {
"botbuilder": "^3.5.1",
"botbuilder": "^3.6.0",
"restify": "^4.3.0"
}
}
2 changes: 1 addition & 1 deletion Node/cards-RichCards/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"url": "https://github.com/Microsoft/BotBuilder-Samples.git"
},
"dependencies": {
"botbuilder": "^3.5.1",
"botbuilder": "^3.6.0",
"restify": "^4.3.0"
}
}
2 changes: 1 addition & 1 deletion Node/core-AppInsights/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ bot.dialog('search', new builder.IntentDialog()
var userName = session.userData[UserNameKey];
var messageText = session.message.text.trim();
session.send('%s, wait a few seconds. Searching for \'%s\' in \'%s\'...', userName, messageText, city);
session.send('https://www.bing.comsearch?q=%s', encodeURIComponent(messageText + ' in ' + city));
session.send('https://www.bing.com/search?q=%s', encodeURIComponent(messageText + ' in ' + city));

} catch (error) {
measuredEventTelemetry.exception = error.toString();
Expand Down
2 changes: 1 addition & 1 deletion Node/core-AppInsights/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
"dependencies": {
"applicationinsights": "^0.17.1",
"botbuilder": "^3.5.1",
"botbuilder": "^3.6.0",
"dotenv-extended": "^1.0.4",
"restify": "^4.3.0"
}
Expand Down
2 changes: 1 addition & 1 deletion Node/core-ChannelData/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"url": "https://github.com/Microsoft/BotBuilder-Samples.git"
},
"dependencies": {
"botbuilder": "^3.5.1",
"botbuilder": "^3.6.0",
"restify": "^4.3.0"
}
}
2 changes: 1 addition & 1 deletion Node/core-CreateNewConversation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"url": "https://github.com/Microsoft/BotBuilder-Samples.git"
},
"dependencies": {
"botbuilder": "^3.5.1",
"botbuilder": "^3.6.0",
"restify": "^4.3.0"
}
}
2 changes: 1 addition & 1 deletion Node/core-CustomState/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"url": "https://github.com/Microsoft/BotBuilder-Samples.git"
},
"dependencies": {
"botbuilder": "^3.5.3",
"botbuilder": "^3.6.0",
"botbuilder-azure": "^3.0.2",
"dotenv-extended": "^1.0.4",
"restify": "^4.3.0"
Expand Down
2 changes: 1 addition & 1 deletion Node/core-DirectLine/DirectLineBot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"url": "https://github.com/Microsoft/BotBuilder-Samples.git"
},
"dependencies": {
"botbuilder": "^3.5.1",
"botbuilder": "^3.6.0",
"restify": "^4.3.0"
}
}
2 changes: 1 addition & 1 deletion Node/core-GetConversationMembers/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var Swagger = require('swagger-client');
// Swagger client for Bot Connector API
var connectorApiClient = new Swagger(
{
url: 'https://raw.githubusercontent.com/Microsoft/BotBuilder/master/CSharp/Library/Microsoft.Bot.Connector/Swagger/ConnectorAPI.json',
url: 'https://raw.githubusercontent.com/Microsoft/BotBuilder/master/CSharp/Library/Microsoft.Bot.Connector.Shared/Swagger/ConnectorAPI.json',
usePromise: true
});

Expand Down
2 changes: 1 addition & 1 deletion Node/core-GetConversationMembers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
"dependencies": {
"bluebird": "^3.4.7",
"botbuilder": "^3.5.1",
"botbuilder": "^3.6.0",
"restify": "^4.3.0",
"swagger-client": "^2.1.26"
}
Expand Down
2 changes: 1 addition & 1 deletion Node/core-MultiDialogs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
"dependencies": {
"bluebird": "^3.4.7",
"botbuilder": "^3.5.1",
"botbuilder": "^3.6.0",
"restify": "^4.3.0"
}
}
2 changes: 1 addition & 1 deletion Node/core-ReceiveAttachment/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
"dependencies": {
"bluebird": "^3.4.7",
"botbuilder": "^3.5.1",
"botbuilder": "^3.6.0",
"request": "^2.79.0",
"request-promise": "^4.1.1",
"restify": "^4.3.0"
Expand Down
2 changes: 1 addition & 1 deletion Node/core-SendAttachment/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var util = require('util');
// Swagger client for Bot Connector API
var connectorApiClient = new Swagger(
{
url: 'https://raw.githubusercontent.com/Microsoft/BotBuilder/master/CSharp/Library/Microsoft.Bot.Connector/Swagger/ConnectorAPI.json',
url: 'https://raw.githubusercontent.com/Microsoft/BotBuilder/master/CSharp/Library/Microsoft.Bot.Connector.Shared/Swagger/ConnectorAPI.json',
usePromise: true
});

Expand Down
2 changes: 1 addition & 1 deletion Node/core-SendAttachment/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
"dependencies": {
"bluebird": "^3.4.7",
"botbuilder": "^3.5.1",
"botbuilder": "^3.6.0",
"restify": "^4.3.0",
"swagger-client": "^2.1.32"
}
Expand Down
2 changes: 1 addition & 1 deletion Node/core-State/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"url": "https://github.com/Microsoft/BotBuilder-Samples.git"
},
"dependencies": {
"botbuilder": "^3.5.1",
"botbuilder": "^3.6.0",
"restify": "^4.3.0"
}
}
2 changes: 1 addition & 1 deletion Node/demo-ContosoFlowers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"dependencies": {
"bluebird": "^3.4.7",
"body-parser": "^1.15.2",
"botbuilder": "^3.5.1",
"botbuilder": "^3.6.0",
"botbuilder-location": "^1.0.3",
"express": "^4.14.0",
"geobing": "^0.1.3",
Expand Down
2 changes: 1 addition & 1 deletion Node/demo-Search/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
"dependencies": {
"bluebird": "^3.4.7",
"botbuilder": "^3.5.1",
"botbuilder": "^3.6.0",
"lodash": "^4.17.4",
"lorem-ipsum": "^1.0.3",
"node-uuid": "^1.4.7",
Expand Down
2 changes: 1 addition & 1 deletion Node/intelligence-ImageCaption/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"url": "https://github.com/Microsoft/BotBuilder-Samples.git"
},
"dependencies": {
"botbuilder": "^3.5.1",
"botbuilder": "^3.6.0",
"dotenv-extended": "^1.0.4",
"needle": "^1.4.3",
"request": "^2.79.0",
Expand Down
2 changes: 1 addition & 1 deletion Node/intelligence-LUIS/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
"dependencies": {
"bluebird": "^3.4.7",
"botbuilder": "^3.5.1",
"botbuilder": "^3.6.0",
"dotenv-extended": "^1.0.4",
"request": "^2.79.0",
"restify": "^4.3.0"
Expand Down
2 changes: 1 addition & 1 deletion Node/intelligence-SimilarProducts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"author": "Microsoft Corp.",
"license": "MIT",
"dependencies": {
"botbuilder": "^3.5.1",
"botbuilder": "^3.6.0",
"dotenv-extended": "^1.0.4",
"request": "^2.79.0",
"restify": "^4.3.0",
Expand Down
2 changes: 1 addition & 1 deletion Node/intelligence-SpeechToText/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"url": "https://github.com/Microsoft/BotBuilder-Samples.git"
},
"dependencies": {
"botbuilder": "^3.5.1",
"botbuilder": "^3.6.0",
"dotenv-extended": "^1.0.4",
"needle": "^1.4.3",
"node-uuid": "^1.4.7",
Expand Down

0 comments on commit 39ef7a1

Please sign in to comment.