This commit is contained in:
Benjamin Toby 2024-10-22 18:26:38 +01:00
parent c2328116da
commit b03d90026c
2 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "datasquirel", "name": "datasquirel",
"version": "2.2.8", "version": "2.2.9",
"description": "Cloud-based SQL data management tool", "description": "Cloud-based SQL data management tool",
"main": "index.js", "main": "index.js",
"bin": { "bin": {

View File

@ -47,6 +47,9 @@ async function getSchema({ key, database, field, table }) {
.map((k) => `${k}=${queryObject[k]}`) .map((k) => `${k}=${queryObject[k]}`)
.join("&"); .join("&");
console.log(queryObject);
console.log(query);
(scheme?.match(/^http$/i) ? http : https) (scheme?.match(/^http$/i) ? http : https)
.request( .request(
{ {