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