diff --git a/package.json b/package.json index 01b8e90..f479863 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "botlib", - "version": "1.9.3", + "version": "1.9.4", "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 5d871fe..5c23e3d 100644 --- a/src/IGBDeployer.ts +++ b/src/IGBDeployer.ts @@ -42,4 +42,5 @@ export interface IGBDeployer { botExists(botId: string): Promise; rebuildIndex(instance: IGBInstance, searchSchema: any): Promise; refreshNLPEntity(instance: IGBInstance, listName, listData) : Promise; + getBotManifest(instance: IGBInstance): Promise; }