couchdb-services
Advanced tools
Comparing version 1.0.1 to 1.0.2
16
index.js
@@ -28,3 +28,3 @@ let moduleConnector = require("module-connector"); | ||
CouchDBServices.prototype.createDabase = async(strDatabaseName) => { | ||
CouchDBServices.prototype.createDabase = async function(strDatabaseName) { | ||
let output = new moduleConnector(); | ||
@@ -44,3 +44,3 @@ try { | ||
CouchDBServices.prototype.get = async(idDoc) => { | ||
CouchDBServices.prototype.get = async function(idDoc) { | ||
let output = new moduleConnector(); | ||
@@ -61,3 +61,3 @@ try { | ||
CouchDBServices.prototype.getAll = async(arrayQuery = { mangoQuery: { selector: {}, limit: 1000 } }, arrayIndex = false) => { | ||
CouchDBServices.prototype.getAll = async function(arrayQuery = { mangoQuery: { selector: {}, limit: 1000 } }, arrayIndex = false) { | ||
let output = new moduleConnector(); | ||
@@ -82,3 +82,3 @@ try { | ||
CouchDBServices.prototype.create = async(newDoc) => { | ||
CouchDBServices.prototype.create = async function(newDoc) { | ||
let output = new moduleConnector(); | ||
@@ -99,3 +99,3 @@ try { | ||
CouchDBServices.prototype.update = async(doc) => { | ||
CouchDBServices.prototype.update = async function(doc) { | ||
let output = new moduleConnector(); | ||
@@ -116,3 +116,3 @@ try { | ||
CouchDBServices.prototype.delete = async(doc) => { | ||
CouchDBServices.prototype.delete = async function(doc) { | ||
let output = new moduleConnector(); | ||
@@ -134,3 +134,3 @@ try { | ||
CouchDBServices.prototype.view = async(designname, viewname, params) => { | ||
CouchDBServices.prototype.view = async function(designname, viewname, params) { | ||
let output = new moduleConnector(); | ||
@@ -156,3 +156,3 @@ try { | ||
CouchDBServices.prototype.bulk = async(arrayDocs) => { | ||
CouchDBServices.prototype.bulk = async function(arrayDocs) { | ||
let output = new moduleConnector(); | ||
@@ -159,0 +159,0 @@ try { |
{ | ||
"name": "couchdb-services", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6215