fix(basic.gblib): TODO removal.

This commit is contained in:
rodrigorodriguez 2022-12-26 13:36:36 -03:00
parent fbbcdeec4c
commit ffd746ae94
3 changed files with 2 additions and 3 deletions

View file

@ -1,6 +1,6 @@
{
"name": "botlib",
"version": "3.0.0",
"version": "3.0.1",
"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

@ -43,7 +43,7 @@ export interface IGBConversationalService {
sendAudio(min: GBMinInstance, step: GBDialogStep, url: string);
prompt(min: GBMinInstance, step: GBDialogStep, text: string);
sendSms(min: GBMinInstance, mobile: string, text: string);
routeNLP(step: GBDialogStep, min: GBMinInstance, text: string): Promise<boolean>;
routeNLP(step: GBDialogStep, min: GBMinInstance, text: string);
getCurrentLanguage(step: GBDialogStep);
getNewMobileCode();
sendMarkdownToMobile(min: GBMinInstance, step: GBDialogStep, mobile: string, text: string);

View file

@ -86,7 +86,6 @@ export interface IGBInstance {
searchKey: string;
searchIndex: string;
searchIndexer: string;
nlpVsSearch: number;
searchScore: number;
nlpScore: number;
storageUsername: string;