@devline-smart-taxi/common 2.3.91 → 2.3.93
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/dist/proto/trip.proto +6 -0
- package/package.json +1 -1
package/dist/proto/trip.proto
CHANGED
|
@@ -109,6 +109,7 @@ message AcceptTripResponse {
|
|
|
109
109
|
string clientPhoneNumber = 4;
|
|
110
110
|
int32 statusCode = 5;
|
|
111
111
|
string message = 6;
|
|
112
|
+
string createdAt = 7;
|
|
112
113
|
}
|
|
113
114
|
|
|
114
115
|
message TripFinishResponse {
|
|
@@ -118,6 +119,11 @@ message TripFinishResponse {
|
|
|
118
119
|
int32 durationMinutes = 4;
|
|
119
120
|
string message = 5;
|
|
120
121
|
int32 statusCode = 6;
|
|
122
|
+
string paymentMethod = 7;
|
|
123
|
+
string pickupAddress = 8;
|
|
124
|
+
string destinationAddress = 9;
|
|
125
|
+
string startedAt = 10;
|
|
126
|
+
string endedAt = 11;
|
|
121
127
|
}
|
|
122
128
|
|
|
123
129
|
message CheckDriverHasActiveTripResponse {
|