updates
This commit is contained in:
parent
154b59727a
commit
1eb11ede15
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "datasquirel",
|
||||
"version": "1.0.4",
|
||||
"version": "1.0.5",
|
||||
"description": "Cloud-based SQL data management tool",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
@ -69,10 +69,12 @@ module.exports = async function ({ key, payload, database }) {
|
||||
});
|
||||
}
|
||||
)
|
||||
.write({
|
||||
payload,
|
||||
database,
|
||||
})
|
||||
.write(
|
||||
JSON.stringify({
|
||||
payload,
|
||||
database,
|
||||
})
|
||||
)
|
||||
.end();
|
||||
});
|
||||
|
||||
|
@ -106,10 +106,12 @@ module.exports = async function ({ key, payload, database, response, encryptionK
|
||||
});
|
||||
}
|
||||
)
|
||||
.write({
|
||||
payload,
|
||||
database,
|
||||
})
|
||||
.write(
|
||||
JSON.stringify({
|
||||
payload,
|
||||
database,
|
||||
})
|
||||
)
|
||||
.end();
|
||||
});
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
* ==============================================================================
|
||||
* @param {Object} response - Http response object
|
||||
*/
|
||||
module.exports = async function ({ response }) {
|
||||
module.exports = function ({ response }) {
|
||||
/**
|
||||
* Check Encryption Keys
|
||||
*
|
||||
|
@ -20,7 +20,7 @@ const decrypt = require("../functions/decrypt");
|
||||
* @param {String} encryptionKey - Encryption Key
|
||||
* @param {String} encryptionSalt - Encryption Salt
|
||||
*/
|
||||
module.exports = async function ({ request, encryptionKey, encryptionSalt }) {
|
||||
module.exports = function ({ request, encryptionKey, encryptionSalt }) {
|
||||
/**
|
||||
* Grab the payload
|
||||
*
|
||||
|
@ -68,7 +68,7 @@ module.exports = async function ({ key, payload }) {
|
||||
});
|
||||
}
|
||||
)
|
||||
.write(payload)
|
||||
.write(JSON.stringify(payload))
|
||||
.end();
|
||||
});
|
||||
|
||||
|
@ -65,7 +65,7 @@ module.exports = async function ({ key, payload }) {
|
||||
});
|
||||
}
|
||||
)
|
||||
.write(payload)
|
||||
.write(JSON.stringify(payload))
|
||||
.end();
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user