Skip to content

Commit

Permalink
fix(basic.gblib): TODO removal.
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigorodriguez committed Dec 26, 2022
1 parent fbbcdee commit ffd746a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/IGBConversationalService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
1 change: 0 additions & 1 deletion src/IGBInstance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ export interface IGBInstance {
searchKey: string;
searchIndex: string;
searchIndexer: string;
nlpVsSearch: number;
searchScore: number;
nlpScore: number;
storageUsername: string;
Expand Down

0 comments on commit ffd746a

Please sign in to comment.