tane/apps/app_seeds/test/services
vjrj 21e4357970 fix(sync): replicate deletions and keep photos off the wire
Reusing the backup snapshot for sync had two bugs that would bite real use:

1. Deletions didn't propagate. exportInventory() filters isDeleted=false
   (user backups are tombstone-free by design) and the JSON codec dropped
   isDeleted (omitted on encode, hardcoded false on decode) — so deleting a
   variety on one device never reached the others. Now the codec round-trips
   isDeleted (emitted only when true, so backups stay byte-identical and it's
   backward compatible), and a new exportForSync() includes tombstones. The
   importer already merges them LWW-correctly.

2. Photos bloated events. The snapshot embeds photo bytes as base64, so a
   real inventory would blow past relay event-size limits and sync would
   silently fail. exportForSync() omits attachments entirely (photos stay
   device-local; media sync is a separate, deferred concern).

buildSnapshot() now uses exportForSync(); backups keep using exportInventory
(photos in, tombstones out) unchanged.

Tests: a deletion replicates as a tombstone; the sync snapshot carries no
photo bytes while a sealed backup still does.
2026-07-11 00:17:08 +02:00
..
ocr style: dart format reflow (no behavior change) 2026-07-09 22:19:43 +02:00
auto_backup_service_test.dart feat(backup): tap automatic-backups to make a copy now 2026-07-10 11:05:36 +02:00
auto_backup_store_test.dart feat(backup): add automatic weekly encrypted backups 2026-07-10 10:17:36 +02:00
device_id_store_test.dart feat(sync): device-to-device inventory sync, end to end 2026-07-10 23:45:40 +02:00
discovery_area_test.dart fix(market): search your zone by a coarse prefix, not the exact cell 2026-07-10 16:12:38 +02:00
export_import_service_test.dart fix(sync): replicate deletions and keep photos off the wire 2026-07-11 00:17:08 +02:00
inbox_service_test.dart refactor(social): one shared relay connection per identity 2026-07-10 21:50:34 +02:00
label_sheet_service_test.dart feat(labels): print seed labels with QR from an inventory selection 2026-07-10 19:14:04 +02:00
locale_store_test.dart feat(i18n): add Asturian (asturianu) as a language 2026-07-10 15:43:33 +02:00
message_store_test.dart feat(identity): switch social identity, all from the one backup 2026-07-10 20:22:24 +02:00
notification_service_test.dart feat(messages): unread badges + OS notification for private messages 2026-07-10 21:12:00 +02:00
offer_outbox_test.dart feat(block2): offline outbox — share now, publish when connected 2026-07-10 10:45:53 +02:00
offer_thumbnail_test.dart feat(market): embed offer photos inline instead of a media server 2026-07-10 21:27:59 +02:00
profile_cache_test.dart feat(block2): show contact names (resolve peers' published profiles) 2026-07-10 12:47:48 +02:00
profile_store_test.dart feat(block2): profiles — your identity card + name/about (NIP-01 kind:0) 2026-07-10 12:37:07 +02:00
share_catalog_service_test.dart feat(inventory): local sharing — per-lot share terms, filter and printable catalog 2026-07-09 22:19:55 +02:00
social_account_store_test.dart feat(identity): switch social identity, all from the one backup 2026-07-10 20:22:24 +02:00
social_connection_test.dart refactor(social): one shared relay connection per identity 2026-07-10 21:50:34 +02:00
social_service_test.dart feat(block2): wire the social identity into app_seeds (DI, no UI) 2026-07-10 02:44:37 +02:00
social_settings_test.dart feat(market): embed offer photos inline instead of a media server 2026-07-10 21:27:59 +02:00
sync_service_test.dart feat(sync): device-to-device inventory sync, end to end 2026-07-10 23:45:40 +02:00
trust_referents_test.dart feat(trust): full Duniter web-of-trust membership (params + referents) 2026-07-10 21:02:08 +02:00
unread_service_test.dart feat(messages): unread badges + OS notification for private messages 2026-07-10 21:12:00 +02:00
wot_settings_test.dart feat(trust): full Duniter web-of-trust membership (params + referents) 2026-07-10 21:02:08 +02:00