From 2732f2f9c1303a8ab811678a48272bfbb673355e Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Thu, 30 Sep 2021 16:03:43 -0300 Subject: [PATCH] new(teams.gblib): Teams support for creation of new bots. --- package.json | 2 +- src/IGBDeployer.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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; }