@arbiwallet/contracts 1.0.277 → 1.0.278
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 +16 -0
- package/package.json +1 -1
- package/proto/exchange_core.proto +10 -0
package/gen/exchange_core.ts
CHANGED
|
@@ -439,6 +439,22 @@ export interface GetExchangePaymentsRequest {
|
|
|
439
439
|
page?: number | undefined;
|
|
440
440
|
limit?: number | undefined;
|
|
441
441
|
authManagerContext?: AuthManagerContext | undefined;
|
|
442
|
+
paymentNumber?: string | undefined;
|
|
443
|
+
customerId?: string | undefined;
|
|
444
|
+
startDate?: string | undefined;
|
|
445
|
+
endDate?:
|
|
446
|
+
| string
|
|
447
|
+
| undefined;
|
|
448
|
+
/** all | RUB | USDT */
|
|
449
|
+
currency?: string | undefined;
|
|
450
|
+
amountFrom?: number | undefined;
|
|
451
|
+
amountTo?: number | undefined;
|
|
452
|
+
status?: string | undefined;
|
|
453
|
+
paymentAgent?:
|
|
454
|
+
| number
|
|
455
|
+
| undefined;
|
|
456
|
+
/** date_asc | date_desc | amount_asc | amount_desc */
|
|
457
|
+
sort?: string | undefined;
|
|
442
458
|
}
|
|
443
459
|
|
|
444
460
|
export interface GetExchangePaymentsItem {
|
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.278",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
|
|
7
7
|
},
|
|
@@ -484,6 +484,16 @@ message GetExchangePaymentsRequest {
|
|
|
484
484
|
optional int32 page = 1;
|
|
485
485
|
optional int32 limit = 2;
|
|
486
486
|
optional AuthManagerContext auth_manager_context = 3;
|
|
487
|
+
optional string payment_number = 4;
|
|
488
|
+
optional string customer_id = 5;
|
|
489
|
+
optional string start_date = 6;
|
|
490
|
+
optional string end_date = 7;
|
|
491
|
+
optional string currency = 8; // all | RUB | USDT
|
|
492
|
+
optional double amount_from = 9;
|
|
493
|
+
optional double amount_to = 10;
|
|
494
|
+
optional string status = 11;
|
|
495
|
+
optional int32 payment_agent = 12;
|
|
496
|
+
optional string sort = 13; // date_asc | date_desc | amount_asc | amount_desc
|
|
487
497
|
}
|
|
488
498
|
|
|
489
499
|
message GetExchangePaymentsItem {
|