@devline-smart-taxi/common 2.3.36 → 2.3.37
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 +2 -0
- package/package.json +1 -1
package/dist/proto/driver.proto
CHANGED
|
@@ -77,6 +77,7 @@ message SendOtpRequest {
|
|
|
77
77
|
message VerifyOtpRequest {
|
|
78
78
|
string phoneNumber = 1;
|
|
79
79
|
int32 otp = 2;
|
|
80
|
+
optional string fcmToken = 3;
|
|
80
81
|
}
|
|
81
82
|
|
|
82
83
|
message SavePersonalRequest {
|
|
@@ -309,6 +310,7 @@ message DriverData {
|
|
|
309
310
|
repeated DriverCarData cars = 19;
|
|
310
311
|
optional string branchId = 20;
|
|
311
312
|
optional float rating = 21;
|
|
313
|
+
optional string fcm_token = 22;
|
|
312
314
|
}
|
|
313
315
|
|
|
314
316
|
// Haydovchining hujjatlari (ID karta, selfi, haydovchilik guvohnomasi)
|
package/dist/proto/user.proto
CHANGED
|
@@ -45,6 +45,7 @@ message UserData {
|
|
|
45
45
|
optional string profilePhotoUrl = 14;
|
|
46
46
|
optional string referralCode = 15;
|
|
47
47
|
optional string referredById = 16;
|
|
48
|
+
optional string fcmToken = 17;
|
|
48
49
|
}
|
|
49
50
|
|
|
50
51
|
message Id{
|
|
@@ -70,6 +71,7 @@ message SendOtpRequest {
|
|
|
70
71
|
message VerifyOtpRequest {
|
|
71
72
|
string phoneNumber = 1;
|
|
72
73
|
int32 otp = 2;
|
|
74
|
+
optional string fcmToken = 3;
|
|
73
75
|
}
|
|
74
76
|
|
|
75
77
|
message CreateUserRequest {
|