datasquirel/users/social/google-auth.d.ts

44 lines
1.7 KiB
TypeScript
Raw Normal View History

2024-11-08 15:44:31 +00:00
export = googleAuth;
/**
* @typedef {object | null} FunctionReturn
* @property {boolean} success - Did the function run successfully?
* @property {import("../../types/user.td").DATASQUIREL_LoggedInUser | null} user - Returned User
* @property {number} [dsqlUserId] - Dsql User Id
* @property {string} [msg] - Response message
*/
/**
* SERVER FUNCTION: Login with google Function
* ==============================================================================
*
* @async
*
* @param {object} params - main params object
2024-12-08 08:58:57 +00:00
* @param {string} [params.key] - API full access key
2024-11-08 15:44:31 +00:00
* @param {string} params.token - Google access token gotten from the client side
2024-12-10 18:44:11 +00:00
* @param {string} [params.database] - Target database name
2024-12-08 08:58:57 +00:00
* @param {http.ServerResponse} [params.response] - HTTPS response object
* @param {string} [params.encryptionKey] - Encryption key
* @param {string} [params.encryptionSalt] - Encryption salt
* @param {string[]} [params.additionalFields] - Additional Fields to be added to the user object
2024-12-10 18:44:11 +00:00
* @param {string | number} [params.apiUserID] - API user ID
2024-12-06 10:44:26 +00:00
* @param {boolean} [params.useLocal] - Whether to use a remote database instead of API
2024-11-08 15:44:31 +00:00
*
* @returns { Promise<FunctionReturn> }
*/
2024-12-10 18:44:11 +00:00
declare function googleAuth({ key, token, database, response, encryptionKey, encryptionSalt, additionalFields, apiUserID, useLocal, }: {
2024-12-08 08:58:57 +00:00
key?: string;
2024-11-08 15:44:31 +00:00
token: string;
2024-12-10 18:44:11 +00:00
database?: string;
2024-12-08 08:58:57 +00:00
response?: http.ServerResponse;
encryptionKey?: string;
encryptionSalt?: string;
additionalFields?: string[];
2024-12-06 10:44:26 +00:00
apiUserID?: string | number;
useLocal?: boolean;
2024-11-08 15:44:31 +00:00
}): Promise<FunctionReturn>;
declare namespace googleAuth {
export { FunctionReturn };
}
import http = require("http");
type FunctionReturn = object | null;