@devline-smart-taxi/common 2.3.71 → 2.3.72
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 +7 -1
- package/package.json +1 -1
package/dist/proto/trip.proto
CHANGED
|
@@ -151,6 +151,9 @@ message TripListItem {
|
|
|
151
151
|
// Vaqtlar
|
|
152
152
|
optional string startedAt = 19;
|
|
153
153
|
optional string endedAt = 20;
|
|
154
|
+
// Ownership ids (all roles)
|
|
155
|
+
optional string clientId = 23;
|
|
156
|
+
optional string driverId = 24;
|
|
154
157
|
}
|
|
155
158
|
|
|
156
159
|
message TripListResponse {
|
|
@@ -186,6 +189,9 @@ message TripDetailResponse {
|
|
|
186
189
|
// Manzil nomlari
|
|
187
190
|
optional string pickupAddress = 21;
|
|
188
191
|
optional string destinationAddress = 22;
|
|
192
|
+
// Ownership ids (all roles)
|
|
193
|
+
optional string clientId = 23;
|
|
194
|
+
optional string driverId = 24;
|
|
189
195
|
}
|
|
190
196
|
|
|
191
197
|
message GetDriverTodayTripsCountRequest {
|
|
@@ -195,4 +201,4 @@ message GetDriverTodayTripsCountRequest {
|
|
|
195
201
|
message GetDriverTodayTripsCountResponse {
|
|
196
202
|
int32 count = 1;
|
|
197
203
|
double totalEarnings = 2;
|
|
198
|
-
}
|
|
204
|
+
}
|