archetecture security fix

This commit is contained in:
root
2026-06-11 03:22:12 -04:00
parent 6def9993da
commit 9483750161
3126 changed files with 177194 additions and 37211 deletions
+29
View File
@@ -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