- 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:
parent
0a29588030
commit
7b47200efa
4 changed files with 15 additions and 2 deletions
8
VERSION.md
Normal file
8
VERSION.md
Normal 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.
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "botlib",
|
"name": "botlib",
|
||||||
"version": "0.0.13",
|
"version": "0.0.16",
|
||||||
"description": "General Bots base library for building Node.js TypeScript Apps packages (.gbapp)",
|
"description": "General Bots 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",
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,8 @@ export interface IGBInstance {
|
||||||
textAnalyticsKey: string;
|
textAnalyticsKey: string;
|
||||||
marketplacePassword: string;
|
marketplacePassword: string;
|
||||||
webchatKey: string;
|
webchatKey: string;
|
||||||
whatsappKey: string;
|
whatsappServiceKey: string;
|
||||||
|
whatsappBotKey: string;
|
||||||
theme: string;
|
theme: string;
|
||||||
ui: string;
|
ui: string;
|
||||||
kb: string;
|
kb: string;
|
||||||
|
|
|
||||||
|
|
@ -39,6 +39,10 @@ import { Session } from 'botbuilder';
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
export interface IGBPackage{
|
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. */
|
/** Called when a package is being loaded, once per server or at demand. */
|
||||||
loadPackage(core: IGBCoreService, sequelize: Sequelize): void;
|
loadPackage(core: IGBCoreService, sequelize: Sequelize): void;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue