fix(NLP): Update of platform to mach NLP URL updates and versioning.

This commit is contained in:
Rodrigo Rodriguez 2019-03-01 15:37:36 -03:00
parent ef026d1fe2
commit 1747f1042d
3 changed files with 1907 additions and 479 deletions

2364
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
{ {
"name": "botlib", "name": "botlib",
"version": "0.1.12", "version": "0.1.19",
"description": "General Bot base library for building Node.js TypeScript Apps packages (.gbapp) and Libray packages (.gblib)", "description": "General Bot base library for building Node.js TypeScript Apps packages (.gbapp) and Libray packages (.gblib)",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
@ -16,12 +16,11 @@
}, },
"dependencies": { "dependencies": {
"async": "2.6.2", "async": "2.6.2",
"botbuilder": "4.2.1", "botbuilder": "4.1.7",
"botbuilder-ai": "4.2.1", "botbuilder-ai": "4.2.0",
"botbuilder-azure": "4.2.1", "botbuilder-azure": "4.2.0",
"botbuilder-choices": "4.0.0-preview1.2", "botbuilder-choices": "4.0.0-preview1.2",
"botbuilder-dialogs": "4.2.1", "botbuilder-dialogs": "4.2.0",
"botbuilder-location": "2.0.0",
"botbuilder-prompts": "4.0.0-preview1.2", "botbuilder-prompts": "4.0.0-preview1.2",
"chrono-node": "1.3.11", "chrono-node": "1.3.11",
"dotenv-extended": "2.3.0", "dotenv-extended": "2.3.0",
@ -29,7 +28,7 @@
"ms": "2.1.1", "ms": "2.1.1",
"pragmatismo-io-framework": "1.0.19", "pragmatismo-io-framework": "1.0.19",
"reflect-metadata": "0.1.13", "reflect-metadata": "0.1.13",
"sequelize": "4.42.0", "sequelize": "4.42.1",
"sequelize-typescript": "0.6.7", "sequelize-typescript": "0.6.7",
"wait-until": "0.0.2", "wait-until": "0.0.2",
"winston": "3.2.1" "winston": "3.2.1"
@ -37,10 +36,10 @@
"devDependencies": { "devDependencies": {
"@types/chai": "4.1.7", "@types/chai": "4.1.7",
"@types/mocha": "5.2.6", "@types/mocha": "5.2.6",
"@types/sequelize": "4.27.37", "@types/sequelize": "4.27.38",
"@types/winston": "2.4.4", "@types/winston": "2.4.4",
"chai": "4.2.0", "chai": "4.2.0",
"mocha": "6.0.1", "mocha": "6.0.2",
"mocha-typescript": "1.1.17", "mocha-typescript": "1.1.17",
"ts-node": "8.0.2", "ts-node": "8.0.2",
"typedoc": "0.14.2", "typedoc": "0.14.2",

View file

@ -54,6 +54,11 @@ export interface IGBPackage{
*/ */
unloadPackage(core: IGBCoreService): void unloadPackage(core: IGBCoreService): void
/**
* Called when a new bot instance is loaded.
*/
getDialogs(min: GBMinInstance)
/** /**
* Called when a new bot instance is loaded. * Called when a new bot instance is loaded.
*/ */