aboutsummaryrefslogtreecommitdiff
path: root/src/types
diff options
context:
space:
mode:
authorMarcos Gutierrez <gmarcos87@gmail.com>2020-01-31 11:21:23 -0300
committerMarcos Gutierrez <gmarcos87@gmail.com>2020-01-31 11:21:23 -0300
commit5f68f060a67ad36b87a25ca5d182c6f2dd9eb450 (patch)
tree59c399fdebdeb9a8a89b8dac5c5cd420f2029b2b /src/types
parentd6d56479469f0e7fc050976908c7abcacd61bc27 (diff)
downloadwallet-core-5f68f060a67ad36b87a25ca5d182c6f2dd9eb450.tar.xz
add fulfillmentUrl to OrderShortInfo
Diffstat (limited to 'src/types')
-rw-r--r--src/types/history.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/types/history.ts b/src/types/history.ts
index 52148cb04..30fe8e529 100644
--- a/src/types/history.ts
+++ b/src/types/history.ts
@@ -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;
}
/**