@arbiwallet/contracts 1.0.54 → 1.0.55
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/gen/payout.ts +8 -0
- package/package.json +1 -1
- package/proto/payout.proto +8 -0
package/gen/payout.ts
CHANGED
|
@@ -54,6 +54,10 @@ export interface ParseMusePayPromptPayQrTestResponse {
|
|
|
54
54
|
quoteId: string;
|
|
55
55
|
status: string;
|
|
56
56
|
payloadJson: string;
|
|
57
|
+
inputAmountToPay: string;
|
|
58
|
+
inputCurrencyToPay: string;
|
|
59
|
+
convertedAmountToPay: string;
|
|
60
|
+
convertedCurrencyToPay: string;
|
|
57
61
|
}
|
|
58
62
|
|
|
59
63
|
export interface ParseMusePayPromptPayQrRequest {
|
|
@@ -67,6 +71,10 @@ export interface ParseMusePayPromptPayQrResponse {
|
|
|
67
71
|
quoteId: string;
|
|
68
72
|
status: string;
|
|
69
73
|
payloadJson: string;
|
|
74
|
+
inputAmountToPay: string;
|
|
75
|
+
inputCurrencyToPay: string;
|
|
76
|
+
convertedAmountToPay: string;
|
|
77
|
+
convertedCurrencyToPay: string;
|
|
70
78
|
}
|
|
71
79
|
|
|
72
80
|
export interface ConfirmMusePayPayoutPaymentRequest {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arbiwallet/contracts",
|
|
3
3
|
"descriptions": "Generate and manage smart contracts for ArbiWallet",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.55",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
|
|
7
7
|
},
|
package/proto/payout.proto
CHANGED
|
@@ -60,6 +60,10 @@ message ParseMusePayPromptPayQrTestResponse {
|
|
|
60
60
|
string quote_id = 2;
|
|
61
61
|
string status = 3;
|
|
62
62
|
string payload_json = 4;
|
|
63
|
+
string input_amount_to_pay = 5;
|
|
64
|
+
string input_currency_to_pay = 6;
|
|
65
|
+
string converted_amount_to_pay = 7;
|
|
66
|
+
string converted_currency_to_pay = 8;
|
|
63
67
|
}
|
|
64
68
|
|
|
65
69
|
message ParseMusePayPromptPayQrRequest {
|
|
@@ -73,6 +77,10 @@ message ParseMusePayPromptPayQrResponse {
|
|
|
73
77
|
string quote_id = 2;
|
|
74
78
|
string status = 3;
|
|
75
79
|
string payload_json = 4;
|
|
80
|
+
string input_amount_to_pay = 5;
|
|
81
|
+
string input_currency_to_pay = 6;
|
|
82
|
+
string converted_amount_to_pay = 7;
|
|
83
|
+
string converted_currency_to_pay = 8;
|
|
76
84
|
}
|
|
77
85
|
|
|
78
86
|
message ConfirmMusePayPayoutPaymentRequest {
|