Add new dialog and sheet for handling offloaded media after a subscription is canceled or expires.

This commit is contained in:
Alex Hart
2025-06-09 15:41:10 -03:00
committed by Greyson Parrelli
parent 18b5354944
commit 1424dd6892
11 changed files with 562 additions and 68 deletions

View File

@@ -49,4 +49,16 @@ message ArchiveUploadProgressState {
uint64 backupFileTotalBytes = 6;
uint64 mediaUploadedBytes = 7;
uint64 mediaTotalBytes = 8;
}
message BackupDownloadNotifierState {
enum Type {
SHEET = 0;
DIALOG = 1;
}
uint64 entitlementExpirationSeconds = 1;
uint64 lastSheetDisplaySeconds = 2;
uint64 intervalSeconds = 3;
Type type = 4;
}