protobuf-platform 1.2.540 → 1.2.542
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 +1 -1
- package/payment/payment.proto +20 -0
- package/payment/payment_pb.js +1135 -146
- package/user/user.proto +29 -0
- package/user/user_grpc_pb.js +34 -0
- package/user/user_pb.js +1246 -0
package/package.json
CHANGED
package/payment/payment.proto
CHANGED
|
@@ -301,6 +301,25 @@ message OperationItemsResponse {
|
|
|
301
301
|
optional int32 total_pages = 2;
|
|
302
302
|
optional int32 total_items = 3;
|
|
303
303
|
}
|
|
304
|
+
message ProviderOutcome {
|
|
305
|
+
optional string operation_type = 1;
|
|
306
|
+
optional string status_code = 2;
|
|
307
|
+
optional string reason_code = 3;
|
|
308
|
+
optional string provider_code = 4;
|
|
309
|
+
optional string provider_message = 5;
|
|
310
|
+
optional string provider_status = 6;
|
|
311
|
+
optional string terminal_status_code = 7;
|
|
312
|
+
optional string external_ref = 8;
|
|
313
|
+
optional string provider_payment_id = 9;
|
|
314
|
+
optional string provider_transaction_id = 10;
|
|
315
|
+
optional string reference_type = 11;
|
|
316
|
+
optional string reference_id = 12;
|
|
317
|
+
optional int32 deposit_id = 13;
|
|
318
|
+
optional int32 withdrawal_id = 14;
|
|
319
|
+
optional float amount_requested = 15;
|
|
320
|
+
optional float amount_processed = 16;
|
|
321
|
+
optional string currency = 17;
|
|
322
|
+
}
|
|
304
323
|
message OperationDetailsItem {
|
|
305
324
|
int32 id = 1;
|
|
306
325
|
string public_id = 2;
|
|
@@ -320,6 +339,7 @@ message OperationDetailsItem {
|
|
|
320
339
|
string completed = 16;
|
|
321
340
|
optional string comment = 17;
|
|
322
341
|
optional string provider_code = 18;
|
|
342
|
+
optional ProviderOutcome provider_outcome = 19;
|
|
323
343
|
}
|
|
324
344
|
message OperationLedgerItem {
|
|
325
345
|
int32 id = 1;
|