Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
2f6d1d0
feat: add PartnerClaim type to GraphQL schema
hugokallstrom Apr 23, 2026
c46ab04
feat: add PartnerClaimFragment GraphQL fragment
hugokallstrom Apr 23, 2026
07a2a6e
feat: add fromPartnerClaim factory methods for claim card UI state
hugokallstrom Apr 23, 2026
a2a1ff2
feat: merge partner claims into home screen claims pager
hugokallstrom Apr 23, 2026
72b6ce9
feat: dispatch partner claim navigation from home screen
hugokallstrom Apr 23, 2026
08d0b42
feat: merge partner claims into claim history
hugokallstrom Apr 23, 2026
f5210ee
refactor: extract shared claim detail composables to ui-claim-status
hugokallstrom Apr 23, 2026
7740623
feat: add partner claim details module with simplified details screen
hugokallstrom Apr 23, 2026
d7cce70
feat: wire partner claim details into app navigation and DI
hugokallstrom Apr 23, 2026
ad5512e
fix: right-align arrow icon in partner claim email row
hugokallstrom Apr 23, 2026
c43dae0
fix: match email row styling to chat row pattern in claim details
hugokallstrom Apr 23, 2026
ad3d88c
fix: simplify email row to plain clickable card
hugokallstrom Apr 23, 2026
de0f652
fix: remove handler email from partner claim details screen
hugokallstrom Apr 23, 2026
7b9621a
chore: update GraphQL schema from introspection
hugokallstrom Apr 23, 2026
221c87c
chore: run ktlint formatting
hugokallstrom Apr 23, 2026
94dd5cb
fix: handle empty claims list in home status cards and add lint baseline
hugokallstrom Apr 23, 2026
a69ea1e
docs: add design spec for unifying partner claim into regular claim d…
hugokallstrom Apr 24, 2026
4cbe579
docs: add implementation plan for unifying partner claim detail
hugokallstrom Apr 24, 2026
16e69fb
feat: add isPartnerClaim flag to claim detail destination and wire th…
hugokallstrom Apr 24, 2026
9759d7d
feat: add partner claim query support to GetClaimDetailUiStateUseCase
hugokallstrom Apr 24, 2026
4e19eea
fix: hide uploaded files header when no submitted content or files
hugokallstrom Apr 24, 2026
2695345
refactor: unify claim detail navigation — remove partner-specific cal…
hugokallstrom Apr 24, 2026
75a1517
refactor: delete feature-partner-claim-details module and all references
hugokallstrom Apr 24, 2026
dffcca6
chore: remove accidentally staged worktree
hugokallstrom Apr 24, 2026
6bc0a31
chore: run ktlint formatting
hugokallstrom Apr 24, 2026
042cabe
fix: use kotlin.time.Clock instead of kotlinx.datetime.Clock
hugokallstrom Apr 24, 2026
474926b
fix: show submitted date instead of exposure name on partner claim cards
hugokallstrom Apr 27, 2026
ed5daf4
chore: remove design spec and implementation plan docs
hugokallstrom Apr 27, 2026
2d90eb6
refactor: move shared claim detail composables back to feature-claim-…
hugokallstrom Apr 27, 2026
3089a81
chore: restore original function ordering in ClaimDetailsDestination …
hugokallstrom Apr 27, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
fragment PartnerClaimFragment on PartnerClaim {
id
externalId
exposureDisplayName
status
submittedAt
payoutAmount {
...MoneyFragment
}
associatedTypeOfContract
claimType
handlerEmail
displayItems {
displayTitle
displayValue
}
productVariant {
typeOfContract
displayName
documents {
type
url
}
}
}
Loading
Loading