add fulfillmentUrl to OrderShortInfo

This commit is contained in:
Marcos Gutierrez 2020-01-31 11:21:23 -03:00
parent d6d5647946
commit 5f68f060a6
No known key found for this signature in database
GPG Key ID: 3C721C882729F8AB
2 changed files with 6 additions and 0 deletions

View File

@ -60,6 +60,7 @@ function getOrderShortInfo(
}
return {
amount: Amounts.toString(download.contractData.amount),
fulfillmentUrl: download.contractData.fulfillmentUrl,
orderId: download.contractData.orderId,
merchantBaseUrl: download.contractData.merchantBaseUrl,
proposalId: proposal.proposalId,

View File

@ -392,6 +392,11 @@ export interface OrderShortInfo {
* Summary of the proposal, given by the merchant.
*/
summary: string;
/**
* URL of the fulfillment, given by the merchant.
*/
fulfillmentUrl: string;
}
/**