Files
alrahma_sunday_school_api/apps/api/dist/modules/site/site.presenter.d.ts
T
2026-06-11 03:22:12 -04:00

68 lines
1.6 KiB
TypeScript

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