diff --git a/VERSION.md b/VERSION.md index 9b2de6d..025de5c 100644 --- a/VERSION.md +++ b/VERSION.md @@ -1,5 +1,9 @@ # History +## Version 0.0.24 + +- NEW: Support for Speech recognition/synthesis. + ## Version 0.0.23 - FIX: Trying to remove botbuilder dependency on hoek vunerability with no success, MS is promissing update it: https://github.com/Microsoft/BotBuilder/issues/4206. diff --git a/package.json b/package.json index a9a6996..67ffbce 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "botlib", - "version": "0.0.23", + "version": "0.0.24", "description": "General Bot base library for building Node.js TypeScript Apps packages (.gbapp)", "main": "dist/src/index.js", "types": "dist/src/index.d.ts", diff --git a/src/IGBInstance.ts b/src/IGBInstance.ts index 2b9fa27..e496dd0 100644 --- a/src/IGBInstance.ts +++ b/src/IGBInstance.ts @@ -54,6 +54,7 @@ export interface IGBInstance { ui: string; kb: string; nlpServerUrl: string; + speechKey: string; spellcheckerKey: string; searchHost: string; searchKey: string;