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
+68
View File
@@ -0,0 +1,68 @@
export declare function presentBrand(company: {
id: string;
slug: string;
name: string;
phone: string | null;
brand: any;
}): {
company: {
id: string;
slug: string;
name: string;
phone: string | null;
};
brand: {
displayName: any;
tagline: any;
logoUrl: any;
faviconUrl: any;
heroImageUrl: any;
primaryColor: any;
accentColor: any;
subdomain: any;
customDomain: any;
customDomainVerified: any;
customDomainAddedAt: any;
publicEmail: any;
publicPhone: any;
publicAddress: any;
publicCity: any;
publicCountry: any;
websiteUrl: any;
whatsappNumber: any;
facebookUrl: any;
instagramUrl: any;
defaultLocale: any;
defaultCurrency: any;
paypalEmail: any;
paypalMerchantId: any;
paymentMethodsEnabled: any;
isListedOnMarketplace: any;
marketplaceRating: any;
homePageConfig: any;
menuConfig: any;
} | null;
};
export declare function presentPublicBooking(reservation: any): {
id: any;
status: any;
pickupAt: any;
returnAt: any;
vehicle: {
make: any;
model: any;
year: any;
imageUrl: any;
};
customer: {
displayName: string;
maskedEmail: string | undefined;
maskedPhone: string | undefined;
};
totals: {
amountDue: number;
currency: string;
};
paymentStatus: any;
};
//# sourceMappingURL=site.presenter.d.ts.map