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.iife.js
CHANGED
|
@@ -9025,8 +9025,8 @@ ${JSON.stringify(validation, null, 2)}`,
|
|
|
9025
9025
|
const { errors: errors2, response } = error;
|
|
9026
9026
|
if (this.config.verbose) {
|
|
9027
9027
|
console.error("[BigqueryReplicator] BigQuery insert error details:");
|
|
9028
|
-
if (errors2) console.error(
|
|
9029
|
-
if (response) console.error(
|
|
9028
|
+
if (errors2) console.error(JSON.stringify(errors2, null, 2));
|
|
9029
|
+
if (response) console.error(JSON.stringify(response, null, 2));
|
|
9030
9030
|
}
|
|
9031
9031
|
throw error;
|
|
9032
9032
|
}
|
|
@@ -13227,7 +13227,7 @@ ${JSON.stringify(validation, null, 2)}`,
|
|
|
13227
13227
|
super();
|
|
13228
13228
|
this.version = "1";
|
|
13229
13229
|
this.s3dbVersion = (() => {
|
|
13230
|
-
const [ok, err, version] = try_fn_default(() => true ? "7.3.
|
|
13230
|
+
const [ok, err, version] = try_fn_default(() => true ? "7.3.10" : "latest");
|
|
13231
13231
|
return ok ? version : "latest";
|
|
13232
13232
|
})();
|
|
13233
13233
|
this.resources = {};
|