feat: paginate integrity report results

This commit is contained in:
izzy
2025-12-18 14:08:06 +00:00
parent 31ac88f158
commit 5028c56ad8
10 changed files with 154 additions and 23 deletions

View File

@@ -41,6 +41,8 @@ export type ActivityStatisticsResponseDto = {
likes: number;
};
export type IntegrityGetReportDto = {
page?: number;
size?: number;
"type": IntegrityReportType;
};
export type IntegrityReportDto = {
@@ -49,6 +51,7 @@ export type IntegrityReportDto = {
"type": IntegrityReportType;
};
export type IntegrityReportResponseDto = {
hasNextPage: boolean;
items: IntegrityReportDto[];
};
export type IntegrityReportSummaryResponseDto = {