Updates
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
declare const _exports: import("../../../types").APICreateUserFunction;
|
||||
export = _exports;
|
||||
@@ -0,0 +1,2 @@
|
||||
declare const _exports: import("../../../types").APILoginFunction;
|
||||
export = _exports;
|
||||
@@ -0,0 +1,9 @@
|
||||
declare function _exports({ existingUser, database, userId, additionalFields, }: {
|
||||
existingUser: {
|
||||
[x: string]: any;
|
||||
};
|
||||
database: string;
|
||||
userId?: string | number;
|
||||
additionalFields?: string[];
|
||||
}): Promise<import("../../../types").ApiReauthUserReturn>;
|
||||
export = _exports;
|
||||
@@ -0,0 +1,15 @@
|
||||
declare function _exports({ email, database, email_login_field, mail_domain, mail_port, sender, mail_username, mail_password, html, }: {
|
||||
email: string;
|
||||
database: string;
|
||||
email_login_field?: string;
|
||||
mail_domain?: string;
|
||||
mail_port?: number;
|
||||
sender?: string;
|
||||
mail_username?: string;
|
||||
mail_password?: string;
|
||||
html: string;
|
||||
}): Promise<{
|
||||
success: boolean;
|
||||
msg?: string;
|
||||
}>;
|
||||
export = _exports;
|
||||
@@ -0,0 +1,12 @@
|
||||
declare function _exports({ payload, dbFullName }: {
|
||||
payload: {
|
||||
id: string | number;
|
||||
} & {
|
||||
[x: string]: (string | number | null | undefined);
|
||||
};
|
||||
dbFullName: string;
|
||||
}): Promise<{
|
||||
success: boolean;
|
||||
payload: any;
|
||||
}>;
|
||||
export = _exports;
|
||||
@@ -0,0 +1,13 @@
|
||||
declare function _exports({ code, clientId, clientSecret, database, additionalFields, res, email, userId, }: {
|
||||
code?: string;
|
||||
clientId?: string;
|
||||
clientSecret?: string;
|
||||
database?: string;
|
||||
additionalFields?: {
|
||||
[x: string]: any;
|
||||
};
|
||||
res?: any;
|
||||
email?: string;
|
||||
userId?: string | number;
|
||||
}): Promise<import("../../../../types").APIGoogleLoginFunctionReturn>;
|
||||
export = _exports;
|
||||
@@ -0,0 +1,2 @@
|
||||
declare const _exports: import("../../../../types").APIGoogleLoginFunction;
|
||||
export = _exports;
|
||||
Reference in New Issue
Block a user