couchdb-web-node-plugin 1.0.777 → 1.0.779
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/databaseHelper.d.ts +2 -1
- package/databaseHelper.js +1 -1
- package/helper.d.ts +4 -3
- package/helper.js +1 -1
- package/index.js +1 -1
- package/package.json +4 -4
package/databaseHelper.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { Mapping } from 'clientnode';
|
|
1
|
+
import { Logger, Mapping } from 'clientnode';
|
|
2
2
|
import { AllowedModelRolesMapping, Attachment, BaseModelConfiguration, Document, Models, PartialFullDocument, SecuritySettings, UserContext } from './type';
|
|
3
3
|
/**
|
|
4
4
|
* WebNode plugin interface with all provided hooks.
|
|
5
5
|
*/
|
|
6
|
+
export declare const log: Logger;
|
|
6
7
|
/**
|
|
7
8
|
* Authorizes given document update against given mapping of allowed roles for
|
|
8
9
|
* writing into corresponding model instances.
|