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",
|
"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",
|
||||||
|
|
|
@ -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);
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue