djorm-db-gcp-datastore
Advanced tools
Comparing version 0.1.8-alpha.0 to 0.1.9-alpha.3
@@ -8,2 +8,3 @@ const { ComparisonOperator } = require('djorm/db/ComparisonOperator') | ||
return async () => { | ||
await this.driver.waitForConnection() | ||
await this.db.delete(this.mapFilter(qs, { qs })) | ||
@@ -10,0 +11,0 @@ } |
@@ -6,2 +6,3 @@ const { DatastoreFormatterBase } = require('./DatastoreFormatterBase') | ||
return async () => { | ||
await this.driver.waitForConnection() | ||
const values = await this.prepareKeys(qs, this.formatValues(qs)) | ||
@@ -8,0 +9,0 @@ await this.db.upsert(values) |
@@ -5,3 +5,6 @@ const { DatastoreFormatterBase } = require('./DatastoreFormatterBase') | ||
formatQuery (qs) { | ||
return async () => await this.db.upsert(this.formatValues(qs)) | ||
return async () => { | ||
await this.driver.waitForConnection() | ||
return await this.db.upsert(this.formatValues(qs)) | ||
} | ||
} | ||
@@ -8,0 +11,0 @@ } |
{ | ||
"name": "djorm-db-gcp-datastore", | ||
"version": "0.1.8-alpha.0", | ||
"version": "0.1.9-alpha.3", | ||
"description": "Datastore bindings for djorm", | ||
@@ -31,3 +31,3 @@ "author": "Pavel Žák <pavel@zak.global>", | ||
}, | ||
"gitHead": "9e66d08646a67ce433383692eef61122c9520bed" | ||
"gitHead": "b47187ded50870791872cfd39e7543f565b61fdc" | ||
} |
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
11596
297