@platfformx/proto-contracts 1.5.2 → 1.5.4
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
|
@@ -8,17 +8,18 @@ service RefundService {
|
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
message CreateRefundRequest {
|
|
11
|
-
string
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
string providerId = 1;
|
|
12
|
+
string paymentId = 2;
|
|
13
|
+
int64 amount = 32;
|
|
14
|
+
optional string currency = 4;
|
|
14
15
|
}
|
|
15
16
|
|
|
16
17
|
message CreateRefundResponse {
|
|
17
18
|
bool ok = 1;
|
|
18
|
-
string
|
|
19
|
+
string providerId = 2;
|
|
19
20
|
}
|
|
20
21
|
message ConfirmRefundRequest {
|
|
21
|
-
string
|
|
22
|
+
string providerId = 1;
|
|
22
23
|
string status = 2;
|
|
23
24
|
}
|
|
24
25
|
|