website refactor
This commit is contained in:
15
apps/website/lib/page-queries/SponsorshipRequestsPageDto.ts
Normal file
15
apps/website/lib/page-queries/SponsorshipRequestsPageDto.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
export interface SponsorshipRequestsPageDto {
|
||||
sections: Array<{
|
||||
entityType: 'driver' | 'team' | 'season';
|
||||
entityId: string;
|
||||
entityName: string;
|
||||
requests: Array<{
|
||||
requestId: string;
|
||||
sponsorId: string;
|
||||
sponsorName: string;
|
||||
message: string | null;
|
||||
createdAtIso: string;
|
||||
raw: unknown;
|
||||
}>;
|
||||
}>;
|
||||
}
|
||||
Reference in New Issue
Block a user