couchdb-web-node-plugin 1.0.751 → 1.0.753
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 +2 -1
- package/type.d.ts +0 -1
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.753",
|
|
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",
|
|
@@ -85,6 +85,7 @@
|
|
|
85
85
|
"express-pouchdb": "^4.2.0",
|
|
86
86
|
"jest": "^29.7.0",
|
|
87
87
|
"jsdoc": "^4.0.4",
|
|
88
|
+
"mkdirp": "^3.0.1",
|
|
88
89
|
"node-fetch": "^3.3.2",
|
|
89
90
|
"rimraf": "^6.0.1",
|
|
90
91
|
"typescript-eslint": "^8.29.1",
|
package/type.d.ts
CHANGED
|
@@ -373,7 +373,6 @@ export interface PluginHandler extends BasePluginHandler {
|
|
|
373
373
|
body: FindRequest<PlainObject>;
|
|
374
374
|
};
|
|
375
375
|
response: HTTP1ServerResponse;
|
|
376
|
-
result: FindResponse<object>;
|
|
377
376
|
}>): Promise<FindResponse<object> | undefined>;
|
|
378
377
|
/**
|
|
379
378
|
* Hook before registering pouchdb routes into the express server
|