Adaptions according cloudflare

This commit is contained in:
2024-09-12 16:14:57 +02:00
parent 77c9973256
commit d2f6b3ec3f
4 changed files with 35 additions and 12 deletions

View File

@@ -385,3 +385,13 @@ export function createDefaultBusinessListing(): BusinessListing {
};
}
export type StripeSubscription = Stripe.Subscription;
export type IpInfo = {
ip: string;
city: string;
region: string;
country: string;
loc: string; // Coordinates in "latitude,longitude" format
org: string;
postal: string;
timezone: string;
};