diff --git a/package.json b/package.json index 7eac4f4..a48aac7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "botlib", - "version": "1.6.2", + "version": "1.6.3", "description": "General Bot base library for building Node.js TypeScript Apps packages (.gbapp) and Libray packages (.gblib)", "main": "dist/index.js", "types": "dist/index", diff --git a/src/IGBDeployer.ts b/src/IGBDeployer.ts index f7981e2..5d871fe 100644 --- a/src/IGBDeployer.ts +++ b/src/IGBDeployer.ts @@ -41,4 +41,5 @@ export interface IGBDeployer { deployBlankBot(botId: string): Promise; botExists(botId: string): Promise; rebuildIndex(instance: IGBInstance, searchSchema: any): Promise; + refreshNLPEntity(instance: IGBInstance, listName, listData) : Promise; }