diff --git a/package.json b/package.json index d62d5ae..2638f7c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "botlib", - "version": "1.10.8", + "version": "1.10.9", "description": "General Bot base library for building Node.js TypeScript Apps packages (.gbapp) and Libray packages (.gblib)", "main": "dist/index.js", "types": "dist/index", @@ -49,4 +49,4 @@ "typedoc": "0.22.8", "typescript": "4.4.4" } -} +} \ No newline at end of file diff --git a/src/IGBDeployer.ts b/src/IGBDeployer.ts index aef2817..c67785f 100644 --- a/src/IGBDeployer.ts +++ b/src/IGBDeployer.ts @@ -38,9 +38,9 @@ import { GBMinInstance } from "./GBMinInstance"; export interface IGBDeployer { undeployPackageFromLocalPath(instance: IGBInstance, localPath: string): Promise; deployPackage(min: GBMinInstance, localPath: string): Promise; - deployBlankBot(botId: string): Promise; + deployBlankBot(botId: string, mobile: string, email: string): Promise; botExists(botId: string): Promise; rebuildIndex(instance: IGBInstance, searchSchema: any): Promise; - refreshNLPEntity(instance: IGBInstance, listName, listData) : Promise; + refreshNLPEntity(instance: IGBInstance, listName, listData): Promise; getBotManifest(instance: IGBInstance): Promise; }