mirror of
https://github.com/immich-app/immich.git
synced 2025-12-23 17:25:11 +03:00
feat: paginate integrity report results
This commit is contained in:
@@ -16864,6 +16864,14 @@
|
||||
},
|
||||
"IntegrityGetReportDto": {
|
||||
"properties": {
|
||||
"page": {
|
||||
"minimum": 1,
|
||||
"type": "number"
|
||||
},
|
||||
"size": {
|
||||
"minimum": 1,
|
||||
"type": "number"
|
||||
},
|
||||
"type": {
|
||||
"allOf": [
|
||||
{
|
||||
@@ -16902,6 +16910,9 @@
|
||||
},
|
||||
"IntegrityReportResponseDto": {
|
||||
"properties": {
|
||||
"hasNextPage": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"items": {
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/IntegrityReportDto"
|
||||
@@ -16910,6 +16921,7 @@
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"hasNextPage",
|
||||
"items"
|
||||
],
|
||||
"type": "object"
|
||||
|
||||
@@ -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 = {
|
||||
|
||||
Reference in New Issue
Block a user