archetecture security fix
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
import type { output } from 'zod';
|
||||
import { renterUpdateSchema } from './auth.renter.schemas';
|
||||
type RenterUpdateInput = output<typeof renterUpdateSchema>;
|
||||
export declare function signupDisabled(): void;
|
||||
export declare function loginDisabled(): void;
|
||||
export declare function getMe(renterId: string): Promise<{
|
||||
savedCompanies: {
|
||||
id: string;
|
||||
brand: {
|
||||
displayName: string | null;
|
||||
subdomain: string | null;
|
||||
logoUrl: string | null;
|
||||
} | null;
|
||||
}[];
|
||||
id: string;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
email: string;
|
||||
phone: string | null;
|
||||
preferredLocale: string | null;
|
||||
preferredCurrency: string | null;
|
||||
emailVerified: boolean;
|
||||
}>;
|
||||
export declare function updateMe(renterId: string, body: RenterUpdateInput): any;
|
||||
export declare function updateFcmToken(renterId: string, fcmToken: string): Promise<{
|
||||
success: boolean;
|
||||
}>;
|
||||
export {};
|
||||
//# sourceMappingURL=auth.renter.service.d.ts.map
|
||||
Reference in New Issue
Block a user