Remove all 'useLocal' params

This commit is contained in:
Benjamin Toby
2025-01-20 09:12:43 +01:00
parent 16191975f9
commit 7d0f3e12f3
113 changed files with 164 additions and 425 deletions
-5
View File
@@ -1212,7 +1212,6 @@ export type APILoginFunctionParams = {
token?: boolean;
skipPassword?: boolean;
social?: boolean;
useLocal?: boolean;
dbUserId?: number | string;
debug?: boolean;
};
@@ -1232,7 +1231,6 @@ export type APICreateUserFunctionParams = {
payload: any;
database: string;
userId?: string | number;
useLocal?: boolean;
};
export type APICreateUserFunction = (
@@ -1246,7 +1244,6 @@ export type APIGetUserFunctionParams = {
fields: string[];
dbFullName: string;
userId: string | number;
useLocal?: boolean;
};
/**
@@ -1258,7 +1255,6 @@ export type APIGoogleLoginFunctionParams = {
additionalFields?: string[];
additionalData?: { [key: string]: string | number };
debug?: boolean;
useLocal?: boolean;
};
export type APIGoogleLoginFunction = (
@@ -1277,7 +1273,6 @@ export type HandleSocialDbFunctionParams = {
invitation?: any;
supEmail?: string;
additionalFields?: string[];
useLocal?: boolean;
debug?: boolean;
};