couchdb-web-node-plugin 1.0.740 → 1.0.741

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.740",
3
+ "version": "1.0.741",
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",
@@ -182,8 +182,8 @@
182
182
  "__evaluate__": "`-couch_ini /usr/lib/couchdb/etc/default.ini /usr/lib/couchdb/etc/datadirs.ini /etc/couchdb/local.ini ${path.resolve(self.couchdb.path, 'local.ini')}`"
183
183
  }
184
184
  },
185
- "location": "/usr/lib/couchdb/bin/",
186
- "name": "couchdb"
185
+ "locations": "/usr/lib/couchdb/bin/",
186
+ "names": "couchdb"
187
187
  },
188
188
  {
189
189
  "adminUserConfigurationPath": "_config/admins",
@@ -206,11 +206,11 @@
206
206
  "__evaluate__": "`${self.couchdb.backend.configuration['httpd/port']}`"
207
207
  }
208
208
  ],
209
- "location": [
209
+ "locations": [
210
210
  "node_modules/.bin/",
211
211
  "../.bin/"
212
212
  ],
213
- "name": "pouchdb-server"
213
+ "names": "pouchdb-server"
214
214
  },
215
215
  {
216
216
  "adminUserConfigurationPath": "_config/admins",
package/type.d.ts CHANGED
@@ -223,7 +223,7 @@ export interface Runner {
223
223
  content: string;
224
224
  path: string;
225
225
  };
226
- name: string;
226
+ names: Array<string> | string;
227
227
  }
228
228
  export interface BinaryRunner extends Runner {
229
229
  arguments?: Array<string> | null | string;