new(teams.gblib): Teams support for creation of new bots.

This commit is contained in:
Rodrigo Rodriguez 2021-09-30 16:03:43 -03:00
parent a6fa4b2fd2
commit 2732f2f9c1
2 changed files with 2 additions and 1 deletions

View file

@ -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",

View file

@ -42,4 +42,5 @@ export interface IGBDeployer {
botExists(botId: string): Promise<Boolean>;
rebuildIndex(instance: IGBInstance, searchSchema: any): Promise<void>;
refreshNLPEntity(instance: IGBInstance, listName, listData) : Promise<void>;
getBotManifest(instance: IGBInstance): Promise<Buffer>;
}