This commit is contained in:
Tben 2023-06-24 08:34:39 +01:00
parent 6ab14af43b
commit cbda6d0c81
2 changed files with 12 additions and 1 deletions

View File

@ -6,6 +6,7 @@
const imageInputFileToBase64 = require("./media/imageInputFileToBase64");
const imageInputToBase64 = require("./media/imageInputToBase64");
const inputFileToBase64 = require("./media/inputFileToBase64");
const loginWithGoogle = require("./auth/loginWithGoogle");
/** ****************************************************************************** */
/** ****************************************************************************** */
@ -25,6 +26,15 @@ const media = {
inputFileToBase64: inputFileToBase64,
};
/**
* ==============================================================================
* Media Functions Object
* ==============================================================================
*/
const auth = {
loginWithGoogle: loginWithGoogle,
};
/**
* ==============================================================================
* Main Export
@ -32,6 +42,7 @@ const media = {
*/
const datasquirelClient = {
media: media,
auth: auth,
};
module.exports = datasquirelClient;

View File

@ -1,6 +1,6 @@
{
"name": "datasquirel",
"version": "1.1.36",
"version": "1.1.37",
"description": "Cloud-based SQL data management tool",
"main": "index.js",
"scripts": {