- NEW: Whatsapp directline client is now working in preview.

This commit is contained in:
Rodrigo Rodriguez 2018-05-12 16:09:34 -03:00
parent 6d8beeb15f
commit 1308255506
3 changed files with 14 additions and 1 deletions

View file

@ -1,5 +1,17 @@
# History # History
## Version 0.0.20
- NEW: Whatsapp directline client is now working in preview.
## Version 0.0.19
- NEW: Parameter whatsappServiceUrl added to support other whatsapp channels.
## Version 0.0.18
- FIX: Missing TS compilation.
## Version 0.0.17 ## Version 0.0.17
- NEW: The bot now has an associated mobile Whatsapp number; - NEW: The bot now has an associated mobile Whatsapp number;

View file

@ -1,6 +1,6 @@
{ {
"name": "botlib", "name": "botlib",
"version": "0.0.18", "version": "0.0.20",
"description": "General Bot base library for building Node.js TypeScript Apps packages (.gbapp)", "description": "General Bot base library for building Node.js TypeScript Apps packages (.gbapp)",
"main": "dist/src/index.js", "main": "dist/src/index.js",
"types": "dist/src/index.d.ts", "types": "dist/src/index.d.ts",

View file

@ -48,6 +48,7 @@ export interface IGBInstance {
whatsappServiceKey: string; whatsappServiceKey: string;
whatsappBotKey: string; whatsappBotKey: string;
whatsappServiceNumber: string; whatsappServiceNumber: string;
whatsappServiceUrl: string;
theme: string; theme: string;
ui: string; ui: string;
kb: string; kb: string;