couchdb-web-node-plugin 1.0.532 → 1.0.533
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/package.json +1 -1
- package/type.d.ts +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "couchdb-web-node-plugin",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.533",
|
|
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
|
@@ -20,8 +20,8 @@ export declare type Attachments = PouchDB.Core.Attachments;
|
|
|
20
20
|
export declare type FullAttachment = PouchDB.Core.FullAttachment;
|
|
21
21
|
export declare type StubAttachment = PouchDB.Core.StubAttachment;
|
|
22
22
|
export declare type ChangesMeta = PouchDB.Core.ChangesMeta;
|
|
23
|
-
export declare type ChangesResponseChange<Type
|
|
24
|
-
export declare type ChangesStream<Type
|
|
23
|
+
export declare type ChangesResponseChange<Type extends Mapping<unknown> = Mapping<unknown>> = PouchDB.Core.ChangesResponseChange<Type>;
|
|
24
|
+
export declare type ChangesStream<Type extends Mapping<unknown> = Mapping<unknown>> = PouchDB.Core.Changes<Type>;
|
|
25
25
|
export declare type ChangesStreamOptions = PouchDB.Core.ChangesOptions;
|
|
26
26
|
export declare type Connection = PouchDB.Database;
|
|
27
27
|
export declare type Connector = PouchDB.Static;
|
|
@@ -30,8 +30,8 @@ export declare type DatabaseError = PouchDB.Core.Error;
|
|
|
30
30
|
export declare type DatabaseFetch = PouchDB.Core.Options['fetch'];
|
|
31
31
|
export declare type DatabaseResponse = PouchDB.Core.Response;
|
|
32
32
|
export declare type DeleteIndexOptions = PouchDB.Find.DeleteIndexOptions;
|
|
33
|
-
export declare type Document<Type = PlainObject> = PouchDB.Core.Document<Type>;
|
|
34
|
-
export declare type ExistingDocument<Type = PlainObject> = PouchDB.Core.ExistingDocument<Type>;
|
|
33
|
+
export declare type Document<Type extends Mapping<unknown> = PlainObject> = PouchDB.Core.Document<Type>;
|
|
34
|
+
export declare type ExistingDocument<Type extends Mapping<unknown> = PlainObject> = PouchDB.Core.ExistingDocument<Type>;
|
|
35
35
|
export declare type DocumentGetMeta = PouchDB.Core.GetMeta;
|
|
36
36
|
export declare type DocumentIDMeta = PouchDB.Core.IdMeta;
|
|
37
37
|
export declare type DocumentRevisionIDMeta = PouchDB.Core.RevisionIdMeta;
|