rest-on-couch-client
Advanced tools
Comparing version 3.3.2 to 3.3.3
# Changelog | ||
### [3.3.3](https://www.github.com/cheminfo/rest-on-couch-client/compare/v3.3.2...v3.3.3) (2021-11-15) | ||
### Bug Fixes | ||
* startKey and endKey should actually be startkey and endkey ([ba1c9bb](https://www.github.com/cheminfo/rest-on-couch-client/commit/ba1c9bb02f398189b854e0e4f247e9300d764e3a)) | ||
### [3.3.2](https://www.github.com/cheminfo/rest-on-couch-client/compare/v3.3.1...v3.3.2) (2021-11-02) | ||
@@ -4,0 +11,0 @@ |
@@ -72,4 +72,4 @@ /// <reference types="node" /> | ||
export interface ICouchViewBase<KeyType> { | ||
startKey?: KeyType; | ||
endKey?: KeyType; | ||
startkey?: KeyType; | ||
endkey?: KeyType; | ||
key?: KeyType; | ||
@@ -100,4 +100,4 @@ } | ||
key?: KeyType; | ||
startKey?: KeyType; | ||
endKey?: KeyType; | ||
startkey?: KeyType; | ||
endkey?: KeyType; | ||
} | ||
@@ -104,0 +104,0 @@ export interface IReduceQueryResult<KeyType = any, ValueType = any> { |
{ | ||
"name": "rest-on-couch-client", | ||
"version": "3.3.2", | ||
"version": "3.3.3", | ||
"description": "A nodejs / browser client for rest-on-couch backend", | ||
@@ -5,0 +5,0 @@ "main": "./lib/index.js", |
227231