@arbiwallet/contracts 1.0.290 → 1.0.292
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 +180 -0
- package/gen/referral.ts +1 -0
- package/package.json +1 -1
- package/proto/exchange_core.proto +113 -0
- package/proto/referral.proto +1 -0
package/gen/exchange_core.ts
CHANGED
|
@@ -513,6 +513,7 @@ export interface GetExchangePaymentsItem {
|
|
|
513
513
|
/** Base amount without network fee (crypto), when stored. */
|
|
514
514
|
amountBase?: number | undefined;
|
|
515
515
|
uuid?: string | undefined;
|
|
516
|
+
realPrimeRateIsFixed?: boolean | undefined;
|
|
516
517
|
}
|
|
517
518
|
|
|
518
519
|
export interface GetExchangePaymentsResponse {
|
|
@@ -531,6 +532,19 @@ export interface GetExchangePaymentResponse {
|
|
|
531
532
|
payment?: GetExchangePaymentsItem | undefined;
|
|
532
533
|
}
|
|
533
534
|
|
|
535
|
+
export interface SetPaymentRealPrimeRateFixedRequest {
|
|
536
|
+
authManagerContext?: AuthManagerContext | undefined;
|
|
537
|
+
paymentId: string;
|
|
538
|
+
isFixed: boolean;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
export interface SetPaymentRealPrimeRateFixedResponse {
|
|
542
|
+
ok: boolean;
|
|
543
|
+
error?: string | undefined;
|
|
544
|
+
paymentId?: string | undefined;
|
|
545
|
+
realPrimeRateIsFixed?: boolean | undefined;
|
|
546
|
+
}
|
|
547
|
+
|
|
534
548
|
export interface SearchExchangePaymentRequest {
|
|
535
549
|
search: string;
|
|
536
550
|
limit: number;
|
|
@@ -655,6 +669,100 @@ export interface GetWalletsMonikaResponse {
|
|
|
655
669
|
wallets: WalletMonikaItem[];
|
|
656
670
|
}
|
|
657
671
|
|
|
672
|
+
export interface PaymentAgentDailyRateItem {
|
|
673
|
+
id: string;
|
|
674
|
+
paymentAgent: number;
|
|
675
|
+
/** YYYY-MM-DD */
|
|
676
|
+
rateDate: string;
|
|
677
|
+
actualCost: number;
|
|
678
|
+
isApplied: boolean;
|
|
679
|
+
affectedPayments: number;
|
|
680
|
+
createdAt: string;
|
|
681
|
+
createdByManagerId?: string | undefined;
|
|
682
|
+
recalculatePayouts: boolean;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
export interface ListPaymentAgentDailyRatesRequest {
|
|
686
|
+
authManagerContext: AuthManagerContext | undefined;
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
export interface ListPaymentAgentDailyRatesResponse {
|
|
690
|
+
items: PaymentAgentDailyRateItem[];
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
export interface CreatePaymentAgentDailyRateRequest {
|
|
694
|
+
authManagerContext: AuthManagerContext | undefined;
|
|
695
|
+
paymentAgent: number;
|
|
696
|
+
/** YYYY-MM-DD */
|
|
697
|
+
rateDate: string;
|
|
698
|
+
actualCost: number;
|
|
699
|
+
recalculatePayouts: boolean;
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
export interface CreatePaymentAgentDailyRateResponse {
|
|
703
|
+
ok: boolean;
|
|
704
|
+
error?: string | undefined;
|
|
705
|
+
item?: PaymentAgentDailyRateItem | undefined;
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
export interface PreviewPaymentAgentDailyRateRequest {
|
|
709
|
+
authManagerContext: AuthManagerContext | undefined;
|
|
710
|
+
id: string;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
export interface PaymentAgentDailyRatePaymentPreviewItem {
|
|
714
|
+
id: string;
|
|
715
|
+
currentRate?: number | undefined;
|
|
716
|
+
createdAt: string;
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
export interface PaymentAgentDailyRateExchangePreviewItem {
|
|
720
|
+
id: string;
|
|
721
|
+
paymentId?: string | undefined;
|
|
722
|
+
currentRate1Iter?: number | undefined;
|
|
723
|
+
currentProfit?: number | undefined;
|
|
724
|
+
inputCurrencyId?: string | undefined;
|
|
725
|
+
outputCurrencyId?: string | undefined;
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
export interface PreviewPaymentAgentDailyRateResponse {
|
|
729
|
+
ok: boolean;
|
|
730
|
+
error?: string | undefined;
|
|
731
|
+
item?: PaymentAgentDailyRateItem | undefined;
|
|
732
|
+
paymentsCount: number;
|
|
733
|
+
exchangesCount: number;
|
|
734
|
+
paymentsFirst: PaymentAgentDailyRatePaymentPreviewItem[];
|
|
735
|
+
paymentsLast: PaymentAgentDailyRatePaymentPreviewItem[];
|
|
736
|
+
exchangesFirst: PaymentAgentDailyRateExchangePreviewItem[];
|
|
737
|
+
exchangesLast: PaymentAgentDailyRateExchangePreviewItem[];
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
export interface ApplyPaymentAgentDailyRateRequest {
|
|
741
|
+
authManagerContext: AuthManagerContext | undefined;
|
|
742
|
+
id: string;
|
|
743
|
+
}
|
|
744
|
+
|
|
745
|
+
export interface ApplyPaymentAgentDailyRateResponse {
|
|
746
|
+
ok: boolean;
|
|
747
|
+
error?: string | undefined;
|
|
748
|
+
item?: PaymentAgentDailyRateItem | undefined;
|
|
749
|
+
paymentsUpdated: number;
|
|
750
|
+
exchangesUpdated: number;
|
|
751
|
+
taskId?: string | undefined;
|
|
752
|
+
transactionsUpdated: number;
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
export interface DeletePaymentAgentDailyRateRequest {
|
|
756
|
+
authManagerContext: AuthManagerContext | undefined;
|
|
757
|
+
id: string;
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
export interface DeletePaymentAgentDailyRateResponse {
|
|
761
|
+
ok: boolean;
|
|
762
|
+
error?: string | undefined;
|
|
763
|
+
deleted: boolean;
|
|
764
|
+
}
|
|
765
|
+
|
|
658
766
|
export interface ListExchangePayoutsRequest {
|
|
659
767
|
authManagerContext: AuthManagerContext | undefined;
|
|
660
768
|
page?: number | undefined;
|
|
@@ -783,6 +891,10 @@ export interface ExchangeCoreServiceClient {
|
|
|
783
891
|
|
|
784
892
|
getExchangePayment(request: GetExchangePaymentRequest): Observable<GetExchangePaymentResponse>;
|
|
785
893
|
|
|
894
|
+
setPaymentRealPrimeRateFixed(
|
|
895
|
+
request: SetPaymentRealPrimeRateFixedRequest,
|
|
896
|
+
): Observable<SetPaymentRealPrimeRateFixedResponse>;
|
|
897
|
+
|
|
786
898
|
getPaymentsSummary(request: ExchangeCalculationsFiltersRequest): Observable<GetPaymentsSummaryResponse>;
|
|
787
899
|
|
|
788
900
|
searchExchangePayment(request: SearchExchangePaymentRequest): Observable<SearchExchangePaymentResponse>;
|
|
@@ -798,6 +910,26 @@ export interface ExchangeCoreServiceClient {
|
|
|
798
910
|
getWallets(request: GetWalletsRequest): Observable<GetWalletsResponse>;
|
|
799
911
|
|
|
800
912
|
getWalletsMonika(request: GetWalletsMonikaRequest): Observable<GetWalletsMonikaResponse>;
|
|
913
|
+
|
|
914
|
+
listPaymentAgentDailyRates(
|
|
915
|
+
request: ListPaymentAgentDailyRatesRequest,
|
|
916
|
+
): Observable<ListPaymentAgentDailyRatesResponse>;
|
|
917
|
+
|
|
918
|
+
createPaymentAgentDailyRate(
|
|
919
|
+
request: CreatePaymentAgentDailyRateRequest,
|
|
920
|
+
): Observable<CreatePaymentAgentDailyRateResponse>;
|
|
921
|
+
|
|
922
|
+
previewPaymentAgentDailyRate(
|
|
923
|
+
request: PreviewPaymentAgentDailyRateRequest,
|
|
924
|
+
): Observable<PreviewPaymentAgentDailyRateResponse>;
|
|
925
|
+
|
|
926
|
+
applyPaymentAgentDailyRate(
|
|
927
|
+
request: ApplyPaymentAgentDailyRateRequest,
|
|
928
|
+
): Observable<ApplyPaymentAgentDailyRateResponse>;
|
|
929
|
+
|
|
930
|
+
deletePaymentAgentDailyRate(
|
|
931
|
+
request: DeletePaymentAgentDailyRateRequest,
|
|
932
|
+
): Observable<DeletePaymentAgentDailyRateResponse>;
|
|
801
933
|
}
|
|
802
934
|
|
|
803
935
|
export interface ExchangeCoreServiceController {
|
|
@@ -897,6 +1029,13 @@ export interface ExchangeCoreServiceController {
|
|
|
897
1029
|
request: GetExchangePaymentRequest,
|
|
898
1030
|
): Promise<GetExchangePaymentResponse> | Observable<GetExchangePaymentResponse> | GetExchangePaymentResponse;
|
|
899
1031
|
|
|
1032
|
+
setPaymentRealPrimeRateFixed(
|
|
1033
|
+
request: SetPaymentRealPrimeRateFixedRequest,
|
|
1034
|
+
):
|
|
1035
|
+
| Promise<SetPaymentRealPrimeRateFixedResponse>
|
|
1036
|
+
| Observable<SetPaymentRealPrimeRateFixedResponse>
|
|
1037
|
+
| SetPaymentRealPrimeRateFixedResponse;
|
|
1038
|
+
|
|
900
1039
|
getPaymentsSummary(
|
|
901
1040
|
request: ExchangeCalculationsFiltersRequest,
|
|
902
1041
|
): Promise<GetPaymentsSummaryResponse> | Observable<GetPaymentsSummaryResponse> | GetPaymentsSummaryResponse;
|
|
@@ -927,6 +1066,41 @@ export interface ExchangeCoreServiceController {
|
|
|
927
1066
|
getWalletsMonika(
|
|
928
1067
|
request: GetWalletsMonikaRequest,
|
|
929
1068
|
): Promise<GetWalletsMonikaResponse> | Observable<GetWalletsMonikaResponse> | GetWalletsMonikaResponse;
|
|
1069
|
+
|
|
1070
|
+
listPaymentAgentDailyRates(
|
|
1071
|
+
request: ListPaymentAgentDailyRatesRequest,
|
|
1072
|
+
):
|
|
1073
|
+
| Promise<ListPaymentAgentDailyRatesResponse>
|
|
1074
|
+
| Observable<ListPaymentAgentDailyRatesResponse>
|
|
1075
|
+
| ListPaymentAgentDailyRatesResponse;
|
|
1076
|
+
|
|
1077
|
+
createPaymentAgentDailyRate(
|
|
1078
|
+
request: CreatePaymentAgentDailyRateRequest,
|
|
1079
|
+
):
|
|
1080
|
+
| Promise<CreatePaymentAgentDailyRateResponse>
|
|
1081
|
+
| Observable<CreatePaymentAgentDailyRateResponse>
|
|
1082
|
+
| CreatePaymentAgentDailyRateResponse;
|
|
1083
|
+
|
|
1084
|
+
previewPaymentAgentDailyRate(
|
|
1085
|
+
request: PreviewPaymentAgentDailyRateRequest,
|
|
1086
|
+
):
|
|
1087
|
+
| Promise<PreviewPaymentAgentDailyRateResponse>
|
|
1088
|
+
| Observable<PreviewPaymentAgentDailyRateResponse>
|
|
1089
|
+
| PreviewPaymentAgentDailyRateResponse;
|
|
1090
|
+
|
|
1091
|
+
applyPaymentAgentDailyRate(
|
|
1092
|
+
request: ApplyPaymentAgentDailyRateRequest,
|
|
1093
|
+
):
|
|
1094
|
+
| Promise<ApplyPaymentAgentDailyRateResponse>
|
|
1095
|
+
| Observable<ApplyPaymentAgentDailyRateResponse>
|
|
1096
|
+
| ApplyPaymentAgentDailyRateResponse;
|
|
1097
|
+
|
|
1098
|
+
deletePaymentAgentDailyRate(
|
|
1099
|
+
request: DeletePaymentAgentDailyRateRequest,
|
|
1100
|
+
):
|
|
1101
|
+
| Promise<DeletePaymentAgentDailyRateResponse>
|
|
1102
|
+
| Observable<DeletePaymentAgentDailyRateResponse>
|
|
1103
|
+
| DeletePaymentAgentDailyRateResponse;
|
|
930
1104
|
}
|
|
931
1105
|
|
|
932
1106
|
export function ExchangeCoreServiceControllerMethods() {
|
|
@@ -953,6 +1127,7 @@ export function ExchangeCoreServiceControllerMethods() {
|
|
|
953
1127
|
"createExchangePayout",
|
|
954
1128
|
"handleExchangePayoutWebhook",
|
|
955
1129
|
"getExchangePayment",
|
|
1130
|
+
"setPaymentRealPrimeRateFixed",
|
|
956
1131
|
"getPaymentsSummary",
|
|
957
1132
|
"searchExchangePayment",
|
|
958
1133
|
"prealoadExchangePaymentForSearch",
|
|
@@ -960,6 +1135,11 @@ export function ExchangeCoreServiceControllerMethods() {
|
|
|
960
1135
|
"getExchangeStatuses",
|
|
961
1136
|
"getWallets",
|
|
962
1137
|
"getWalletsMonika",
|
|
1138
|
+
"listPaymentAgentDailyRates",
|
|
1139
|
+
"createPaymentAgentDailyRate",
|
|
1140
|
+
"previewPaymentAgentDailyRate",
|
|
1141
|
+
"applyPaymentAgentDailyRate",
|
|
1142
|
+
"deletePaymentAgentDailyRate",
|
|
963
1143
|
];
|
|
964
1144
|
for (const method of grpcMethods) {
|
|
965
1145
|
const descriptor: any = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
package/gen/referral.ts
CHANGED
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.292",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
|
|
7
7
|
},
|
|
@@ -33,6 +33,7 @@ service ExchangeCoreService {
|
|
|
33
33
|
rpc CreateExchangePayout(CreateExchangePayoutRequest) returns (CreateExchangePayoutResponse);
|
|
34
34
|
rpc HandleExchangePayoutWebhook(HandleExchangePayoutWebhookRequest) returns (HandleExchangePayoutWebhookResponse);
|
|
35
35
|
rpc GetExchangePayment(GetExchangePaymentRequest) returns (GetExchangePaymentResponse);
|
|
36
|
+
rpc SetPaymentRealPrimeRateFixed(SetPaymentRealPrimeRateFixedRequest) returns (SetPaymentRealPrimeRateFixedResponse);
|
|
36
37
|
rpc GetPaymentsSummary(ExchangeCalculationsFiltersRequest) returns (GetPaymentsSummaryResponse);
|
|
37
38
|
rpc SearchExchangePayment(SearchExchangePaymentRequest) returns (SearchExchangePaymentResponse);
|
|
38
39
|
rpc PrealoadExchangePaymentForSearch(PrealoadExchangePaymentForSearchRequest) returns (PrealoadExchangePaymentForSearchResponse);
|
|
@@ -42,6 +43,12 @@ service ExchangeCoreService {
|
|
|
42
43
|
|
|
43
44
|
rpc GetWallets(GetWalletsRequest) returns (GetWalletsResponse);
|
|
44
45
|
rpc GetWalletsMonika(GetWalletsMonikaRequest) returns (GetWalletsMonikaResponse);
|
|
46
|
+
|
|
47
|
+
rpc ListPaymentAgentDailyRates(ListPaymentAgentDailyRatesRequest) returns (ListPaymentAgentDailyRatesResponse);
|
|
48
|
+
rpc CreatePaymentAgentDailyRate(CreatePaymentAgentDailyRateRequest) returns (CreatePaymentAgentDailyRateResponse);
|
|
49
|
+
rpc PreviewPaymentAgentDailyRate(PreviewPaymentAgentDailyRateRequest) returns (PreviewPaymentAgentDailyRateResponse);
|
|
50
|
+
rpc ApplyPaymentAgentDailyRate(ApplyPaymentAgentDailyRateRequest) returns (ApplyPaymentAgentDailyRateResponse);
|
|
51
|
+
rpc DeletePaymentAgentDailyRate(DeletePaymentAgentDailyRateRequest) returns (DeletePaymentAgentDailyRateResponse);
|
|
45
52
|
}
|
|
46
53
|
|
|
47
54
|
message AuthManagerContext {
|
|
@@ -552,6 +559,7 @@ message GetExchangePaymentsItem {
|
|
|
552
559
|
/** Base amount without network fee (crypto), when stored. */
|
|
553
560
|
optional double amount_base = 17;
|
|
554
561
|
optional string uuid = 18;
|
|
562
|
+
optional bool real_prime_rate_is_fixed = 19;
|
|
555
563
|
}
|
|
556
564
|
|
|
557
565
|
message GetExchangePaymentsResponse {
|
|
@@ -570,6 +578,19 @@ message GetExchangePaymentResponse {
|
|
|
570
578
|
optional GetExchangePaymentsItem payment = 1;
|
|
571
579
|
}
|
|
572
580
|
|
|
581
|
+
message SetPaymentRealPrimeRateFixedRequest {
|
|
582
|
+
optional AuthManagerContext auth_manager_context = 1;
|
|
583
|
+
string payment_id = 2;
|
|
584
|
+
bool is_fixed = 3;
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
message SetPaymentRealPrimeRateFixedResponse {
|
|
588
|
+
bool ok = 1;
|
|
589
|
+
optional string error = 2;
|
|
590
|
+
optional string payment_id = 3;
|
|
591
|
+
optional bool real_prime_rate_is_fixed = 4;
|
|
592
|
+
}
|
|
593
|
+
|
|
573
594
|
message SearchExchangePaymentRequest {
|
|
574
595
|
string search = 1;
|
|
575
596
|
int32 limit = 2;
|
|
@@ -694,6 +715,98 @@ message GetWalletsMonikaResponse {
|
|
|
694
715
|
repeated WalletMonikaItem wallets = 2;
|
|
695
716
|
}
|
|
696
717
|
|
|
718
|
+
message PaymentAgentDailyRateItem {
|
|
719
|
+
string id = 1;
|
|
720
|
+
int32 payment_agent = 2;
|
|
721
|
+
string rate_date = 3; // YYYY-MM-DD
|
|
722
|
+
double actual_cost = 4;
|
|
723
|
+
bool is_applied = 5;
|
|
724
|
+
int32 affected_payments = 6;
|
|
725
|
+
string created_at = 7;
|
|
726
|
+
optional string created_by_manager_id = 8;
|
|
727
|
+
bool recalculate_payouts = 9;
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
message ListPaymentAgentDailyRatesRequest {
|
|
731
|
+
AuthManagerContext auth_manager_context = 1;
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
message ListPaymentAgentDailyRatesResponse {
|
|
735
|
+
repeated PaymentAgentDailyRateItem items = 1;
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
message CreatePaymentAgentDailyRateRequest {
|
|
739
|
+
AuthManagerContext auth_manager_context = 1;
|
|
740
|
+
int32 payment_agent = 2;
|
|
741
|
+
string rate_date = 3; // YYYY-MM-DD
|
|
742
|
+
double actual_cost = 4;
|
|
743
|
+
bool recalculate_payouts = 5;
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
message CreatePaymentAgentDailyRateResponse {
|
|
747
|
+
bool ok = 1;
|
|
748
|
+
optional string error = 2;
|
|
749
|
+
optional PaymentAgentDailyRateItem item = 3;
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
message PreviewPaymentAgentDailyRateRequest {
|
|
753
|
+
AuthManagerContext auth_manager_context = 1;
|
|
754
|
+
string id = 2;
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
message PaymentAgentDailyRatePaymentPreviewItem {
|
|
758
|
+
string id = 1;
|
|
759
|
+
optional double current_rate = 2;
|
|
760
|
+
string created_at = 3;
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
message PaymentAgentDailyRateExchangePreviewItem {
|
|
764
|
+
string id = 1;
|
|
765
|
+
optional string payment_id = 2;
|
|
766
|
+
optional double current_rate_1_iter = 3;
|
|
767
|
+
optional double current_profit = 4;
|
|
768
|
+
optional string input_currency_id = 5;
|
|
769
|
+
optional string output_currency_id = 6;
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
message PreviewPaymentAgentDailyRateResponse {
|
|
773
|
+
bool ok = 1;
|
|
774
|
+
optional string error = 2;
|
|
775
|
+
optional PaymentAgentDailyRateItem item = 3;
|
|
776
|
+
int32 payments_count = 4;
|
|
777
|
+
int32 exchanges_count = 5;
|
|
778
|
+
repeated PaymentAgentDailyRatePaymentPreviewItem payments_first = 6;
|
|
779
|
+
repeated PaymentAgentDailyRatePaymentPreviewItem payments_last = 7;
|
|
780
|
+
repeated PaymentAgentDailyRateExchangePreviewItem exchanges_first = 8;
|
|
781
|
+
repeated PaymentAgentDailyRateExchangePreviewItem exchanges_last = 9;
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
message ApplyPaymentAgentDailyRateRequest {
|
|
785
|
+
AuthManagerContext auth_manager_context = 1;
|
|
786
|
+
string id = 2;
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
message ApplyPaymentAgentDailyRateResponse {
|
|
790
|
+
bool ok = 1;
|
|
791
|
+
optional string error = 2;
|
|
792
|
+
optional PaymentAgentDailyRateItem item = 3;
|
|
793
|
+
int32 payments_updated = 4;
|
|
794
|
+
int32 exchanges_updated = 5;
|
|
795
|
+
optional string task_id = 6;
|
|
796
|
+
int32 transactions_updated = 7;
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
message DeletePaymentAgentDailyRateRequest {
|
|
800
|
+
AuthManagerContext auth_manager_context = 1;
|
|
801
|
+
string id = 2;
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
message DeletePaymentAgentDailyRateResponse {
|
|
805
|
+
bool ok = 1;
|
|
806
|
+
optional string error = 2;
|
|
807
|
+
bool deleted = 3;
|
|
808
|
+
}
|
|
809
|
+
|
|
697
810
|
// --- Exchange Overpay payouts (CRM «Выплаты по обменам») ---
|
|
698
811
|
|
|
699
812
|
message ListExchangePayoutsRequest {
|
package/proto/referral.proto
CHANGED