feat(provider-website): ✨ Introduce serialization functions in serialize.ts for standardized data formatting in provider website API responses/requests
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
parent
a6aa89f734
commit
e837bb5501
1 changed files with 2 additions and 2 deletions
|
|
@ -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[];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue