29 lines
975 B
TypeScript
29 lines
975 B
TypeScript
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
|