updates
This commit is contained in:
parent
1d67640e0a
commit
7c30558173
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "datasquirel",
|
||||
"version": "1.2.3",
|
||||
"version": "1.2.4",
|
||||
"description": "Cloud-based SQL data management tool",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
@ -35,10 +35,11 @@ const encrypt = require("../../functions/encrypt");
|
||||
* @param {object} params.response - HTTPS response object
|
||||
* @param {string} params.encryptionKey - Encryption key
|
||||
* @param {string} params.encryptionSalt - Encryption salt
|
||||
* @param {object} [params.additionalFields] - Additional Fields to be added to the user object
|
||||
*
|
||||
* @returns { Promise<FunctionReturn> }
|
||||
*/
|
||||
async function googleAuth({ key, token, database, clientId, response, encryptionKey, encryptionSalt }) {
|
||||
async function googleAuth({ key, token, database, clientId, response, encryptionKey, encryptionSalt, additionalFields }) {
|
||||
/**
|
||||
* Check inputs
|
||||
*
|
||||
@ -115,6 +116,7 @@ async function googleAuth({ key, token, database, clientId, response, encryption
|
||||
token,
|
||||
clientId,
|
||||
database,
|
||||
additionalFields,
|
||||
});
|
||||
|
||||
const httpsRequest = https.request(
|
||||
|
Loading…
Reference in New Issue
Block a user