From 3f353d82e1334cda738b654e4ce36dae13110114 Mon Sep 17 00:00:00 2001 From: Christine <132790780+aesteri@users.noreply.github.com> Date: Sun, 3 Nov 2024 18:35:24 +0900 Subject: [PATCH] altered types to match server --- .env | 2 +- src/types/index.d.ts | 16 ++++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/.env b/.env index beafddf..3d0cb70 100644 --- a/.env +++ b/.env @@ -1 +1 @@ -VITE_API_URL=https://api-url:port \ No newline at end of file +VITE_API_URL=https://hytech.duckdns.org \ No newline at end of file diff --git a/src/types/index.d.ts b/src/types/index.d.ts index 2e71ea4..b7a251d 100644 --- a/src/types/index.d.ts +++ b/src/types/index.d.ts @@ -1,5 +1,21 @@ type MCAPFileInformation = { id: string; + car_model: string; + schema_versions?: null; + mcap_files: { + signed_url: string; + file_name: string; + }[]; + mat_files: { + signed_url: string; + file_name: string; + }[]; + content_files: { + vn_lat_lon_plot: { + signed_url: string; + file_name: string; + }[]; + }; mcap_file_name: string; matlab_file_name: string; aws_bucket: string;