feat: Add additional adventure type and endpoint for sunrise/sunset information

This commit is contained in:
Sean Morley
2025-03-22 12:25:53 -04:00
parent 13d3b24ec2
commit 16a7772003
5 changed files with 146 additions and 95 deletions

View File

@@ -44,6 +44,15 @@ export type Adventure = {
user?: User | null;
};
export type AdditionalAdventure = Adventure & {
sun_times: {
date: string;
visit_id: string;
sunrise: string;
sunset: string;
}[];
};
export type Country = {
id: number;
name: string;