new(all): Facebook workplace support.

This commit is contained in:
Rodrigo Rodriguez 2021-07-06 13:16:36 -03:00
parent 29f5b36812
commit ce41f749ea
2 changed files with 5 additions and 1 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "botlib", "name": "botlib",
"version": "1.8.3", "version": "1.9.2",
"description": "General Bot base library for building Node.js TypeScript Apps packages (.gbapp) and Libray packages (.gblib)", "description": "General Bot base library for building Node.js TypeScript Apps packages (.gbapp) and Libray packages (.gblib)",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index", "types": "dist/index",

View file

@ -64,6 +64,9 @@ export interface IGBInstance {
whatsappBotKey: string; whatsappBotKey: string;
whatsappServiceNumber: string; whatsappServiceNumber: string;
whatsappServiceUrl: string; whatsappServiceUrl: string;
facebookWorkplaceVerifyToken: string;
facebookWorkplaceAppSecret: string;
facebookWorkplaceAccessToken: string;
smsKey: string; smsKey: string;
smsSecret: string; smsSecret: string;
smsServiceNumber: string; smsServiceNumber: string;
@ -97,4 +100,5 @@ export interface IGBInstance {
translatorEndpoint: string; translatorEndpoint: string;
params: string; params: string;
state: string; state: string;
} }