mirror of
https://github.com/immich-app/immich.git
synced 2026-03-23 04:09:16 +03:00
feat: add offline library statistics
This commit is contained in:
@@ -18288,6 +18288,11 @@
|
||||
},
|
||||
"LibraryStatsResponseDto": {
|
||||
"properties": {
|
||||
"offline": {
|
||||
"default": 0,
|
||||
"description": "Number of offline assets",
|
||||
"type": "integer"
|
||||
},
|
||||
"photos": {
|
||||
"default": 0,
|
||||
"description": "Number of photos",
|
||||
@@ -18311,6 +18316,7 @@
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"offline",
|
||||
"photos",
|
||||
"total",
|
||||
"usage",
|
||||
|
||||
@@ -1321,6 +1321,8 @@ export type UpdateLibraryDto = {
|
||||
name?: string;
|
||||
};
|
||||
export type LibraryStatsResponseDto = {
|
||||
/** Number of offline assets */
|
||||
offline: number;
|
||||
/** Number of photos */
|
||||
photos: number;
|
||||
/** Total number of assets */
|
||||
|
||||
Reference in New Issue
Block a user