diff --git a/CHANGELOG.md b/CHANGELOG.md index 90afd00b..e09e347c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +- added: `EdgeTxActionGiftCard.productId` and `EdgeTxActionGiftCard.quoteId` properties. + ## 2.42.0 (2026-02-10) - added: `EdgeCurrencyEngineCallbacks.onSyncStatusChanged` callback. diff --git a/src/core/currency/wallet/currency-wallet-cleaners.ts b/src/core/currency/wallet/currency-wallet-cleaners.ts index 5aac3b4c..c4890912 100644 --- a/src/core/currency/wallet/currency-wallet-cleaners.ts +++ b/src/core/currency/wallet/currency-wallet-cleaners.ts @@ -231,6 +231,8 @@ export const asEdgeTxActionGiftCard = asObject({ actionType: asValue('giftCard'), orderId: asString, orderUri: asOptional(asString), + productId: asOptional(asString), + quoteId: asOptional(asString), provider: asObject({ providerId: asString, diff --git a/src/types/types.ts b/src/types/types.ts index 998426c9..3127ec66 100644 --- a/src/types/types.ts +++ b/src/types/types.ts @@ -324,6 +324,8 @@ export interface EdgeTxActionGiftCard { actionType: 'giftCard' orderId: string orderUri?: string + productId?: string + quoteId?: string provider: { providerId: string