s3db.js 7.3.9 → 7.3.10
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/dist/s3db.es.js
CHANGED
|
@@ -9034,8 +9034,8 @@ class BigqueryReplicator extends base_replicator_class_default {
|
|
|
9034
9034
|
const { errors: errors2, response } = error;
|
|
9035
9035
|
if (this.config.verbose) {
|
|
9036
9036
|
console.error("[BigqueryReplicator] BigQuery insert error details:");
|
|
9037
|
-
if (errors2) console.error(
|
|
9038
|
-
if (response) console.error(
|
|
9037
|
+
if (errors2) console.error(JSON.stringify(errors2, null, 2));
|
|
9038
|
+
if (response) console.error(JSON.stringify(response, null, 2));
|
|
9039
9039
|
}
|
|
9040
9040
|
throw error;
|
|
9041
9041
|
}
|
|
@@ -13236,7 +13236,7 @@ class Database extends EventEmitter {
|
|
|
13236
13236
|
super();
|
|
13237
13237
|
this.version = "1";
|
|
13238
13238
|
this.s3dbVersion = (() => {
|
|
13239
|
-
const [ok, err, version] = try_fn_default(() => true ? "7.3.
|
|
13239
|
+
const [ok, err, version] = try_fn_default(() => true ? "7.3.10" : "latest");
|
|
13240
13240
|
return ok ? version : "latest";
|
|
13241
13241
|
})();
|
|
13242
13242
|
this.resources = {};
|