Skip to content

Commit

Permalink
Merge pull request #8 from hapinessjs/next
Browse files Browse the repository at this point in the history
release(version): v1.0.3
  • Loading branch information
akanass committed Dec 20, 2017
2 parents 6828646 + d0c5db6 commit b45eebb
Show file tree
Hide file tree
Showing 7 changed files with 138 additions and 175 deletions.
13 changes: 12 additions & 1 deletion README.md
Expand Up @@ -60,7 +60,7 @@ $ yarn add @hapiness/etcd3 @hapiness/core rxjs
```javascript
"dependencies": {
"@hapiness/core": "^1.3.0",
"@hapiness/etcd3": "^1.0.2",
"@hapiness/etcd3": "^1.0.3",
   "rxjs", "^5.5.5"
   //...
}
Expand Down Expand Up @@ -234,6 +234,17 @@ public etcd3Client(): Etcd3;
*/
public get(key: string, format: ResponseFormat = ResponseFormat.String): Observable<string | object | Buffer | null | Error>;

/**
*
* Get all keys and values stored under the given `prefix`.
*
* @param {string} prefix The prefix under which you want to start looking
*
* @returns { { [key: string]: string } } An object having all path as keys and all values stored under them
*
*/
public getWithPrefix(_prefix: string): Observable<{ [key: string]: string }>;

/**
*
* Append the value `value` at path `key`.
Expand Down
156 changes: 51 additions & 105 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b45eebb

Please sign in to comment.