Merge branch 'claude/intelligent-bardeen-0d5ee9': market detail page, filters, publish-dedup

# Conflicts:
#	apps/app_seeds/lib/i18n/strings.g.dart
#	apps/app_seeds/lib/i18n/strings_ast.g.dart
This commit is contained in:
vjrj 2026-07-10 19:11:59 +02:00
commit 69f63d2b62
21 changed files with 972 additions and 107 deletions

View file

@ -29,6 +29,7 @@ class OfferMapper {
required OfferStatus sharing,
required String areaGeohash,
String? category,
bool isOrganic = false,
num? priceAmount,
String? priceCurrency,
String? exchangeTerms,
@ -43,6 +44,7 @@ class OfferMapper {
type: type,
approxGeohash: areaGeohash,
category: category,
isOrganic: isOrganic,
priceAmount: type == OfferType.sale ? priceAmount : null,
priceCurrency: type == OfferType.sale ? priceCurrency : null,
exchangeTerms: type == OfferType.exchange ? exchangeTerms : null,