@devline-smart-taxi/common 2.3.49 → 2.3.51
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
|
@@ -70,6 +70,9 @@ service DriverService {
|
|
|
70
70
|
|
|
71
71
|
// Ro'yxatdan o'tish holatini tekshirish (auth talab qilinmaydi)
|
|
72
72
|
rpc GetRegistrationStatus (GetRegistrationStatusRequest) returns (GetRegistrationStatusResponse);
|
|
73
|
+
|
|
74
|
+
// Rad etilgan arizani qayta yuborish (REJECTED -> PERSONAL_INFO_ADDED)
|
|
75
|
+
rpc ResendApplication (ResendApplicationRequest) returns (ResendApplicationResponse);
|
|
73
76
|
}
|
|
74
77
|
|
|
75
78
|
// ==========================================
|
|
@@ -169,6 +172,11 @@ message GetRegistrationStatusRequest {
|
|
|
169
172
|
string secretOtp = 2;
|
|
170
173
|
}
|
|
171
174
|
|
|
175
|
+
message ResendApplicationRequest {
|
|
176
|
+
string phoneNumber = 1;
|
|
177
|
+
string secretOtp = 2;
|
|
178
|
+
}
|
|
179
|
+
|
|
172
180
|
message UpdateDriverPersonalInfoRequest {
|
|
173
181
|
string id = 1;
|
|
174
182
|
optional string firstName = 2;
|
|
@@ -382,6 +390,18 @@ message RegistrationStatusData {
|
|
|
382
390
|
optional string reason = 2;
|
|
383
391
|
}
|
|
384
392
|
|
|
393
|
+
message ResendApplicationResponse {
|
|
394
|
+
int32 statusCode = 1;
|
|
395
|
+
string message = 2;
|
|
396
|
+
ResendApplicationData data = 3;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
message ResendApplicationData {
|
|
400
|
+
string step = 1;
|
|
401
|
+
string phoneNumber = 2;
|
|
402
|
+
string secretOtp = 3;
|
|
403
|
+
}
|
|
404
|
+
|
|
385
405
|
// Registratsiyadan o'tadish uchun
|
|
386
406
|
message PasswordData {
|
|
387
407
|
bool success = 1;
|
|
@@ -25,6 +25,7 @@ message CreateSupportContactRequest {
|
|
|
25
25
|
string type = 1;
|
|
26
26
|
string value = 2;
|
|
27
27
|
optional string label = 3;
|
|
28
|
+
optional string iconUrl = 4;
|
|
28
29
|
}
|
|
29
30
|
|
|
30
31
|
message UpdateSupportContactRequest {
|
|
@@ -32,6 +33,7 @@ message UpdateSupportContactRequest {
|
|
|
32
33
|
optional string type = 2;
|
|
33
34
|
optional string value = 3;
|
|
34
35
|
optional string label = 4;
|
|
36
|
+
optional string iconUrl = 5;
|
|
35
37
|
}
|
|
36
38
|
|
|
37
39
|
// ==========================================
|
|
@@ -44,6 +46,7 @@ message SupportContactData {
|
|
|
44
46
|
string label = 4;
|
|
45
47
|
bool isActive = 5;
|
|
46
48
|
string createdAt = 6;
|
|
49
|
+
string iconUrl = 7;
|
|
47
50
|
}
|
|
48
51
|
|
|
49
52
|
message SupportContactResponse {
|