Add media granularity to backup attachment download source

This commit is contained in:
trevor-signal 2025-09-10 16:16:46 -04:00 committed by GitHub
commit 11e612f57b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 74 additions and 49 deletions

View file

@ -548,7 +548,10 @@ export type GetRecentStoryRepliesOptionsType = {
};
export enum AttachmentDownloadSource {
BACKUP_IMPORT = 'backup_import',
// Imported when paid (media) backups were enabled, or from a local backup
BACKUP_IMPORT_WITH_MEDIA = 'backup_import',
// Imported when paid (media) backups were not enabled
BACKUP_IMPORT_NO_MEDIA = 'backup_import_no_media',
STANDARD = 'standard',
BACKFILL = 'backfill',
}