diff --git a/defs/UserPublicStation.ts b/defs/UserPublicStation.ts index 448950d6..49693d47 100644 --- a/defs/UserPublicStation.ts +++ b/defs/UserPublicStation.ts @@ -30,6 +30,7 @@ export type UserPublicStation = { tiktok_url: string | null; youtube_url: string | null; spotify_url: string | null; + radiocut_url: string | null; app_store_url: string | null; google_play_url: string | null; user_metadata: Metadata; diff --git a/defs/api/stations/POST/Payload.ts b/defs/api/stations/POST/Payload.ts index c2ca766b..95a37f99 100644 --- a/defs/api/stations/POST/Payload.ts +++ b/defs/api/stations/POST/Payload.ts @@ -26,6 +26,7 @@ export type Payload = { twitch_url: string | null; tiktok_url: string | null; spotify_url: string | null; + radiocut_url: string | null; google_play_url: string | null; app_store_url: string | null; frequency: StationFrequency | null; diff --git a/defs/db/Station.ts b/defs/db/Station.ts index ee6a210d..8bac118e 100644 --- a/defs/db/Station.ts +++ b/defs/db/Station.ts @@ -31,6 +31,7 @@ export type Station = { twitch_url: string | null; tiktok_url: string | null; spotify_url: string | null; + radiocut_url: string | null; google_play_url: string | null; app_store_url: string | null; user_metadata: Metadata; diff --git a/defs/ops/StationPatch.ts b/defs/ops/StationPatch.ts index e1e96cae..84d47c72 100644 --- a/defs/ops/StationPatch.ts +++ b/defs/ops/StationPatch.ts @@ -26,6 +26,7 @@ export type StationPatch = { twitch_url?: string | null; tiktok_url?: string | null; spotify_url?: string | null; + radiocut_url?: string | null; google_play_url?: string | null; app_store_url?: string | null; external_relay_url?: string | null; diff --git a/front/app/src/lib/components/StationProfile.svelte b/front/app/src/lib/components/StationProfile.svelte index 217d5f30..81f74cc4 100644 --- a/front/app/src/lib/components/StationProfile.svelte +++ b/front/app/src/lib/components/StationProfile.svelte @@ -1,6 +1,7 @@