From 98af278afa7427a5052a53f997f98d252afc4922 Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Sun, 18 Oct 2020 17:46:23 -0300 Subject: [PATCH] new(core.gbapp): NLP automation for entities. --- package.json | 2 +- src/IGBDeployer.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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; }