@devline-smart-taxi/common 2.3.38 → 2.3.39
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 +2 -0
- package/dist/proto/user.proto +3 -0
- package/package.json +1 -1
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/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 {
|