archetecture security fix
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
import { z } from 'zod';
|
||||
export declare const renterUpdateSchema: z.ZodObject<{
|
||||
firstName: z.ZodOptional<z.ZodString>;
|
||||
lastName: z.ZodOptional<z.ZodString>;
|
||||
phone: z.ZodOptional<z.ZodString>;
|
||||
preferredLocale: z.ZodOptional<z.ZodEnum<["en", "fr", "ar"]>>;
|
||||
preferredCurrency: z.ZodOptional<z.ZodLiteral<"MAD">>;
|
||||
}, "strip", z.ZodTypeAny, {
|
||||
firstName?: string | undefined;
|
||||
lastName?: string | undefined;
|
||||
phone?: string | undefined;
|
||||
preferredLocale?: "en" | "fr" | "ar" | undefined;
|
||||
preferredCurrency?: "MAD" | undefined;
|
||||
}, {
|
||||
firstName?: string | undefined;
|
||||
lastName?: string | undefined;
|
||||
phone?: string | undefined;
|
||||
preferredLocale?: "en" | "fr" | "ar" | undefined;
|
||||
preferredCurrency?: "MAD" | undefined;
|
||||
}>;
|
||||
export declare const renterFcmTokenSchema: z.ZodObject<{
|
||||
fcmToken: z.ZodString;
|
||||
}, "strip", z.ZodTypeAny, {
|
||||
fcmToken: string;
|
||||
}, {
|
||||
fcmToken: string;
|
||||
}>;
|
||||
//# sourceMappingURL=auth.renter.schemas.d.ts.map
|
||||
Reference in New Issue
Block a user