@arbiwallet/contracts 1.0.53 → 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 CHANGED
@@ -46,6 +46,7 @@ export interface HandlePayoutWebhookResponse {
46
46
  export interface ParseMusePayPromptPayQrTestRequest {
47
47
  qrString: string;
48
48
  userId: string;
49
+ amount: number;
49
50
  }
50
51
 
51
52
  export interface ParseMusePayPromptPayQrTestResponse {
@@ -53,11 +54,16 @@ export interface ParseMusePayPromptPayQrTestResponse {
53
54
  quoteId: string;
54
55
  status: string;
55
56
  payloadJson: string;
57
+ inputAmountToPay: string;
58
+ inputCurrencyToPay: string;
59
+ convertedAmountToPay: string;
60
+ convertedCurrencyToPay: string;
56
61
  }
57
62
 
58
63
  export interface ParseMusePayPromptPayQrRequest {
59
64
  qrString: string;
60
65
  userId: string;
66
+ amount: number;
61
67
  }
62
68
 
63
69
  export interface ParseMusePayPromptPayQrResponse {
@@ -65,6 +71,10 @@ export interface ParseMusePayPromptPayQrResponse {
65
71
  quoteId: string;
66
72
  status: string;
67
73
  payloadJson: string;
74
+ inputAmountToPay: string;
75
+ inputCurrencyToPay: string;
76
+ convertedAmountToPay: string;
77
+ convertedCurrencyToPay: string;
68
78
  }
69
79
 
70
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.53",
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
  },
@@ -52,6 +52,7 @@ message HandlePayoutWebhookResponse {
52
52
  message ParseMusePayPromptPayQrTestRequest {
53
53
  string qr_string = 1;
54
54
  string user_id = 2;
55
+ double amount = 3;
55
56
  }
56
57
 
57
58
  message ParseMusePayPromptPayQrTestResponse {
@@ -59,11 +60,16 @@ message ParseMusePayPromptPayQrTestResponse {
59
60
  string quote_id = 2;
60
61
  string status = 3;
61
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;
62
67
  }
63
68
 
64
69
  message ParseMusePayPromptPayQrRequest {
65
70
  string qr_string = 1;
66
71
  string user_id = 2;
72
+ double amount = 3;
67
73
  }
68
74
 
69
75
  message ParseMusePayPromptPayQrResponse {
@@ -71,6 +77,10 @@ message ParseMusePayPromptPayQrResponse {
71
77
  string quote_id = 2;
72
78
  string status = 3;
73
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;
74
84
  }
75
85
 
76
86
  message ConfirmMusePayPayoutPaymentRequest {