2 Commits

Author SHA1 Message Date
7fd110d56c 1.0.5 2020-03-26 21:45:03 +00:00
bb7e9e75ba fix(fix(AAgHandler): now has mandatory async start and async stop methods): update 2020-03-26 21:45:03 +00:00
3 changed files with 5 additions and 2 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@apiglobal/sdk",
"version": "1.0.4",
"version": "1.0.5",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@apiglobal/sdk",
"version": "1.0.4",
"version": "1.0.5",
"private": false,
"description": "an sdk package for api.global",
"main": "dist_ts/index.js",

View File

@ -8,4 +8,7 @@ export abstract class AAgHandler<TClaim> {
public abstract slug: string;
public abstract handleRequest (authInfoArg: AuthInfo<TClaim>, request: plugins.tsclass.network.ISimpleRequest): Promise<plugins.tsclass.network.ISimpleResponse>;
public abstract start(): Promise<any>;
public abstract stop(): Promise<any>;
}