@devline-smart-taxi/common 2.3.38 → 2.3.40
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/driver.proto
CHANGED
|
@@ -160,6 +160,7 @@ message UpdateDriverPersonalInfoRequest {
|
|
|
160
160
|
optional string cardFrontId = 5;
|
|
161
161
|
optional string cardBackId = 6;
|
|
162
162
|
optional string selfieWithCardId = 7;
|
|
163
|
+
optional string lang = 8;
|
|
163
164
|
}
|
|
164
165
|
|
|
165
166
|
message UpdateDriverCarInfoRequest {
|
|
@@ -311,6 +312,7 @@ message DriverData {
|
|
|
311
312
|
optional string branchId = 20;
|
|
312
313
|
optional float rating = 21;
|
|
313
314
|
optional string fcm_token = 22;
|
|
315
|
+
optional string lang = 23;
|
|
314
316
|
}
|
|
315
317
|
|
|
316
318
|
// Haydovchining hujjatlari (ID karta, selfi, haydovchilik guvohnomasi)
|
package/dist/proto/trip.proto
CHANGED
|
@@ -135,7 +135,6 @@ message TripListItem {
|
|
|
135
135
|
optional string pickupAddress = 17;
|
|
136
136
|
optional string destinationAddress = 18;
|
|
137
137
|
// Vaqtlar
|
|
138
|
-
optional string startedAt = 19;
|
|
139
138
|
optional string endedAt = 20;
|
|
140
139
|
}
|
|
141
140
|
|
|
@@ -161,7 +160,6 @@ message TripDetailResponse {
|
|
|
161
160
|
optional float destinationLat = 10;
|
|
162
161
|
optional float destinationLng = 11;
|
|
163
162
|
string createdAt = 12;
|
|
164
|
-
optional string startedAt = 13;
|
|
165
163
|
optional string endedAt = 14;
|
|
166
164
|
// Mashina
|
|
167
165
|
optional string carModel = 16;
|
package/dist/proto/user.proto
CHANGED
|
@@ -46,6 +46,7 @@ message UserData {
|
|
|
46
46
|
optional string referralCode = 15;
|
|
47
47
|
optional string referredById = 16;
|
|
48
48
|
optional string fcmToken = 17;
|
|
49
|
+
optional string lang = 18;
|
|
49
50
|
}
|
|
50
51
|
|
|
51
52
|
message Id{
|
|
@@ -82,6 +83,7 @@ message CreateUserRequest {
|
|
|
82
83
|
optional string address = 5;
|
|
83
84
|
bool hasDataConsent = 6;
|
|
84
85
|
optional string userImageId = 7;
|
|
86
|
+
optional string lang = 8;
|
|
85
87
|
}
|
|
86
88
|
|
|
87
89
|
message GetAllWithPaginationRequest {
|
|
@@ -99,6 +101,7 @@ message UpdateUserRequest {
|
|
|
99
101
|
string id = 6;
|
|
100
102
|
optional string userImageId = 7;
|
|
101
103
|
optional float rating = 8;
|
|
104
|
+
optional string lang = 9;
|
|
102
105
|
}
|
|
103
106
|
|
|
104
107
|
message RefreshTokenRequest {
|