@devline-smart-taxi/common 2.3.88 → 2.3.90
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
|
@@ -140,6 +140,7 @@ message AdminOnboardDriverRequest {
|
|
|
140
140
|
int32 experience = 24;
|
|
141
141
|
string licenseFrontId = 25;
|
|
142
142
|
string licenseBackId = 26;
|
|
143
|
+
optional int32 carYear = 27;
|
|
143
144
|
}
|
|
144
145
|
|
|
145
146
|
message VerifyOtpRequest {
|
|
@@ -171,6 +172,7 @@ message SaveCarInfoRequest {
|
|
|
171
172
|
string documentFrontId = 7; // UsersImage ID (UUID) - Tex-pasport oldi rasmi
|
|
172
173
|
string documentBackId = 8; // UsersImage ID (UUID) - Tex-pasport orqa rasmi
|
|
173
174
|
string secretOtp = 9; // Oldingi stepdan kelgan maxfiy OTP
|
|
175
|
+
optional int32 carYear = 10;
|
|
174
176
|
}
|
|
175
177
|
|
|
176
178
|
message GetAllDriversRequest {
|
|
@@ -286,6 +288,7 @@ message UpdateDriverCarInfoRequest {
|
|
|
286
288
|
optional string documentFrontId = 7;
|
|
287
289
|
optional string documentBackId = 8;
|
|
288
290
|
optional string carClassId = 9;
|
|
291
|
+
optional int32 carYear = 10;
|
|
289
292
|
}
|
|
290
293
|
|
|
291
294
|
message CreateDriverCarRequest {
|
|
@@ -297,6 +300,7 @@ message CreateDriverCarRequest {
|
|
|
297
300
|
bool isOwner = 6;
|
|
298
301
|
string documentFrontId = 7;
|
|
299
302
|
string documentBackId = 8;
|
|
303
|
+
optional int32 carYear = 9;
|
|
300
304
|
}
|
|
301
305
|
|
|
302
306
|
message ApproveDriverCarRequest {
|
|
@@ -488,6 +492,7 @@ message DriverCarData {
|
|
|
488
492
|
bool isActive = 12;
|
|
489
493
|
optional string approvalStatus = 13;
|
|
490
494
|
optional string remark = 14;
|
|
495
|
+
optional int32 carYear = 15;
|
|
491
496
|
}
|
|
492
497
|
|
|
493
498
|
message DriverBranchData {
|