@arbiwallet/contracts 1.0.213 → 1.0.214
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/exchange_core.ts +1 -0
- package/package.json +1 -1
- package/proto/exchange_core.proto +11 -10
package/gen/exchange_core.ts
CHANGED
|
@@ -62,6 +62,7 @@ export interface CreateExchangeDealRequest {
|
|
|
62
62
|
inputCurrencyId?: string | undefined;
|
|
63
63
|
outputCurrencyId?: string | undefined;
|
|
64
64
|
customerId?: string | undefined;
|
|
65
|
+
managerPersonId?: string | undefined;
|
|
65
66
|
expensesForCourier?: number | undefined;
|
|
66
67
|
includeInTotalCalculation?: boolean | undefined;
|
|
67
68
|
oneCurrencyExchange?: boolean | undefined;
|
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.214",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
|
|
7
7
|
},
|
|
@@ -138,19 +138,20 @@ message CreateExchangeDealRequest {
|
|
|
138
138
|
optional string output_currency_id = 12;
|
|
139
139
|
|
|
140
140
|
optional string customer_id = 13;
|
|
141
|
+
optional string manager_person_id = 14;
|
|
141
142
|
|
|
142
|
-
optional double expenses_for_courier =
|
|
143
|
-
optional bool include_in_total_calculation =
|
|
144
|
-
optional bool one_currency_exchange =
|
|
145
|
-
optional bool received_from_dealer =
|
|
146
|
-
optional string received_from_dealer_wallet_id =
|
|
143
|
+
optional double expenses_for_courier = 15;
|
|
144
|
+
optional bool include_in_total_calculation = 16;
|
|
145
|
+
optional bool one_currency_exchange = 17;
|
|
146
|
+
optional bool received_from_dealer = 18;
|
|
147
|
+
optional string received_from_dealer_wallet_id = 19;
|
|
147
148
|
|
|
148
|
-
optional string customer_doc_name =
|
|
149
|
-
optional string customer_doc_nationality =
|
|
150
|
-
optional string customer_doc_number =
|
|
149
|
+
optional string customer_doc_name = 20;
|
|
150
|
+
optional string customer_doc_nationality = 21;
|
|
151
|
+
optional string customer_doc_number = 22;
|
|
151
152
|
|
|
152
|
-
optional string customer_source =
|
|
153
|
-
optional string customer_referrer =
|
|
153
|
+
optional string customer_source = 23;
|
|
154
|
+
optional string customer_referrer = 24;
|
|
154
155
|
|
|
155
156
|
repeated double receipts = 25;
|
|
156
157
|
}
|