botlib/src/IGBInstance.ts

104 lines
4.1 KiB
TypeScript
Raw Normal View History

2018-04-20 23:20:17 -03:00
/*****************************************************************************\
| ( )_ _ |
| _ _ _ __ _ _ __ ___ ___ _ _ | ,_)(_) ___ ___ _ |
| ( '_`\ ( '__)/'_` ) /'_ `\/' _ ` _ `\ /'_` )| | | |/',__)/' v `\ /'_`\ |
| | (_) )| | ( (_| |( (_) || ( ) ( ) |( (_| || |_ | |\__, \| (˅) |( (_) ) |
2018-04-20 23:20:17 -03:00
| | ,__/'(_) `\__,_)`\__ |(_) (_) (_)`\__,_)`\__)(_)(____/(_) (_)`\___/' |
| | | ( )_) | |
| (_) \___/' |
| |
| General Bots Copyright (c) Pragmatismo.io. All rights reserved. |
| Licensed under the AGPL-3.0. |
| |
2018-04-20 23:20:17 -03:00
| According to our dual licensing model, this program can be used either |
| under the terms of the GNU Affero General Public License, version 3, |
| or under a proprietary license. |
| |
| The texts of the GNU Affero General Public License with an additional |
| permission and of our proprietary license can be found at and |
| in the LICENSE file you have received along with this program. |
| |
| This program is distributed in the hope that it will be useful, |
2018-09-11 19:42:22 -03:00
| but WITHOUT ANY WARRANTY, without even the implied warranty of |
2018-04-20 23:20:17 -03:00
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU Affero General Public License for more details. |
| |
| "General Bots" is a registered trademark of Pragmatismo.io. |
| The licensing of the program under the AGPLv3 does not imply a |
| trademark license. Therefore any rights, title and interest in |
| our trademarks remain entirely with us. |
| |
\*****************************************************************************/
2018-10-25 18:14:15 -03:00
"use strict";
2018-04-20 23:20:17 -03:00
export interface IGBInstance {
2018-10-25 18:14:15 -03:00
botId: string;
whoAmIVideo: string;
botEndpoint: string;
authenticatorTenant: string;
authenticatorAuthorityHostUrl: string;
cloudSubscriptionId: string;
cloudUsername: string;
cloudPassword: string;
cloudLocation: string;
instanceId: number;
title: string;
2020-05-19 14:57:11 -03:00
activationCode: string;
2018-10-25 18:14:15 -03:00
description: string;
version: string;
enabledAdmin: boolean;
engineName: string;
marketplaceId: string;
textAnalyticsKey: string;
textAnalyticsEndpoint: string;
marketplacePassword: string;
webchatKey: string;
2021-06-12 16:14:20 -03:00
googleBotKey: string;
googleChatApiKey: string;
googleChatSubscriptionName: string;
2021-06-15 08:36:27 -03:00
googleClientEmail: string;
googlePrivateKey: string;
googleProjectId: string;
2018-10-25 18:14:15 -03:00
whatsappServiceKey: string;
whatsappBotKey: string;
whatsappServiceNumber: string;
whatsappServiceUrl: string;
2021-07-06 13:16:36 -03:00
facebookWorkplaceVerifyToken: string;
facebookWorkplaceAppSecret: string;
facebookWorkplaceAccessToken: string;
2018-10-25 18:14:15 -03:00
smsKey: string;
smsSecret: string;
smsServiceNumber: string;
theme: string;
ui: string;
kb: string;
nlpAppId: string;
nlpKey: string;
nlpEndpoint: string;
nlpAuthoringKey: string;
deploymentPaths: string;
speechKey: string;
speechEndpoint: string;
spellcheckerKey: string;
spellcheckerEndpoint: string;
searchHost: string;
searchKey: string;
searchIndex: string;
searchIndexer: string;
searchScore: number;
nlpScore: number;
storageUsername: string;
storagePassword: string;
storageName: string;
storageServer: string;
storageDialect: string;
storagePath: string;
adminPass: string;
2020-05-17 19:05:43 +00:00
translatorKey: string;
translatorEndpoint: string;
2020-05-23 18:41:20 -03:00
params: string;
state: string;
2021-07-06 13:16:36 -03:00
2018-10-25 18:14:15 -03:00
}