|
|
@@ -279,6 +279,124 @@ func (x *UserIDParam) GetUserId() string {
|
|
|
return ""
|
|
|
}
|
|
|
|
|
|
+type WxConfReq struct {
|
|
|
+ state protoimpl.MessageState
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
+
|
|
|
+ Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url"`
|
|
|
+}
|
|
|
+
|
|
|
+func (x *WxConfReq) Reset() {
|
|
|
+ *x = WxConfReq{}
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
+ mi := &file_common_proto_msgTypes[5]
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+func (x *WxConfReq) String() string {
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
+}
|
|
|
+
|
|
|
+func (*WxConfReq) ProtoMessage() {}
|
|
|
+
|
|
|
+func (x *WxConfReq) ProtoReflect() protoreflect.Message {
|
|
|
+ mi := &file_common_proto_msgTypes[5]
|
|
|
+ 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 WxConfReq.ProtoReflect.Descriptor instead.
|
|
|
+func (*WxConfReq) Descriptor() ([]byte, []int) {
|
|
|
+ return file_common_proto_rawDescGZIP(), []int{5}
|
|
|
+}
|
|
|
+
|
|
|
+func (x *WxConfReq) GetUrl() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.Url
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+type WxConfResponse struct {
|
|
|
+ state protoimpl.MessageState
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
+
|
|
|
+ AppId string `protobuf:"bytes,1,opt,name=appId,proto3" json:"appId"` // 必填,公众号的唯一标识
|
|
|
+ Timestamp int64 `protobuf:"varint,2,opt,name=timestamp,proto3" json:"timestamp"` // 必填,生成签名的时间戳
|
|
|
+ NonceStr string `protobuf:"bytes,3,opt,name=nonceStr,proto3" json:"nonceStr"` // 必填,生成签名的随机串
|
|
|
+ Signature string `protobuf:"bytes,4,opt,name=signature,proto3" json:"signature"` // 必填,签名
|
|
|
+}
|
|
|
+
|
|
|
+func (x *WxConfResponse) Reset() {
|
|
|
+ *x = WxConfResponse{}
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
+ mi := &file_common_proto_msgTypes[6]
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+func (x *WxConfResponse) String() string {
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
+}
|
|
|
+
|
|
|
+func (*WxConfResponse) ProtoMessage() {}
|
|
|
+
|
|
|
+func (x *WxConfResponse) ProtoReflect() protoreflect.Message {
|
|
|
+ mi := &file_common_proto_msgTypes[6]
|
|
|
+ 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 WxConfResponse.ProtoReflect.Descriptor instead.
|
|
|
+func (*WxConfResponse) Descriptor() ([]byte, []int) {
|
|
|
+ return file_common_proto_rawDescGZIP(), []int{6}
|
|
|
+}
|
|
|
+
|
|
|
+func (x *WxConfResponse) GetAppId() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.AppId
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *WxConfResponse) GetTimestamp() int64 {
|
|
|
+ if x != nil {
|
|
|
+ return x.Timestamp
|
|
|
+ }
|
|
|
+ return 0
|
|
|
+}
|
|
|
+
|
|
|
+func (x *WxConfResponse) GetNonceStr() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.NonceStr
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *WxConfResponse) GetSignature() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.Signature
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
// 主页信息
|
|
|
type HomeInfo struct {
|
|
|
state protoimpl.MessageState
|
|
|
@@ -301,7 +419,7 @@ type HomeInfo struct {
|
|
|
func (x *HomeInfo) Reset() {
|
|
|
*x = HomeInfo{}
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
- mi := &file_common_proto_msgTypes[5]
|
|
|
+ mi := &file_common_proto_msgTypes[7]
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
}
|
|
|
@@ -314,7 +432,7 @@ func (x *HomeInfo) String() string {
|
|
|
func (*HomeInfo) ProtoMessage() {}
|
|
|
|
|
|
func (x *HomeInfo) ProtoReflect() protoreflect.Message {
|
|
|
- mi := &file_common_proto_msgTypes[5]
|
|
|
+ mi := &file_common_proto_msgTypes[7]
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
@@ -327,7 +445,7 @@ func (x *HomeInfo) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use HomeInfo.ProtoReflect.Descriptor instead.
|
|
|
func (*HomeInfo) Descriptor() ([]byte, []int) {
|
|
|
- return file_common_proto_rawDescGZIP(), []int{5}
|
|
|
+ return file_common_proto_rawDescGZIP(), []int{7}
|
|
|
}
|
|
|
|
|
|
func (x *HomeInfo) GetId() string {
|
|
|
@@ -429,7 +547,7 @@ type AddFriendMessageInfo struct {
|
|
|
func (x *AddFriendMessageInfo) Reset() {
|
|
|
*x = AddFriendMessageInfo{}
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
- mi := &file_common_proto_msgTypes[6]
|
|
|
+ mi := &file_common_proto_msgTypes[8]
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
}
|
|
|
@@ -442,7 +560,7 @@ func (x *AddFriendMessageInfo) String() string {
|
|
|
func (*AddFriendMessageInfo) ProtoMessage() {}
|
|
|
|
|
|
func (x *AddFriendMessageInfo) ProtoReflect() protoreflect.Message {
|
|
|
- mi := &file_common_proto_msgTypes[6]
|
|
|
+ mi := &file_common_proto_msgTypes[8]
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
@@ -455,7 +573,7 @@ func (x *AddFriendMessageInfo) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use AddFriendMessageInfo.ProtoReflect.Descriptor instead.
|
|
|
func (*AddFriendMessageInfo) Descriptor() ([]byte, []int) {
|
|
|
- return file_common_proto_rawDescGZIP(), []int{6}
|
|
|
+ return file_common_proto_rawDescGZIP(), []int{8}
|
|
|
}
|
|
|
|
|
|
func (x *AddFriendMessageInfo) GetId() string {
|
|
|
@@ -546,7 +664,7 @@ type PersonIDList struct {
|
|
|
func (x *PersonIDList) Reset() {
|
|
|
*x = PersonIDList{}
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
- mi := &file_common_proto_msgTypes[7]
|
|
|
+ mi := &file_common_proto_msgTypes[9]
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
}
|
|
|
@@ -559,7 +677,7 @@ func (x *PersonIDList) String() string {
|
|
|
func (*PersonIDList) ProtoMessage() {}
|
|
|
|
|
|
func (x *PersonIDList) ProtoReflect() protoreflect.Message {
|
|
|
- mi := &file_common_proto_msgTypes[7]
|
|
|
+ mi := &file_common_proto_msgTypes[9]
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
@@ -572,7 +690,7 @@ func (x *PersonIDList) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use PersonIDList.ProtoReflect.Descriptor instead.
|
|
|
func (*PersonIDList) Descriptor() ([]byte, []int) {
|
|
|
- return file_common_proto_rawDescGZIP(), []int{7}
|
|
|
+ return file_common_proto_rawDescGZIP(), []int{9}
|
|
|
}
|
|
|
|
|
|
func (x *PersonIDList) GetPersonIds() []string {
|
|
|
@@ -593,7 +711,7 @@ type PersonDBReply struct {
|
|
|
func (x *PersonDBReply) Reset() {
|
|
|
*x = PersonDBReply{}
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
- mi := &file_common_proto_msgTypes[8]
|
|
|
+ mi := &file_common_proto_msgTypes[10]
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
}
|
|
|
@@ -606,7 +724,7 @@ func (x *PersonDBReply) String() string {
|
|
|
func (*PersonDBReply) ProtoMessage() {}
|
|
|
|
|
|
func (x *PersonDBReply) ProtoReflect() protoreflect.Message {
|
|
|
- mi := &file_common_proto_msgTypes[8]
|
|
|
+ mi := &file_common_proto_msgTypes[10]
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
@@ -619,7 +737,7 @@ func (x *PersonDBReply) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use PersonDBReply.ProtoReflect.Descriptor instead.
|
|
|
func (*PersonDBReply) Descriptor() ([]byte, []int) {
|
|
|
- return file_common_proto_rawDescGZIP(), []int{8}
|
|
|
+ return file_common_proto_rawDescGZIP(), []int{10}
|
|
|
}
|
|
|
|
|
|
func (x *PersonDBReply) GetList() []*PersonDB {
|
|
|
@@ -648,7 +766,7 @@ type PersonDB struct {
|
|
|
func (x *PersonDB) Reset() {
|
|
|
*x = PersonDB{}
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
- mi := &file_common_proto_msgTypes[9]
|
|
|
+ mi := &file_common_proto_msgTypes[11]
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
}
|
|
|
@@ -661,7 +779,7 @@ func (x *PersonDB) String() string {
|
|
|
func (*PersonDB) ProtoMessage() {}
|
|
|
|
|
|
func (x *PersonDB) ProtoReflect() protoreflect.Message {
|
|
|
- mi := &file_common_proto_msgTypes[9]
|
|
|
+ mi := &file_common_proto_msgTypes[11]
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
@@ -674,7 +792,7 @@ func (x *PersonDB) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use PersonDB.ProtoReflect.Descriptor instead.
|
|
|
func (*PersonDB) Descriptor() ([]byte, []int) {
|
|
|
- return file_common_proto_rawDescGZIP(), []int{9}
|
|
|
+ return file_common_proto_rawDescGZIP(), []int{11}
|
|
|
}
|
|
|
|
|
|
func (x *PersonDB) GetId() string {
|
|
|
@@ -752,7 +870,7 @@ type ListPageRequest struct {
|
|
|
func (x *ListPageRequest) Reset() {
|
|
|
*x = ListPageRequest{}
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
- mi := &file_common_proto_msgTypes[10]
|
|
|
+ mi := &file_common_proto_msgTypes[12]
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
}
|
|
|
@@ -765,7 +883,7 @@ func (x *ListPageRequest) String() string {
|
|
|
func (*ListPageRequest) ProtoMessage() {}
|
|
|
|
|
|
func (x *ListPageRequest) ProtoReflect() protoreflect.Message {
|
|
|
- mi := &file_common_proto_msgTypes[10]
|
|
|
+ mi := &file_common_proto_msgTypes[12]
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
@@ -778,7 +896,7 @@ func (x *ListPageRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use ListPageRequest.ProtoReflect.Descriptor instead.
|
|
|
func (*ListPageRequest) Descriptor() ([]byte, []int) {
|
|
|
- return file_common_proto_rawDescGZIP(), []int{10}
|
|
|
+ return file_common_proto_rawDescGZIP(), []int{12}
|
|
|
}
|
|
|
|
|
|
func (x *ListPageRequest) GetNextId() int64 {
|
|
|
@@ -806,7 +924,7 @@ type SendPhoneCodeRequest struct {
|
|
|
func (x *SendPhoneCodeRequest) Reset() {
|
|
|
*x = SendPhoneCodeRequest{}
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
- mi := &file_common_proto_msgTypes[11]
|
|
|
+ mi := &file_common_proto_msgTypes[13]
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
}
|
|
|
@@ -819,7 +937,7 @@ func (x *SendPhoneCodeRequest) String() string {
|
|
|
func (*SendPhoneCodeRequest) ProtoMessage() {}
|
|
|
|
|
|
func (x *SendPhoneCodeRequest) ProtoReflect() protoreflect.Message {
|
|
|
- mi := &file_common_proto_msgTypes[11]
|
|
|
+ mi := &file_common_proto_msgTypes[13]
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
@@ -832,7 +950,7 @@ func (x *SendPhoneCodeRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use SendPhoneCodeRequest.ProtoReflect.Descriptor instead.
|
|
|
func (*SendPhoneCodeRequest) Descriptor() ([]byte, []int) {
|
|
|
- return file_common_proto_rawDescGZIP(), []int{11}
|
|
|
+ return file_common_proto_rawDescGZIP(), []int{13}
|
|
|
}
|
|
|
|
|
|
func (x *SendPhoneCodeRequest) GetPhone() string {
|
|
|
@@ -854,7 +972,7 @@ type CheckPhoneCodeRequest struct {
|
|
|
func (x *CheckPhoneCodeRequest) Reset() {
|
|
|
*x = CheckPhoneCodeRequest{}
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
- mi := &file_common_proto_msgTypes[12]
|
|
|
+ mi := &file_common_proto_msgTypes[14]
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
}
|
|
|
@@ -867,7 +985,7 @@ func (x *CheckPhoneCodeRequest) String() string {
|
|
|
func (*CheckPhoneCodeRequest) ProtoMessage() {}
|
|
|
|
|
|
func (x *CheckPhoneCodeRequest) ProtoReflect() protoreflect.Message {
|
|
|
- mi := &file_common_proto_msgTypes[12]
|
|
|
+ mi := &file_common_proto_msgTypes[14]
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
@@ -880,7 +998,7 @@ func (x *CheckPhoneCodeRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use CheckPhoneCodeRequest.ProtoReflect.Descriptor instead.
|
|
|
func (*CheckPhoneCodeRequest) Descriptor() ([]byte, []int) {
|
|
|
- return file_common_proto_rawDescGZIP(), []int{12}
|
|
|
+ return file_common_proto_rawDescGZIP(), []int{14}
|
|
|
}
|
|
|
|
|
|
func (x *CheckPhoneCodeRequest) GetPhone() string {
|
|
|
@@ -908,7 +1026,7 @@ type UploadMaterialResponse struct {
|
|
|
func (x *UploadMaterialResponse) Reset() {
|
|
|
*x = UploadMaterialResponse{}
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
- mi := &file_common_proto_msgTypes[13]
|
|
|
+ mi := &file_common_proto_msgTypes[15]
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
}
|
|
|
@@ -921,7 +1039,7 @@ func (x *UploadMaterialResponse) String() string {
|
|
|
func (*UploadMaterialResponse) ProtoMessage() {}
|
|
|
|
|
|
func (x *UploadMaterialResponse) ProtoReflect() protoreflect.Message {
|
|
|
- mi := &file_common_proto_msgTypes[13]
|
|
|
+ mi := &file_common_proto_msgTypes[15]
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
@@ -934,7 +1052,7 @@ func (x *UploadMaterialResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use UploadMaterialResponse.ProtoReflect.Descriptor instead.
|
|
|
func (*UploadMaterialResponse) Descriptor() ([]byte, []int) {
|
|
|
- return file_common_proto_rawDescGZIP(), []int{13}
|
|
|
+ return file_common_proto_rawDescGZIP(), []int{15}
|
|
|
}
|
|
|
|
|
|
func (x *UploadMaterialResponse) GetLink() string {
|
|
|
@@ -968,7 +1086,62 @@ var file_common_proto_rawDesc = []byte{
|
|
|
0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x22, 0x25, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72,
|
|
|
0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49,
|
|
|
0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22,
|
|
|
- 0xa6, 0x02, 0x0a, 0x08, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02,
|
|
|
+ 0x1d, 0x0a, 0x09, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03,
|
|
|
+ 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x22, 0x7e,
|
|
|
+ 0x0a, 0x0e, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
|
|
+ 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
|
+ 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74,
|
|
|
+ 0x61, 0x6d, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73,
|
|
|
+ 0x74, 0x61, 0x6d, 0x70, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x6f, 0x6e, 0x63, 0x65, 0x53, 0x74, 0x72,
|
|
|
+ 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x6f, 0x6e, 0x63, 0x65, 0x53, 0x74, 0x72,
|
|
|
+ 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x04, 0x20,
|
|
|
+ 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x22, 0xa6,
|
|
|
+ 0x02, 0x0a, 0x08, 0x48, 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, 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, 0x73, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01,
|
|
|
+ 0x28, 0x03, 0x52, 0x03, 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, 0x69, 0x63, 0x65, 0x22, 0xbc, 0x02, 0x0a, 0x14, 0x41, 0x64, 0x64, 0x46,
|
|
|
+ 0x72, 0x69, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 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, 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, 0x73, 0x65,
|
|
|
+ 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 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, 0x1e, 0x0a, 0x0a, 0x66, 0x72, 0x6f, 0x6d,
|
|
|
+ 0x4f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x66, 0x72,
|
|
|
+ 0x6f, 0x6d, 0x4f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x73, 0x52, 0x65,
|
|
|
+ 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73,
|
|
|
+ 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x43, 0x68,
|
|
|
+ 0x61, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x43, 0x68, 0x61, 0x74,
|
|
|
+ 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x55, 0x73, 0x18, 0x09, 0x20, 0x01,
|
|
|
+ 0x28, 0x08, 0x52, 0x08, 0x69, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x55, 0x73, 0x12, 0x1c, 0x0a, 0x09,
|
|
|
+ 0x66, 0x72, 0x6f, 0x6d, 0x41, 0x70, 0x70, 0x49, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
|
+ 0x09, 0x66, 0x72, 0x6f, 0x6d, 0x41, 0x70, 0x70, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x72,
|
|
|
+ 0x6f, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x72,
|
|
|
+ 0x6f, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x2c, 0x0a, 0x0c, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
|
|
|
+ 0x49, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
|
|
|
+ 0x49, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f,
|
|
|
+ 0x6e, 0x49, 0x64, 0x73, 0x22, 0x39, 0x0a, 0x0d, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42,
|
|
|
+ 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x28, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20,
|
|
|
+ 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
|
|
|
+ 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22,
|
|
|
+ 0xf6, 0x01, 0x0a, 0x08, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 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,
|
|
|
@@ -981,73 +1154,28 @@ var file_common_proto_rawDesc = []byte{
|
|
|
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, 0x69, 0x63, 0x65, 0x22, 0xbc, 0x02, 0x0a, 0x14, 0x41, 0x64, 0x64,
|
|
|
- 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 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, 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, 0x73,
|
|
|
- 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 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, 0x1e, 0x0a, 0x0a, 0x66, 0x72, 0x6f,
|
|
|
- 0x6d, 0x4f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x66,
|
|
|
- 0x72, 0x6f, 0x6d, 0x4f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x73, 0x52,
|
|
|
- 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69,
|
|
|
- 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x43,
|
|
|
- 0x68, 0x61, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x43, 0x68, 0x61,
|
|
|
- 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x55, 0x73, 0x18, 0x09, 0x20,
|
|
|
- 0x01, 0x28, 0x08, 0x52, 0x08, 0x69, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x55, 0x73, 0x12, 0x1c, 0x0a,
|
|
|
- 0x09, 0x66, 0x72, 0x6f, 0x6d, 0x41, 0x70, 0x70, 0x49, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
|
|
|
- 0x52, 0x09, 0x66, 0x72, 0x6f, 0x6d, 0x41, 0x70, 0x70, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x66,
|
|
|
- 0x72, 0x6f, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66,
|
|
|
- 0x72, 0x6f, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x2c, 0x0a, 0x0c, 0x50, 0x65, 0x72, 0x73, 0x6f,
|
|
|
- 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f,
|
|
|
- 0x6e, 0x49, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x70, 0x65, 0x72, 0x73,
|
|
|
- 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x22, 0x39, 0x0a, 0x0d, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44,
|
|
|
- 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x28, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01,
|
|
|
- 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
|
|
|
- 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74,
|
|
|
- 0x22, 0xf6, 0x01, 0x0a, 0x08, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 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, 0x73, 0x65, 0x78, 0x18, 0x04,
|
|
|
- 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 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, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f,
|
|
|
- 0x69, 0x63, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f,
|
|
|
- 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x22, 0x41, 0x0a, 0x0f, 0x4c, 0x69, 0x73,
|
|
|
- 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06,
|
|
|
- 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65,
|
|
|
- 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02,
|
|
|
- 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 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,
|
|
|
+ 0x63, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64,
|
|
|
+ 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x22, 0x41, 0x0a, 0x0f, 0x4c, 0x69, 0x73, 0x74,
|
|
|
+ 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e,
|
|
|
+ 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78,
|
|
|
+ 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20,
|
|
|
+ 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 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, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64,
|
|
|
- 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x22, 0x2c, 0x0a,
|
|
|
- 0x16, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x52,
|
|
|
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x69, 0x6e, 0x6b, 0x18,
|
|
|
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6c, 0x69, 0x6e, 0x6b, 0x42, 0x43, 0x0a, 0x0a, 0x61,
|
|
|
- 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x50, 0x01, 0x5a, 0x33, 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, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
|
|
|
- 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
|
+ 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, 0x22, 0x2c, 0x0a, 0x16,
|
|
|
+ 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x52, 0x65,
|
|
|
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x69, 0x6e, 0x6b, 0x18, 0x01,
|
|
|
+ 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6c, 0x69, 0x6e, 0x6b, 0x42, 0x43, 0x0a, 0x0a, 0x61, 0x70,
|
|
|
+ 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x50, 0x01, 0x5a, 0x33, 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, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62,
|
|
|
+ 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
|
}
|
|
|
|
|
|
var (
|
|
|
@@ -1062,30 +1190,32 @@ func file_common_proto_rawDescGZIP() []byte {
|
|
|
return file_common_proto_rawDescData
|
|
|
}
|
|
|
|
|
|
-var file_common_proto_msgTypes = make([]protoimpl.MessageInfo, 14)
|
|
|
+var file_common_proto_msgTypes = make([]protoimpl.MessageInfo, 16)
|
|
|
var file_common_proto_goTypes = []interface{}{
|
|
|
(*UserAndPartnerIdParam)(nil), // 0: api.common.UserAndPartnerIdParam
|
|
|
(*User1AndUser2IdParam)(nil), // 1: api.common.User1AndUser2IdParam
|
|
|
(*PartnerIDParam)(nil), // 2: api.common.PartnerIDParam
|
|
|
(*PersonParam)(nil), // 3: api.common.PersonParam
|
|
|
(*UserIDParam)(nil), // 4: api.common.UserIDParam
|
|
|
- (*HomeInfo)(nil), // 5: api.common.HomeInfo
|
|
|
- (*AddFriendMessageInfo)(nil), // 6: api.common.AddFriendMessageInfo
|
|
|
- (*PersonIDList)(nil), // 7: api.common.PersonIDList
|
|
|
- (*PersonDBReply)(nil), // 8: api.common.PersonDBReply
|
|
|
- (*PersonDB)(nil), // 9: api.common.PersonDB
|
|
|
- (*ListPageRequest)(nil), // 10: api.common.ListPageRequest
|
|
|
- (*SendPhoneCodeRequest)(nil), // 11: api.common.SendPhoneCodeRequest
|
|
|
- (*CheckPhoneCodeRequest)(nil), // 12: api.common.CheckPhoneCodeRequest
|
|
|
- (*UploadMaterialResponse)(nil), // 13: api.common.UploadMaterialResponse
|
|
|
+ (*WxConfReq)(nil), // 5: api.common.WxConfReq
|
|
|
+ (*WxConfResponse)(nil), // 6: api.common.WxConfResponse
|
|
|
+ (*HomeInfo)(nil), // 7: api.common.HomeInfo
|
|
|
+ (*AddFriendMessageInfo)(nil), // 8: api.common.AddFriendMessageInfo
|
|
|
+ (*PersonIDList)(nil), // 9: api.common.PersonIDList
|
|
|
+ (*PersonDBReply)(nil), // 10: api.common.PersonDBReply
|
|
|
+ (*PersonDB)(nil), // 11: api.common.PersonDB
|
|
|
+ (*ListPageRequest)(nil), // 12: api.common.ListPageRequest
|
|
|
+ (*SendPhoneCodeRequest)(nil), // 13: api.common.SendPhoneCodeRequest
|
|
|
+ (*CheckPhoneCodeRequest)(nil), // 14: api.common.CheckPhoneCodeRequest
|
|
|
+ (*UploadMaterialResponse)(nil), // 15: api.common.UploadMaterialResponse
|
|
|
}
|
|
|
var file_common_proto_depIdxs = []int32{
|
|
|
- 9, // 0: api.common.PersonDBReply.list:type_name -> api.common.PersonDB
|
|
|
- 1, // [1:1] is the sub-list for method output_type
|
|
|
- 1, // [1:1] is the sub-list for method input_type
|
|
|
- 1, // [1:1] is the sub-list for extension type_name
|
|
|
- 1, // [1:1] is the sub-list for extension extendee
|
|
|
- 0, // [0:1] is the sub-list for field type_name
|
|
|
+ 11, // 0: api.common.PersonDBReply.list:type_name -> api.common.PersonDB
|
|
|
+ 1, // [1:1] is the sub-list for method output_type
|
|
|
+ 1, // [1:1] is the sub-list for method input_type
|
|
|
+ 1, // [1:1] is the sub-list for extension type_name
|
|
|
+ 1, // [1:1] is the sub-list for extension extendee
|
|
|
+ 0, // [0:1] is the sub-list for field type_name
|
|
|
}
|
|
|
|
|
|
func init() { file_common_proto_init() }
|
|
|
@@ -1155,7 +1285,7 @@ func file_common_proto_init() {
|
|
|
}
|
|
|
}
|
|
|
file_common_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
|
|
|
- switch v := v.(*HomeInfo); i {
|
|
|
+ switch v := v.(*WxConfReq); i {
|
|
|
case 0:
|
|
|
return &v.state
|
|
|
case 1:
|
|
|
@@ -1167,7 +1297,7 @@ func file_common_proto_init() {
|
|
|
}
|
|
|
}
|
|
|
file_common_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
|
|
|
- switch v := v.(*AddFriendMessageInfo); i {
|
|
|
+ switch v := v.(*WxConfResponse); i {
|
|
|
case 0:
|
|
|
return &v.state
|
|
|
case 1:
|
|
|
@@ -1179,7 +1309,7 @@ func file_common_proto_init() {
|
|
|
}
|
|
|
}
|
|
|
file_common_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
|
|
|
- switch v := v.(*PersonIDList); i {
|
|
|
+ switch v := v.(*HomeInfo); i {
|
|
|
case 0:
|
|
|
return &v.state
|
|
|
case 1:
|
|
|
@@ -1191,7 +1321,7 @@ func file_common_proto_init() {
|
|
|
}
|
|
|
}
|
|
|
file_common_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
|
|
|
- switch v := v.(*PersonDBReply); i {
|
|
|
+ switch v := v.(*AddFriendMessageInfo); i {
|
|
|
case 0:
|
|
|
return &v.state
|
|
|
case 1:
|
|
|
@@ -1203,7 +1333,7 @@ func file_common_proto_init() {
|
|
|
}
|
|
|
}
|
|
|
file_common_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
|
|
|
- switch v := v.(*PersonDB); i {
|
|
|
+ switch v := v.(*PersonIDList); i {
|
|
|
case 0:
|
|
|
return &v.state
|
|
|
case 1:
|
|
|
@@ -1215,7 +1345,7 @@ func file_common_proto_init() {
|
|
|
}
|
|
|
}
|
|
|
file_common_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
|
|
|
- switch v := v.(*ListPageRequest); i {
|
|
|
+ switch v := v.(*PersonDBReply); i {
|
|
|
case 0:
|
|
|
return &v.state
|
|
|
case 1:
|
|
|
@@ -1227,7 +1357,7 @@ func file_common_proto_init() {
|
|
|
}
|
|
|
}
|
|
|
file_common_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
|
|
|
- switch v := v.(*SendPhoneCodeRequest); i {
|
|
|
+ switch v := v.(*PersonDB); i {
|
|
|
case 0:
|
|
|
return &v.state
|
|
|
case 1:
|
|
|
@@ -1239,7 +1369,7 @@ func file_common_proto_init() {
|
|
|
}
|
|
|
}
|
|
|
file_common_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
|
|
|
- switch v := v.(*CheckPhoneCodeRequest); i {
|
|
|
+ switch v := v.(*ListPageRequest); i {
|
|
|
case 0:
|
|
|
return &v.state
|
|
|
case 1:
|
|
|
@@ -1251,6 +1381,30 @@ func file_common_proto_init() {
|
|
|
}
|
|
|
}
|
|
|
file_common_proto_msgTypes[13].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_common_proto_msgTypes[14].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
|
|
|
+ }
|
|
|
+ }
|
|
|
+ file_common_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
|
|
|
switch v := v.(*UploadMaterialResponse); i {
|
|
|
case 0:
|
|
|
return &v.state
|
|
|
@@ -1269,7 +1423,7 @@ func file_common_proto_init() {
|
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
|
RawDescriptor: file_common_proto_rawDesc,
|
|
|
NumEnums: 0,
|
|
|
- NumMessages: 14,
|
|
|
+ NumMessages: 16,
|
|
|
NumExtensions: 0,
|
|
|
NumServices: 0,
|
|
|
},
|