fix(core.gblib): Removal of old fields.
This commit is contained in:
parent
bbf9b43608
commit
22c7250552
5 changed files with 4 additions and 14 deletions
2
package-lock.json
generated
2
package-lock.json
generated
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "botlib",
|
"name": "botlib",
|
||||||
"version": "1.5.0",
|
"version": "1.5.1",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "botlib",
|
"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)",
|
"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",
|
||||||
|
@ -37,17 +37,11 @@
|
||||||
"sequelize": "5.21.5",
|
"sequelize": "5.21.5",
|
||||||
"sequelize-typescript": "1.1.0",
|
"sequelize-typescript": "1.1.0",
|
||||||
"underscore": "1.9.1",
|
"underscore": "1.9.1",
|
||||||
"wait-until": "0.0.2",
|
|
||||||
"winston": "3.2.1"
|
"winston": "3.2.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/chai": "4.2.7",
|
|
||||||
"@types/mocha": "5.2.7",
|
|
||||||
"@types/sequelize": "4.28.8",
|
"@types/sequelize": "4.28.8",
|
||||||
"@types/winston": "2.4.4",
|
"@types/winston": "2.4.4",
|
||||||
"chai": "4.2.0",
|
|
||||||
"mocha": "6.2.2",
|
|
||||||
"mocha-typescript": "1.1.17",
|
|
||||||
"ts-node": "8.5.4",
|
"ts-node": "8.5.4",
|
||||||
"typedoc": "0.15.6",
|
"typedoc": "0.15.6",
|
||||||
"typescript": "3.7.4"
|
"typescript": "3.7.4"
|
||||||
|
|
|
@ -40,9 +40,7 @@ export interface IGBAdminService {
|
||||||
updateSecurityInfo(
|
updateSecurityInfo(
|
||||||
instanceId: number,
|
instanceId: number,
|
||||||
authenticatorTenant: string,
|
authenticatorTenant: string,
|
||||||
authenticatorAuthorityHostUrl: string,
|
authenticatorAuthorityHostUrl: string
|
||||||
authenticatorClientId: string,
|
|
||||||
authenticatorClientSecret: string
|
|
||||||
): Promise<IGBInstance>;
|
): Promise<IGBInstance>;
|
||||||
|
|
||||||
getValue(instanceId: number, key: string): Promise<string>;
|
getValue(instanceId: number, key: string): Promise<string>;
|
||||||
|
|
|
@ -46,7 +46,7 @@ export interface IGBCoreService {
|
||||||
syncDatabaseStructure()
|
syncDatabaseStructure()
|
||||||
loadInstances(): Promise<IGBInstance[]>;
|
loadInstances(): Promise<IGBInstance[]>;
|
||||||
deleteInstance(botId: string): Promise<void>;
|
deleteInstance(botId: string): Promise<void>;
|
||||||
loadInstance(botId: string): Promise<IGBInstance>;
|
loadInstanceByBotId(botId: string): Promise<IGBInstance>;
|
||||||
loadInstanceById(instanceId: number): Promise<IGBInstance>;
|
loadInstanceById(instanceId: number): Promise<IGBInstance>;
|
||||||
initStorage(): Promise<any>;
|
initStorage(): Promise<any>;
|
||||||
createBootInstance(core: IGBCoreService, installationDeployer: IGBInstallationDeployer, proxyAddress: string);
|
createBootInstance(core: IGBCoreService, installationDeployer: IGBInstallationDeployer, proxyAddress: string);
|
||||||
|
|
|
@ -37,8 +37,6 @@ export interface IGBInstance {
|
||||||
whoAmIVideo: string;
|
whoAmIVideo: string;
|
||||||
botEndpoint: string;
|
botEndpoint: string;
|
||||||
authenticatorTenant: string;
|
authenticatorTenant: string;
|
||||||
authenticatorClientId: string;
|
|
||||||
authenticatorClientSecret: string;
|
|
||||||
authenticatorAuthorityHostUrl: string;
|
authenticatorAuthorityHostUrl: string;
|
||||||
cloudSubscriptionId: string;
|
cloudSubscriptionId: string;
|
||||||
cloudUsername: string;
|
cloudUsername: string;
|
||||||
|
|
Loading…
Add table
Reference in a new issue