Skip to content

Commit

Permalink
fix(all): updated setValue to be an async function.
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigorodriguez committed Dec 26, 2020
1 parent 241bc5a commit 5253b61
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "botlib",
"version": "1.7.0",
"version": "1.7.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",
Expand Down
2 changes: 1 addition & 1 deletion src/IGBAdminService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ export interface IGBAdminService {
): Promise<IGBInstance>;

getValue(instanceId: number, key: string): Promise<string>;
setValue(instanceId: number, key: string, value: string): void;
setValue(instanceId: number, key: string, value: string): Promise<void>;
publish(min: GBMinInstance, packageName: string, republish: boolean): Promise<void>;
}

0 comments on commit 5253b61

Please sign in to comment.