New members in bot instance interface.
This commit is contained in:
parent
e6484590c0
commit
0a29588030
4 changed files with 7 additions and 4 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -1,3 +1,3 @@
|
||||||
node_modules
|
node_modules
|
||||||
/work
|
docs
|
||||||
/docs
|
dist
|
||||||
1
.npmignore
Normal file
1
.npmignore
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
node_modules
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "botlib",
|
"name": "botlib",
|
||||||
"version": "0.0.12",
|
"version": "0.0.13",
|
||||||
"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",
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
"dotenv-extended": "^1.0.4",
|
"dotenv-extended": "^1.0.4",
|
||||||
"eslint": "^4.19.1",
|
"eslint": "^4.19.1",
|
||||||
"iconv-lite": "^0.4.19",
|
"iconv-lite": "^0.4.19",
|
||||||
"pragmatismo-io-framework": "^1.0.3",
|
"pragmatismo-io-framework": "^1.0.11",
|
||||||
"reflect-metadata": "^0.1.12",
|
"reflect-metadata": "^0.1.12",
|
||||||
"sequelize": "^4.37.6",
|
"sequelize": "^4.37.6",
|
||||||
"text-parse": "^3.0.0",
|
"text-parse": "^3.0.0",
|
||||||
|
|
|
||||||
|
|
@ -45,10 +45,12 @@ export interface IGBInstance {
|
||||||
textAnalyticsKey: string;
|
textAnalyticsKey: string;
|
||||||
marketplacePassword: string;
|
marketplacePassword: string;
|
||||||
webchatKey: string;
|
webchatKey: string;
|
||||||
|
whatsappKey: string;
|
||||||
theme: string;
|
theme: string;
|
||||||
ui: string;
|
ui: string;
|
||||||
kb: string;
|
kb: string;
|
||||||
nlpServerUrl: string;
|
nlpServerUrl: string;
|
||||||
|
spellcheckerKey: string;
|
||||||
searchHost: string;
|
searchHost: string;
|
||||||
searchKey: string;
|
searchKey: string;
|
||||||
searchIndex: string;
|
searchIndex: string;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue