new(all): Twitter support.
This commit is contained in:
parent
b806534735
commit
f404cf2383
2 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "botlib",
|
||||
"version": "1.10.8",
|
||||
"version": "1.10.9",
|
||||
"description": "General Bot base library for building Node.js TypeScript Apps packages (.gbapp) and Libray packages (.gblib)",
|
||||
"main": "dist/index.js",
|
||||
"types": "dist/index",
|
||||
|
@ -49,4 +49,4 @@
|
|||
"typedoc": "0.22.8",
|
||||
"typescript": "4.4.4"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -38,9 +38,9 @@ import { GBMinInstance } from "./GBMinInstance";
|
|||
export interface IGBDeployer {
|
||||
undeployPackageFromLocalPath(instance: IGBInstance, localPath: string): Promise<void>;
|
||||
deployPackage(min: GBMinInstance, localPath: string): Promise<void>;
|
||||
deployBlankBot(botId: string): Promise<IGBInstance>;
|
||||
deployBlankBot(botId: string, mobile: string, email: string): Promise<IGBInstance>;
|
||||
botExists(botId: string): Promise<Boolean>;
|
||||
rebuildIndex(instance: IGBInstance, searchSchema: any): Promise<void>;
|
||||
refreshNLPEntity(instance: IGBInstance, listName, listData) : Promise<void>;
|
||||
refreshNLPEntity(instance: IGBInstance, listName, listData): Promise<void>;
|
||||
getBotManifest(instance: IGBInstance): Promise<Buffer>;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue