|
@@ -34,14 +34,15 @@ type UserHomeInfo struct {
|
|
|
Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
|
|
Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
|
|
|
AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
|
|
AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
|
|
|
Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // 性别
|
|
Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // 性别
|
|
|
- Picture []string `protobuf:"bytes,5,rep,name=picture,proto3" json:"picture"` // 图片
|
|
|
|
|
|
|
+ Pictures []string `protobuf:"bytes,5,rep,name=pictures,proto3" json:"pictures"` // 图片
|
|
|
Age int64 `protobuf:"varint,6,opt,name=age,proto3" json:"age"` // 年龄
|
|
Age int64 `protobuf:"varint,6,opt,name=age,proto3" json:"age"` // 年龄
|
|
|
Constellation string `protobuf:"bytes,7,opt,name=constellation,proto3" json:"constellation"` // 星座
|
|
Constellation string `protobuf:"bytes,7,opt,name=constellation,proto3" json:"constellation"` // 星座
|
|
|
Area string `protobuf:"bytes,8,opt,name=area,proto3" json:"area"` // 地区
|
|
Area string `protobuf:"bytes,8,opt,name=area,proto3" json:"area"` // 地区
|
|
|
Tag []string `protobuf:"bytes,9,rep,name=tag,proto3" json:"tag"` // 标签
|
|
Tag []string `protobuf:"bytes,9,rep,name=tag,proto3" json:"tag"` // 标签
|
|
|
Signature string `protobuf:"bytes,10,opt,name=signature,proto3" json:"signature"` // 签名
|
|
Signature string `protobuf:"bytes,10,opt,name=signature,proto3" json:"signature"` // 签名
|
|
|
- FollowedNum int64 `protobuf:"varint,11,opt,name=followedNum,proto3" json:"followedNum"` // 被喜欢的次数
|
|
|
|
|
- IntroduceVoice string `protobuf:"bytes,12,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
|
|
|
|
|
|
|
+ IntroduceVoice string `protobuf:"bytes,11,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
|
|
|
|
|
+ LikedNum int64 `protobuf:"varint,12,opt,name=likedNum,proto3" json:"likedNum"` // 喜欢我
|
|
|
|
|
+ LookNum int64 `protobuf:"varint,13,opt,name=lookNum,proto3" json:"lookNum"` // 看过我
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (x *UserHomeInfo) Reset() {
|
|
func (x *UserHomeInfo) Reset() {
|
|
@@ -104,9 +105,9 @@ func (x *UserHomeInfo) GetSex() int64 {
|
|
|
return 0
|
|
return 0
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-func (x *UserHomeInfo) GetPicture() []string {
|
|
|
|
|
|
|
+func (x *UserHomeInfo) GetPictures() []string {
|
|
|
if x != nil {
|
|
if x != nil {
|
|
|
- return x.Picture
|
|
|
|
|
|
|
+ return x.Pictures
|
|
|
}
|
|
}
|
|
|
return nil
|
|
return nil
|
|
|
}
|
|
}
|
|
@@ -146,18 +147,25 @@ func (x *UserHomeInfo) GetSignature() string {
|
|
|
return ""
|
|
return ""
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-func (x *UserHomeInfo) GetFollowedNum() int64 {
|
|
|
|
|
|
|
+func (x *UserHomeInfo) GetIntroduceVoice() string {
|
|
|
|
|
+ if x != nil {
|
|
|
|
|
+ return x.IntroduceVoice
|
|
|
|
|
+ }
|
|
|
|
|
+ return ""
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (x *UserHomeInfo) GetLikedNum() int64 {
|
|
|
if x != nil {
|
|
if x != nil {
|
|
|
- return x.FollowedNum
|
|
|
|
|
|
|
+ return x.LikedNum
|
|
|
}
|
|
}
|
|
|
return 0
|
|
return 0
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-func (x *UserHomeInfo) GetIntroduceVoice() string {
|
|
|
|
|
|
|
+func (x *UserHomeInfo) GetLookNum() int64 {
|
|
|
if x != nil {
|
|
if x != nil {
|
|
|
- return x.IntroduceVoice
|
|
|
|
|
|
|
+ return x.LookNum
|
|
|
}
|
|
}
|
|
|
- return ""
|
|
|
|
|
|
|
+ return 0
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
type UserInfo struct {
|
|
type UserInfo struct {
|
|
@@ -168,9 +176,12 @@ type UserInfo struct {
|
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
|
|
|
Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
|
|
Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
|
|
|
AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
|
|
AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
|
|
|
- Phone string `protobuf:"bytes,4,opt,name=phone,proto3" json:"phone"` // 手机号
|
|
|
|
|
|
|
+ Age int64 `protobuf:"varint,4,opt,name=age,proto3" json:"age"` // 年龄
|
|
|
Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
|
|
Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
|
|
|
Credit int64 `protobuf:"varint,6,opt,name=credit,proto3" json:"credit"` // 积分
|
|
Credit int64 `protobuf:"varint,6,opt,name=credit,proto3" json:"credit"` // 积分
|
|
|
|
|
+ LikeNum int64 `protobuf:"varint,7,opt,name=likeNum,proto3" json:"likeNum"` // 我喜欢
|
|
|
|
|
+ LikedNum int64 `protobuf:"varint,8,opt,name=likedNum,proto3" json:"likedNum"` // 喜欢我
|
|
|
|
|
+ LookNum int64 `protobuf:"varint,9,opt,name=lookNum,proto3" json:"lookNum"` // 看过我
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (x *UserInfo) Reset() {
|
|
func (x *UserInfo) Reset() {
|
|
@@ -226,11 +237,11 @@ func (x *UserInfo) GetAvatarUrl() string {
|
|
|
return ""
|
|
return ""
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-func (x *UserInfo) GetPhone() string {
|
|
|
|
|
|
|
+func (x *UserInfo) GetAge() int64 {
|
|
|
if x != nil {
|
|
if x != nil {
|
|
|
- return x.Phone
|
|
|
|
|
|
|
+ return x.Age
|
|
|
}
|
|
}
|
|
|
- return ""
|
|
|
|
|
|
|
+ return 0
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (x *UserInfo) GetSex() int64 {
|
|
func (x *UserInfo) GetSex() int64 {
|
|
@@ -247,6 +258,27 @@ func (x *UserInfo) GetCredit() int64 {
|
|
|
return 0
|
|
return 0
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+func (x *UserInfo) GetLikeNum() int64 {
|
|
|
|
|
+ if x != nil {
|
|
|
|
|
+ return x.LikeNum
|
|
|
|
|
+ }
|
|
|
|
|
+ return 0
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (x *UserInfo) GetLikedNum() int64 {
|
|
|
|
|
+ if x != nil {
|
|
|
|
|
+ return x.LikedNum
|
|
|
|
|
+ }
|
|
|
|
|
+ return 0
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (x *UserInfo) GetLookNum() int64 {
|
|
|
|
|
+ if x != nil {
|
|
|
|
|
+ return x.LookNum
|
|
|
|
|
+ }
|
|
|
|
|
+ return 0
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
type UpdateUserInformationRequest struct {
|
|
type UpdateUserInformationRequest struct {
|
|
|
state protoimpl.MessageState
|
|
state protoimpl.MessageState
|
|
|
sizeCache protoimpl.SizeCache
|
|
sizeCache protoimpl.SizeCache
|
|
@@ -310,108 +342,6 @@ func (x *UpdateUserInformationRequest) GetSex() int64 {
|
|
|
return 0
|
|
return 0
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-type SendPhoneCodeRequest struct {
|
|
|
|
|
- state protoimpl.MessageState
|
|
|
|
|
- sizeCache protoimpl.SizeCache
|
|
|
|
|
- unknownFields protoimpl.UnknownFields
|
|
|
|
|
-
|
|
|
|
|
- Phone string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone"`
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-func (x *SendPhoneCodeRequest) Reset() {
|
|
|
|
|
- *x = SendPhoneCodeRequest{}
|
|
|
|
|
- if protoimpl.UnsafeEnabled {
|
|
|
|
|
- mi := &file_user_proto_msgTypes[3]
|
|
|
|
|
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
- ms.StoreMessageInfo(mi)
|
|
|
|
|
- }
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-func (x *SendPhoneCodeRequest) String() string {
|
|
|
|
|
- return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-func (*SendPhoneCodeRequest) ProtoMessage() {}
|
|
|
|
|
-
|
|
|
|
|
-func (x *SendPhoneCodeRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
- mi := &file_user_proto_msgTypes[3]
|
|
|
|
|
- if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
- if ms.LoadMessageInfo() == nil {
|
|
|
|
|
- ms.StoreMessageInfo(mi)
|
|
|
|
|
- }
|
|
|
|
|
- return ms
|
|
|
|
|
- }
|
|
|
|
|
- return mi.MessageOf(x)
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-// Deprecated: Use SendPhoneCodeRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
-func (*SendPhoneCodeRequest) Descriptor() ([]byte, []int) {
|
|
|
|
|
- return file_user_proto_rawDescGZIP(), []int{3}
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-func (x *SendPhoneCodeRequest) GetPhone() string {
|
|
|
|
|
- if x != nil {
|
|
|
|
|
- return x.Phone
|
|
|
|
|
- }
|
|
|
|
|
- return ""
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-type CheckPhoneCodeRequest struct {
|
|
|
|
|
- state protoimpl.MessageState
|
|
|
|
|
- sizeCache protoimpl.SizeCache
|
|
|
|
|
- unknownFields protoimpl.UnknownFields
|
|
|
|
|
-
|
|
|
|
|
- Phone string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone"`
|
|
|
|
|
- Code string `protobuf:"bytes,2,opt,name=code,proto3" json:"code"`
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-func (x *CheckPhoneCodeRequest) Reset() {
|
|
|
|
|
- *x = CheckPhoneCodeRequest{}
|
|
|
|
|
- if protoimpl.UnsafeEnabled {
|
|
|
|
|
- mi := &file_user_proto_msgTypes[4]
|
|
|
|
|
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
- ms.StoreMessageInfo(mi)
|
|
|
|
|
- }
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-func (x *CheckPhoneCodeRequest) String() string {
|
|
|
|
|
- return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-func (*CheckPhoneCodeRequest) ProtoMessage() {}
|
|
|
|
|
-
|
|
|
|
|
-func (x *CheckPhoneCodeRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
- mi := &file_user_proto_msgTypes[4]
|
|
|
|
|
- if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
- if ms.LoadMessageInfo() == nil {
|
|
|
|
|
- ms.StoreMessageInfo(mi)
|
|
|
|
|
- }
|
|
|
|
|
- return ms
|
|
|
|
|
- }
|
|
|
|
|
- return mi.MessageOf(x)
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-// Deprecated: Use CheckPhoneCodeRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
-func (*CheckPhoneCodeRequest) Descriptor() ([]byte, []int) {
|
|
|
|
|
- return file_user_proto_rawDescGZIP(), []int{4}
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-func (x *CheckPhoneCodeRequest) GetPhone() string {
|
|
|
|
|
- if x != nil {
|
|
|
|
|
- return x.Phone
|
|
|
|
|
- }
|
|
|
|
|
- return ""
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-func (x *CheckPhoneCodeRequest) GetCode() string {
|
|
|
|
|
- if x != nil {
|
|
|
|
|
- return x.Code
|
|
|
|
|
- }
|
|
|
|
|
- return ""
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
var File_user_proto protoreflect.FileDescriptor
|
|
var File_user_proto protoreflect.FileDescriptor
|
|
|
|
|
|
|
|
var file_user_proto_rawDesc = []byte{
|
|
var file_user_proto_rawDesc = []byte{
|
|
@@ -424,115 +354,101 @@ var file_user_proto_rawDesc = []byte{
|
|
|
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74,
|
|
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74,
|
|
|
0x6e, 0x65, 0x72, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
0x6e, 0x65, 0x72, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
|
0x6f, 0x1a, 0x13, 0x61, 0x70, 0x69, 0x2f, 0x62, 0x61, 0x73, 0x65, 0x2f, 0x62, 0x61, 0x73, 0x65,
|
|
0x6f, 0x1a, 0x13, 0x61, 0x70, 0x69, 0x2f, 0x62, 0x61, 0x73, 0x65, 0x2f, 0x62, 0x61, 0x73, 0x65,
|
|
|
- 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xca, 0x02, 0x0a, 0x0c, 0x55, 0x73, 0x65, 0x72, 0x48,
|
|
|
|
|
|
|
+ 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xe0, 0x02, 0x0a, 0x0c, 0x55, 0x73, 0x65, 0x72, 0x48,
|
|
|
0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
|
|
0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
|
|
|
0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e,
|
|
0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e,
|
|
|
0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e,
|
|
0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e,
|
|
|
0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c,
|
|
0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c,
|
|
|
0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72,
|
|
0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72,
|
|
|
0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03,
|
|
0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03,
|
|
|
- 0x73, 0x65, 0x78, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x18, 0x05,
|
|
|
|
|
- 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x12, 0x10, 0x0a,
|
|
|
|
|
- 0x03, 0x61, 0x67, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12,
|
|
|
|
|
- 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
|
|
|
- 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c,
|
|
|
|
|
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x08, 0x20,
|
|
|
|
|
- 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x61, 0x67,
|
|
|
|
|
- 0x18, 0x09, 0x20, 0x03, 0x28, 0x09, 0x52, 0x03, 0x74, 0x61, 0x67, 0x12, 0x1c, 0x0a, 0x09, 0x73,
|
|
|
|
|
- 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
|
|
|
|
|
- 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x66, 0x6f, 0x6c,
|
|
|
|
|
- 0x6c, 0x6f, 0x77, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b,
|
|
|
|
|
- 0x66, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x69,
|
|
|
|
|
- 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0c, 0x20,
|
|
|
|
|
|
|
+ 0x73, 0x65, 0x78, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18,
|
|
|
|
|
+ 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12,
|
|
|
|
|
+ 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67,
|
|
|
|
|
+ 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69,
|
|
|
|
|
+ 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65,
|
|
|
|
|
+ 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18,
|
|
|
|
|
+ 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x12, 0x10, 0x0a, 0x03, 0x74,
|
|
|
|
|
+ 0x61, 0x67, 0x18, 0x09, 0x20, 0x03, 0x28, 0x09, 0x52, 0x03, 0x74, 0x61, 0x67, 0x12, 0x1c, 0x0a,
|
|
|
|
|
+ 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
|
|
|
|
|
+ 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x69,
|
|
|
|
|
+ 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0b, 0x20,
|
|
|
0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f,
|
|
0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f,
|
|
|
- 0x69, 0x63, 0x65, 0x22, 0x94, 0x01, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f,
|
|
|
|
|
- 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64,
|
|
|
|
|
- 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
|
|
|
|
|
- 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09,
|
|
|
|
|
- 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
|
|
|
- 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68,
|
|
|
|
|
- 0x6f, 0x6e, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65,
|
|
|
|
|
- 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73,
|
|
|
|
|
- 0x65, 0x78, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x06, 0x20, 0x01,
|
|
|
|
|
- 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x22, 0x6a, 0x0a, 0x1c, 0x55, 0x70,
|
|
|
|
|
- 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
|
|
|
|
|
- 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x4e, 0x69,
|
|
|
|
|
- 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x4e, 0x69,
|
|
|
|
|
- 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72,
|
|
|
|
|
- 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61,
|
|
|
|
|
- 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x03, 0x20, 0x01, 0x28,
|
|
|
|
|
- 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x22, 0x2c, 0x0a, 0x14, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68,
|
|
|
|
|
- 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14,
|
|
|
|
|
- 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70,
|
|
|
|
|
- 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x41, 0x0a, 0x15, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f,
|
|
|
|
|
- 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a,
|
|
|
|
|
- 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68,
|
|
|
|
|
- 0x6f, 0x6e, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
|
|
|
|
|
- 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x32, 0xbc, 0x07, 0x0a, 0x04, 0x55, 0x73, 0x65, 0x72,
|
|
|
|
|
- 0x12, 0x80, 0x01, 0x0a, 0x15, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49,
|
|
|
|
|
- 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x26, 0x2e, 0x61, 0x70, 0x69,
|
|
|
|
|
- 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72,
|
|
|
|
|
- 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65,
|
|
|
|
|
- 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
|
|
|
- 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93,
|
|
|
|
|
- 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x70,
|
|
|
|
|
- 0x64, 0x61, 0x74, 0x65, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
|
|
|
- 0x3a, 0x01, 0x2a, 0x12, 0x54, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e,
|
|
|
|
|
- 0x66, 0x6f, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
|
|
|
- 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x12, 0x2e, 0x61, 0x70, 0x69,
|
|
|
|
|
- 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x19,
|
|
|
|
|
- 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
|
|
|
|
|
- 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x67, 0x0a, 0x0d, 0x53, 0x65, 0x6e,
|
|
|
|
|
- 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69,
|
|
|
|
|
- 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43,
|
|
|
|
|
- 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
|
|
|
|
|
- 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
|
|
|
|
|
- 0x74, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69,
|
|
|
|
|
- 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x2f, 0x73, 0x65, 0x6e, 0x64, 0x3a,
|
|
|
|
|
- 0x01, 0x2a, 0x12, 0x6a, 0x0a, 0x0e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65,
|
|
|
|
|
- 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
|
|
|
|
|
- 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65,
|
|
|
|
|
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
|
|
|
|
|
- 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1f, 0x82,
|
|
|
|
|
- 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
|
|
|
|
|
- 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x2f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x92,
|
|
|
|
|
- 0x01, 0x0a, 0x1e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74,
|
|
|
|
|
|
|
+ 0x69, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x69, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x18,
|
|
|
|
|
+ 0x0c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c, 0x69, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x12,
|
|
|
|
|
+ 0x18, 0x0a, 0x07, 0x6c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x03,
|
|
|
|
|
+ 0x52, 0x07, 0x6c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d, 0x22, 0xe0, 0x01, 0x0a, 0x08, 0x55, 0x73,
|
|
|
|
|
+ 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
|
|
|
|
|
+ 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61,
|
|
|
|
|
+ 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61,
|
|
|
|
|
+ 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18,
|
|
|
|
|
+ 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c,
|
|
|
|
|
+ 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61,
|
|
|
|
|
+ 0x67, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52,
|
|
|
|
|
+ 0x03, 0x73, 0x65, 0x78, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x06,
|
|
|
|
|
+ 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x18, 0x0a, 0x07,
|
|
|
|
|
+ 0x6c, 0x69, 0x6b, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6c,
|
|
|
|
|
+ 0x69, 0x6b, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x69, 0x6b, 0x65, 0x64, 0x4e,
|
|
|
|
|
+ 0x75, 0x6d, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c, 0x69, 0x6b, 0x65, 0x64, 0x4e,
|
|
|
|
|
+ 0x75, 0x6d, 0x12, 0x18, 0x0a, 0x07, 0x6c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d, 0x18, 0x09, 0x20,
|
|
|
|
|
+ 0x01, 0x28, 0x03, 0x52, 0x07, 0x6c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d, 0x22, 0x6a, 0x0a, 0x1c,
|
|
|
|
|
+ 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d,
|
|
|
|
|
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08,
|
|
|
|
|
+ 0x4e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
|
|
|
|
|
+ 0x4e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74,
|
|
|
|
|
+ 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61,
|
|
|
|
|
+ 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x03, 0x20,
|
|
|
|
|
+ 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x32, 0xe7, 0x05, 0x0a, 0x04, 0x55, 0x73, 0x65,
|
|
|
|
|
+ 0x72, 0x12, 0x80, 0x01, 0x0a, 0x15, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72,
|
|
|
|
|
+ 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x26, 0x2e, 0x61, 0x70,
|
|
|
|
|
+ 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65,
|
|
|
|
|
+ 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75,
|
|
|
|
|
+ 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
|
|
|
|
|
+ 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4,
|
|
|
|
|
+ 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75,
|
|
|
|
|
+ 0x70, 0x64, 0x61, 0x74, 0x65, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f,
|
|
|
|
|
+ 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x54, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49,
|
|
|
|
|
+ 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
|
|
|
|
|
+ 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x12, 0x2e, 0x61, 0x70,
|
|
|
|
|
+ 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x22,
|
|
|
|
|
+ 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
|
|
|
|
|
+ 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x92, 0x01, 0x0a, 0x1e, 0x43,
|
|
|
|
|
+ 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49,
|
|
|
|
|
+ 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x12, 0x18, 0x2e,
|
|
|
|
|
+ 0x61, 0x70, 0x69, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
|
|
|
|
|
+ 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68,
|
|
|
|
|
+ 0x61, 0x74, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74,
|
|
|
0x6e, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69,
|
|
0x6e, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69,
|
|
|
- 0x70, 0x12, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x50, 0x61, 0x72,
|
|
|
|
|
- 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x2d, 0x2e, 0x61, 0x70,
|
|
|
|
|
- 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72,
|
|
|
|
|
- 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f,
|
|
|
|
|
- 0x6e, 0x73, 0x68, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93,
|
|
|
|
|
- 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68,
|
|
|
|
|
- 0x65, 0x63, 0x6b, 0x2f, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70,
|
|
|
|
|
- 0x3a, 0x01, 0x2a, 0x12, 0x95, 0x01, 0x0a, 0x1f, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73,
|
|
|
|
|
- 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74,
|
|
|
|
|
- 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x12, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x61,
|
|
|
|
|
- 0x73, 0x65, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61,
|
|
|
|
|
- 0x6d, 0x1a, 0x2e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x43, 0x72, 0x65,
|
|
|
|
|
- 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73,
|
|
|
|
|
- 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c,
|
|
|
|
|
- 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f,
|
|
|
|
|
- 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x2f, 0x72, 0x65, 0x6c, 0x61,
|
|
|
|
|
- 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x3a, 0x01, 0x2a, 0x12, 0x75, 0x0a, 0x14, 0x47,
|
|
|
|
|
- 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x49,
|
|
|
|
|
- 0x6e, 0x66, 0x6f, 0x12, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x50,
|
|
|
|
|
- 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x1e, 0x2e,
|
|
|
|
|
- 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74,
|
|
|
|
|
- 0x6e, 0x65, 0x72, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x23, 0x82,
|
|
|
|
|
- 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74,
|
|
|
|
|
- 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a,
|
|
|
|
|
- 0x01, 0x2a, 0x12, 0x62, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x48, 0x6f, 0x6d,
|
|
|
|
|
- 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x61, 0x73, 0x65,
|
|
|
|
|
- 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x61,
|
|
|
|
|
- 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x48, 0x6f, 0x6d, 0x65,
|
|
|
|
|
- 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61,
|
|
|
|
|
- 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x2f, 0x69,
|
|
|
|
|
- 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x42, 0x3d, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
|
|
|
|
|
- 0x65, 0x72, 0x50, 0x01, 0x5a, 0x2f, 0x67, 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e,
|
|
|
|
|
- 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70,
|
|
|
|
|
- 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
|
|
|
|
|
- 0x3b, 0x75, 0x73, 0x65, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
|
|
|
|
|
+ 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c,
|
|
|
|
|
+ 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x2f,
|
|
|
|
|
+ 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x3a, 0x01, 0x2a, 0x12,
|
|
|
|
|
+ 0x95, 0x01, 0x0a, 0x1f, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61,
|
|
|
|
|
+ 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73,
|
|
|
|
|
+ 0x68, 0x69, 0x70, 0x12, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x50,
|
|
|
|
|
+ 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x2e, 0x2e,
|
|
|
|
|
+ 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55,
|
|
|
|
|
+ 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61,
|
|
|
|
|
+ 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x28, 0x82,
|
|
|
|
|
+ 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
|
|
|
|
|
+ 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x2f, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
|
|
|
+ 0x73, 0x68, 0x69, 0x70, 0x3a, 0x01, 0x2a, 0x12, 0x75, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x50, 0x61,
|
|
|
|
|
+ 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12,
|
|
|
|
|
+ 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e,
|
|
|
|
|
+ 0x65, 0x72, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e,
|
|
|
|
|
+ 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43,
|
|
|
|
|
+ 0x69, 0x72, 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02,
|
|
|
|
|
+ 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f,
|
|
|
|
|
+ 0x63, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x62,
|
|
|
|
|
+ 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66,
|
|
|
|
|
+ 0x6f, 0x12, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x55, 0x73, 0x65,
|
|
|
|
|
+ 0x72, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75,
|
|
|
|
|
+ 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f,
|
|
|
|
|
+ 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
|
|
|
|
|
+ 0x73, 0x65, 0x72, 0x2f, 0x63, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a,
|
|
|
|
|
+ 0x01, 0x2a, 0x42, 0x3d, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x50, 0x01,
|
|
|
|
|
+ 0x5a, 0x2f, 0x67, 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d,
|
|
|
|
|
+ 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
|
|
|
+ 0x62, 0x75, 0x66, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x3b, 0x75, 0x73, 0x65,
|
|
|
|
|
+ 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
var (
|
|
@@ -547,42 +463,36 @@ func file_user_proto_rawDescGZIP() []byte {
|
|
|
return file_user_proto_rawDescData
|
|
return file_user_proto_rawDescData
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-var file_user_proto_msgTypes = make([]protoimpl.MessageInfo, 5)
|
|
|
|
|
|
|
+var file_user_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
|
|
|
var file_user_proto_goTypes = []interface{}{
|
|
var file_user_proto_goTypes = []interface{}{
|
|
|
(*UserHomeInfo)(nil), // 0: api.user.UserHomeInfo
|
|
(*UserHomeInfo)(nil), // 0: api.user.UserHomeInfo
|
|
|
(*UserInfo)(nil), // 1: api.user.UserInfo
|
|
(*UserInfo)(nil), // 1: api.user.UserInfo
|
|
|
(*UpdateUserInformationRequest)(nil), // 2: api.user.UpdateUserInformationRequest
|
|
(*UpdateUserInformationRequest)(nil), // 2: api.user.UpdateUserInformationRequest
|
|
|
- (*SendPhoneCodeRequest)(nil), // 3: api.user.SendPhoneCodeRequest
|
|
|
|
|
- (*CheckPhoneCodeRequest)(nil), // 4: api.user.CheckPhoneCodeRequest
|
|
|
|
|
- (*emptypb.Empty)(nil), // 5: google.protobuf.Empty
|
|
|
|
|
- (*base.PartnerIDParam)(nil), // 6: api.base.PartnerIDParam
|
|
|
|
|
- (*base.UserIDParam)(nil), // 7: api.base.UserIDParam
|
|
|
|
|
- (*chat.CheckUserPartnerIsRelationshipReply)(nil), // 8: api.chat.CheckUserPartnerIsRelationshipReply
|
|
|
|
|
- (*chat.CreateUserPartnerIsRelationshipReply)(nil), // 9: api.chat.CreateUserPartnerIsRelationshipReply
|
|
|
|
|
- (*partner.PartnerCircleInfo)(nil), // 10: api.partner.PartnerCircleInfo
|
|
|
|
|
|
|
+ (*emptypb.Empty)(nil), // 3: google.protobuf.Empty
|
|
|
|
|
+ (*base.PartnerIDParam)(nil), // 4: api.base.PartnerIDParam
|
|
|
|
|
+ (*base.UserIDParam)(nil), // 5: api.base.UserIDParam
|
|
|
|
|
+ (*chat.CheckUserPartnerIsRelationshipReply)(nil), // 6: api.chat.CheckUserPartnerIsRelationshipReply
|
|
|
|
|
+ (*chat.CreateUserPartnerIsRelationshipReply)(nil), // 7: api.chat.CreateUserPartnerIsRelationshipReply
|
|
|
|
|
+ (*partner.PartnerCircleInfo)(nil), // 8: api.partner.PartnerCircleInfo
|
|
|
}
|
|
}
|
|
|
var file_user_proto_depIdxs = []int32{
|
|
var file_user_proto_depIdxs = []int32{
|
|
|
- 2, // 0: api.user.User.UpdateUserInformation:input_type -> api.user.UpdateUserInformationRequest
|
|
|
|
|
- 5, // 1: api.user.User.GetUserInfo:input_type -> google.protobuf.Empty
|
|
|
|
|
- 3, // 2: api.user.User.SendPhoneCode:input_type -> api.user.SendPhoneCodeRequest
|
|
|
|
|
- 4, // 3: api.user.User.CheckPhoneCode:input_type -> api.user.CheckPhoneCodeRequest
|
|
|
|
|
- 6, // 4: api.user.User.CheckUserPartnerIsRelationship:input_type -> api.base.PartnerIDParam
|
|
|
|
|
- 6, // 5: api.user.User.CreateUserPartnerIsRelationship:input_type -> api.base.PartnerIDParam
|
|
|
|
|
- 6, // 6: api.user.User.GetPartnerCircleInfo:input_type -> api.base.PartnerIDParam
|
|
|
|
|
- 7, // 7: api.user.User.GetUserHomeInfo:input_type -> api.base.UserIDParam
|
|
|
|
|
- 5, // 8: api.user.User.UpdateUserInformation:output_type -> google.protobuf.Empty
|
|
|
|
|
- 1, // 9: api.user.User.GetUserInfo:output_type -> api.user.UserInfo
|
|
|
|
|
- 5, // 10: api.user.User.SendPhoneCode:output_type -> google.protobuf.Empty
|
|
|
|
|
- 5, // 11: api.user.User.CheckPhoneCode:output_type -> google.protobuf.Empty
|
|
|
|
|
- 8, // 12: api.user.User.CheckUserPartnerIsRelationship:output_type -> api.chat.CheckUserPartnerIsRelationshipReply
|
|
|
|
|
- 9, // 13: api.user.User.CreateUserPartnerIsRelationship:output_type -> api.chat.CreateUserPartnerIsRelationshipReply
|
|
|
|
|
- 10, // 14: api.user.User.GetPartnerCircleInfo:output_type -> api.partner.PartnerCircleInfo
|
|
|
|
|
- 0, // 15: api.user.User.GetUserHomeInfo:output_type -> api.user.UserHomeInfo
|
|
|
|
|
- 8, // [8:16] is the sub-list for method output_type
|
|
|
|
|
- 0, // [0:8] is the sub-list for method input_type
|
|
|
|
|
- 0, // [0:0] is the sub-list for extension type_name
|
|
|
|
|
- 0, // [0:0] is the sub-list for extension extendee
|
|
|
|
|
- 0, // [0:0] is the sub-list for field type_name
|
|
|
|
|
|
|
+ 2, // 0: api.user.User.UpdateUserInformation:input_type -> api.user.UpdateUserInformationRequest
|
|
|
|
|
+ 3, // 1: api.user.User.GetUserInfo:input_type -> google.protobuf.Empty
|
|
|
|
|
+ 4, // 2: api.user.User.CheckUserPartnerIsRelationship:input_type -> api.base.PartnerIDParam
|
|
|
|
|
+ 4, // 3: api.user.User.CreateUserPartnerIsRelationship:input_type -> api.base.PartnerIDParam
|
|
|
|
|
+ 4, // 4: api.user.User.GetPartnerCircleInfo:input_type -> api.base.PartnerIDParam
|
|
|
|
|
+ 5, // 5: api.user.User.GetUserHomeInfo:input_type -> api.base.UserIDParam
|
|
|
|
|
+ 3, // 6: api.user.User.UpdateUserInformation:output_type -> google.protobuf.Empty
|
|
|
|
|
+ 1, // 7: api.user.User.GetUserInfo:output_type -> api.user.UserInfo
|
|
|
|
|
+ 6, // 8: api.user.User.CheckUserPartnerIsRelationship:output_type -> api.chat.CheckUserPartnerIsRelationshipReply
|
|
|
|
|
+ 7, // 9: api.user.User.CreateUserPartnerIsRelationship:output_type -> api.chat.CreateUserPartnerIsRelationshipReply
|
|
|
|
|
+ 8, // 10: api.user.User.GetPartnerCircleInfo:output_type -> api.partner.PartnerCircleInfo
|
|
|
|
|
+ 0, // 11: api.user.User.GetUserHomeInfo:output_type -> api.user.UserHomeInfo
|
|
|
|
|
+ 6, // [6:12] is the sub-list for method output_type
|
|
|
|
|
+ 0, // [0:6] is the sub-list for method input_type
|
|
|
|
|
+ 0, // [0:0] is the sub-list for extension type_name
|
|
|
|
|
+ 0, // [0:0] is the sub-list for extension extendee
|
|
|
|
|
+ 0, // [0:0] is the sub-list for field type_name
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func init() { file_user_proto_init() }
|
|
func init() { file_user_proto_init() }
|
|
@@ -627,30 +537,6 @@ func file_user_proto_init() {
|
|
|
return nil
|
|
return nil
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
- file_user_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
|
- switch v := v.(*SendPhoneCodeRequest); i {
|
|
|
|
|
- case 0:
|
|
|
|
|
- return &v.state
|
|
|
|
|
- case 1:
|
|
|
|
|
- return &v.sizeCache
|
|
|
|
|
- case 2:
|
|
|
|
|
- return &v.unknownFields
|
|
|
|
|
- default:
|
|
|
|
|
- return nil
|
|
|
|
|
- }
|
|
|
|
|
- }
|
|
|
|
|
- file_user_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
|
- switch v := v.(*CheckPhoneCodeRequest); i {
|
|
|
|
|
- case 0:
|
|
|
|
|
- return &v.state
|
|
|
|
|
- case 1:
|
|
|
|
|
- return &v.sizeCache
|
|
|
|
|
- case 2:
|
|
|
|
|
- return &v.unknownFields
|
|
|
|
|
- default:
|
|
|
|
|
- return nil
|
|
|
|
|
- }
|
|
|
|
|
- }
|
|
|
|
|
}
|
|
}
|
|
|
type x struct{}
|
|
type x struct{}
|
|
|
out := protoimpl.TypeBuilder{
|
|
out := protoimpl.TypeBuilder{
|
|
@@ -658,7 +544,7 @@ func file_user_proto_init() {
|
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
|
RawDescriptor: file_user_proto_rawDesc,
|
|
RawDescriptor: file_user_proto_rawDesc,
|
|
|
NumEnums: 0,
|
|
NumEnums: 0,
|
|
|
- NumMessages: 5,
|
|
|
|
|
|
|
+ NumMessages: 3,
|
|
|
NumExtensions: 0,
|
|
NumExtensions: 0,
|
|
|
NumServices: 1,
|
|
NumServices: 1,
|
|
|
},
|
|
},
|