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.cjs.js
CHANGED
|
@@ -9038,8 +9038,8 @@ class BigqueryReplicator extends base_replicator_class_default {
|
|
|
9038
9038
|
const { errors: errors2, response } = error;
|
|
9039
9039
|
if (this.config.verbose) {
|
|
9040
9040
|
console.error("[BigqueryReplicator] BigQuery insert error details:");
|
|
9041
|
-
if (errors2) console.error(
|
|
9042
|
-
if (response) console.error(
|
|
9041
|
+
if (errors2) console.error(JSON.stringify(errors2, null, 2));
|
|
9042
|
+
if (response) console.error(JSON.stringify(response, null, 2));
|
|
9043
9043
|
}
|
|
9044
9044
|
throw error;
|
|
9045
9045
|
}
|
|
@@ -13240,7 +13240,7 @@ class Database extends EventEmitter {
|
|
|
13240
13240
|
super();
|
|
13241
13241
|
this.version = "1";
|
|
13242
13242
|
this.s3dbVersion = (() => {
|
|
13243
|
-
const [ok, err, version] = try_fn_default(() => true ? "7.3.
|
|
13243
|
+
const [ok, err, version] = try_fn_default(() => true ? "7.3.10" : "latest");
|
|
13244
13244
|
return ok ? version : "latest";
|
|
13245
13245
|
})();
|
|
13246
13246
|
this.resources = {};
|