mirror of
https://github.com/immich-app/immich
synced 2026-08-15 13:03:57 +00:00
feat(mobile): quota (#6409)
* feat(mobile): quota * openapi * user entity update * Render quota * refresh usage upon opening the app bar * stop backup when quota exceed
This commit is contained in:
parent
abce82e235
commit
78de4f1312
18 changed files with 386 additions and 76 deletions
|
|
@ -8204,6 +8204,7 @@
|
|||
},
|
||||
"quotaUsageInBytes": {
|
||||
"format": "int64",
|
||||
"nullable": true,
|
||||
"type": "integer"
|
||||
},
|
||||
"shouldChangePassword": {
|
||||
|
|
@ -9912,6 +9913,7 @@
|
|||
},
|
||||
"quotaUsageInBytes": {
|
||||
"format": "int64",
|
||||
"nullable": true,
|
||||
"type": "integer"
|
||||
},
|
||||
"shouldChangePassword": {
|
||||
|
|
|
|||
4
open-api/typescript-sdk/client/api.ts
generated
4
open-api/typescript-sdk/client/api.ts
generated
|
|
@ -2496,7 +2496,7 @@ export interface PartnerResponseDto {
|
|||
* @type {number}
|
||||
* @memberof PartnerResponseDto
|
||||
*/
|
||||
'quotaUsageInBytes': number;
|
||||
'quotaUsageInBytes': number | null;
|
||||
/**
|
||||
*
|
||||
* @type {boolean}
|
||||
|
|
@ -4770,7 +4770,7 @@ export interface UserResponseDto {
|
|||
* @type {number}
|
||||
* @memberof UserResponseDto
|
||||
*/
|
||||
'quotaUsageInBytes': number;
|
||||
'quotaUsageInBytes': number | null;
|
||||
/**
|
||||
*
|
||||
* @type {boolean}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue