@platfformx/proto-contracts 1.4.4 → 1.4.5
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
|
@@ -6,12 +6,12 @@ service RefundService {
|
|
|
6
6
|
rpc CreateRefund (CreateRefundRequest) returns (CreateRefundResponse);
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
-
|
|
10
9
|
message CreateRefundRequest {
|
|
11
|
-
string
|
|
12
|
-
int64
|
|
13
|
-
string currency
|
|
10
|
+
string payment_id = 1;
|
|
11
|
+
int64 amount = 2;
|
|
12
|
+
optional string currency = 3;
|
|
14
13
|
}
|
|
14
|
+
|
|
15
15
|
message CreateRefundResponse {
|
|
16
16
|
bool ok = 1;
|
|
17
17
|
}
|