couchdb-web-node-plugin 2.0.830 → 2.0.831
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/helper.js +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/type.d.ts +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "couchdb-web-node-plugin",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.831",
|
|
4
4
|
"description": "A couchdb server, model instance conflict handler, rest api, authentication, session management, schema validator and model relation guarantee for webNode.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"api",
|
package/type.d.ts
CHANGED
|
@@ -38,6 +38,9 @@ export type DatabaseFetch = PouchDB.Core.Options['fetch'];
|
|
|
38
38
|
export type DatabaseResponse = PouchDB.Core.Response;
|
|
39
39
|
export type Document<Type extends object = PlainObject> = PouchDB.Core.Document<Type>;
|
|
40
40
|
export type ExistingDocument<Type extends object = PlainObject> = PouchDB.Core.ExistingDocument<Type>;
|
|
41
|
+
export type DocumentDeleteMeta = PouchDB.Core.IdMeta & {
|
|
42
|
+
_deleted: boolean;
|
|
43
|
+
};
|
|
41
44
|
export type DocumentGetMeta = PouchDB.Core.GetMeta;
|
|
42
45
|
export type DocumentIDMeta = PouchDB.Core.IdMeta;
|
|
43
46
|
export type DocumentRevisionIDMeta = PouchDB.Core.RevisionIdMeta;
|