fix(core.gblib): Removal of old fields.

This commit is contained in:
Rodrigo Rodriguez 2020-05-15 12:13:29 -03:00
parent bbf9b43608
commit 22c7250552
5 changed files with 4 additions and 14 deletions

2
package-lock.json generated
View file

@ -1,6 +1,6 @@
{
"name": "botlib",
"version": "1.5.0",
"version": "1.5.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View file

@ -1,6 +1,6 @@
{
"name": "botlib",
"version": "1.5.0",
"version": "1.5.1",
"description": "General Bot base library for building Node.js TypeScript Apps packages (.gbapp) and Libray packages (.gblib)",
"main": "dist/index.js",
"types": "dist/index",
@ -37,17 +37,11 @@
"sequelize": "5.21.5",
"sequelize-typescript": "1.1.0",
"underscore": "1.9.1",
"wait-until": "0.0.2",
"winston": "3.2.1"
},
"devDependencies": {
"@types/chai": "4.2.7",
"@types/mocha": "5.2.7",
"@types/sequelize": "4.28.8",
"@types/winston": "2.4.4",
"chai": "4.2.0",
"mocha": "6.2.2",
"mocha-typescript": "1.1.17",
"ts-node": "8.5.4",
"typedoc": "0.15.6",
"typescript": "3.7.4"

View file

@ -40,9 +40,7 @@ export interface IGBAdminService {
updateSecurityInfo(
instanceId: number,
authenticatorTenant: string,
authenticatorAuthorityHostUrl: string,
authenticatorClientId: string,
authenticatorClientSecret: string
authenticatorAuthorityHostUrl: string
): Promise<IGBInstance>;
getValue(instanceId: number, key: string): Promise<string>;

View file

@ -46,7 +46,7 @@ export interface IGBCoreService {
syncDatabaseStructure()
loadInstances(): Promise<IGBInstance[]>;
deleteInstance(botId: string): Promise<void>;
loadInstance(botId: string): Promise<IGBInstance>;
loadInstanceByBotId(botId: string): Promise<IGBInstance>;
loadInstanceById(instanceId: number): Promise<IGBInstance>;
initStorage(): Promise<any>;
createBootInstance(core: IGBCoreService, installationDeployer: IGBInstallationDeployer, proxyAddress: string);

View file

@ -37,8 +37,6 @@ export interface IGBInstance {
whoAmIVideo: string;
botEndpoint: string;
authenticatorTenant: string;
authenticatorClientId: string;
authenticatorClientSecret: string;
authenticatorAuthorityHostUrl: string;
cloudSubscriptionId: string;
cloudUsername: string;