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", "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)", "description": "General Bot base library for building Node.js TypeScript Apps packages (.gbapp) and Libray packages (.gblib)",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index", "types": "dist/index",

View file

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

View file

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