fix(basic.gblib): TODO removal.
This commit is contained in:
parent
fbbcdeec4c
commit
ffd746ae94
3 changed files with 2 additions and 3 deletions
|
@ -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",
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -86,7 +86,6 @@ export interface IGBInstance {
|
|||
searchKey: string;
|
||||
searchIndex: string;
|
||||
searchIndexer: string;
|
||||
nlpVsSearch: number;
|
||||
searchScore: number;
|
||||
nlpScore: number;
|
||||
storageUsername: string;
|
||||
|
|
Loading…
Add table
Reference in a new issue