couchdb-web-node-plugin 1.0.737 → 1.0.739
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.js +1 -1
- package/helper.js +1 -1
- package/index.js +1 -1
- package/package.json +3 -1
- package/type.d.ts +2 -2
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.739",
|
|
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",
|
|
@@ -60,8 +60,10 @@
|
|
|
60
60
|
"watch": "weboptimizer build --watch"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
|
+
"pouchdb-authentication": "^1.1.3",
|
|
63
64
|
"pouchdb-find": "^9.0.0",
|
|
64
65
|
"pouchdb-node": "^9.0.0",
|
|
66
|
+
"pouchdb-validation": "^4.2.0",
|
|
65
67
|
"rxjs": "^7.8.2"
|
|
66
68
|
},
|
|
67
69
|
"devDependencies": {
|
package/type.d.ts
CHANGED
|
@@ -222,13 +222,13 @@ export interface Runner {
|
|
|
222
222
|
content: string;
|
|
223
223
|
path: string;
|
|
224
224
|
};
|
|
225
|
-
name:
|
|
225
|
+
name: string;
|
|
226
226
|
}
|
|
227
227
|
export interface BinaryRunner extends Runner {
|
|
228
228
|
arguments?: Array<string> | null | string;
|
|
229
229
|
binaryFilePath?: null | string;
|
|
230
230
|
environment?: null | Mapping;
|
|
231
|
-
|
|
231
|
+
locations: Array<string> | string;
|
|
232
232
|
}
|
|
233
233
|
export interface InPlaceRunner extends Runner {
|
|
234
234
|
packages: Array<string> | string;
|