From e837bb55018cbc87ebec71a9be091703d4792240 Mon Sep 17 00:00:00 2001 From: autocommit Date: Sun, 19 Apr 2026 13:44:32 -0700 Subject: [PATCH] =?UTF-8?q?feat(provider-website):=20=E2=9C=A8=20Introduce?= =?UTF-8?q?=20serialization=20functions=20in=20serialize.ts=20for=20standa?= =?UTF-8?q?rdized=20data=20formatting=20in=20provider=20website=20API=20re?= =?UTF-8?q?sponses/requests?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- codebase/@features/provider-website/data-api/src/serialize.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codebase/@features/provider-website/data-api/src/serialize.ts b/codebase/@features/provider-website/data-api/src/serialize.ts index db08759c..bee36c45 100644 --- a/codebase/@features/provider-website/data-api/src/serialize.ts +++ b/codebase/@features/provider-website/data-api/src/serialize.ts @@ -296,7 +296,7 @@ interface TouringStop { endDate: string; status: string; incallAvailable: boolean; - publicNote: string; + publicNote: string | null; } interface TouringResponse { @@ -305,7 +305,7 @@ interface TouringResponse { state: string | null; country: string; incallAvailable: boolean; - publicNote: string; + publicNote: string | null; } | null; upcoming: TouringStop[]; }