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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "couchdb-web-node-plugin",
3
- "version": "1.0.737",
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: Array<string> | string;
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
- location: Array<string> | string;
231
+ locations: Array<string> | string;
232
232
  }
233
233
  export interface InPlaceRunner extends Runner {
234
234
  packages: Array<string> | string;