protobuf-platform 1.2.303 → 1.2.304

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "protobuf-platform",
3
- "version": "1.2.303",
3
+ "version": "1.2.304",
4
4
  "description": "Protobuf structures",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -37,6 +37,7 @@ service Payment {
37
37
  rpc attemptWithdrawal(AttemptWithdrawalRequest) returns (WithdrawalResponse);
38
38
  rpc changeWithdrawalStatus(GetWithdrawalRequest) returns (WithdrawalResponse);
39
39
  rpc readListWithdrawals(PaginationRequest) returns (WithdrawalItemsResponse);
40
+ rpc readSingleWithdrawal(GetWithdrawalRequest) returns (WithdrawalResponse);
40
41
  rpc processingWithdrawalWebHook(WithdrawalWebHookRequest) returns (ProcessedWithdrawalResponse);
41
42
  //Deposit Statuses
42
43
  rpc readListDepositStatuses(PaginationRequest) returns (DepositStatusItemsResponse);
@@ -902,6 +902,17 @@ attemptWithdrawal: {
902
902
  responseSerialize: serialize_payment_WithdrawalItemsResponse,
903
903
  responseDeserialize: deserialize_payment_WithdrawalItemsResponse,
904
904
  },
905
+ readSingleWithdrawal: {
906
+ path: '/payment.Payment/readSingleWithdrawal',
907
+ requestStream: false,
908
+ responseStream: false,
909
+ requestType: payment_pb.GetWithdrawalRequest,
910
+ responseType: payment_pb.WithdrawalResponse,
911
+ requestSerialize: serialize_payment_GetWithdrawalRequest,
912
+ requestDeserialize: deserialize_payment_GetWithdrawalRequest,
913
+ responseSerialize: serialize_payment_WithdrawalResponse,
914
+ responseDeserialize: deserialize_payment_WithdrawalResponse,
915
+ },
905
916
  processingWithdrawalWebHook: {
906
917
  path: '/payment.Payment/processingWithdrawalWebHook',
907
918
  requestStream: false,