- NEW: Now each .gbapp has it own set of syspackages loaded.

- NEW: Added support for Whatsapp external service key on bot instance model.
This commit is contained in:
Rodrigo Rodriguez 2018-05-11 22:12:57 -03:00
parent 0a29588030
commit 7b47200efa
4 changed files with 15 additions and 2 deletions

8
VERSION.md Normal file
View file

@ -0,0 +1,8 @@
## Version 0.0.16
- FIX: Compilation of Typescript into JavaScript.
## Version 0.0.15
- NEW: Now each .gbapp has it own set of syspackages loaded.
## Version 0.0.14
- NEW: Added support for Whatsapp external service key on bot instance model.

View file

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

View file

@ -45,7 +45,8 @@ export interface IGBInstance {
textAnalyticsKey: string;
marketplacePassword: string;
webchatKey: string;
whatsappKey: string;
whatsappServiceKey: string;
whatsappBotKey: string;
theme: string;
ui: string;
kb: string;

View file

@ -39,6 +39,10 @@ import { Session } from 'botbuilder';
"use strict";
export interface IGBPackage{
/** Each app has its own set of sys packages. */
sysPackages: IGBPackage[];
/** Called when a package is being loaded, once per server or at demand. */
loadPackage(core: IGBCoreService, sequelize: Sequelize): void;