@lansweeper/multitenant-api-grpc 0.4.73 → 0.4.74

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.
@@ -5542,17 +5542,19 @@ func (x *GetSiteHierarchyIdsResponse) GetPageInfo() *SiteHierarchyIdsPageInfo {
5542
5542
  return nil
5543
5543
  }
5544
5544
 
5545
- type GetSitesIdsWithFederationRequest struct {
5545
+ type GetSitesOptions struct {
5546
5546
  state protoimpl.MessageState
5547
5547
  sizeCache protoimpl.SizeCache
5548
5548
  unknownFields protoimpl.UnknownFields
5549
5549
 
5550
- OffsetId *string `protobuf:"bytes,1,opt,name=offset_id,json=offsetId,proto3,oneof" json:"offset_id,omitempty"`
5551
- Limit *int32 `protobuf:"varint,2,opt,name=limit,proto3,oneof" json:"limit,omitempty"`
5550
+ Offset *int32 `protobuf:"varint,1,opt,name=offset,proto3,oneof" json:"offset,omitempty"`
5551
+ Limit *int32 `protobuf:"varint,2,opt,name=limit,proto3,oneof" json:"limit,omitempty"`
5552
+ OrderBy *string `protobuf:"bytes,3,opt,name=order_by,json=orderBy,proto3,oneof" json:"order_by,omitempty"`
5553
+ OrderDirection *string `protobuf:"bytes,4,opt,name=order_direction,json=orderDirection,proto3,oneof" json:"order_direction,omitempty"`
5552
5554
  }
5553
5555
 
5554
- func (x *GetSitesIdsWithFederationRequest) Reset() {
5555
- *x = GetSitesIdsWithFederationRequest{}
5556
+ func (x *GetSitesOptions) Reset() {
5557
+ *x = GetSitesOptions{}
5556
5558
  if protoimpl.UnsafeEnabled {
5557
5559
  mi := &file_multitenant_proto_msgTypes[91]
5558
5560
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
@@ -5560,13 +5562,13 @@ func (x *GetSitesIdsWithFederationRequest) Reset() {
5560
5562
  }
5561
5563
  }
5562
5564
 
5563
- func (x *GetSitesIdsWithFederationRequest) String() string {
5565
+ func (x *GetSitesOptions) String() string {
5564
5566
  return protoimpl.X.MessageStringOf(x)
5565
5567
  }
5566
5568
 
5567
- func (*GetSitesIdsWithFederationRequest) ProtoMessage() {}
5569
+ func (*GetSitesOptions) ProtoMessage() {}
5568
5570
 
5569
- func (x *GetSitesIdsWithFederationRequest) ProtoReflect() protoreflect.Message {
5571
+ func (x *GetSitesOptions) ProtoReflect() protoreflect.Message {
5570
5572
  mi := &file_multitenant_proto_msgTypes[91]
5571
5573
  if protoimpl.UnsafeEnabled && x != nil {
5572
5574
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
@@ -5578,37 +5580,50 @@ func (x *GetSitesIdsWithFederationRequest) ProtoReflect() protoreflect.Message {
5578
5580
  return mi.MessageOf(x)
5579
5581
  }
5580
5582
 
5581
- // Deprecated: Use GetSitesIdsWithFederationRequest.ProtoReflect.Descriptor instead.
5582
- func (*GetSitesIdsWithFederationRequest) Descriptor() ([]byte, []int) {
5583
+ // Deprecated: Use GetSitesOptions.ProtoReflect.Descriptor instead.
5584
+ func (*GetSitesOptions) Descriptor() ([]byte, []int) {
5583
5585
  return file_multitenant_proto_rawDescGZIP(), []int{91}
5584
5586
  }
5585
5587
 
5586
- func (x *GetSitesIdsWithFederationRequest) GetOffsetId() string {
5587
- if x != nil && x.OffsetId != nil {
5588
- return *x.OffsetId
5588
+ func (x *GetSitesOptions) GetOffset() int32 {
5589
+ if x != nil && x.Offset != nil {
5590
+ return *x.Offset
5589
5591
  }
5590
- return ""
5592
+ return 0
5591
5593
  }
5592
5594
 
5593
- func (x *GetSitesIdsWithFederationRequest) GetLimit() int32 {
5595
+ func (x *GetSitesOptions) GetLimit() int32 {
5594
5596
  if x != nil && x.Limit != nil {
5595
5597
  return *x.Limit
5596
5598
  }
5597
5599
  return 0
5598
5600
  }
5599
5601
 
5600
- type SitesIdsWithFederationItem struct {
5602
+ func (x *GetSitesOptions) GetOrderBy() string {
5603
+ if x != nil && x.OrderBy != nil {
5604
+ return *x.OrderBy
5605
+ }
5606
+ return ""
5607
+ }
5608
+
5609
+ func (x *GetSitesOptions) GetOrderDirection() string {
5610
+ if x != nil && x.OrderDirection != nil {
5611
+ return *x.OrderDirection
5612
+ }
5613
+ return ""
5614
+ }
5615
+
5616
+ type GetSitesRequest struct {
5601
5617
  state protoimpl.MessageState
5602
5618
  sizeCache protoimpl.SizeCache
5603
5619
  unknownFields protoimpl.UnknownFields
5604
5620
 
5605
- SiteId string `protobuf:"bytes,1,opt,name=site_id,json=siteId,proto3" json:"site_id,omitempty"`
5606
- EnabledMetadataFieldsFederation bool `protobuf:"varint,2,opt,name=enabledMetadataFieldsFederation,proto3" json:"enabledMetadataFieldsFederation,omitempty"`
5607
- EnabledCustomFieldsFederation bool `protobuf:"varint,3,opt,name=enabledCustomFieldsFederation,proto3" json:"enabledCustomFieldsFederation,omitempty"`
5621
+ Search *string `protobuf:"bytes,1,opt,name=search,proto3,oneof" json:"search,omitempty"`
5622
+ Options *GetSitesOptions `protobuf:"bytes,2,opt,name=options,proto3,oneof" json:"options,omitempty"`
5608
5623
  }
5609
5624
 
5610
- func (x *SitesIdsWithFederationItem) Reset() {
5611
- *x = SitesIdsWithFederationItem{}
5625
+ func (x *GetSitesRequest) Reset() {
5626
+ *x = GetSitesRequest{}
5612
5627
  if protoimpl.UnsafeEnabled {
5613
5628
  mi := &file_multitenant_proto_msgTypes[92]
5614
5629
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
@@ -5616,13 +5631,13 @@ func (x *SitesIdsWithFederationItem) Reset() {
5616
5631
  }
5617
5632
  }
5618
5633
 
5619
- func (x *SitesIdsWithFederationItem) String() string {
5634
+ func (x *GetSitesRequest) String() string {
5620
5635
  return protoimpl.X.MessageStringOf(x)
5621
5636
  }
5622
5637
 
5623
- func (*SitesIdsWithFederationItem) ProtoMessage() {}
5638
+ func (*GetSitesRequest) ProtoMessage() {}
5624
5639
 
5625
- func (x *SitesIdsWithFederationItem) ProtoReflect() protoreflect.Message {
5640
+ func (x *GetSitesRequest) ProtoReflect() protoreflect.Message {
5626
5641
  mi := &file_multitenant_proto_msgTypes[92]
5627
5642
  if protoimpl.UnsafeEnabled && x != nil {
5628
5643
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
@@ -5634,59 +5649,106 @@ func (x *SitesIdsWithFederationItem) ProtoReflect() protoreflect.Message {
5634
5649
  return mi.MessageOf(x)
5635
5650
  }
5636
5651
 
5637
- // Deprecated: Use SitesIdsWithFederationItem.ProtoReflect.Descriptor instead.
5638
- func (*SitesIdsWithFederationItem) Descriptor() ([]byte, []int) {
5652
+ // Deprecated: Use GetSitesRequest.ProtoReflect.Descriptor instead.
5653
+ func (*GetSitesRequest) Descriptor() ([]byte, []int) {
5639
5654
  return file_multitenant_proto_rawDescGZIP(), []int{92}
5640
5655
  }
5641
5656
 
5642
- func (x *SitesIdsWithFederationItem) GetSiteId() string {
5643
- if x != nil {
5644
- return x.SiteId
5657
+ func (x *GetSitesRequest) GetSearch() string {
5658
+ if x != nil && x.Search != nil {
5659
+ return *x.Search
5645
5660
  }
5646
5661
  return ""
5647
5662
  }
5648
5663
 
5649
- func (x *SitesIdsWithFederationItem) GetEnabledMetadataFieldsFederation() bool {
5664
+ func (x *GetSitesRequest) GetOptions() *GetSitesOptions {
5665
+ if x != nil {
5666
+ return x.Options
5667
+ }
5668
+ return nil
5669
+ }
5670
+
5671
+ type GetSitesItemsMetadata struct {
5672
+ state protoimpl.MessageState
5673
+ sizeCache protoimpl.SizeCache
5674
+ unknownFields protoimpl.UnknownFields
5675
+
5676
+ EnabledMetadataFieldsFederation bool `protobuf:"varint,1,opt,name=enabled_metadata_fields_federation,json=enabledMetadataFieldsFederation,proto3" json:"enabled_metadata_fields_federation,omitempty"`
5677
+ EnabledCustomFieldsFederation bool `protobuf:"varint,2,opt,name=enabled_custom_fields_federation,json=enabledCustomFieldsFederation,proto3" json:"enabled_custom_fields_federation,omitempty"`
5678
+ }
5679
+
5680
+ func (x *GetSitesItemsMetadata) Reset() {
5681
+ *x = GetSitesItemsMetadata{}
5682
+ if protoimpl.UnsafeEnabled {
5683
+ mi := &file_multitenant_proto_msgTypes[93]
5684
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
5685
+ ms.StoreMessageInfo(mi)
5686
+ }
5687
+ }
5688
+
5689
+ func (x *GetSitesItemsMetadata) String() string {
5690
+ return protoimpl.X.MessageStringOf(x)
5691
+ }
5692
+
5693
+ func (*GetSitesItemsMetadata) ProtoMessage() {}
5694
+
5695
+ func (x *GetSitesItemsMetadata) ProtoReflect() protoreflect.Message {
5696
+ mi := &file_multitenant_proto_msgTypes[93]
5697
+ if protoimpl.UnsafeEnabled && x != nil {
5698
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
5699
+ if ms.LoadMessageInfo() == nil {
5700
+ ms.StoreMessageInfo(mi)
5701
+ }
5702
+ return ms
5703
+ }
5704
+ return mi.MessageOf(x)
5705
+ }
5706
+
5707
+ // Deprecated: Use GetSitesItemsMetadata.ProtoReflect.Descriptor instead.
5708
+ func (*GetSitesItemsMetadata) Descriptor() ([]byte, []int) {
5709
+ return file_multitenant_proto_rawDescGZIP(), []int{93}
5710
+ }
5711
+
5712
+ func (x *GetSitesItemsMetadata) GetEnabledMetadataFieldsFederation() bool {
5650
5713
  if x != nil {
5651
5714
  return x.EnabledMetadataFieldsFederation
5652
5715
  }
5653
5716
  return false
5654
5717
  }
5655
5718
 
5656
- func (x *SitesIdsWithFederationItem) GetEnabledCustomFieldsFederation() bool {
5719
+ func (x *GetSitesItemsMetadata) GetEnabledCustomFieldsFederation() bool {
5657
5720
  if x != nil {
5658
5721
  return x.EnabledCustomFieldsFederation
5659
5722
  }
5660
5723
  return false
5661
5724
  }
5662
5725
 
5663
- type SitesIdsWithFederationPageInfo struct {
5726
+ type GetSitesItems struct {
5664
5727
  state protoimpl.MessageState
5665
5728
  sizeCache protoimpl.SizeCache
5666
5729
  unknownFields protoimpl.UnknownFields
5667
5730
 
5668
- OffsetId string `protobuf:"bytes,1,opt,name=offset_id,json=offsetId,proto3" json:"offset_id,omitempty"`
5669
- Limit int32 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
5670
- HasNextPage bool `protobuf:"varint,3,opt,name=has_next_page,json=hasNextPage,proto3" json:"has_next_page,omitempty"`
5731
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
5732
+ Metadata *GetSitesItemsMetadata `protobuf:"bytes,2,opt,name=metadata,proto3,oneof" json:"metadata,omitempty"`
5671
5733
  }
5672
5734
 
5673
- func (x *SitesIdsWithFederationPageInfo) Reset() {
5674
- *x = SitesIdsWithFederationPageInfo{}
5735
+ func (x *GetSitesItems) Reset() {
5736
+ *x = GetSitesItems{}
5675
5737
  if protoimpl.UnsafeEnabled {
5676
- mi := &file_multitenant_proto_msgTypes[93]
5738
+ mi := &file_multitenant_proto_msgTypes[94]
5677
5739
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
5678
5740
  ms.StoreMessageInfo(mi)
5679
5741
  }
5680
5742
  }
5681
5743
 
5682
- func (x *SitesIdsWithFederationPageInfo) String() string {
5744
+ func (x *GetSitesItems) String() string {
5683
5745
  return protoimpl.X.MessageStringOf(x)
5684
5746
  }
5685
5747
 
5686
- func (*SitesIdsWithFederationPageInfo) ProtoMessage() {}
5748
+ func (*GetSitesItems) ProtoMessage() {}
5687
5749
 
5688
- func (x *SitesIdsWithFederationPageInfo) ProtoReflect() protoreflect.Message {
5689
- mi := &file_multitenant_proto_msgTypes[93]
5750
+ func (x *GetSitesItems) ProtoReflect() protoreflect.Message {
5751
+ mi := &file_multitenant_proto_msgTypes[94]
5690
5752
  if protoimpl.UnsafeEnabled && x != nil {
5691
5753
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
5692
5754
  if ms.LoadMessageInfo() == nil {
@@ -5697,59 +5759,115 @@ func (x *SitesIdsWithFederationPageInfo) ProtoReflect() protoreflect.Message {
5697
5759
  return mi.MessageOf(x)
5698
5760
  }
5699
5761
 
5700
- // Deprecated: Use SitesIdsWithFederationPageInfo.ProtoReflect.Descriptor instead.
5701
- func (*SitesIdsWithFederationPageInfo) Descriptor() ([]byte, []int) {
5702
- return file_multitenant_proto_rawDescGZIP(), []int{93}
5762
+ // Deprecated: Use GetSitesItems.ProtoReflect.Descriptor instead.
5763
+ func (*GetSitesItems) Descriptor() ([]byte, []int) {
5764
+ return file_multitenant_proto_rawDescGZIP(), []int{94}
5703
5765
  }
5704
5766
 
5705
- func (x *SitesIdsWithFederationPageInfo) GetOffsetId() string {
5767
+ func (x *GetSitesItems) GetId() string {
5706
5768
  if x != nil {
5707
- return x.OffsetId
5769
+ return x.Id
5708
5770
  }
5709
5771
  return ""
5710
5772
  }
5711
5773
 
5712
- func (x *SitesIdsWithFederationPageInfo) GetLimit() int32 {
5774
+ func (x *GetSitesItems) GetMetadata() *GetSitesItemsMetadata {
5775
+ if x != nil {
5776
+ return x.Metadata
5777
+ }
5778
+ return nil
5779
+ }
5780
+
5781
+ type GetSitesPageInfo struct {
5782
+ state protoimpl.MessageState
5783
+ sizeCache protoimpl.SizeCache
5784
+ unknownFields protoimpl.UnknownFields
5785
+
5786
+ Offset int32 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
5787
+ Limit int32 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
5788
+ HasNextPage bool `protobuf:"varint,3,opt,name=has_next_page,json=hasNextPage,proto3" json:"has_next_page,omitempty"`
5789
+ }
5790
+
5791
+ func (x *GetSitesPageInfo) Reset() {
5792
+ *x = GetSitesPageInfo{}
5793
+ if protoimpl.UnsafeEnabled {
5794
+ mi := &file_multitenant_proto_msgTypes[95]
5795
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
5796
+ ms.StoreMessageInfo(mi)
5797
+ }
5798
+ }
5799
+
5800
+ func (x *GetSitesPageInfo) String() string {
5801
+ return protoimpl.X.MessageStringOf(x)
5802
+ }
5803
+
5804
+ func (*GetSitesPageInfo) ProtoMessage() {}
5805
+
5806
+ func (x *GetSitesPageInfo) ProtoReflect() protoreflect.Message {
5807
+ mi := &file_multitenant_proto_msgTypes[95]
5808
+ if protoimpl.UnsafeEnabled && x != nil {
5809
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
5810
+ if ms.LoadMessageInfo() == nil {
5811
+ ms.StoreMessageInfo(mi)
5812
+ }
5813
+ return ms
5814
+ }
5815
+ return mi.MessageOf(x)
5816
+ }
5817
+
5818
+ // Deprecated: Use GetSitesPageInfo.ProtoReflect.Descriptor instead.
5819
+ func (*GetSitesPageInfo) Descriptor() ([]byte, []int) {
5820
+ return file_multitenant_proto_rawDescGZIP(), []int{95}
5821
+ }
5822
+
5823
+ func (x *GetSitesPageInfo) GetOffset() int32 {
5824
+ if x != nil {
5825
+ return x.Offset
5826
+ }
5827
+ return 0
5828
+ }
5829
+
5830
+ func (x *GetSitesPageInfo) GetLimit() int32 {
5713
5831
  if x != nil {
5714
5832
  return x.Limit
5715
5833
  }
5716
5834
  return 0
5717
5835
  }
5718
5836
 
5719
- func (x *SitesIdsWithFederationPageInfo) GetHasNextPage() bool {
5837
+ func (x *GetSitesPageInfo) GetHasNextPage() bool {
5720
5838
  if x != nil {
5721
5839
  return x.HasNextPage
5722
5840
  }
5723
5841
  return false
5724
5842
  }
5725
5843
 
5726
- type GetSitesIdsWithFederationResponse struct {
5844
+ type GetSitesResponse struct {
5727
5845
  state protoimpl.MessageState
5728
5846
  sizeCache protoimpl.SizeCache
5729
5847
  unknownFields protoimpl.UnknownFields
5730
5848
 
5731
- Count int32 `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
5732
- Items []*SitesIdsWithFederationItem `protobuf:"bytes,2,rep,name=items,proto3" json:"items,omitempty"`
5733
- PageInfo *SitesIdsWithFederationPageInfo `protobuf:"bytes,3,opt,name=page_info,json=pageInfo,proto3" json:"page_info,omitempty"`
5849
+ Count int32 `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
5850
+ Items []*GetSitesItems `protobuf:"bytes,2,rep,name=items,proto3" json:"items,omitempty"`
5851
+ PageInfo *GetSitesPageInfo `protobuf:"bytes,3,opt,name=page_info,json=pageInfo,proto3" json:"page_info,omitempty"`
5734
5852
  }
5735
5853
 
5736
- func (x *GetSitesIdsWithFederationResponse) Reset() {
5737
- *x = GetSitesIdsWithFederationResponse{}
5854
+ func (x *GetSitesResponse) Reset() {
5855
+ *x = GetSitesResponse{}
5738
5856
  if protoimpl.UnsafeEnabled {
5739
- mi := &file_multitenant_proto_msgTypes[94]
5857
+ mi := &file_multitenant_proto_msgTypes[96]
5740
5858
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
5741
5859
  ms.StoreMessageInfo(mi)
5742
5860
  }
5743
5861
  }
5744
5862
 
5745
- func (x *GetSitesIdsWithFederationResponse) String() string {
5863
+ func (x *GetSitesResponse) String() string {
5746
5864
  return protoimpl.X.MessageStringOf(x)
5747
5865
  }
5748
5866
 
5749
- func (*GetSitesIdsWithFederationResponse) ProtoMessage() {}
5867
+ func (*GetSitesResponse) ProtoMessage() {}
5750
5868
 
5751
- func (x *GetSitesIdsWithFederationResponse) ProtoReflect() protoreflect.Message {
5752
- mi := &file_multitenant_proto_msgTypes[94]
5869
+ func (x *GetSitesResponse) ProtoReflect() protoreflect.Message {
5870
+ mi := &file_multitenant_proto_msgTypes[96]
5753
5871
  if protoimpl.UnsafeEnabled && x != nil {
5754
5872
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
5755
5873
  if ms.LoadMessageInfo() == nil {
@@ -5760,26 +5878,26 @@ func (x *GetSitesIdsWithFederationResponse) ProtoReflect() protoreflect.Message
5760
5878
  return mi.MessageOf(x)
5761
5879
  }
5762
5880
 
5763
- // Deprecated: Use GetSitesIdsWithFederationResponse.ProtoReflect.Descriptor instead.
5764
- func (*GetSitesIdsWithFederationResponse) Descriptor() ([]byte, []int) {
5765
- return file_multitenant_proto_rawDescGZIP(), []int{94}
5881
+ // Deprecated: Use GetSitesResponse.ProtoReflect.Descriptor instead.
5882
+ func (*GetSitesResponse) Descriptor() ([]byte, []int) {
5883
+ return file_multitenant_proto_rawDescGZIP(), []int{96}
5766
5884
  }
5767
5885
 
5768
- func (x *GetSitesIdsWithFederationResponse) GetCount() int32 {
5886
+ func (x *GetSitesResponse) GetCount() int32 {
5769
5887
  if x != nil {
5770
5888
  return x.Count
5771
5889
  }
5772
5890
  return 0
5773
5891
  }
5774
5892
 
5775
- func (x *GetSitesIdsWithFederationResponse) GetItems() []*SitesIdsWithFederationItem {
5893
+ func (x *GetSitesResponse) GetItems() []*GetSitesItems {
5776
5894
  if x != nil {
5777
5895
  return x.Items
5778
5896
  }
5779
5897
  return nil
5780
5898
  }
5781
5899
 
5782
- func (x *GetSitesIdsWithFederationResponse) GetPageInfo() *SitesIdsWithFederationPageInfo {
5900
+ func (x *GetSitesResponse) GetPageInfo() *GetSitesPageInfo {
5783
5901
  if x != nil {
5784
5902
  return x.PageInfo
5785
5903
  }
@@ -5798,7 +5916,7 @@ type MsmpPagination struct {
5798
5916
  func (x *MsmpPagination) Reset() {
5799
5917
  *x = MsmpPagination{}
5800
5918
  if protoimpl.UnsafeEnabled {
5801
- mi := &file_multitenant_proto_msgTypes[95]
5919
+ mi := &file_multitenant_proto_msgTypes[97]
5802
5920
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
5803
5921
  ms.StoreMessageInfo(mi)
5804
5922
  }
@@ -5811,7 +5929,7 @@ func (x *MsmpPagination) String() string {
5811
5929
  func (*MsmpPagination) ProtoMessage() {}
5812
5930
 
5813
5931
  func (x *MsmpPagination) ProtoReflect() protoreflect.Message {
5814
- mi := &file_multitenant_proto_msgTypes[95]
5932
+ mi := &file_multitenant_proto_msgTypes[97]
5815
5933
  if protoimpl.UnsafeEnabled && x != nil {
5816
5934
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
5817
5935
  if ms.LoadMessageInfo() == nil {
@@ -5824,7 +5942,7 @@ func (x *MsmpPagination) ProtoReflect() protoreflect.Message {
5824
5942
 
5825
5943
  // Deprecated: Use MsmpPagination.ProtoReflect.Descriptor instead.
5826
5944
  func (*MsmpPagination) Descriptor() ([]byte, []int) {
5827
- return file_multitenant_proto_rawDescGZIP(), []int{95}
5945
+ return file_multitenant_proto_rawDescGZIP(), []int{97}
5828
5946
  }
5829
5947
 
5830
5948
  func (x *MsmpPagination) GetOffset() int32 {
@@ -5855,7 +5973,7 @@ type MsmpPaginationInfo struct {
5855
5973
  func (x *MsmpPaginationInfo) Reset() {
5856
5974
  *x = MsmpPaginationInfo{}
5857
5975
  if protoimpl.UnsafeEnabled {
5858
- mi := &file_multitenant_proto_msgTypes[96]
5976
+ mi := &file_multitenant_proto_msgTypes[98]
5859
5977
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
5860
5978
  ms.StoreMessageInfo(mi)
5861
5979
  }
@@ -5868,7 +5986,7 @@ func (x *MsmpPaginationInfo) String() string {
5868
5986
  func (*MsmpPaginationInfo) ProtoMessage() {}
5869
5987
 
5870
5988
  func (x *MsmpPaginationInfo) ProtoReflect() protoreflect.Message {
5871
- mi := &file_multitenant_proto_msgTypes[96]
5989
+ mi := &file_multitenant_proto_msgTypes[98]
5872
5990
  if protoimpl.UnsafeEnabled && x != nil {
5873
5991
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
5874
5992
  if ms.LoadMessageInfo() == nil {
@@ -5881,7 +5999,7 @@ func (x *MsmpPaginationInfo) ProtoReflect() protoreflect.Message {
5881
5999
 
5882
6000
  // Deprecated: Use MsmpPaginationInfo.ProtoReflect.Descriptor instead.
5883
6001
  func (*MsmpPaginationInfo) Descriptor() ([]byte, []int) {
5884
- return file_multitenant_proto_rawDescGZIP(), []int{96}
6002
+ return file_multitenant_proto_rawDescGZIP(), []int{98}
5885
6003
  }
5886
6004
 
5887
6005
  func (x *MsmpPaginationInfo) GetTotal() int32 {
@@ -5925,7 +6043,7 @@ type GetMsmpOrganizationListRequest struct {
5925
6043
  func (x *GetMsmpOrganizationListRequest) Reset() {
5926
6044
  *x = GetMsmpOrganizationListRequest{}
5927
6045
  if protoimpl.UnsafeEnabled {
5928
- mi := &file_multitenant_proto_msgTypes[97]
6046
+ mi := &file_multitenant_proto_msgTypes[99]
5929
6047
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
5930
6048
  ms.StoreMessageInfo(mi)
5931
6049
  }
@@ -5938,7 +6056,7 @@ func (x *GetMsmpOrganizationListRequest) String() string {
5938
6056
  func (*GetMsmpOrganizationListRequest) ProtoMessage() {}
5939
6057
 
5940
6058
  func (x *GetMsmpOrganizationListRequest) ProtoReflect() protoreflect.Message {
5941
- mi := &file_multitenant_proto_msgTypes[97]
6059
+ mi := &file_multitenant_proto_msgTypes[99]
5942
6060
  if protoimpl.UnsafeEnabled && x != nil {
5943
6061
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
5944
6062
  if ms.LoadMessageInfo() == nil {
@@ -5951,7 +6069,7 @@ func (x *GetMsmpOrganizationListRequest) ProtoReflect() protoreflect.Message {
5951
6069
 
5952
6070
  // Deprecated: Use GetMsmpOrganizationListRequest.ProtoReflect.Descriptor instead.
5953
6071
  func (*GetMsmpOrganizationListRequest) Descriptor() ([]byte, []int) {
5954
- return file_multitenant_proto_rawDescGZIP(), []int{97}
6072
+ return file_multitenant_proto_rawDescGZIP(), []int{99}
5955
6073
  }
5956
6074
 
5957
6075
  func (x *GetMsmpOrganizationListRequest) GetUserId() string {
@@ -5987,7 +6105,7 @@ type GetMsmpOrganizationListResponse struct {
5987
6105
  func (x *GetMsmpOrganizationListResponse) Reset() {
5988
6106
  *x = GetMsmpOrganizationListResponse{}
5989
6107
  if protoimpl.UnsafeEnabled {
5990
- mi := &file_multitenant_proto_msgTypes[98]
6108
+ mi := &file_multitenant_proto_msgTypes[100]
5991
6109
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
5992
6110
  ms.StoreMessageInfo(mi)
5993
6111
  }
@@ -6000,7 +6118,7 @@ func (x *GetMsmpOrganizationListResponse) String() string {
6000
6118
  func (*GetMsmpOrganizationListResponse) ProtoMessage() {}
6001
6119
 
6002
6120
  func (x *GetMsmpOrganizationListResponse) ProtoReflect() protoreflect.Message {
6003
- mi := &file_multitenant_proto_msgTypes[98]
6121
+ mi := &file_multitenant_proto_msgTypes[100]
6004
6122
  if protoimpl.UnsafeEnabled && x != nil {
6005
6123
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6006
6124
  if ms.LoadMessageInfo() == nil {
@@ -6013,7 +6131,7 @@ func (x *GetMsmpOrganizationListResponse) ProtoReflect() protoreflect.Message {
6013
6131
 
6014
6132
  // Deprecated: Use GetMsmpOrganizationListResponse.ProtoReflect.Descriptor instead.
6015
6133
  func (*GetMsmpOrganizationListResponse) Descriptor() ([]byte, []int) {
6016
- return file_multitenant_proto_rawDescGZIP(), []int{98}
6134
+ return file_multitenant_proto_rawDescGZIP(), []int{100}
6017
6135
  }
6018
6136
 
6019
6137
  func (x *GetMsmpOrganizationListResponse) GetOrganizations() []*GetMsmpOrganizationListResponse_MsmpOrganization {
@@ -6043,7 +6161,7 @@ type GetMsmpOrganizationAccountRequest struct {
6043
6161
  func (x *GetMsmpOrganizationAccountRequest) Reset() {
6044
6162
  *x = GetMsmpOrganizationAccountRequest{}
6045
6163
  if protoimpl.UnsafeEnabled {
6046
- mi := &file_multitenant_proto_msgTypes[99]
6164
+ mi := &file_multitenant_proto_msgTypes[101]
6047
6165
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6048
6166
  ms.StoreMessageInfo(mi)
6049
6167
  }
@@ -6056,7 +6174,7 @@ func (x *GetMsmpOrganizationAccountRequest) String() string {
6056
6174
  func (*GetMsmpOrganizationAccountRequest) ProtoMessage() {}
6057
6175
 
6058
6176
  func (x *GetMsmpOrganizationAccountRequest) ProtoReflect() protoreflect.Message {
6059
- mi := &file_multitenant_proto_msgTypes[99]
6177
+ mi := &file_multitenant_proto_msgTypes[101]
6060
6178
  if protoimpl.UnsafeEnabled && x != nil {
6061
6179
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6062
6180
  if ms.LoadMessageInfo() == nil {
@@ -6069,7 +6187,7 @@ func (x *GetMsmpOrganizationAccountRequest) ProtoReflect() protoreflect.Message
6069
6187
 
6070
6188
  // Deprecated: Use GetMsmpOrganizationAccountRequest.ProtoReflect.Descriptor instead.
6071
6189
  func (*GetMsmpOrganizationAccountRequest) Descriptor() ([]byte, []int) {
6072
- return file_multitenant_proto_rawDescGZIP(), []int{99}
6190
+ return file_multitenant_proto_rawDescGZIP(), []int{101}
6073
6191
  }
6074
6192
 
6075
6193
  func (x *GetMsmpOrganizationAccountRequest) GetUserId() string {
@@ -6107,7 +6225,7 @@ type GetMsmpOrganizationAccountResponse struct {
6107
6225
  func (x *GetMsmpOrganizationAccountResponse) Reset() {
6108
6226
  *x = GetMsmpOrganizationAccountResponse{}
6109
6227
  if protoimpl.UnsafeEnabled {
6110
- mi := &file_multitenant_proto_msgTypes[100]
6228
+ mi := &file_multitenant_proto_msgTypes[102]
6111
6229
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6112
6230
  ms.StoreMessageInfo(mi)
6113
6231
  }
@@ -6120,7 +6238,7 @@ func (x *GetMsmpOrganizationAccountResponse) String() string {
6120
6238
  func (*GetMsmpOrganizationAccountResponse) ProtoMessage() {}
6121
6239
 
6122
6240
  func (x *GetMsmpOrganizationAccountResponse) ProtoReflect() protoreflect.Message {
6123
- mi := &file_multitenant_proto_msgTypes[100]
6241
+ mi := &file_multitenant_proto_msgTypes[102]
6124
6242
  if protoimpl.UnsafeEnabled && x != nil {
6125
6243
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6126
6244
  if ms.LoadMessageInfo() == nil {
@@ -6133,7 +6251,7 @@ func (x *GetMsmpOrganizationAccountResponse) ProtoReflect() protoreflect.Message
6133
6251
 
6134
6252
  // Deprecated: Use GetMsmpOrganizationAccountResponse.ProtoReflect.Descriptor instead.
6135
6253
  func (*GetMsmpOrganizationAccountResponse) Descriptor() ([]byte, []int) {
6136
- return file_multitenant_proto_rawDescGZIP(), []int{100}
6254
+ return file_multitenant_proto_rawDescGZIP(), []int{102}
6137
6255
  }
6138
6256
 
6139
6257
  func (x *GetMsmpOrganizationAccountResponse) GetId() string {
@@ -6178,7 +6296,7 @@ type GetSitesByMsmpOrganizationIdRequest struct {
6178
6296
  func (x *GetSitesByMsmpOrganizationIdRequest) Reset() {
6179
6297
  *x = GetSitesByMsmpOrganizationIdRequest{}
6180
6298
  if protoimpl.UnsafeEnabled {
6181
- mi := &file_multitenant_proto_msgTypes[101]
6299
+ mi := &file_multitenant_proto_msgTypes[103]
6182
6300
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6183
6301
  ms.StoreMessageInfo(mi)
6184
6302
  }
@@ -6191,7 +6309,7 @@ func (x *GetSitesByMsmpOrganizationIdRequest) String() string {
6191
6309
  func (*GetSitesByMsmpOrganizationIdRequest) ProtoMessage() {}
6192
6310
 
6193
6311
  func (x *GetSitesByMsmpOrganizationIdRequest) ProtoReflect() protoreflect.Message {
6194
- mi := &file_multitenant_proto_msgTypes[101]
6312
+ mi := &file_multitenant_proto_msgTypes[103]
6195
6313
  if protoimpl.UnsafeEnabled && x != nil {
6196
6314
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6197
6315
  if ms.LoadMessageInfo() == nil {
@@ -6204,7 +6322,7 @@ func (x *GetSitesByMsmpOrganizationIdRequest) ProtoReflect() protoreflect.Messag
6204
6322
 
6205
6323
  // Deprecated: Use GetSitesByMsmpOrganizationIdRequest.ProtoReflect.Descriptor instead.
6206
6324
  func (*GetSitesByMsmpOrganizationIdRequest) Descriptor() ([]byte, []int) {
6207
- return file_multitenant_proto_rawDescGZIP(), []int{101}
6325
+ return file_multitenant_proto_rawDescGZIP(), []int{103}
6208
6326
  }
6209
6327
 
6210
6328
  func (x *GetSitesByMsmpOrganizationIdRequest) GetUserId() string {
@@ -6247,7 +6365,7 @@ type GetSitesByMsmpOrganizationIdResponse struct {
6247
6365
  func (x *GetSitesByMsmpOrganizationIdResponse) Reset() {
6248
6366
  *x = GetSitesByMsmpOrganizationIdResponse{}
6249
6367
  if protoimpl.UnsafeEnabled {
6250
- mi := &file_multitenant_proto_msgTypes[102]
6368
+ mi := &file_multitenant_proto_msgTypes[104]
6251
6369
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6252
6370
  ms.StoreMessageInfo(mi)
6253
6371
  }
@@ -6260,7 +6378,7 @@ func (x *GetSitesByMsmpOrganizationIdResponse) String() string {
6260
6378
  func (*GetSitesByMsmpOrganizationIdResponse) ProtoMessage() {}
6261
6379
 
6262
6380
  func (x *GetSitesByMsmpOrganizationIdResponse) ProtoReflect() protoreflect.Message {
6263
- mi := &file_multitenant_proto_msgTypes[102]
6381
+ mi := &file_multitenant_proto_msgTypes[104]
6264
6382
  if protoimpl.UnsafeEnabled && x != nil {
6265
6383
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6266
6384
  if ms.LoadMessageInfo() == nil {
@@ -6273,7 +6391,7 @@ func (x *GetSitesByMsmpOrganizationIdResponse) ProtoReflect() protoreflect.Messa
6273
6391
 
6274
6392
  // Deprecated: Use GetSitesByMsmpOrganizationIdResponse.ProtoReflect.Descriptor instead.
6275
6393
  func (*GetSitesByMsmpOrganizationIdResponse) Descriptor() ([]byte, []int) {
6276
- return file_multitenant_proto_rawDescGZIP(), []int{102}
6394
+ return file_multitenant_proto_rawDescGZIP(), []int{104}
6277
6395
  }
6278
6396
 
6279
6397
  func (x *GetSitesByMsmpOrganizationIdResponse) GetSites() []*PreviewSite {
@@ -6302,7 +6420,7 @@ type SetEnabledCustomFieldsFederationRequest struct {
6302
6420
  func (x *SetEnabledCustomFieldsFederationRequest) Reset() {
6303
6421
  *x = SetEnabledCustomFieldsFederationRequest{}
6304
6422
  if protoimpl.UnsafeEnabled {
6305
- mi := &file_multitenant_proto_msgTypes[103]
6423
+ mi := &file_multitenant_proto_msgTypes[105]
6306
6424
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6307
6425
  ms.StoreMessageInfo(mi)
6308
6426
  }
@@ -6315,7 +6433,7 @@ func (x *SetEnabledCustomFieldsFederationRequest) String() string {
6315
6433
  func (*SetEnabledCustomFieldsFederationRequest) ProtoMessage() {}
6316
6434
 
6317
6435
  func (x *SetEnabledCustomFieldsFederationRequest) ProtoReflect() protoreflect.Message {
6318
- mi := &file_multitenant_proto_msgTypes[103]
6436
+ mi := &file_multitenant_proto_msgTypes[105]
6319
6437
  if protoimpl.UnsafeEnabled && x != nil {
6320
6438
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6321
6439
  if ms.LoadMessageInfo() == nil {
@@ -6328,7 +6446,7 @@ func (x *SetEnabledCustomFieldsFederationRequest) ProtoReflect() protoreflect.Me
6328
6446
 
6329
6447
  // Deprecated: Use SetEnabledCustomFieldsFederationRequest.ProtoReflect.Descriptor instead.
6330
6448
  func (*SetEnabledCustomFieldsFederationRequest) Descriptor() ([]byte, []int) {
6331
- return file_multitenant_proto_rawDescGZIP(), []int{103}
6449
+ return file_multitenant_proto_rawDescGZIP(), []int{105}
6332
6450
  }
6333
6451
 
6334
6452
  func (x *SetEnabledCustomFieldsFederationRequest) GetSiteId() string {
@@ -6356,7 +6474,7 @@ type IsCustomFieldsFederationEnabledRequest struct {
6356
6474
  func (x *IsCustomFieldsFederationEnabledRequest) Reset() {
6357
6475
  *x = IsCustomFieldsFederationEnabledRequest{}
6358
6476
  if protoimpl.UnsafeEnabled {
6359
- mi := &file_multitenant_proto_msgTypes[104]
6477
+ mi := &file_multitenant_proto_msgTypes[106]
6360
6478
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6361
6479
  ms.StoreMessageInfo(mi)
6362
6480
  }
@@ -6369,7 +6487,7 @@ func (x *IsCustomFieldsFederationEnabledRequest) String() string {
6369
6487
  func (*IsCustomFieldsFederationEnabledRequest) ProtoMessage() {}
6370
6488
 
6371
6489
  func (x *IsCustomFieldsFederationEnabledRequest) ProtoReflect() protoreflect.Message {
6372
- mi := &file_multitenant_proto_msgTypes[104]
6490
+ mi := &file_multitenant_proto_msgTypes[106]
6373
6491
  if protoimpl.UnsafeEnabled && x != nil {
6374
6492
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6375
6493
  if ms.LoadMessageInfo() == nil {
@@ -6382,7 +6500,7 @@ func (x *IsCustomFieldsFederationEnabledRequest) ProtoReflect() protoreflect.Mes
6382
6500
 
6383
6501
  // Deprecated: Use IsCustomFieldsFederationEnabledRequest.ProtoReflect.Descriptor instead.
6384
6502
  func (*IsCustomFieldsFederationEnabledRequest) Descriptor() ([]byte, []int) {
6385
- return file_multitenant_proto_rawDescGZIP(), []int{104}
6503
+ return file_multitenant_proto_rawDescGZIP(), []int{106}
6386
6504
  }
6387
6505
 
6388
6506
  func (x *IsCustomFieldsFederationEnabledRequest) GetSiteId() string {
@@ -6403,7 +6521,7 @@ type IsMetadataFieldsFederationEnabledRequest struct {
6403
6521
  func (x *IsMetadataFieldsFederationEnabledRequest) Reset() {
6404
6522
  *x = IsMetadataFieldsFederationEnabledRequest{}
6405
6523
  if protoimpl.UnsafeEnabled {
6406
- mi := &file_multitenant_proto_msgTypes[105]
6524
+ mi := &file_multitenant_proto_msgTypes[107]
6407
6525
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6408
6526
  ms.StoreMessageInfo(mi)
6409
6527
  }
@@ -6416,7 +6534,7 @@ func (x *IsMetadataFieldsFederationEnabledRequest) String() string {
6416
6534
  func (*IsMetadataFieldsFederationEnabledRequest) ProtoMessage() {}
6417
6535
 
6418
6536
  func (x *IsMetadataFieldsFederationEnabledRequest) ProtoReflect() protoreflect.Message {
6419
- mi := &file_multitenant_proto_msgTypes[105]
6537
+ mi := &file_multitenant_proto_msgTypes[107]
6420
6538
  if protoimpl.UnsafeEnabled && x != nil {
6421
6539
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6422
6540
  if ms.LoadMessageInfo() == nil {
@@ -6429,7 +6547,7 @@ func (x *IsMetadataFieldsFederationEnabledRequest) ProtoReflect() protoreflect.M
6429
6547
 
6430
6548
  // Deprecated: Use IsMetadataFieldsFederationEnabledRequest.ProtoReflect.Descriptor instead.
6431
6549
  func (*IsMetadataFieldsFederationEnabledRequest) Descriptor() ([]byte, []int) {
6432
- return file_multitenant_proto_rawDescGZIP(), []int{105}
6550
+ return file_multitenant_proto_rawDescGZIP(), []int{107}
6433
6551
  }
6434
6552
 
6435
6553
  func (x *IsMetadataFieldsFederationEnabledRequest) GetSiteId() string {
@@ -6450,7 +6568,7 @@ type IsCustomFieldsFederationEnabledResponse struct {
6450
6568
  func (x *IsCustomFieldsFederationEnabledResponse) Reset() {
6451
6569
  *x = IsCustomFieldsFederationEnabledResponse{}
6452
6570
  if protoimpl.UnsafeEnabled {
6453
- mi := &file_multitenant_proto_msgTypes[106]
6571
+ mi := &file_multitenant_proto_msgTypes[108]
6454
6572
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6455
6573
  ms.StoreMessageInfo(mi)
6456
6574
  }
@@ -6463,7 +6581,7 @@ func (x *IsCustomFieldsFederationEnabledResponse) String() string {
6463
6581
  func (*IsCustomFieldsFederationEnabledResponse) ProtoMessage() {}
6464
6582
 
6465
6583
  func (x *IsCustomFieldsFederationEnabledResponse) ProtoReflect() protoreflect.Message {
6466
- mi := &file_multitenant_proto_msgTypes[106]
6584
+ mi := &file_multitenant_proto_msgTypes[108]
6467
6585
  if protoimpl.UnsafeEnabled && x != nil {
6468
6586
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6469
6587
  if ms.LoadMessageInfo() == nil {
@@ -6476,7 +6594,7 @@ func (x *IsCustomFieldsFederationEnabledResponse) ProtoReflect() protoreflect.Me
6476
6594
 
6477
6595
  // Deprecated: Use IsCustomFieldsFederationEnabledResponse.ProtoReflect.Descriptor instead.
6478
6596
  func (*IsCustomFieldsFederationEnabledResponse) Descriptor() ([]byte, []int) {
6479
- return file_multitenant_proto_rawDescGZIP(), []int{106}
6597
+ return file_multitenant_proto_rawDescGZIP(), []int{108}
6480
6598
  }
6481
6599
 
6482
6600
  func (x *IsCustomFieldsFederationEnabledResponse) GetIsEnabled() bool {
@@ -6497,7 +6615,7 @@ type IsMetadataFieldsFederationEnabledResponse struct {
6497
6615
  func (x *IsMetadataFieldsFederationEnabledResponse) Reset() {
6498
6616
  *x = IsMetadataFieldsFederationEnabledResponse{}
6499
6617
  if protoimpl.UnsafeEnabled {
6500
- mi := &file_multitenant_proto_msgTypes[107]
6618
+ mi := &file_multitenant_proto_msgTypes[109]
6501
6619
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6502
6620
  ms.StoreMessageInfo(mi)
6503
6621
  }
@@ -6510,7 +6628,7 @@ func (x *IsMetadataFieldsFederationEnabledResponse) String() string {
6510
6628
  func (*IsMetadataFieldsFederationEnabledResponse) ProtoMessage() {}
6511
6629
 
6512
6630
  func (x *IsMetadataFieldsFederationEnabledResponse) ProtoReflect() protoreflect.Message {
6513
- mi := &file_multitenant_proto_msgTypes[107]
6631
+ mi := &file_multitenant_proto_msgTypes[109]
6514
6632
  if protoimpl.UnsafeEnabled && x != nil {
6515
6633
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6516
6634
  if ms.LoadMessageInfo() == nil {
@@ -6523,7 +6641,7 @@ func (x *IsMetadataFieldsFederationEnabledResponse) ProtoReflect() protoreflect.
6523
6641
 
6524
6642
  // Deprecated: Use IsMetadataFieldsFederationEnabledResponse.ProtoReflect.Descriptor instead.
6525
6643
  func (*IsMetadataFieldsFederationEnabledResponse) Descriptor() ([]byte, []int) {
6526
- return file_multitenant_proto_rawDescGZIP(), []int{107}
6644
+ return file_multitenant_proto_rawDescGZIP(), []int{109}
6527
6645
  }
6528
6646
 
6529
6647
  func (x *IsMetadataFieldsFederationEnabledResponse) GetIsEnabled() bool {
@@ -6544,7 +6662,7 @@ type GetSitePreviewRequest struct {
6544
6662
  func (x *GetSitePreviewRequest) Reset() {
6545
6663
  *x = GetSitePreviewRequest{}
6546
6664
  if protoimpl.UnsafeEnabled {
6547
- mi := &file_multitenant_proto_msgTypes[108]
6665
+ mi := &file_multitenant_proto_msgTypes[110]
6548
6666
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6549
6667
  ms.StoreMessageInfo(mi)
6550
6668
  }
@@ -6557,7 +6675,7 @@ func (x *GetSitePreviewRequest) String() string {
6557
6675
  func (*GetSitePreviewRequest) ProtoMessage() {}
6558
6676
 
6559
6677
  func (x *GetSitePreviewRequest) ProtoReflect() protoreflect.Message {
6560
- mi := &file_multitenant_proto_msgTypes[108]
6678
+ mi := &file_multitenant_proto_msgTypes[110]
6561
6679
  if protoimpl.UnsafeEnabled && x != nil {
6562
6680
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6563
6681
  if ms.LoadMessageInfo() == nil {
@@ -6570,7 +6688,7 @@ func (x *GetSitePreviewRequest) ProtoReflect() protoreflect.Message {
6570
6688
 
6571
6689
  // Deprecated: Use GetSitePreviewRequest.ProtoReflect.Descriptor instead.
6572
6690
  func (*GetSitePreviewRequest) Descriptor() ([]byte, []int) {
6573
- return file_multitenant_proto_rawDescGZIP(), []int{108}
6691
+ return file_multitenant_proto_rawDescGZIP(), []int{110}
6574
6692
  }
6575
6693
 
6576
6694
  func (x *GetSitePreviewRequest) GetSiteId() string {
@@ -6591,7 +6709,7 @@ type GetSitePreviewResponse struct {
6591
6709
  func (x *GetSitePreviewResponse) Reset() {
6592
6710
  *x = GetSitePreviewResponse{}
6593
6711
  if protoimpl.UnsafeEnabled {
6594
- mi := &file_multitenant_proto_msgTypes[109]
6712
+ mi := &file_multitenant_proto_msgTypes[111]
6595
6713
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6596
6714
  ms.StoreMessageInfo(mi)
6597
6715
  }
@@ -6604,7 +6722,7 @@ func (x *GetSitePreviewResponse) String() string {
6604
6722
  func (*GetSitePreviewResponse) ProtoMessage() {}
6605
6723
 
6606
6724
  func (x *GetSitePreviewResponse) ProtoReflect() protoreflect.Message {
6607
- mi := &file_multitenant_proto_msgTypes[109]
6725
+ mi := &file_multitenant_proto_msgTypes[111]
6608
6726
  if protoimpl.UnsafeEnabled && x != nil {
6609
6727
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6610
6728
  if ms.LoadMessageInfo() == nil {
@@ -6617,7 +6735,7 @@ func (x *GetSitePreviewResponse) ProtoReflect() protoreflect.Message {
6617
6735
 
6618
6736
  // Deprecated: Use GetSitePreviewResponse.ProtoReflect.Descriptor instead.
6619
6737
  func (*GetSitePreviewResponse) Descriptor() ([]byte, []int) {
6620
- return file_multitenant_proto_rawDescGZIP(), []int{109}
6738
+ return file_multitenant_proto_rawDescGZIP(), []int{111}
6621
6739
  }
6622
6740
 
6623
6741
  func (x *GetSitePreviewResponse) GetSite() *PreviewSite {
@@ -6641,7 +6759,7 @@ type CreateOwnerPersonalAccessTokenRequest struct {
6641
6759
  func (x *CreateOwnerPersonalAccessTokenRequest) Reset() {
6642
6760
  *x = CreateOwnerPersonalAccessTokenRequest{}
6643
6761
  if protoimpl.UnsafeEnabled {
6644
- mi := &file_multitenant_proto_msgTypes[110]
6762
+ mi := &file_multitenant_proto_msgTypes[112]
6645
6763
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6646
6764
  ms.StoreMessageInfo(mi)
6647
6765
  }
@@ -6654,7 +6772,7 @@ func (x *CreateOwnerPersonalAccessTokenRequest) String() string {
6654
6772
  func (*CreateOwnerPersonalAccessTokenRequest) ProtoMessage() {}
6655
6773
 
6656
6774
  func (x *CreateOwnerPersonalAccessTokenRequest) ProtoReflect() protoreflect.Message {
6657
- mi := &file_multitenant_proto_msgTypes[110]
6775
+ mi := &file_multitenant_proto_msgTypes[112]
6658
6776
  if protoimpl.UnsafeEnabled && x != nil {
6659
6777
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6660
6778
  if ms.LoadMessageInfo() == nil {
@@ -6667,7 +6785,7 @@ func (x *CreateOwnerPersonalAccessTokenRequest) ProtoReflect() protoreflect.Mess
6667
6785
 
6668
6786
  // Deprecated: Use CreateOwnerPersonalAccessTokenRequest.ProtoReflect.Descriptor instead.
6669
6787
  func (*CreateOwnerPersonalAccessTokenRequest) Descriptor() ([]byte, []int) {
6670
- return file_multitenant_proto_rawDescGZIP(), []int{110}
6788
+ return file_multitenant_proto_rawDescGZIP(), []int{112}
6671
6789
  }
6672
6790
 
6673
6791
  func (x *CreateOwnerPersonalAccessTokenRequest) GetName() string {
@@ -6709,7 +6827,7 @@ type CreateOwnerPersonalAccessTokenResponse struct {
6709
6827
  func (x *CreateOwnerPersonalAccessTokenResponse) Reset() {
6710
6828
  *x = CreateOwnerPersonalAccessTokenResponse{}
6711
6829
  if protoimpl.UnsafeEnabled {
6712
- mi := &file_multitenant_proto_msgTypes[111]
6830
+ mi := &file_multitenant_proto_msgTypes[113]
6713
6831
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6714
6832
  ms.StoreMessageInfo(mi)
6715
6833
  }
@@ -6722,7 +6840,7 @@ func (x *CreateOwnerPersonalAccessTokenResponse) String() string {
6722
6840
  func (*CreateOwnerPersonalAccessTokenResponse) ProtoMessage() {}
6723
6841
 
6724
6842
  func (x *CreateOwnerPersonalAccessTokenResponse) ProtoReflect() protoreflect.Message {
6725
- mi := &file_multitenant_proto_msgTypes[111]
6843
+ mi := &file_multitenant_proto_msgTypes[113]
6726
6844
  if protoimpl.UnsafeEnabled && x != nil {
6727
6845
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6728
6846
  if ms.LoadMessageInfo() == nil {
@@ -6735,7 +6853,7 @@ func (x *CreateOwnerPersonalAccessTokenResponse) ProtoReflect() protoreflect.Mes
6735
6853
 
6736
6854
  // Deprecated: Use CreateOwnerPersonalAccessTokenResponse.ProtoReflect.Descriptor instead.
6737
6855
  func (*CreateOwnerPersonalAccessTokenResponse) Descriptor() ([]byte, []int) {
6738
- return file_multitenant_proto_rawDescGZIP(), []int{111}
6856
+ return file_multitenant_proto_rawDescGZIP(), []int{113}
6739
6857
  }
6740
6858
 
6741
6859
  func (x *CreateOwnerPersonalAccessTokenResponse) GetToken() string {
@@ -6757,7 +6875,7 @@ type GetInstallationSettingsRequest struct {
6757
6875
  func (x *GetInstallationSettingsRequest) Reset() {
6758
6876
  *x = GetInstallationSettingsRequest{}
6759
6877
  if protoimpl.UnsafeEnabled {
6760
- mi := &file_multitenant_proto_msgTypes[112]
6878
+ mi := &file_multitenant_proto_msgTypes[114]
6761
6879
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6762
6880
  ms.StoreMessageInfo(mi)
6763
6881
  }
@@ -6770,7 +6888,7 @@ func (x *GetInstallationSettingsRequest) String() string {
6770
6888
  func (*GetInstallationSettingsRequest) ProtoMessage() {}
6771
6889
 
6772
6890
  func (x *GetInstallationSettingsRequest) ProtoReflect() protoreflect.Message {
6773
- mi := &file_multitenant_proto_msgTypes[112]
6891
+ mi := &file_multitenant_proto_msgTypes[114]
6774
6892
  if protoimpl.UnsafeEnabled && x != nil {
6775
6893
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6776
6894
  if ms.LoadMessageInfo() == nil {
@@ -6783,7 +6901,7 @@ func (x *GetInstallationSettingsRequest) ProtoReflect() protoreflect.Message {
6783
6901
 
6784
6902
  // Deprecated: Use GetInstallationSettingsRequest.ProtoReflect.Descriptor instead.
6785
6903
  func (*GetInstallationSettingsRequest) Descriptor() ([]byte, []int) {
6786
- return file_multitenant_proto_rawDescGZIP(), []int{112}
6904
+ return file_multitenant_proto_rawDescGZIP(), []int{114}
6787
6905
  }
6788
6906
 
6789
6907
  func (x *GetInstallationSettingsRequest) GetSiteId() string {
@@ -6811,7 +6929,7 @@ type GetInstallationSettingsResponse struct {
6811
6929
  func (x *GetInstallationSettingsResponse) Reset() {
6812
6930
  *x = GetInstallationSettingsResponse{}
6813
6931
  if protoimpl.UnsafeEnabled {
6814
- mi := &file_multitenant_proto_msgTypes[113]
6932
+ mi := &file_multitenant_proto_msgTypes[115]
6815
6933
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6816
6934
  ms.StoreMessageInfo(mi)
6817
6935
  }
@@ -6824,7 +6942,7 @@ func (x *GetInstallationSettingsResponse) String() string {
6824
6942
  func (*GetInstallationSettingsResponse) ProtoMessage() {}
6825
6943
 
6826
6944
  func (x *GetInstallationSettingsResponse) ProtoReflect() protoreflect.Message {
6827
- mi := &file_multitenant_proto_msgTypes[113]
6945
+ mi := &file_multitenant_proto_msgTypes[115]
6828
6946
  if protoimpl.UnsafeEnabled && x != nil {
6829
6947
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6830
6948
  if ms.LoadMessageInfo() == nil {
@@ -6837,7 +6955,7 @@ func (x *GetInstallationSettingsResponse) ProtoReflect() protoreflect.Message {
6837
6955
 
6838
6956
  // Deprecated: Use GetInstallationSettingsResponse.ProtoReflect.Descriptor instead.
6839
6957
  func (*GetInstallationSettingsResponse) Descriptor() ([]byte, []int) {
6840
- return file_multitenant_proto_rawDescGZIP(), []int{113}
6958
+ return file_multitenant_proto_rawDescGZIP(), []int{115}
6841
6959
  }
6842
6960
 
6843
6961
  func (x *GetInstallationSettingsResponse) GetDigitalLicenseToken() string {
@@ -6859,7 +6977,7 @@ type CheckAccessToSiteByAccountIdRequest_UserInfo struct {
6859
6977
  func (x *CheckAccessToSiteByAccountIdRequest_UserInfo) Reset() {
6860
6978
  *x = CheckAccessToSiteByAccountIdRequest_UserInfo{}
6861
6979
  if protoimpl.UnsafeEnabled {
6862
- mi := &file_multitenant_proto_msgTypes[114]
6980
+ mi := &file_multitenant_proto_msgTypes[116]
6863
6981
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6864
6982
  ms.StoreMessageInfo(mi)
6865
6983
  }
@@ -6872,7 +6990,7 @@ func (x *CheckAccessToSiteByAccountIdRequest_UserInfo) String() string {
6872
6990
  func (*CheckAccessToSiteByAccountIdRequest_UserInfo) ProtoMessage() {}
6873
6991
 
6874
6992
  func (x *CheckAccessToSiteByAccountIdRequest_UserInfo) ProtoReflect() protoreflect.Message {
6875
- mi := &file_multitenant_proto_msgTypes[114]
6993
+ mi := &file_multitenant_proto_msgTypes[116]
6876
6994
  if protoimpl.UnsafeEnabled && x != nil {
6877
6995
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6878
6996
  if ms.LoadMessageInfo() == nil {
@@ -6913,7 +7031,7 @@ type Install_InstallState struct {
6913
7031
  func (x *Install_InstallState) Reset() {
6914
7032
  *x = Install_InstallState{}
6915
7033
  if protoimpl.UnsafeEnabled {
6916
- mi := &file_multitenant_proto_msgTypes[115]
7034
+ mi := &file_multitenant_proto_msgTypes[117]
6917
7035
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6918
7036
  ms.StoreMessageInfo(mi)
6919
7037
  }
@@ -6926,7 +7044,7 @@ func (x *Install_InstallState) String() string {
6926
7044
  func (*Install_InstallState) ProtoMessage() {}
6927
7045
 
6928
7046
  func (x *Install_InstallState) ProtoReflect() protoreflect.Message {
6929
- mi := &file_multitenant_proto_msgTypes[115]
7047
+ mi := &file_multitenant_proto_msgTypes[117]
6930
7048
  if protoimpl.UnsafeEnabled && x != nil {
6931
7049
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6932
7050
  if ms.LoadMessageInfo() == nil {
@@ -6963,7 +7081,7 @@ type GetInstallsBySiteRequest_Filter struct {
6963
7081
  func (x *GetInstallsBySiteRequest_Filter) Reset() {
6964
7082
  *x = GetInstallsBySiteRequest_Filter{}
6965
7083
  if protoimpl.UnsafeEnabled {
6966
- mi := &file_multitenant_proto_msgTypes[116]
7084
+ mi := &file_multitenant_proto_msgTypes[118]
6967
7085
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6968
7086
  ms.StoreMessageInfo(mi)
6969
7087
  }
@@ -6976,7 +7094,7 @@ func (x *GetInstallsBySiteRequest_Filter) String() string {
6976
7094
  func (*GetInstallsBySiteRequest_Filter) ProtoMessage() {}
6977
7095
 
6978
7096
  func (x *GetInstallsBySiteRequest_Filter) ProtoReflect() protoreflect.Message {
6979
- mi := &file_multitenant_proto_msgTypes[116]
7097
+ mi := &file_multitenant_proto_msgTypes[118]
6980
7098
  if protoimpl.UnsafeEnabled && x != nil {
6981
7099
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
6982
7100
  if ms.LoadMessageInfo() == nil {
@@ -7028,7 +7146,7 @@ type UpdateInstallByClientIdRequest_SyncerSettings struct {
7028
7146
  func (x *UpdateInstallByClientIdRequest_SyncerSettings) Reset() {
7029
7147
  *x = UpdateInstallByClientIdRequest_SyncerSettings{}
7030
7148
  if protoimpl.UnsafeEnabled {
7031
- mi := &file_multitenant_proto_msgTypes[117]
7149
+ mi := &file_multitenant_proto_msgTypes[119]
7032
7150
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
7033
7151
  ms.StoreMessageInfo(mi)
7034
7152
  }
@@ -7041,7 +7159,7 @@ func (x *UpdateInstallByClientIdRequest_SyncerSettings) String() string {
7041
7159
  func (*UpdateInstallByClientIdRequest_SyncerSettings) ProtoMessage() {}
7042
7160
 
7043
7161
  func (x *UpdateInstallByClientIdRequest_SyncerSettings) ProtoReflect() protoreflect.Message {
7044
- mi := &file_multitenant_proto_msgTypes[117]
7162
+ mi := &file_multitenant_proto_msgTypes[119]
7045
7163
  if protoimpl.UnsafeEnabled && x != nil {
7046
7164
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
7047
7165
  if ms.LoadMessageInfo() == nil {
@@ -7097,7 +7215,7 @@ type RemoveInstallDataBySiteIdResponse_Result struct {
7097
7215
  func (x *RemoveInstallDataBySiteIdResponse_Result) Reset() {
7098
7216
  *x = RemoveInstallDataBySiteIdResponse_Result{}
7099
7217
  if protoimpl.UnsafeEnabled {
7100
- mi := &file_multitenant_proto_msgTypes[118]
7218
+ mi := &file_multitenant_proto_msgTypes[120]
7101
7219
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
7102
7220
  ms.StoreMessageInfo(mi)
7103
7221
  }
@@ -7110,7 +7228,7 @@ func (x *RemoveInstallDataBySiteIdResponse_Result) String() string {
7110
7228
  func (*RemoveInstallDataBySiteIdResponse_Result) ProtoMessage() {}
7111
7229
 
7112
7230
  func (x *RemoveInstallDataBySiteIdResponse_Result) ProtoReflect() protoreflect.Message {
7113
- mi := &file_multitenant_proto_msgTypes[118]
7231
+ mi := &file_multitenant_proto_msgTypes[120]
7114
7232
  if protoimpl.UnsafeEnabled && x != nil {
7115
7233
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
7116
7234
  if ms.LoadMessageInfo() == nil {
@@ -7152,7 +7270,7 @@ type GetUserPermissionsResponse_AuthorizationAction struct {
7152
7270
  func (x *GetUserPermissionsResponse_AuthorizationAction) Reset() {
7153
7271
  *x = GetUserPermissionsResponse_AuthorizationAction{}
7154
7272
  if protoimpl.UnsafeEnabled {
7155
- mi := &file_multitenant_proto_msgTypes[119]
7273
+ mi := &file_multitenant_proto_msgTypes[121]
7156
7274
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
7157
7275
  ms.StoreMessageInfo(mi)
7158
7276
  }
@@ -7165,7 +7283,7 @@ func (x *GetUserPermissionsResponse_AuthorizationAction) String() string {
7165
7283
  func (*GetUserPermissionsResponse_AuthorizationAction) ProtoMessage() {}
7166
7284
 
7167
7285
  func (x *GetUserPermissionsResponse_AuthorizationAction) ProtoReflect() protoreflect.Message {
7168
- mi := &file_multitenant_proto_msgTypes[119]
7286
+ mi := &file_multitenant_proto_msgTypes[121]
7169
7287
  if protoimpl.UnsafeEnabled && x != nil {
7170
7288
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
7171
7289
  if ms.LoadMessageInfo() == nil {
@@ -7206,7 +7324,7 @@ type GetUserPermissionsResponse_Scope struct {
7206
7324
  func (x *GetUserPermissionsResponse_Scope) Reset() {
7207
7325
  *x = GetUserPermissionsResponse_Scope{}
7208
7326
  if protoimpl.UnsafeEnabled {
7209
- mi := &file_multitenant_proto_msgTypes[120]
7327
+ mi := &file_multitenant_proto_msgTypes[122]
7210
7328
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
7211
7329
  ms.StoreMessageInfo(mi)
7212
7330
  }
@@ -7219,7 +7337,7 @@ func (x *GetUserPermissionsResponse_Scope) String() string {
7219
7337
  func (*GetUserPermissionsResponse_Scope) ProtoMessage() {}
7220
7338
 
7221
7339
  func (x *GetUserPermissionsResponse_Scope) ProtoReflect() protoreflect.Message {
7222
- mi := &file_multitenant_proto_msgTypes[120]
7340
+ mi := &file_multitenant_proto_msgTypes[122]
7223
7341
  if protoimpl.UnsafeEnabled && x != nil {
7224
7342
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
7225
7343
  if ms.LoadMessageInfo() == nil {
@@ -7256,7 +7374,7 @@ type GetUserPermissionsResponse_Role struct {
7256
7374
  func (x *GetUserPermissionsResponse_Role) Reset() {
7257
7375
  *x = GetUserPermissionsResponse_Role{}
7258
7376
  if protoimpl.UnsafeEnabled {
7259
- mi := &file_multitenant_proto_msgTypes[121]
7377
+ mi := &file_multitenant_proto_msgTypes[123]
7260
7378
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
7261
7379
  ms.StoreMessageInfo(mi)
7262
7380
  }
@@ -7269,7 +7387,7 @@ func (x *GetUserPermissionsResponse_Role) String() string {
7269
7387
  func (*GetUserPermissionsResponse_Role) ProtoMessage() {}
7270
7388
 
7271
7389
  func (x *GetUserPermissionsResponse_Role) ProtoReflect() protoreflect.Message {
7272
- mi := &file_multitenant_proto_msgTypes[121]
7390
+ mi := &file_multitenant_proto_msgTypes[123]
7273
7391
  if protoimpl.UnsafeEnabled && x != nil {
7274
7392
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
7275
7393
  if ms.LoadMessageInfo() == nil {
@@ -7328,7 +7446,7 @@ type DisableWebhookEmailRequest_WebhookError struct {
7328
7446
  func (x *DisableWebhookEmailRequest_WebhookError) Reset() {
7329
7447
  *x = DisableWebhookEmailRequest_WebhookError{}
7330
7448
  if protoimpl.UnsafeEnabled {
7331
- mi := &file_multitenant_proto_msgTypes[122]
7449
+ mi := &file_multitenant_proto_msgTypes[124]
7332
7450
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
7333
7451
  ms.StoreMessageInfo(mi)
7334
7452
  }
@@ -7341,7 +7459,7 @@ func (x *DisableWebhookEmailRequest_WebhookError) String() string {
7341
7459
  func (*DisableWebhookEmailRequest_WebhookError) ProtoMessage() {}
7342
7460
 
7343
7461
  func (x *DisableWebhookEmailRequest_WebhookError) ProtoReflect() protoreflect.Message {
7344
- mi := &file_multitenant_proto_msgTypes[122]
7462
+ mi := &file_multitenant_proto_msgTypes[124]
7345
7463
  if protoimpl.UnsafeEnabled && x != nil {
7346
7464
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
7347
7465
  if ms.LoadMessageInfo() == nil {
@@ -7398,7 +7516,7 @@ type GetMsmpOrganizationListRequest_MsmpPaginationRequest struct {
7398
7516
  func (x *GetMsmpOrganizationListRequest_MsmpPaginationRequest) Reset() {
7399
7517
  *x = GetMsmpOrganizationListRequest_MsmpPaginationRequest{}
7400
7518
  if protoimpl.UnsafeEnabled {
7401
- mi := &file_multitenant_proto_msgTypes[124]
7519
+ mi := &file_multitenant_proto_msgTypes[126]
7402
7520
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
7403
7521
  ms.StoreMessageInfo(mi)
7404
7522
  }
@@ -7411,7 +7529,7 @@ func (x *GetMsmpOrganizationListRequest_MsmpPaginationRequest) String() string {
7411
7529
  func (*GetMsmpOrganizationListRequest_MsmpPaginationRequest) ProtoMessage() {}
7412
7530
 
7413
7531
  func (x *GetMsmpOrganizationListRequest_MsmpPaginationRequest) ProtoReflect() protoreflect.Message {
7414
- mi := &file_multitenant_proto_msgTypes[124]
7532
+ mi := &file_multitenant_proto_msgTypes[126]
7415
7533
  if protoimpl.UnsafeEnabled && x != nil {
7416
7534
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
7417
7535
  if ms.LoadMessageInfo() == nil {
@@ -7424,7 +7542,7 @@ func (x *GetMsmpOrganizationListRequest_MsmpPaginationRequest) ProtoReflect() pr
7424
7542
 
7425
7543
  // Deprecated: Use GetMsmpOrganizationListRequest_MsmpPaginationRequest.ProtoReflect.Descriptor instead.
7426
7544
  func (*GetMsmpOrganizationListRequest_MsmpPaginationRequest) Descriptor() ([]byte, []int) {
7427
- return file_multitenant_proto_rawDescGZIP(), []int{97, 0}
7545
+ return file_multitenant_proto_rawDescGZIP(), []int{99, 0}
7428
7546
  }
7429
7547
 
7430
7548
  func (x *GetMsmpOrganizationListRequest_MsmpPaginationRequest) GetOffset() int32 {
@@ -7453,7 +7571,7 @@ type GetMsmpOrganizationListResponse_MsmpOrganization struct {
7453
7571
  func (x *GetMsmpOrganizationListResponse_MsmpOrganization) Reset() {
7454
7572
  *x = GetMsmpOrganizationListResponse_MsmpOrganization{}
7455
7573
  if protoimpl.UnsafeEnabled {
7456
- mi := &file_multitenant_proto_msgTypes[125]
7574
+ mi := &file_multitenant_proto_msgTypes[127]
7457
7575
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
7458
7576
  ms.StoreMessageInfo(mi)
7459
7577
  }
@@ -7466,7 +7584,7 @@ func (x *GetMsmpOrganizationListResponse_MsmpOrganization) String() string {
7466
7584
  func (*GetMsmpOrganizationListResponse_MsmpOrganization) ProtoMessage() {}
7467
7585
 
7468
7586
  func (x *GetMsmpOrganizationListResponse_MsmpOrganization) ProtoReflect() protoreflect.Message {
7469
- mi := &file_multitenant_proto_msgTypes[125]
7587
+ mi := &file_multitenant_proto_msgTypes[127]
7470
7588
  if protoimpl.UnsafeEnabled && x != nil {
7471
7589
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
7472
7590
  if ms.LoadMessageInfo() == nil {
@@ -7479,7 +7597,7 @@ func (x *GetMsmpOrganizationListResponse_MsmpOrganization) ProtoReflect() protor
7479
7597
 
7480
7598
  // Deprecated: Use GetMsmpOrganizationListResponse_MsmpOrganization.ProtoReflect.Descriptor instead.
7481
7599
  func (*GetMsmpOrganizationListResponse_MsmpOrganization) Descriptor() ([]byte, []int) {
7482
- return file_multitenant_proto_rawDescGZIP(), []int{98, 0}
7600
+ return file_multitenant_proto_rawDescGZIP(), []int{100, 0}
7483
7601
  }
7484
7602
 
7485
7603
  func (x *GetMsmpOrganizationListResponse_MsmpOrganization) GetId() string {
@@ -7510,7 +7628,7 @@ type GetMsmpOrganizationListResponse_MsmpPageInfo struct {
7510
7628
  func (x *GetMsmpOrganizationListResponse_MsmpPageInfo) Reset() {
7511
7629
  *x = GetMsmpOrganizationListResponse_MsmpPageInfo{}
7512
7630
  if protoimpl.UnsafeEnabled {
7513
- mi := &file_multitenant_proto_msgTypes[126]
7631
+ mi := &file_multitenant_proto_msgTypes[128]
7514
7632
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
7515
7633
  ms.StoreMessageInfo(mi)
7516
7634
  }
@@ -7523,7 +7641,7 @@ func (x *GetMsmpOrganizationListResponse_MsmpPageInfo) String() string {
7523
7641
  func (*GetMsmpOrganizationListResponse_MsmpPageInfo) ProtoMessage() {}
7524
7642
 
7525
7643
  func (x *GetMsmpOrganizationListResponse_MsmpPageInfo) ProtoReflect() protoreflect.Message {
7526
- mi := &file_multitenant_proto_msgTypes[126]
7644
+ mi := &file_multitenant_proto_msgTypes[128]
7527
7645
  if protoimpl.UnsafeEnabled && x != nil {
7528
7646
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
7529
7647
  if ms.LoadMessageInfo() == nil {
@@ -7536,7 +7654,7 @@ func (x *GetMsmpOrganizationListResponse_MsmpPageInfo) ProtoReflect() protorefle
7536
7654
 
7537
7655
  // Deprecated: Use GetMsmpOrganizationListResponse_MsmpPageInfo.ProtoReflect.Descriptor instead.
7538
7656
  func (*GetMsmpOrganizationListResponse_MsmpPageInfo) Descriptor() ([]byte, []int) {
7539
- return file_multitenant_proto_rawDescGZIP(), []int{98, 1}
7657
+ return file_multitenant_proto_rawDescGZIP(), []int{100, 1}
7540
7658
  }
7541
7659
 
7542
7660
  func (x *GetMsmpOrganizationListResponse_MsmpPageInfo) GetTotal() int32 {
@@ -8352,702 +8470,716 @@ var file_multitenant_proto_rawDesc = []byte{
8352
8470
  0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53,
8353
8471
  0x69, 0x74, 0x65, 0x48, 0x69, 0x65, 0x72, 0x61, 0x72, 0x63, 0x68, 0x79, 0x49, 0x64, 0x73, 0x50,
8354
8472
  0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66,
8355
- 0x6f, 0x22, 0x77, 0x0a, 0x20, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x49, 0x64, 0x73,
8356
- 0x57, 0x69, 0x74, 0x68, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65,
8357
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x20, 0x0a, 0x09, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x5f,
8358
- 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x08, 0x6f, 0x66, 0x66, 0x73,
8359
- 0x65, 0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x19, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74,
8360
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x48, 0x01, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x88,
8361
- 0x01, 0x01, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x5f, 0x69, 0x64,
8362
- 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x22, 0xc5, 0x01, 0x0a, 0x1a, 0x53,
8363
- 0x69, 0x74, 0x65, 0x73, 0x49, 0x64, 0x73, 0x57, 0x69, 0x74, 0x68, 0x46, 0x65, 0x64, 0x65, 0x72,
8364
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74,
8365
- 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65,
8366
- 0x49, 0x64, 0x12, 0x48, 0x0a, 0x1f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4d, 0x65, 0x74,
8367
- 0x61, 0x64, 0x61, 0x74, 0x61, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72,
8368
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x1f, 0x65, 0x6e, 0x61,
8369
- 0x62, 0x6c, 0x65, 0x64, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x46, 0x69, 0x65, 0x6c,
8370
- 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x44, 0x0a, 0x1d,
8371
- 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65,
8372
- 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20,
8373
- 0x01, 0x28, 0x08, 0x52, 0x1d, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x43, 0x75, 0x73, 0x74,
8374
- 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69,
8375
- 0x6f, 0x6e, 0x22, 0x77, 0x0a, 0x1e, 0x53, 0x69, 0x74, 0x65, 0x73, 0x49, 0x64, 0x73, 0x57, 0x69,
8376
- 0x74, 0x68, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x67, 0x65,
8377
- 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1b, 0x0a, 0x09, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x5f, 0x69,
8378
- 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x49,
8379
- 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05,
8473
+ 0x6f, 0x22, 0xcd, 0x01, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x4f, 0x70,
8474
+ 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x1b, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18,
8475
+ 0x01, 0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x88,
8476
+ 0x01, 0x01, 0x12, 0x19, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28,
8477
+ 0x05, 0x48, 0x01, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a,
8478
+ 0x08, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x62, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48,
8479
+ 0x02, 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x42, 0x79, 0x88, 0x01, 0x01, 0x12, 0x2c, 0x0a,
8480
+ 0x0f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
8481
+ 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03, 0x52, 0x0e, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x44,
8482
+ 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x42, 0x09, 0x0a, 0x07, 0x5f,
8483
+ 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74,
8484
+ 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x62, 0x79, 0x42, 0x12, 0x0a,
8485
+ 0x10, 0x5f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f,
8486
+ 0x6e, 0x22, 0x90, 0x01, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65,
8487
+ 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x06, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x18,
8488
+ 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x06, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x88,
8489
+ 0x01, 0x01, 0x12, 0x49, 0x0a, 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20,
8490
+ 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
8491
+ 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
8492
+ 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x48,
8493
+ 0x01, 0x52, 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x42, 0x09, 0x0a,
8494
+ 0x07, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x6f, 0x70, 0x74,
8495
+ 0x69, 0x6f, 0x6e, 0x73, 0x22, 0xad, 0x01, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65,
8496
+ 0x73, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x4b,
8497
+ 0x0a, 0x22, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61,
8498
+ 0x74, 0x61, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x5f, 0x66, 0x65, 0x64, 0x65, 0x72, 0x61,
8499
+ 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x1f, 0x65, 0x6e, 0x61, 0x62,
8500
+ 0x6c, 0x65, 0x64, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x46, 0x69, 0x65, 0x6c, 0x64,
8501
+ 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x47, 0x0a, 0x20, 0x65,
8502
+ 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x66, 0x69,
8503
+ 0x65, 0x6c, 0x64, 0x73, 0x5f, 0x66, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18,
8504
+ 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x1d, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x43, 0x75,
8505
+ 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61,
8506
+ 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x7f, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73,
8507
+ 0x49, 0x74, 0x65, 0x6d, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
8508
+ 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x51, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74,
8509
+ 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
8510
+ 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
8511
+ 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x49, 0x74, 0x65, 0x6d,
8512
+ 0x73, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52, 0x08, 0x6d, 0x65, 0x74,
8513
+ 0x61, 0x64, 0x61, 0x74, 0x61, 0x88, 0x01, 0x01, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x6d, 0x65, 0x74,
8514
+ 0x61, 0x64, 0x61, 0x74, 0x61, 0x22, 0x64, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65,
8515
+ 0x73, 0x50, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66,
8516
+ 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65,
8517
+ 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05,
8380
8518
  0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x22, 0x0a, 0x0d, 0x68, 0x61, 0x73, 0x5f, 0x6e,
8381
8519
  0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b,
8382
- 0x68, 0x61, 0x73, 0x4e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x22, 0xde, 0x01, 0x0a, 0x21,
8383
- 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x49, 0x64, 0x73, 0x57, 0x69, 0x74, 0x68, 0x46,
8384
- 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
8385
- 0x65, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
8386
- 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x4b, 0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73,
8387
- 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
8388
- 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
8389
- 0x76, 0x31, 0x2e, 0x53, 0x69, 0x74, 0x65, 0x73, 0x49, 0x64, 0x73, 0x57, 0x69, 0x74, 0x68, 0x46,
8390
- 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x05, 0x69,
8391
- 0x74, 0x65, 0x6d, 0x73, 0x12, 0x56, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x69, 0x6e, 0x66,
8392
- 0x6f, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
8393
- 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
8394
- 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x69, 0x74, 0x65, 0x73, 0x49, 0x64, 0x73, 0x57, 0x69, 0x74, 0x68,
8395
- 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x67, 0x65, 0x49, 0x6e,
8396
- 0x66, 0x6f, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x3e, 0x0a, 0x0e,
8397
- 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16,
8398
- 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06,
8399
- 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18,
8400
- 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x22, 0x7c, 0x0a, 0x12,
8401
- 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e,
8402
- 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28,
8403
- 0x05, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73,
8404
- 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74,
8405
- 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52,
8406
- 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x22, 0x0a, 0x0d, 0x68, 0x61, 0x73, 0x5f, 0x6e, 0x65,
8407
- 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x68,
8408
- 0x61, 0x73, 0x4e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x22, 0x95, 0x02, 0x0a, 0x1e, 0x47,
8409
- 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69,
8410
- 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a,
8411
- 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
8412
- 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x78, 0x0a, 0x0f, 0x6d, 0x73, 0x6d, 0x70, 0x5f, 0x70,
8413
- 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
8414
- 0x4f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
8415
- 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d,
8416
- 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c,
8417
- 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4d, 0x73, 0x6d, 0x70, 0x50,
8418
- 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
8419
- 0x52, 0x0e, 0x6d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e,
8420
- 0x12, 0x19, 0x0a, 0x08, 0x74, 0x72, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01,
8421
- 0x28, 0x09, 0x52, 0x07, 0x74, 0x72, 0x61, 0x63, 0x65, 0x49, 0x64, 0x1a, 0x45, 0x0a, 0x15, 0x4d,
8520
+ 0x68, 0x61, 0x73, 0x4e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x22, 0xb2, 0x01, 0x0a, 0x10,
8521
+ 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
8522
+ 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52,
8523
+ 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x3e, 0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18,
8524
+ 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
8525
+ 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
8526
+ 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x52,
8527
+ 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x12, 0x48, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x69,
8528
+ 0x6e, 0x66, 0x6f, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
8529
+ 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
8530
+ 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x50, 0x61,
8531
+ 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f,
8532
+ 0x22, 0x3e, 0x0a, 0x0e, 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69,
8533
+ 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01,
8534
+ 0x28, 0x05, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69,
8535
+ 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74,
8536
+ 0x22, 0x7c, 0x0a, 0x12, 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69,
8537
+ 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18,
8538
+ 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x16, 0x0a, 0x06,
8539
+ 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6f, 0x66,
8540
+ 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20,
8541
+ 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x22, 0x0a, 0x0d, 0x68, 0x61,
8542
+ 0x73, 0x5f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
8543
+ 0x08, 0x52, 0x0b, 0x68, 0x61, 0x73, 0x4e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x22, 0x95,
8544
+ 0x02, 0x0a, 0x1e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69,
8545
+ 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
8546
+ 0x74, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
8547
+ 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x78, 0x0a, 0x0f, 0x6d, 0x73,
8548
+ 0x6d, 0x70, 0x5f, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20,
8549
+ 0x01, 0x28, 0x0b, 0x32, 0x4f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
8550
+ 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
8551
+ 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74,
8552
+ 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4d,
8422
8553
  0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71,
8423
- 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01,
8424
- 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05,
8425
- 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x69, 0x6d,
8426
- 0x69, 0x74, 0x22, 0xb3, 0x03, 0x0a, 0x1f, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72,
8427
- 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
8428
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x71, 0x0a, 0x0d, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69,
8429
- 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x4b, 0x2e,
8430
- 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
8431
- 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d,
8432
- 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73,
8433
- 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72,
8434
- 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0d, 0x6f, 0x72, 0x67, 0x61,
8435
- 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x6d, 0x0a, 0x0e, 0x6d, 0x73, 0x6d,
8436
- 0x70, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28,
8437
- 0x0b, 0x32, 0x47, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
8554
+ 0x75, 0x65, 0x73, 0x74, 0x52, 0x0e, 0x6d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61,
8555
+ 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x19, 0x0a, 0x08, 0x74, 0x72, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x64,
8556
+ 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x74, 0x72, 0x61, 0x63, 0x65, 0x49, 0x64, 0x1a,
8557
+ 0x45, 0x0a, 0x15, 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f,
8558
+ 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73,
8559
+ 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74,
8560
+ 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52,
8561
+ 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x22, 0xb3, 0x03, 0x0a, 0x1f, 0x47, 0x65, 0x74, 0x4d, 0x73,
8562
+ 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69,
8563
+ 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x71, 0x0a, 0x0d, 0x6f, 0x72,
8564
+ 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28,
8565
+ 0x0b, 0x32, 0x4b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
8438
8566
  0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65,
8439
8567
  0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
8440
8568
  0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x4d, 0x73,
8441
- 0x6d, 0x70, 0x50, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0c, 0x6d, 0x73, 0x6d, 0x70,
8442
- 0x50, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x1a, 0x36, 0x0a, 0x10, 0x4d, 0x73, 0x6d, 0x70,
8443
- 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x0e, 0x0a, 0x02,
8444
- 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04,
8445
- 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
8446
- 0x1a, 0x76, 0x0a, 0x0c, 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f,
8447
- 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52,
8448
- 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74,
8449
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14,
8450
- 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c,
8451
- 0x69, 0x6d, 0x69, 0x74, 0x12, 0x22, 0x0a, 0x0d, 0x68, 0x61, 0x73, 0x5f, 0x6e, 0x65, 0x78, 0x74,
8452
- 0x5f, 0x70, 0x61, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x68, 0x61, 0x73,
8453
- 0x4e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x22, 0x89, 0x01, 0x0a, 0x21, 0x47, 0x65, 0x74,
8569
+ 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0d,
8570
+ 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x6d, 0x0a,
8571
+ 0x0e, 0x6d, 0x73, 0x6d, 0x70, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18,
8572
+ 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x47, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
8573
+ 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
8574
+ 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a,
8575
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
8576
+ 0x65, 0x2e, 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0c,
8577
+ 0x6d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x1a, 0x36, 0x0a, 0x10,
8454
8578
  0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
8455
- 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17,
8456
- 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
8457
- 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x30, 0x0a, 0x14, 0x6d, 0x73, 0x6d, 0x70, 0x5f,
8458
- 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18,
8459
- 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x6d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e,
8460
- 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x74, 0x72, 0x61,
8461
- 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x74, 0x72, 0x61,
8462
- 0x63, 0x65, 0x49, 0x64, 0x22, 0xc0, 0x01, 0x0a, 0x22, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70,
8463
- 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x63, 0x6f,
8464
- 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69,
8465
- 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x72,
8466
- 0x6f, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x12,
8467
- 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x18, 0x03, 0x20,
8468
- 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x12, 0x57,
8469
- 0x0a, 0x29, 0x68, 0x61, 0x73, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x5f, 0x6d,
8470
- 0x75, 0x6c, 0x74, 0x69, 0x5f, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
8471
- 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x70, 0x6f, 0x72, 0x74, 0x61, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28,
8472
- 0x08, 0x52, 0x24, 0x68, 0x61, 0x73, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x4d, 0x75,
8473
- 0x6c, 0x74, 0x69, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
8474
- 0x74, 0x50, 0x6f, 0x72, 0x74, 0x61, 0x6c, 0x22, 0xdf, 0x01, 0x0a, 0x23, 0x47, 0x65, 0x74, 0x53,
8475
- 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69,
8476
- 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
8477
- 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
8478
- 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x30, 0x0a, 0x14, 0x6d, 0x73, 0x6d, 0x70,
8479
- 0x5f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64,
8480
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x6d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61,
8481
- 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x52, 0x0a, 0x0f, 0x6d, 0x73,
8482
- 0x6d, 0x70, 0x5f, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20,
8483
- 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
8484
- 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
8485
- 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0e,
8486
- 0x6d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x19,
8487
- 0x0a, 0x08, 0x74, 0x72, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
8488
- 0x52, 0x07, 0x74, 0x72, 0x61, 0x63, 0x65, 0x49, 0x64, 0x22, 0xc5, 0x01, 0x0a, 0x24, 0x47, 0x65,
8489
- 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61,
8490
- 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
8491
- 0x73, 0x65, 0x12, 0x3c, 0x0a, 0x05, 0x73, 0x69, 0x74, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28,
8492
- 0x0b, 0x32, 0x26, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
8493
- 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72,
8494
- 0x65, 0x76, 0x69, 0x65, 0x77, 0x53, 0x69, 0x74, 0x65, 0x52, 0x05, 0x73, 0x69, 0x74, 0x65, 0x73,
8495
- 0x12, 0x5f, 0x0a, 0x14, 0x6d, 0x73, 0x6d, 0x70, 0x5f, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74,
8496
- 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d,
8497
- 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
8498
- 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x73, 0x6d, 0x70, 0x50,
8499
- 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x12, 0x6d,
8579
+ 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64,
8580
+ 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
8581
+ 0x6e, 0x61, 0x6d, 0x65, 0x1a, 0x76, 0x0a, 0x0c, 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x65,
8582
+ 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x01, 0x20,
8583
+ 0x01, 0x28, 0x05, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66,
8584
+ 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73,
8585
+ 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28,
8586
+ 0x05, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x22, 0x0a, 0x0d, 0x68, 0x61, 0x73, 0x5f,
8587
+ 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52,
8588
+ 0x0b, 0x68, 0x61, 0x73, 0x4e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x22, 0x89, 0x01, 0x0a,
8589
+ 0x21, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61,
8590
+ 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
8591
+ 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
8592
+ 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x30, 0x0a, 0x14, 0x6d,
8593
+ 0x73, 0x6d, 0x70, 0x5f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
8594
+ 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x6d, 0x73, 0x6d, 0x70, 0x4f,
8595
+ 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x19, 0x0a,
8596
+ 0x08, 0x74, 0x72, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
8597
+ 0x07, 0x74, 0x72, 0x61, 0x63, 0x65, 0x49, 0x64, 0x22, 0xc0, 0x01, 0x0a, 0x22, 0x47, 0x65, 0x74,
8598
+ 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
8599
+ 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
8600
+ 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12,
8601
+ 0x12, 0x0a, 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x72,
8602
+ 0x6f, 0x6c, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e,
8603
+ 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x50, 0x65, 0x6e, 0x64, 0x69,
8604
+ 0x6e, 0x67, 0x12, 0x57, 0x0a, 0x29, 0x68, 0x61, 0x73, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73,
8605
+ 0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x5f, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x6d, 0x61,
8606
+ 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x70, 0x6f, 0x72, 0x74, 0x61, 0x6c, 0x18,
8607
+ 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x24, 0x68, 0x61, 0x73, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73,
8608
+ 0x65, 0x64, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x61, 0x6e, 0x61, 0x67,
8609
+ 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x50, 0x6f, 0x72, 0x74, 0x61, 0x6c, 0x22, 0xdf, 0x01, 0x0a, 0x23,
8610
+ 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72,
8611
+ 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75,
8612
+ 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01,
8613
+ 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x30, 0x0a, 0x14,
8614
+ 0x6d, 0x73, 0x6d, 0x70, 0x5f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
8615
+ 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x6d, 0x73, 0x6d, 0x70,
8616
+ 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x52,
8617
+ 0x0a, 0x0f, 0x6d, 0x73, 0x6d, 0x70, 0x5f, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f,
8618
+ 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
8619
+ 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
8620
+ 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69,
8621
+ 0x6f, 0x6e, 0x52, 0x0e, 0x6d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69,
8622
+ 0x6f, 0x6e, 0x12, 0x19, 0x0a, 0x08, 0x74, 0x72, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x04,
8623
+ 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x74, 0x72, 0x61, 0x63, 0x65, 0x49, 0x64, 0x22, 0xc5, 0x01,
8624
+ 0x0a, 0x24, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x4d, 0x73, 0x6d, 0x70,
8625
+ 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x52, 0x65,
8626
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3c, 0x0a, 0x05, 0x73, 0x69, 0x74, 0x65, 0x73, 0x18,
8627
+ 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
8628
+ 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
8629
+ 0x31, 0x2e, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x53, 0x69, 0x74, 0x65, 0x52, 0x05, 0x73,
8630
+ 0x69, 0x74, 0x65, 0x73, 0x12, 0x5f, 0x0a, 0x14, 0x6d, 0x73, 0x6d, 0x70, 0x5f, 0x70, 0x61, 0x67,
8631
+ 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x02, 0x20, 0x01,
8632
+ 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
8633
+ 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4d,
8500
8634
  0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66,
8501
- 0x6f, 0x22, 0x5c, 0x0a, 0x27, 0x53, 0x65, 0x74, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x43,
8502
- 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72,
8503
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07,
8504
- 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73,
8505
- 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64,
8506
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x22,
8507
- 0x41, 0x0a, 0x26, 0x49, 0x73, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64,
8508
- 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c,
8509
- 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74,
8510
- 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65,
8511
- 0x49, 0x64, 0x22, 0x43, 0x0a, 0x28, 0x49, 0x73, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61,
8512
- 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
8513
- 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17,
8514
- 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
8515
- 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x22, 0x48, 0x0a, 0x27, 0x49, 0x73, 0x43, 0x75, 0x73,
8516
- 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74,
8635
+ 0x6f, 0x52, 0x12, 0x6d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f,
8636
+ 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x5c, 0x0a, 0x27, 0x53, 0x65, 0x74, 0x45, 0x6e, 0x61, 0x62,
8637
+ 0x6c, 0x65, 0x64, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46,
8638
+ 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
8639
+ 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
8640
+ 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61,
8641
+ 0x62, 0x6c, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62,
8642
+ 0x6c, 0x65, 0x64, 0x22, 0x41, 0x0a, 0x26, 0x49, 0x73, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46,
8643
+ 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45,
8644
+ 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a,
8645
+ 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
8646
+ 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x22, 0x43, 0x0a, 0x28, 0x49, 0x73, 0x4d, 0x65, 0x74, 0x61,
8647
+ 0x64, 0x61, 0x74, 0x61, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61,
8648
+ 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
8649
+ 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
8650
+ 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x22, 0x48, 0x0a, 0x27, 0x49,
8651
+ 0x73, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64,
8652
+ 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65,
8653
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x65, 0x6e, 0x61,
8654
+ 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x45, 0x6e,
8655
+ 0x61, 0x62, 0x6c, 0x65, 0x64, 0x22, 0x4a, 0x0a, 0x29, 0x49, 0x73, 0x4d, 0x65, 0x74, 0x61, 0x64,
8656
+ 0x61, 0x74, 0x61, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74,
8517
8657
  0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
8518
8658
  0x73, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64,
8519
8659
  0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65,
8520
- 0x64, 0x22, 0x4a, 0x0a, 0x29, 0x49, 0x73, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x46,
8521
- 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45,
8522
- 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1d,
8523
- 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01,
8524
- 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x22, 0x30, 0x0a,
8525
- 0x15, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x52,
8526
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69,
8527
- 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x22,
8528
- 0x54, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65,
8529
- 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3a, 0x0a, 0x04, 0x73, 0x69, 0x74,
8530
- 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
8531
- 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
8532
- 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x53, 0x69, 0x74, 0x65, 0x52,
8533
- 0x04, 0x73, 0x69, 0x74, 0x65, 0x22, 0xc3, 0x01, 0x0a, 0x25, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
8534
- 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63,
8535
- 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
8536
- 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e,
8537
- 0x61, 0x6d, 0x65, 0x12, 0x34, 0x0a, 0x16, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x5f, 0x69,
8538
- 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20,
8539
- 0x01, 0x28, 0x09, 0x52, 0x14, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65,
8540
- 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x69, 0x74,
8541
- 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x73, 0x69, 0x74,
8542
- 0x65, 0x49, 0x64, 0x73, 0x12, 0x25, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
8543
- 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x0b, 0x64, 0x65, 0x73,
8544
- 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x42, 0x0e, 0x0a, 0x0c, 0x5f,
8545
- 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e, 0x0a, 0x26, 0x43,
8546
- 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
8547
- 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73,
8548
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x01,
8549
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0x58, 0x0a, 0x1e, 0x47,
8550
- 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65,
8551
- 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a,
8552
- 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
8553
- 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c,
8554
- 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x69, 0x6e, 0x73, 0x74,
8555
- 0x61, 0x6c, 0x6c, 0x49, 0x64, 0x22, 0x53, 0x0a, 0x1f, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74,
8556
- 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73,
8557
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x30, 0x0a, 0x13, 0x64, 0x69, 0x67, 0x69,
8558
- 0x74, 0x61, 0x6c, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x18,
8559
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x13, 0x64, 0x69, 0x67, 0x69, 0x74, 0x61, 0x6c, 0x4c, 0x69,
8560
- 0x63, 0x65, 0x6e, 0x73, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x2a, 0x4e, 0x0a, 0x08, 0x53, 0x69,
8561
- 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x0c, 0x55, 0x4e, 0x45, 0x53, 0x50, 0x45,
8562
- 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x10, 0x0a, 0x0c, 0x43, 0x4c, 0x4f, 0x55,
8563
- 0x44, 0x5f, 0x4e, 0x41, 0x54, 0x49, 0x56, 0x45, 0x10, 0x01, 0x12, 0x08, 0x0a, 0x04, 0x44, 0x45,
8564
- 0x4d, 0x4f, 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06, 0x48, 0x59, 0x42, 0x52, 0x49, 0x44, 0x10, 0x03,
8565
- 0x12, 0x08, 0x0a, 0x04, 0x44, 0x55, 0x41, 0x4c, 0x10, 0x04, 0x2a, 0x77, 0x0a, 0x11, 0x49, 0x6e,
8566
- 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12,
8567
- 0x24, 0x0a, 0x20, 0x49, 0x4e, 0x53, 0x54, 0x41, 0x4c, 0x4c, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x45,
8660
+ 0x64, 0x22, 0x30, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x50, 0x72, 0x65, 0x76,
8661
+ 0x69, 0x65, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69,
8662
+ 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74,
8663
+ 0x65, 0x49, 0x64, 0x22, 0x54, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x50, 0x72,
8664
+ 0x65, 0x76, 0x69, 0x65, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3a, 0x0a,
8665
+ 0x04, 0x73, 0x69, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x6c, 0x61,
8666
+ 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
8667
+ 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x53,
8668
+ 0x69, 0x74, 0x65, 0x52, 0x04, 0x73, 0x69, 0x74, 0x65, 0x22, 0xc3, 0x01, 0x0a, 0x25, 0x43, 0x72,
8669
+ 0x65, 0x61, 0x74, 0x65, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61,
8670
+ 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75,
8671
+ 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
8672
+ 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x34, 0x0a, 0x16, 0x70, 0x61, 0x72, 0x74, 0x6e,
8673
+ 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69,
8674
+ 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x14, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
8675
+ 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x19, 0x0a,
8676
+ 0x08, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52,
8677
+ 0x07, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x12, 0x25, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63,
8678
+ 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52,
8679
+ 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x42,
8680
+ 0x0e, 0x0a, 0x0c, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x22,
8681
+ 0x3e, 0x0a, 0x26, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x50, 0x65,
8682
+ 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65,
8683
+ 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x6b,
8684
+ 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x22,
8685
+ 0x58, 0x0a, 0x1e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69,
8686
+ 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
8687
+ 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
8688
+ 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x6e,
8689
+ 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
8690
+ 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x49, 0x64, 0x22, 0x53, 0x0a, 0x1f, 0x47, 0x65, 0x74,
8691
+ 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74,
8692
+ 0x69, 0x6e, 0x67, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x30, 0x0a, 0x13,
8693
+ 0x64, 0x69, 0x67, 0x69, 0x74, 0x61, 0x6c, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x54, 0x6f,
8694
+ 0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x13, 0x64, 0x69, 0x67, 0x69, 0x74,
8695
+ 0x61, 0x6c, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x2a, 0x4e,
8696
+ 0x0a, 0x08, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x0c, 0x55, 0x4e,
8697
+ 0x45, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x10, 0x0a, 0x0c,
8698
+ 0x43, 0x4c, 0x4f, 0x55, 0x44, 0x5f, 0x4e, 0x41, 0x54, 0x49, 0x56, 0x45, 0x10, 0x01, 0x12, 0x08,
8699
+ 0x0a, 0x04, 0x44, 0x45, 0x4d, 0x4f, 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06, 0x48, 0x59, 0x42, 0x52,
8700
+ 0x49, 0x44, 0x10, 0x03, 0x12, 0x08, 0x0a, 0x04, 0x44, 0x55, 0x41, 0x4c, 0x10, 0x04, 0x2a, 0x77,
8701
+ 0x0a, 0x11, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x65, 0x56, 0x61,
8702
+ 0x6c, 0x75, 0x65, 0x12, 0x24, 0x0a, 0x20, 0x49, 0x4e, 0x53, 0x54, 0x41, 0x4c, 0x4c, 0x5f, 0x53,
8703
+ 0x54, 0x41, 0x54, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x55, 0x4e, 0x45, 0x53, 0x50,
8704
+ 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x1c, 0x0a, 0x18, 0x49, 0x4e, 0x53,
8705
+ 0x54, 0x41, 0x4c, 0x4c, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45,
8706
+ 0x5f, 0x53, 0x59, 0x4e, 0x43, 0x10, 0x01, 0x12, 0x1e, 0x0a, 0x1a, 0x49, 0x4e, 0x53, 0x54, 0x41,
8707
+ 0x4c, 0x4c, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x55,
8708
+ 0x4e, 0x53, 0x59, 0x4e, 0x43, 0x10, 0x02, 0x2a, 0x4d, 0x0a, 0x0b, 0x49, 0x6e, 0x73, 0x74, 0x61,
8709
+ 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x12, 0x06, 0x0a, 0x02, 0x49, 0x54, 0x10, 0x00, 0x12, 0x06,
8710
+ 0x0a, 0x02, 0x4f, 0x54, 0x10, 0x01, 0x12, 0x0c, 0x0a, 0x08, 0x49, 0x54, 0x5f, 0x41, 0x47, 0x45,
8711
+ 0x4e, 0x54, 0x10, 0x02, 0x12, 0x09, 0x0a, 0x05, 0x43, 0x4c, 0x4f, 0x55, 0x44, 0x10, 0x03, 0x12,
8712
+ 0x15, 0x0a, 0x11, 0x4e, 0x45, 0x54, 0x57, 0x4f, 0x52, 0x4b, 0x5f, 0x44, 0x49, 0x53, 0x43, 0x4f,
8713
+ 0x56, 0x45, 0x52, 0x59, 0x10, 0x04, 0x2a, 0xf3, 0x01, 0x0a, 0x10, 0x53, 0x75, 0x62, 0x73, 0x63,
8714
+ 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x28, 0x0a, 0x24, 0x53,
8715
+ 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45,
8568
8716
  0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x55, 0x4e, 0x45, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46,
8569
- 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x1c, 0x0a, 0x18, 0x49, 0x4e, 0x53, 0x54, 0x41, 0x4c, 0x4c,
8570
- 0x5f, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x53, 0x59, 0x4e,
8571
- 0x43, 0x10, 0x01, 0x12, 0x1e, 0x0a, 0x1a, 0x49, 0x4e, 0x53, 0x54, 0x41, 0x4c, 0x4c, 0x5f, 0x53,
8572
- 0x54, 0x41, 0x54, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x59, 0x4e,
8573
- 0x43, 0x10, 0x02, 0x2a, 0x4d, 0x0a, 0x0b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x54, 0x79,
8574
- 0x70, 0x65, 0x12, 0x06, 0x0a, 0x02, 0x49, 0x54, 0x10, 0x00, 0x12, 0x06, 0x0a, 0x02, 0x4f, 0x54,
8575
- 0x10, 0x01, 0x12, 0x0c, 0x0a, 0x08, 0x49, 0x54, 0x5f, 0x41, 0x47, 0x45, 0x4e, 0x54, 0x10, 0x02,
8576
- 0x12, 0x09, 0x0a, 0x05, 0x43, 0x4c, 0x4f, 0x55, 0x44, 0x10, 0x03, 0x12, 0x15, 0x0a, 0x11, 0x4e,
8577
- 0x45, 0x54, 0x57, 0x4f, 0x52, 0x4b, 0x5f, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x59,
8578
- 0x10, 0x04, 0x2a, 0xf3, 0x01, 0x0a, 0x10, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
8579
- 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x28, 0x0a, 0x24, 0x53, 0x55, 0x42, 0x53, 0x43,
8580
- 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c,
8581
- 0x55, 0x45, 0x5f, 0x55, 0x4e, 0x45, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10,
8582
- 0x00, 0x12, 0x21, 0x0a, 0x1d, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f,
8583
- 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x54, 0x52, 0x49,
8584
- 0x41, 0x4c, 0x10, 0x01, 0x12, 0x24, 0x0a, 0x20, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50,
8717
+ 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x21, 0x0a, 0x1d, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49,
8718
+ 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45,
8719
+ 0x5f, 0x54, 0x52, 0x49, 0x41, 0x4c, 0x10, 0x01, 0x12, 0x24, 0x0a, 0x20, 0x53, 0x55, 0x42, 0x53,
8720
+ 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41,
8721
+ 0x4c, 0x55, 0x45, 0x5f, 0x46, 0x52, 0x45, 0x45, 0x57, 0x41, 0x52, 0x45, 0x10, 0x02, 0x12, 0x23,
8722
+ 0x0a, 0x1f, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54,
8723
+ 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x53, 0x54, 0x41, 0x52, 0x54, 0x45,
8724
+ 0x52, 0x10, 0x03, 0x12, 0x1f, 0x0a, 0x1b, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54,
8725
+ 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x50,
8726
+ 0x52, 0x4f, 0x10, 0x04, 0x12, 0x26, 0x0a, 0x22, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50,
8585
8727
  0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f,
8586
- 0x46, 0x52, 0x45, 0x45, 0x57, 0x41, 0x52, 0x45, 0x10, 0x02, 0x12, 0x23, 0x0a, 0x1f, 0x53, 0x55,
8587
- 0x42, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f,
8588
- 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x53, 0x54, 0x41, 0x52, 0x54, 0x45, 0x52, 0x10, 0x03, 0x12,
8589
- 0x1f, 0x0a, 0x1b, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f,
8590
- 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x50, 0x52, 0x4f, 0x10, 0x04,
8591
- 0x12, 0x26, 0x0a, 0x22, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e,
8592
- 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x45, 0x4e, 0x54, 0x45,
8593
- 0x52, 0x50, 0x52, 0x49, 0x53, 0x45, 0x10, 0x05, 0x32, 0xda, 0x3b, 0x0a, 0x0b, 0x4d, 0x75, 0x6c,
8594
- 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x12, 0xa1, 0x01, 0x0a, 0x1c, 0x43, 0x68, 0x65,
8728
+ 0x45, 0x4e, 0x54, 0x45, 0x52, 0x50, 0x52, 0x49, 0x53, 0x45, 0x10, 0x05, 0x32, 0xa6, 0x3b, 0x0a,
8729
+ 0x0b, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x12, 0xa1, 0x01, 0x0a,
8730
+ 0x1c, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69,
8731
+ 0x74, 0x65, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x3e, 0x2e,
8732
+ 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
8733
+ 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41,
8734
+ 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x41, 0x63, 0x63,
8735
+ 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3f, 0x2e,
8736
+ 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
8737
+ 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41,
8738
+ 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x41, 0x63, 0x63,
8739
+ 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
8740
+ 0x12, 0x9e, 0x01, 0x0a, 0x1b, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73,
8741
+ 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64,
8742
+ 0x12, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
8743
+ 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65,
8595
8744
  0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79,
8596
- 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
8597
- 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
8598
- 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73,
8599
- 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
8600
- 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3f, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
8601
- 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
8602
- 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73,
8603
- 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
8604
- 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9e, 0x01, 0x0a,
8605
- 0x1b, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69,
8606
- 0x74, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x3d, 0x2e, 0x6c,
8607
- 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
8608
- 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x63,
8609
- 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65,
8610
- 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3e, 0x2e, 0x6c, 0x61,
8611
- 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
8612
- 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x63, 0x63,
8613
- 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e,
8614
- 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8c, 0x01,
8615
- 0x0a, 0x15, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f,
8616
- 0x75, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x12, 0x37, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
8617
- 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
8618
- 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63,
8619
- 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
8620
- 0x1a, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
8621
- 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
8622
- 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79,
8623
- 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xa7, 0x01, 0x0a,
8624
- 0x1e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63,
8625
- 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x12,
8626
- 0x40, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
8627
- 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x61, 0x72,
8628
- 0x63, 0x68, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
8629
- 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
8630
- 0x74, 0x1a, 0x41, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
8631
- 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65,
8632
- 0x61, 0x72, 0x63, 0x68, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75,
8633
- 0x6e, 0x74, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70,
8634
- 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xa7, 0x01, 0x0a, 0x1e, 0x47, 0x65, 0x74, 0x50, 0x72,
8635
- 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42, 0x79, 0x41,
8636
- 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x12, 0x40, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
8637
- 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
8638
- 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77,
8639
- 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
8640
- 0x74, 0x49, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x41, 0x2e, 0x6c, 0x61,
8745
+ 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
8746
+ 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
8747
+ 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63,
8748
+ 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x43,
8749
+ 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
8750
+ 0x00, 0x12, 0x8c, 0x01, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77,
8751
+ 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x12, 0x37, 0x2e, 0x6c, 0x61,
8641
8752
  0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
8642
8753
  0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69,
8643
- 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f,
8644
- 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
8645
- 0x12, 0x92, 0x01, 0x0a, 0x17, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65,
8646
- 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c,
8647
- 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
8648
- 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x72, 0x6f,
8649
- 0x66, 0x69, 0x6c, 0x65, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64,
8650
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
8651
- 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
8652
- 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73,
8653
- 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f,
8654
- 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9b, 0x01, 0x0a, 0x1a, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x75,
8655
- 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x6f, 0x66,
8656
- 0x69, 0x6c, 0x65, 0x73, 0x12, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
8657
- 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
8658
- 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x4c,
8659
- 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
8660
- 0x73, 0x74, 0x1a, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
8661
- 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c,
8662
- 0x69, 0x73, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x4c, 0x69, 0x6e,
8663
- 0x6b, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
8664
- 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x0d, 0x50, 0x61, 0x74, 0x63, 0x68, 0x53, 0x69, 0x74, 0x65,
8665
- 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x2f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
8754
+ 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65, 0x71,
8755
+ 0x75, 0x65, 0x73, 0x74, 0x1a, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
8666
8756
  0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
8667
- 0x2e, 0x50, 0x61, 0x74, 0x63, 0x68, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x52, 0x65,
8668
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
8757
+ 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75,
8758
+ 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
8759
+ 0x12, 0xa7, 0x01, 0x0a, 0x1e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x72, 0x65, 0x76, 0x69,
8760
+ 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65,
8761
+ 0x49, 0x64, 0x73, 0x12, 0x40, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
8762
+ 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
8763
+ 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63,
8764
+ 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x52, 0x65,
8765
+ 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x41, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
8669
8766
  0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
8670
- 0x31, 0x2e, 0x50, 0x61, 0x74, 0x63, 0x68, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x52,
8671
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x0d, 0x43, 0x72, 0x65,
8672
- 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x12, 0x2f, 0x2e, 0x6c, 0x61, 0x6e,
8673
- 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
8674
- 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73,
8675
- 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x6c, 0x61,
8767
+ 0x31, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41,
8768
+ 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73,
8769
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xa7, 0x01, 0x0a, 0x1e, 0x47,
8770
+ 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
8771
+ 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x12, 0x40, 0x2e,
8772
+ 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
8773
+ 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65,
8774
+ 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42, 0x79, 0x41, 0x63,
8775
+ 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
8776
+ 0x41, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
8777
+ 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x50,
8778
+ 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42, 0x79,
8779
+ 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
8780
+ 0x73, 0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x72, 0x6f,
8781
+ 0x66, 0x69, 0x6c, 0x65, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64,
8782
+ 0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
8783
+ 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73,
8784
+ 0x74, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75,
8785
+ 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61,
8676
8786
  0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
8677
- 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x49, 0x6e,
8678
- 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
8679
- 0x89, 0x01, 0x0a, 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6e,
8680
- 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x12, 0x36, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
8787
+ 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x72, 0x6f, 0x66,
8788
+ 0x69, 0x6c, 0x65, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x52,
8789
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9b, 0x01, 0x0a, 0x1a, 0x4c, 0x69,
8790
+ 0x73, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b,
8791
+ 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x12, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
8681
8792
  0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
8682
- 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x4c, 0x69,
8683
- 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
8684
- 0x1a, 0x37, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
8685
- 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65,
8686
- 0x61, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
8687
- 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x80, 0x01, 0x0a, 0x11,
8688
- 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74,
8689
- 0x65, 0x12, 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
8690
- 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65,
8691
- 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x52,
8692
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
8793
+ 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69,
8794
+ 0x7a, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x52,
8795
+ 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
8693
8796
  0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
8694
- 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79,
8695
- 0x53, 0x69, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9e,
8696
- 0x01, 0x0a, 0x1b, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x66, 0x6f,
8697
- 0x72, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65, 0x53, 0x69, 0x74, 0x65, 0x73, 0x12, 0x3d,
8797
+ 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65,
8798
+ 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73,
8799
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x0d, 0x50, 0x61, 0x74, 0x63, 0x68,
8800
+ 0x53, 0x69, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x2f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
8801
+ 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
8802
+ 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x74, 0x63, 0x68, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x6f,
8803
+ 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
8804
+ 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
8805
+ 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x74, 0x63, 0x68, 0x53, 0x69, 0x74, 0x65, 0x4d,
8806
+ 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a,
8807
+ 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x12, 0x2f,
8698
8808
  0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
8699
- 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e,
8700
- 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x46, 0x6f, 0x72, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c,
8701
- 0x65, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3e, 0x2e,
8702
- 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
8703
- 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73,
8704
- 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x46, 0x6f, 0x72, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65,
8705
- 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
8706
- 0x7a, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79,
8707
- 0x49, 0x64, 0x12, 0x31, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
8708
- 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47,
8709
- 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65,
8710
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x32, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
8809
+ 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74,
8810
+ 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
8811
+ 0x30, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
8812
+ 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61,
8813
+ 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
8814
+ 0x65, 0x22, 0x00, 0x12, 0x89, 0x01, 0x0a, 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x6e,
8815
+ 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x12, 0x36, 0x2e, 0x6c,
8816
+ 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
8817
+ 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41,
8818
+ 0x6e, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x71,
8819
+ 0x75, 0x65, 0x73, 0x74, 0x1a, 0x37, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
8820
+ 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
8821
+ 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e,
8822
+ 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
8823
+ 0x80, 0x01, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42,
8824
+ 0x79, 0x53, 0x69, 0x74, 0x65, 0x12, 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
8711
8825
  0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
8712
- 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x49,
8713
- 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x89, 0x01, 0x0a, 0x16,
8714
- 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74,
8715
- 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x12, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
8826
+ 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x53,
8827
+ 0x69, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x34, 0x2e, 0x6c, 0x61, 0x6e,
8828
+ 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
8829
+ 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
8830
+ 0x6c, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
8831
+ 0x22, 0x00, 0x12, 0x9e, 0x01, 0x0a, 0x1b, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
8832
+ 0x6c, 0x73, 0x66, 0x6f, 0x72, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65, 0x53, 0x69, 0x74,
8833
+ 0x65, 0x73, 0x12, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
8834
+ 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47,
8835
+ 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x46, 0x6f, 0x72, 0x4d, 0x75, 0x6c,
8836
+ 0x74, 0x69, 0x70, 0x6c, 0x65, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
8837
+ 0x74, 0x1a, 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
8838
+ 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65,
8839
+ 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x46, 0x6f, 0x72, 0x4d, 0x75, 0x6c, 0x74,
8840
+ 0x69, 0x70, 0x6c, 0x65, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
8841
+ 0x65, 0x22, 0x00, 0x12, 0x7a, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
8842
+ 0x6c, 0x73, 0x42, 0x79, 0x49, 0x64, 0x12, 0x31, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
8716
8843
  0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
8717
- 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x43, 0x6f,
8718
- 0x75, 0x6e, 0x74, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
8719
- 0x1a, 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
8720
- 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
8721
- 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73,
8722
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x89, 0x01, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x49,
8723
- 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x62, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64,
8724
- 0x12, 0x36, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
8725
- 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
8726
- 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x62, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49,
8727
- 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x37, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
8728
- 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
8729
- 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x62,
8730
- 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
8731
- 0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e,
8732
- 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12,
8733
- 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
8734
- 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61,
8735
- 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e,
8736
- 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e,
8844
+ 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79,
8845
+ 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x32, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
8846
+ 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
8847
+ 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
8848
+ 0x73, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
8849
+ 0x89, 0x01, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x43,
8850
+ 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x12, 0x38, 0x2e, 0x6c, 0x61, 0x6e,
8737
8851
  0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
8738
- 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73,
8739
- 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65,
8740
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x52, 0x6f, 0x74,
8741
- 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65,
8742
- 0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
8852
+ 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
8853
+ 0x6c, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x52, 0x65, 0x71,
8854
+ 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
8743
8855
  0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
8744
- 0x2e, 0x52, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79,
8745
- 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
8746
- 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
8747
- 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x6f, 0x74, 0x61,
8748
- 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e,
8749
- 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9b, 0x01,
8750
- 0x0a, 0x1a, 0x4c, 0x69, 0x6e, 0x6b, 0x54, 0x72, 0x69, 0x61, 0x6c, 0x49, 0x6e, 0x73, 0x74, 0x61,
8751
- 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x3c, 0x2e, 0x6c,
8856
+ 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x43, 0x6f, 0x75, 0x6e,
8857
+ 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x89, 0x01, 0x0a, 0x14,
8858
+ 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x62, 0x79, 0x43, 0x6c, 0x69, 0x65,
8859
+ 0x6e, 0x74, 0x49, 0x64, 0x12, 0x36, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
8860
+ 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
8861
+ 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x62, 0x79, 0x43, 0x6c, 0x69,
8862
+ 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x37, 0x2e, 0x6c,
8752
8863
  0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
8753
- 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x6e, 0x6b, 0x54, 0x72, 0x69,
8754
- 0x61, 0x6c, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e,
8755
- 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3d, 0x2e, 0x6c, 0x61, 0x6e,
8756
- 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
8757
- 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x6e, 0x6b, 0x54, 0x72, 0x69, 0x61, 0x6c,
8758
- 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49,
8759
- 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a, 0x17,
8760
- 0x55, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43,
8761
- 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
8762
- 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
8763
- 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
8764
- 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
8765
- 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
8766
- 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55,
8767
- 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c,
8768
- 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
8769
- 0x12, 0x98, 0x01, 0x0a, 0x19, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61,
8770
- 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x3b,
8864
+ 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74,
8865
+ 0x61, 0x6c, 0x6c, 0x62, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73,
8866
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x55, 0x70, 0x64, 0x61,
8867
+ 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e,
8868
+ 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
8869
+ 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
8870
+ 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43,
8871
+ 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a,
8771
8872
  0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
8772
- 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76,
8773
- 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x53, 0x69,
8774
- 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3c, 0x2e, 0x6c, 0x61,
8873
+ 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74,
8874
+ 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
8875
+ 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a,
8876
+ 0x17, 0x52, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79,
8877
+ 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
8878
+ 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
8879
+ 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61,
8880
+ 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75,
8881
+ 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
8882
+ 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
8883
+ 0x52, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43,
8884
+ 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
8885
+ 0x00, 0x12, 0x9b, 0x01, 0x0a, 0x1a, 0x4c, 0x69, 0x6e, 0x6b, 0x54, 0x72, 0x69, 0x61, 0x6c, 0x49,
8886
+ 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64,
8887
+ 0x12, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
8888
+ 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x6e,
8889
+ 0x6b, 0x54, 0x72, 0x69, 0x61, 0x6c, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43,
8890
+ 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3d,
8891
+ 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
8892
+ 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x6e, 0x6b, 0x54,
8893
+ 0x72, 0x69, 0x61, 0x6c, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69,
8894
+ 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
8895
+ 0x92, 0x01, 0x0a, 0x17, 0x55, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
8896
+ 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c, 0x61,
8775
8897
  0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
8776
- 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x6e,
8777
- 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49,
8778
- 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xaa, 0x01, 0x0a, 0x1f,
8898
+ 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x49, 0x6e,
8899
+ 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52,
8900
+ 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
8901
+ 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
8902
+ 0x76, 0x31, 0x2e, 0x55, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
8903
+ 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
8904
+ 0x73, 0x65, 0x22, 0x00, 0x12, 0x98, 0x01, 0x0a, 0x19, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49,
8905
+ 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65,
8906
+ 0x49, 0x64, 0x12, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
8907
+ 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x52,
8908
+ 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61,
8909
+ 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
8910
+ 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
8911
+ 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, 0x6d, 0x6f,
8912
+ 0x76, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x53,
8913
+ 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
8914
+ 0xaa, 0x01, 0x0a, 0x1f, 0x47, 0x65, 0x74, 0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65,
8915
+ 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62, 0x61,
8916
+ 0x6c, 0x49, 0x64, 0x12, 0x41, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
8917
+ 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
8779
8918
  0x47, 0x65, 0x74, 0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x73,
8780
- 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64, 0x12,
8781
- 0x41, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
8782
- 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x44,
8783
- 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
8784
- 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
8785
- 0x73, 0x74, 0x1a, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
8786
- 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47,
8787
- 0x65, 0x74, 0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x73, 0x74,
8788
- 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64, 0x52, 0x65,
8789
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x83, 0x01, 0x0a, 0x12, 0x47, 0x65, 0x74,
8790
- 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12,
8791
- 0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
8792
- 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x55,
8793
- 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65,
8794
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
8795
- 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
8796
- 0x31, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73,
8797
- 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xbf,
8798
- 0x01, 0x0a, 0x26, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69,
8799
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63,
8800
- 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x48, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
8801
- 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
8802
- 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x41, 0x70,
8803
- 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61,
8804
- 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75,
8805
- 0x65, 0x73, 0x74, 0x1a, 0x49, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
8919
+ 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64, 0x52,
8920
+ 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
8921
+ 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
8922
+ 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64,
8923
+ 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c,
8924
+ 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x83, 0x01, 0x0a,
8925
+ 0x12, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69,
8926
+ 0x6f, 0x6e, 0x73, 0x12, 0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
8806
8927
  0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
8807
- 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
8808
- 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73,
8809
- 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
8810
- 0x12, 0x8b, 0x01, 0x0a, 0x18, 0x53, 0x65, 0x6e, 0x64, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65,
8811
- 0x64, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x35, 0x2e,
8928
+ 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f,
8929
+ 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
8930
+ 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
8931
+ 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72,
8932
+ 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
8933
+ 0x22, 0x00, 0x12, 0xbf, 0x01, 0x0a, 0x26, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x41,
8934
+ 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
8935
+ 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x48, 0x2e,
8812
8936
  0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
8813
- 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c,
8814
- 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71,
8815
- 0x75, 0x65, 0x73, 0x74, 0x1a, 0x36, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
8816
- 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
8817
- 0x2e, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45,
8818
- 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8c,
8819
- 0x01, 0x0a, 0x21, 0x47, 0x65, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64,
8820
- 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
8821
- 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x31, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
8822
- 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
8823
- 0x2e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x69, 0x74, 0x65, 0x73,
8824
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x32, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
8825
- 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
8826
- 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x69,
8827
- 0x74, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8c, 0x01,
8828
- 0x0a, 0x15, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x42,
8829
- 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x37, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
8830
- 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
8831
- 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64,
8832
- 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
8833
- 0x1a, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
8834
- 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
8835
- 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65,
8836
- 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x98, 0x01, 0x0a,
8837
- 0x19, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x49, 0x6e, 0x41,
8838
- 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x3b, 0x2e, 0x6c, 0x61, 0x6e,
8839
- 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
8840
- 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x4d, 0x61, 0x6e, 0x61,
8841
- 0x67, 0x65, 0x72, 0x49, 0x6e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
8842
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
8937
+ 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61,
8938
+ 0x74, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72,
8939
+ 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e,
8940
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x49, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
8843
8941
  0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
8844
- 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
8845
- 0x49, 0x6e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73,
8846
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8f, 0x01, 0x0a, 0x16, 0x55, 0x70, 0x64, 0x61,
8847
- 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
8848
- 0x6f, 0x6e, 0x12, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
8849
- 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55,
8850
- 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
8851
- 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x39, 0x2e, 0x6c,
8852
- 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
8853
- 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53,
8854
- 0x69, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52,
8855
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9e, 0x01, 0x0a, 0x1b, 0x43, 0x72,
8856
- 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x69, 0x61, 0x6c, 0x53, 0x69, 0x74, 0x65, 0x41, 0x6e, 0x64,
8857
- 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x12, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
8858
- 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
8859
- 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x69, 0x61,
8860
- 0x6c, 0x53, 0x69, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65,
8861
- 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
8942
+ 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x6c,
8943
+ 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41,
8944
+ 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
8945
+ 0x73, 0x65, 0x22, 0x00, 0x12, 0x8b, 0x01, 0x0a, 0x18, 0x53, 0x65, 0x6e, 0x64, 0x44, 0x69, 0x73,
8946
+ 0x61, 0x62, 0x6c, 0x65, 0x64, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45, 0x6d, 0x61, 0x69,
8947
+ 0x6c, 0x12, 0x35, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
8948
+ 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x69,
8949
+ 0x73, 0x61, 0x62, 0x6c, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45, 0x6d, 0x61, 0x69,
8950
+ 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x36, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
8862
8951
  0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
8863
- 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x69, 0x61, 0x6c,
8864
- 0x53, 0x69, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65, 0x72,
8865
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xad, 0x01, 0x0a, 0x20, 0x47,
8866
- 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69,
8867
- 0x63, 0x65, 0x6e, 0x73, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12,
8868
- 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
8869
- 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49,
8870
- 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x63, 0x65, 0x6e,
8871
- 0x73, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75,
8872
- 0x65, 0x73, 0x74, 0x1a, 0x43, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
8952
+ 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x57, 0x65, 0x62, 0x68,
8953
+ 0x6f, 0x6f, 0x6b, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
8954
+ 0x22, 0x00, 0x12, 0x8c, 0x01, 0x0a, 0x21, 0x47, 0x65, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72,
8955
+ 0x69, 0x7a, 0x65, 0x64, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x41, 0x70, 0x70, 0x6c, 0x69,
8956
+ 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x31, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
8957
+ 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
8958
+ 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x53,
8959
+ 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x32, 0x2e, 0x6c, 0x61,
8960
+ 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
8961
+ 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a,
8962
+ 0x65, 0x64, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
8963
+ 0x00, 0x12, 0x8c, 0x01, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
8964
+ 0x49, 0x64, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x37, 0x2e, 0x6c, 0x61,
8965
+ 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
8966
+ 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75,
8967
+ 0x6e, 0x74, 0x49, 0x64, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x71,
8968
+ 0x75, 0x65, 0x73, 0x74, 0x1a, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
8969
+ 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
8970
+ 0x2e, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x42, 0x79,
8971
+ 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
8972
+ 0x12, 0x98, 0x01, 0x0a, 0x19, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
8973
+ 0x72, 0x49, 0x6e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x3b,
8974
+ 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
8975
+ 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b,
8976
+ 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x49, 0x6e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61,
8977
+ 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3c, 0x2e, 0x6c, 0x61,
8978
+ 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
8979
+ 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x4d, 0x61, 0x6e,
8980
+ 0x61, 0x67, 0x65, 0x72, 0x49, 0x6e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
8981
+ 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8f, 0x01, 0x0a, 0x16,
8982
+ 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72,
8983
+ 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
8984
+ 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
8985
+ 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x75, 0x62,
8986
+ 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
8987
+ 0x1a, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
8988
+ 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64,
8989
+ 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
8990
+ 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9e, 0x01,
8991
+ 0x0a, 0x1b, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x69, 0x61, 0x6c, 0x53, 0x69, 0x74,
8992
+ 0x65, 0x41, 0x6e, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x12, 0x3d, 0x2e,
8993
+ 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
8994
+ 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
8995
+ 0x54, 0x72, 0x69, 0x61, 0x6c, 0x53, 0x69, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x49, 0x6e, 0x73, 0x74,
8996
+ 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3e, 0x2e, 0x6c,
8997
+ 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
8998
+ 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54,
8999
+ 0x72, 0x69, 0x61, 0x6c, 0x53, 0x69, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61,
9000
+ 0x6c, 0x6c, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xad,
9001
+ 0x01, 0x0a, 0x20, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69,
9002
+ 0x6f, 0x6e, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e,
9003
+ 0x74, 0x49, 0x64, 0x12, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
8873
9004
  0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
8874
9005
  0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c,
8875
9006
  0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64,
8876
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7d, 0x0a, 0x10, 0x41, 0x6c,
8877
- 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x45, 0x78, 0x69, 0x73, 0x74, 0x12, 0x32,
8878
- 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
8879
- 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x6c, 0x6c, 0x50, 0x72,
8880
- 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x45, 0x78, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
8881
- 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
9007
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x43, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
9008
+ 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
9009
+ 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74,
9010
+ 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65,
9011
+ 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7d,
9012
+ 0x0a, 0x10, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x45, 0x78, 0x69,
9013
+ 0x73, 0x74, 0x12, 0x32, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
8882
9014
  0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41,
8883
9015
  0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x45, 0x78, 0x69, 0x73, 0x74, 0x52,
8884
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x95, 0x01, 0x0a, 0x18, 0x53, 0x65,
8885
- 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x55, 0x73, 0x65,
8886
- 0x72, 0x73, 0x4d, 0x61, 0x69, 0x6c, 0x12, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
9016
+ 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
8887
9017
  0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
8888
- 0x76, 0x31, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x4c, 0x6f, 0x63,
8889
- 0x61, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x73, 0x4d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65,
8890
- 0x73, 0x74, 0x1a, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
8891
- 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53,
8892
- 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x55, 0x73,
8893
- 0x65, 0x72, 0x73, 0x4d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
8894
- 0x00, 0x12, 0x80, 0x01, 0x0a, 0x10, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65,
8895
- 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x12, 0x32, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
9018
+ 0x76, 0x31, 0x2e, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x45, 0x78,
9019
+ 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x95, 0x01,
9020
+ 0x0a, 0x18, 0x53, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x4c, 0x6f, 0x63, 0x61,
9021
+ 0x6c, 0x55, 0x73, 0x65, 0x72, 0x73, 0x4d, 0x61, 0x69, 0x6c, 0x12, 0x3a, 0x2e, 0x6c, 0x61, 0x6e,
9022
+ 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
9023
+ 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74,
9024
+ 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x73, 0x4d, 0x61, 0x69, 0x6c, 0x52,
9025
+ 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
8896
9026
  0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
8897
- 0x76, 0x31, 0x2e, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69,
8898
- 0x73, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x6c, 0x61, 0x6e,
9027
+ 0x76, 0x31, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x4c, 0x6f, 0x63,
9028
+ 0x61, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x73, 0x4d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f,
9029
+ 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x80, 0x01, 0x0a, 0x10, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f,
9030
+ 0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x12, 0x32, 0x2e, 0x6c, 0x61, 0x6e,
8899
9031
  0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
8900
9032
  0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c,
8901
- 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
8902
- 0x03, 0x88, 0x02, 0x01, 0x12, 0x80, 0x01, 0x0a, 0x11, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4c,
8903
- 0x69, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x33, 0x2e, 0x6c, 0x61, 0x6e,
8904
- 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
8905
- 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4c, 0x69, 0x6e,
8906
- 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
8907
- 0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
8908
- 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61,
8909
- 0x74, 0x65, 0x4c, 0x69, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73,
8910
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x99, 0x01, 0x0a, 0x21, 0x47, 0x65, 0x74, 0x53,
8911
- 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x57, 0x69, 0x74, 0x68, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72,
8912
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x38, 0x2e,
8913
- 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
8914
- 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74,
8915
- 0x65, 0x49, 0x64, 0x73, 0x57, 0x69, 0x74, 0x68, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74,
8916
- 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x1a, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
8917
- 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
8918
- 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x57, 0x69,
8919
- 0x74, 0x68, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74,
8920
- 0x61, 0x22, 0x00, 0x12, 0xad, 0x01, 0x0a, 0x20, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x53, 0x74, 0x61,
8921
- 0x6e, 0x64, 0x61, 0x72, 0x64, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72,
8922
- 0x65, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
8923
- 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
8924
- 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
8925
- 0x72, 0x64, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x45, 0x6e,
8926
- 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x43, 0x2e, 0x6c,
9033
+ 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33,
9034
+ 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
9035
+ 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x6c, 0x6c, 0x50, 0x72,
9036
+ 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
9037
+ 0x6e, 0x73, 0x65, 0x22, 0x03, 0x88, 0x02, 0x01, 0x12, 0x80, 0x01, 0x0a, 0x11, 0x43, 0x72, 0x65,
9038
+ 0x61, 0x74, 0x65, 0x4c, 0x69, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x33,
9039
+ 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
9040
+ 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74,
9041
+ 0x65, 0x4c, 0x69, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75,
9042
+ 0x65, 0x73, 0x74, 0x1a, 0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
9043
+ 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
9044
+ 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4c, 0x69, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64,
9045
+ 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x99, 0x01, 0x0a, 0x21,
9046
+ 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x57, 0x69, 0x74, 0x68, 0x49, 0x6e,
9047
+ 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49,
9048
+ 0x64, 0x12, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
9049
+ 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65,
9050
+ 0x74, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x57, 0x69, 0x74, 0x68, 0x49, 0x6e, 0x74, 0x65,
9051
+ 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x1a, 0x38, 0x2e, 0x6c, 0x61,
9052
+ 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
9053
+ 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x49,
9054
+ 0x64, 0x73, 0x57, 0x69, 0x74, 0x68, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f,
9055
+ 0x6e, 0x44, 0x61, 0x74, 0x61, 0x22, 0x00, 0x12, 0xad, 0x01, 0x0a, 0x20, 0x43, 0x68, 0x65, 0x63,
9056
+ 0x6b, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x6f, 0x66,
9057
+ 0x74, 0x77, 0x61, 0x72, 0x65, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x42, 0x2e, 0x6c,
8927
9058
  0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
8928
9059
  0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x53, 0x74,
8929
9060
  0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61,
8930
- 0x72, 0x65, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
8931
- 0x65, 0x22, 0x00, 0x12, 0x83, 0x01, 0x0a, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69,
8932
- 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x34, 0x2e, 0x6c, 0x61, 0x6e,
8933
- 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
8934
- 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74,
8935
- 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
8936
- 0x1a, 0x35, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
8937
- 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64,
8938
- 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52,
8939
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x0d, 0x47, 0x65, 0x74,
8940
- 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x12, 0x2f, 0x2e, 0x6c, 0x61, 0x6e,
9061
+ 0x72, 0x65, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
9062
+ 0x1a, 0x43, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
9063
+ 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65,
9064
+ 0x63, 0x6b, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x6f,
9065
+ 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x73,
9066
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x83, 0x01, 0x0a, 0x12, 0x55, 0x70, 0x64, 0x61,
9067
+ 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x34,
9068
+ 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
9069
+ 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74,
9070
+ 0x65, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71,
9071
+ 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
9072
+ 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
9073
+ 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64,
9074
+ 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a,
9075
+ 0x0d, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x12, 0x2f,
9076
+ 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
9077
+ 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69,
9078
+ 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
9079
+ 0x30, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
9080
+ 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53,
9081
+ 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
9082
+ 0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f,
9083
+ 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12,
9084
+ 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
9085
+ 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d,
9086
+ 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c,
9087
+ 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e,
8941
9088
  0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
8942
- 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69,
8943
- 0x6d, 0x69, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x6c, 0x61,
8944
- 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
8945
- 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x4c,
8946
- 0x69, 0x6d, 0x69, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
8947
- 0x92, 0x01, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e,
8948
- 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x39, 0x2e, 0x6c, 0x61,
8949
- 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
8950
- 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f,
8951
- 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52,
8952
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
8953
- 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
8954
- 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69,
8955
- 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
8956
- 0x73, 0x65, 0x22, 0x00, 0x12, 0x9b, 0x01, 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70,
8957
- 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x63, 0x6f,
8958
- 0x75, 0x6e, 0x74, 0x12, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
8959
- 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
8960
- 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74,
8961
- 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
8962
- 0x74, 0x1a, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
8963
- 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65,
8964
- 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
8965
- 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
8966
- 0x22, 0x00, 0x12, 0xa1, 0x01, 0x0a, 0x1c, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42,
8967
- 0x79, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
8968
- 0x6e, 0x49, 0x64, 0x12, 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
8969
- 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
8970
- 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72,
8971
- 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75,
8972
- 0x65, 0x73, 0x74, 0x1a, 0x3f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
8973
- 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
8974
- 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72,
8975
- 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70,
8976
- 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x95, 0x01, 0x0a, 0x18, 0x47, 0x65, 0x74, 0x49, 0x6e,
8977
- 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c,
8978
- 0x49, 0x64, 0x73, 0x12, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
9089
+ 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72,
9090
+ 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
9091
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9b, 0x01, 0x0a, 0x1a, 0x47, 0x65, 0x74,
9092
+ 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
9093
+ 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
9094
+ 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
9095
+ 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e,
9096
+ 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65,
9097
+ 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
9098
+ 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
9099
+ 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a,
9100
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70,
9101
+ 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xa1, 0x01, 0x0a, 0x1c, 0x47, 0x65, 0x74, 0x53, 0x69,
9102
+ 0x74, 0x65, 0x73, 0x42, 0x79, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a,
9103
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
9104
+ 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
9105
+ 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x4d, 0x73,
9106
+ 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64,
9107
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
9108
+ 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
9109
+ 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x4d, 0x73,
9110
+ 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64,
9111
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x95, 0x01, 0x0a, 0x18, 0x47,
9112
+ 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x45, 0x78, 0x74, 0x65,
9113
+ 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x64, 0x73, 0x12, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
9114
+ 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
9115
+ 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42,
9116
+ 0x79, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75,
9117
+ 0x65, 0x73, 0x74, 0x1a, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
8979
9118
  0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
8980
9119
  0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x45, 0x78, 0x74,
8981
- 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
8982
- 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
8983
- 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49,
8984
- 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61,
8985
- 0x6c, 0x49, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x80,
8986
- 0x01, 0x0a, 0x20, 0x53, 0x65, 0x74, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x43, 0x75, 0x73,
8987
- 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74,
8988
- 0x69, 0x6f, 0x6e, 0x12, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
8989
- 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
8990
- 0x53, 0x65, 0x74, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d,
8991
- 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
8992
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
8993
- 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
8994
- 0x00, 0x12, 0xaa, 0x01, 0x0a, 0x1f, 0x49, 0x73, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69,
9120
+ 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
9121
+ 0x22, 0x00, 0x12, 0x80, 0x01, 0x0a, 0x20, 0x53, 0x65, 0x74, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65,
9122
+ 0x64, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64,
9123
+ 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
9124
+ 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
9125
+ 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x74, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x43, 0x75,
9126
+ 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61,
9127
+ 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
9128
+ 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
9129
+ 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0xaa, 0x01, 0x0a, 0x1f, 0x49, 0x73, 0x43, 0x75, 0x73, 0x74,
9130
+ 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69,
9131
+ 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x41, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
9132
+ 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
9133
+ 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x73, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69,
8995
9134
  0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e,
8996
- 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x41, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
8997
- 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
8998
- 0x31, 0x2e, 0x49, 0x73, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73,
8999
- 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65,
9000
- 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
9135
+ 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x42, 0x2e, 0x6c,
9136
+ 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
9137
+ 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x73, 0x43, 0x75, 0x73, 0x74, 0x6f,
9138
+ 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f,
9139
+ 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
9140
+ 0x22, 0x00, 0x12, 0xb0, 0x01, 0x0a, 0x21, 0x49, 0x73, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74,
9141
+ 0x61, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f,
9142
+ 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x43, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
9001
9143
  0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
9002
- 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x73, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65,
9003
- 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61,
9004
- 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xb0,
9005
- 0x01, 0x0a, 0x21, 0x49, 0x73, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x46, 0x69, 0x65,
9006
- 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61,
9007
- 0x62, 0x6c, 0x65, 0x64, 0x12, 0x43, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
9008
- 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
9009
- 0x2e, 0x49, 0x73, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x46, 0x69, 0x65, 0x6c, 0x64,
9010
- 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c,
9011
- 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x44, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
9144
+ 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x73, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x46,
9145
+ 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45,
9146
+ 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x44, 0x2e,
9147
+ 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
9148
+ 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x73, 0x4d, 0x65, 0x74, 0x61,
9149
+ 0x64, 0x61, 0x74, 0x61, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61,
9150
+ 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f,
9151
+ 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x77, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65,
9152
+ 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x12, 0x30, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
9153
+ 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
9154
+ 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x50, 0x72, 0x65, 0x76, 0x69,
9155
+ 0x65, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x31, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
9012
9156
  0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
9013
- 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x73, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61,
9014
- 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
9015
- 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
9016
- 0x00, 0x12, 0x77, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x50, 0x72, 0x65, 0x76,
9017
- 0x69, 0x65, 0x77, 0x12, 0x30, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
9018
- 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
9019
- 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x52, 0x65,
9020
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x31, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
9021
- 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
9022
- 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77,
9023
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x95, 0x01, 0x0a, 0x18, 0x55,
9024
- 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x6b, 0x69, 0x70, 0x44, 0x61, 0x74,
9025
- 0x61, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
9157
+ 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x50, 0x72, 0x65,
9158
+ 0x76, 0x69, 0x65, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x95,
9159
+ 0x01, 0x0a, 0x18, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x6b, 0x69,
9160
+ 0x70, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x3a, 0x2e, 0x6c, 0x61,
9161
+ 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
9162
+ 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69,
9163
+ 0x74, 0x65, 0x53, 0x6b, 0x69, 0x70, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74,
9164
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
9026
9165
  0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
9027
9166
  0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x6b,
9028
- 0x69, 0x70, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x75,
9029
- 0x65, 0x73, 0x74, 0x1a, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
9030
- 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
9031
- 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x6b, 0x69, 0x70, 0x44, 0x61,
9032
- 0x74, 0x61, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
9033
- 0x22, 0x00, 0x12, 0x86, 0x01, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x48, 0x69,
9034
- 0x65, 0x72, 0x61, 0x72, 0x63, 0x68, 0x79, 0x49, 0x64, 0x73, 0x12, 0x35, 0x2e, 0x6c, 0x61, 0x6e,
9035
- 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
9036
- 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x48, 0x69,
9037
- 0x65, 0x72, 0x61, 0x72, 0x63, 0x68, 0x79, 0x49, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
9038
- 0x74, 0x1a, 0x36, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
9039
- 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65,
9040
- 0x74, 0x53, 0x69, 0x74, 0x65, 0x48, 0x69, 0x65, 0x72, 0x61, 0x72, 0x63, 0x68, 0x79, 0x49, 0x64,
9041
- 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x98, 0x01, 0x0a, 0x19,
9042
- 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x49, 0x64, 0x73, 0x57, 0x69, 0x74, 0x68, 0x46,
9043
- 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
9044
- 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
9045
- 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x49, 0x64,
9046
- 0x73, 0x57, 0x69, 0x74, 0x68, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52,
9047
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
9048
- 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
9049
- 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x49, 0x64, 0x73, 0x57, 0x69,
9050
- 0x74, 0x68, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70,
9167
+ 0x69, 0x70, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70,
9168
+ 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x86, 0x01, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x53, 0x69,
9169
+ 0x74, 0x65, 0x48, 0x69, 0x65, 0x72, 0x61, 0x72, 0x63, 0x68, 0x79, 0x49, 0x64, 0x73, 0x12, 0x35,
9170
+ 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
9171
+ 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69,
9172
+ 0x74, 0x65, 0x48, 0x69, 0x65, 0x72, 0x61, 0x72, 0x63, 0x68, 0x79, 0x49, 0x64, 0x73, 0x52, 0x65,
9173
+ 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x36, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
9174
+ 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
9175
+ 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x48, 0x69, 0x65, 0x72, 0x61, 0x72, 0x63,
9176
+ 0x68, 0x79, 0x49, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
9177
+ 0x65, 0x0a, 0x08, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x12, 0x2a, 0x2e, 0x6c, 0x61,
9178
+ 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
9179
+ 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73,
9180
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
9181
+ 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
9182
+ 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70,
9051
9183
  0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xa7, 0x01, 0x0a, 0x1e, 0x43, 0x72, 0x65, 0x61, 0x74,
9052
9184
  0x65, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63,
9053
9185
  0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x40, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
@@ -9085,7 +9217,7 @@ func file_multitenant_proto_rawDescGZIP() []byte {
9085
9217
  }
9086
9218
 
9087
9219
  var file_multitenant_proto_enumTypes = make([]protoimpl.EnumInfo, 5)
9088
- var file_multitenant_proto_msgTypes = make([]protoimpl.MessageInfo, 127)
9220
+ var file_multitenant_proto_msgTypes = make([]protoimpl.MessageInfo, 129)
9089
9221
  var file_multitenant_proto_goTypes = []any{
9090
9222
  (SiteMode)(0), // 0: lansweeper.multitenant.v1.SiteMode
9091
9223
  (InstallStateValue)(0), // 1: lansweeper.multitenant.v1.InstallStateValue
@@ -9183,44 +9315,46 @@ var file_multitenant_proto_goTypes = []any{
9183
9315
  (*SiteHierarchyIdsItem)(nil), // 93: lansweeper.multitenant.v1.SiteHierarchyIdsItem
9184
9316
  (*SiteHierarchyIdsPageInfo)(nil), // 94: lansweeper.multitenant.v1.SiteHierarchyIdsPageInfo
9185
9317
  (*GetSiteHierarchyIdsResponse)(nil), // 95: lansweeper.multitenant.v1.GetSiteHierarchyIdsResponse
9186
- (*GetSitesIdsWithFederationRequest)(nil), // 96: lansweeper.multitenant.v1.GetSitesIdsWithFederationRequest
9187
- (*SitesIdsWithFederationItem)(nil), // 97: lansweeper.multitenant.v1.SitesIdsWithFederationItem
9188
- (*SitesIdsWithFederationPageInfo)(nil), // 98: lansweeper.multitenant.v1.SitesIdsWithFederationPageInfo
9189
- (*GetSitesIdsWithFederationResponse)(nil), // 99: lansweeper.multitenant.v1.GetSitesIdsWithFederationResponse
9190
- (*MsmpPagination)(nil), // 100: lansweeper.multitenant.v1.MsmpPagination
9191
- (*MsmpPaginationInfo)(nil), // 101: lansweeper.multitenant.v1.MsmpPaginationInfo
9192
- (*GetMsmpOrganizationListRequest)(nil), // 102: lansweeper.multitenant.v1.GetMsmpOrganizationListRequest
9193
- (*GetMsmpOrganizationListResponse)(nil), // 103: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse
9194
- (*GetMsmpOrganizationAccountRequest)(nil), // 104: lansweeper.multitenant.v1.GetMsmpOrganizationAccountRequest
9195
- (*GetMsmpOrganizationAccountResponse)(nil), // 105: lansweeper.multitenant.v1.GetMsmpOrganizationAccountResponse
9196
- (*GetSitesByMsmpOrganizationIdRequest)(nil), // 106: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdRequest
9197
- (*GetSitesByMsmpOrganizationIdResponse)(nil), // 107: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdResponse
9198
- (*SetEnabledCustomFieldsFederationRequest)(nil), // 108: lansweeper.multitenant.v1.SetEnabledCustomFieldsFederationRequest
9199
- (*IsCustomFieldsFederationEnabledRequest)(nil), // 109: lansweeper.multitenant.v1.IsCustomFieldsFederationEnabledRequest
9200
- (*IsMetadataFieldsFederationEnabledRequest)(nil), // 110: lansweeper.multitenant.v1.IsMetadataFieldsFederationEnabledRequest
9201
- (*IsCustomFieldsFederationEnabledResponse)(nil), // 111: lansweeper.multitenant.v1.IsCustomFieldsFederationEnabledResponse
9202
- (*IsMetadataFieldsFederationEnabledResponse)(nil), // 112: lansweeper.multitenant.v1.IsMetadataFieldsFederationEnabledResponse
9203
- (*GetSitePreviewRequest)(nil), // 113: lansweeper.multitenant.v1.GetSitePreviewRequest
9204
- (*GetSitePreviewResponse)(nil), // 114: lansweeper.multitenant.v1.GetSitePreviewResponse
9205
- (*CreateOwnerPersonalAccessTokenRequest)(nil), // 115: lansweeper.multitenant.v1.CreateOwnerPersonalAccessTokenRequest
9206
- (*CreateOwnerPersonalAccessTokenResponse)(nil), // 116: lansweeper.multitenant.v1.CreateOwnerPersonalAccessTokenResponse
9207
- (*GetInstallationSettingsRequest)(nil), // 117: lansweeper.multitenant.v1.GetInstallationSettingsRequest
9208
- (*GetInstallationSettingsResponse)(nil), // 118: lansweeper.multitenant.v1.GetInstallationSettingsResponse
9209
- (*CheckAccessToSiteByAccountIdRequest_UserInfo)(nil), // 119: lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.UserInfo
9210
- (*Install_InstallState)(nil), // 120: lansweeper.multitenant.v1.Install.InstallState
9211
- (*GetInstallsBySiteRequest_Filter)(nil), // 121: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter
9212
- (*UpdateInstallByClientIdRequest_SyncerSettings)(nil), // 122: lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.SyncerSettings
9213
- (*RemoveInstallDataBySiteIdResponse_Result)(nil), // 123: lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.Result
9214
- (*GetUserPermissionsResponse_AuthorizationAction)(nil), // 124: lansweeper.multitenant.v1.GetUserPermissionsResponse.AuthorizationAction
9215
- (*GetUserPermissionsResponse_Scope)(nil), // 125: lansweeper.multitenant.v1.GetUserPermissionsResponse.Scope
9216
- (*GetUserPermissionsResponse_Role)(nil), // 126: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role
9217
- (*DisableWebhookEmailRequest_WebhookError)(nil), // 127: lansweeper.multitenant.v1.DisableWebhookEmailRequest.WebhookError
9218
- nil, // 128: lansweeper.multitenant.v1.GetSiteLimitsResponse.SiteLimitsEntry
9219
- (*GetMsmpOrganizationListRequest_MsmpPaginationRequest)(nil), // 129: lansweeper.multitenant.v1.GetMsmpOrganizationListRequest.MsmpPaginationRequest
9220
- (*GetMsmpOrganizationListResponse_MsmpOrganization)(nil), // 130: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpOrganization
9221
- (*GetMsmpOrganizationListResponse_MsmpPageInfo)(nil), // 131: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpPageInfo
9222
- (*generated_go.SiteLimits)(nil), // 132: lansweeper.shared.limits.v1.SiteLimits
9223
- (*emptypb.Empty)(nil), // 133: google.protobuf.Empty
9318
+ (*GetSitesOptions)(nil), // 96: lansweeper.multitenant.v1.GetSitesOptions
9319
+ (*GetSitesRequest)(nil), // 97: lansweeper.multitenant.v1.GetSitesRequest
9320
+ (*GetSitesItemsMetadata)(nil), // 98: lansweeper.multitenant.v1.GetSitesItemsMetadata
9321
+ (*GetSitesItems)(nil), // 99: lansweeper.multitenant.v1.GetSitesItems
9322
+ (*GetSitesPageInfo)(nil), // 100: lansweeper.multitenant.v1.GetSitesPageInfo
9323
+ (*GetSitesResponse)(nil), // 101: lansweeper.multitenant.v1.GetSitesResponse
9324
+ (*MsmpPagination)(nil), // 102: lansweeper.multitenant.v1.MsmpPagination
9325
+ (*MsmpPaginationInfo)(nil), // 103: lansweeper.multitenant.v1.MsmpPaginationInfo
9326
+ (*GetMsmpOrganizationListRequest)(nil), // 104: lansweeper.multitenant.v1.GetMsmpOrganizationListRequest
9327
+ (*GetMsmpOrganizationListResponse)(nil), // 105: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse
9328
+ (*GetMsmpOrganizationAccountRequest)(nil), // 106: lansweeper.multitenant.v1.GetMsmpOrganizationAccountRequest
9329
+ (*GetMsmpOrganizationAccountResponse)(nil), // 107: lansweeper.multitenant.v1.GetMsmpOrganizationAccountResponse
9330
+ (*GetSitesByMsmpOrganizationIdRequest)(nil), // 108: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdRequest
9331
+ (*GetSitesByMsmpOrganizationIdResponse)(nil), // 109: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdResponse
9332
+ (*SetEnabledCustomFieldsFederationRequest)(nil), // 110: lansweeper.multitenant.v1.SetEnabledCustomFieldsFederationRequest
9333
+ (*IsCustomFieldsFederationEnabledRequest)(nil), // 111: lansweeper.multitenant.v1.IsCustomFieldsFederationEnabledRequest
9334
+ (*IsMetadataFieldsFederationEnabledRequest)(nil), // 112: lansweeper.multitenant.v1.IsMetadataFieldsFederationEnabledRequest
9335
+ (*IsCustomFieldsFederationEnabledResponse)(nil), // 113: lansweeper.multitenant.v1.IsCustomFieldsFederationEnabledResponse
9336
+ (*IsMetadataFieldsFederationEnabledResponse)(nil), // 114: lansweeper.multitenant.v1.IsMetadataFieldsFederationEnabledResponse
9337
+ (*GetSitePreviewRequest)(nil), // 115: lansweeper.multitenant.v1.GetSitePreviewRequest
9338
+ (*GetSitePreviewResponse)(nil), // 116: lansweeper.multitenant.v1.GetSitePreviewResponse
9339
+ (*CreateOwnerPersonalAccessTokenRequest)(nil), // 117: lansweeper.multitenant.v1.CreateOwnerPersonalAccessTokenRequest
9340
+ (*CreateOwnerPersonalAccessTokenResponse)(nil), // 118: lansweeper.multitenant.v1.CreateOwnerPersonalAccessTokenResponse
9341
+ (*GetInstallationSettingsRequest)(nil), // 119: lansweeper.multitenant.v1.GetInstallationSettingsRequest
9342
+ (*GetInstallationSettingsResponse)(nil), // 120: lansweeper.multitenant.v1.GetInstallationSettingsResponse
9343
+ (*CheckAccessToSiteByAccountIdRequest_UserInfo)(nil), // 121: lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.UserInfo
9344
+ (*Install_InstallState)(nil), // 122: lansweeper.multitenant.v1.Install.InstallState
9345
+ (*GetInstallsBySiteRequest_Filter)(nil), // 123: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter
9346
+ (*UpdateInstallByClientIdRequest_SyncerSettings)(nil), // 124: lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.SyncerSettings
9347
+ (*RemoveInstallDataBySiteIdResponse_Result)(nil), // 125: lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.Result
9348
+ (*GetUserPermissionsResponse_AuthorizationAction)(nil), // 126: lansweeper.multitenant.v1.GetUserPermissionsResponse.AuthorizationAction
9349
+ (*GetUserPermissionsResponse_Scope)(nil), // 127: lansweeper.multitenant.v1.GetUserPermissionsResponse.Scope
9350
+ (*GetUserPermissionsResponse_Role)(nil), // 128: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role
9351
+ (*DisableWebhookEmailRequest_WebhookError)(nil), // 129: lansweeper.multitenant.v1.DisableWebhookEmailRequest.WebhookError
9352
+ nil, // 130: lansweeper.multitenant.v1.GetSiteLimitsResponse.SiteLimitsEntry
9353
+ (*GetMsmpOrganizationListRequest_MsmpPaginationRequest)(nil), // 131: lansweeper.multitenant.v1.GetMsmpOrganizationListRequest.MsmpPaginationRequest
9354
+ (*GetMsmpOrganizationListResponse_MsmpOrganization)(nil), // 132: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpOrganization
9355
+ (*GetMsmpOrganizationListResponse_MsmpPageInfo)(nil), // 133: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpPageInfo
9356
+ (*generated_go.SiteLimits)(nil), // 134: lansweeper.shared.limits.v1.SiteLimits
9357
+ (*emptypb.Empty)(nil), // 135: google.protobuf.Empty
9224
9358
  }
9225
9359
  var file_multitenant_proto_depIdxs = []int32{
9226
9360
  5, // 0: lansweeper.multitenant.v1.GetPreviewAccountByIdResponse.account:type_name -> lansweeper.multitenant.v1.PreviewAccount
@@ -9232,13 +9366,13 @@ var file_multitenant_proto_depIdxs = []int32{
9232
9366
  12, // 6: lansweeper.multitenant.v1.Profile.site:type_name -> lansweeper.multitenant.v1.PreviewSite
9233
9367
  15, // 7: lansweeper.multitenant.v1.ListProfilesByAccountIdResponse.profile:type_name -> lansweeper.multitenant.v1.Profile
9234
9368
  15, // 8: lansweeper.multitenant.v1.ListAuthorizedLinkProfilesResponse.profile:type_name -> lansweeper.multitenant.v1.Profile
9235
- 119, // 9: lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.user_info:type_name -> lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.UserInfo
9236
- 120, // 10: lansweeper.multitenant.v1.Install.state:type_name -> lansweeper.multitenant.v1.Install.InstallState
9369
+ 121, // 9: lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.user_info:type_name -> lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.UserInfo
9370
+ 122, // 10: lansweeper.multitenant.v1.Install.state:type_name -> lansweeper.multitenant.v1.Install.InstallState
9237
9371
  2, // 11: lansweeper.multitenant.v1.Install.install_type:type_name -> lansweeper.multitenant.v1.InstallType
9238
9372
  24, // 12: lansweeper.multitenant.v1.GetInstallsByIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
9239
9373
  24, // 13: lansweeper.multitenant.v1.GetInstallsByExternalIdsResponse.install:type_name -> lansweeper.multitenant.v1.Install
9240
9374
  2, // 14: lansweeper.multitenant.v1.NullableInstallType.data:type_name -> lansweeper.multitenant.v1.InstallType
9241
- 121, // 15: lansweeper.multitenant.v1.GetInstallsBySiteRequest.filter:type_name -> lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter
9375
+ 123, // 15: lansweeper.multitenant.v1.GetInstallsBySiteRequest.filter:type_name -> lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter
9242
9376
  24, // 16: lansweeper.multitenant.v1.GetInstallsBySiteResponse.install:type_name -> lansweeper.multitenant.v1.Install
9243
9377
  24, // 17: lansweeper.multitenant.v1.GetInstallsForMultipleSitesResponse.installs:type_name -> lansweeper.multitenant.v1.Install
9244
9378
  24, // 18: lansweeper.multitenant.v1.GetInstallbyClientIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
@@ -9248,150 +9382,152 @@ var file_multitenant_proto_depIdxs = []int32{
9248
9382
  2, // 22: lansweeper.multitenant.v1.CreateAndLinkInstallRequest.type:type_name -> lansweeper.multitenant.v1.InstallType
9249
9383
  24, // 23: lansweeper.multitenant.v1.CreateAndLinkInstallResponse.install:type_name -> lansweeper.multitenant.v1.Install
9250
9384
  25, // 24: lansweeper.multitenant.v1.CreateAndLinkInstallResponse.credentials:type_name -> lansweeper.multitenant.v1.InstallCredentials
9251
- 122, // 25: lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.syncer_settings:type_name -> lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.SyncerSettings
9385
+ 124, // 25: lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.syncer_settings:type_name -> lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.SyncerSettings
9252
9386
  24, // 26: lansweeper.multitenant.v1.UpdateInstallByClientIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
9253
9387
  2, // 27: lansweeper.multitenant.v1.LinkTrialInstallByClientIdRequest.type:type_name -> lansweeper.multitenant.v1.InstallType
9254
9388
  24, // 28: lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
9255
9389
  25, // 29: lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse.credentials:type_name -> lansweeper.multitenant.v1.InstallCredentials
9256
9390
  12, // 30: lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse.site:type_name -> lansweeper.multitenant.v1.PreviewSite
9257
- 123, // 31: lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.result:type_name -> lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.Result
9391
+ 125, // 31: lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.result:type_name -> lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.Result
9258
9392
  24, // 32: lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
9259
- 126, // 33: lansweeper.multitenant.v1.GetUserPermissionsResponse.roles:type_name -> lansweeper.multitenant.v1.GetUserPermissionsResponse.Role
9260
- 127, // 34: lansweeper.multitenant.v1.DisableWebhookEmailRequest.errors:type_name -> lansweeper.multitenant.v1.DisableWebhookEmailRequest.WebhookError
9393
+ 128, // 33: lansweeper.multitenant.v1.GetUserPermissionsResponse.roles:type_name -> lansweeper.multitenant.v1.GetUserPermissionsResponse.Role
9394
+ 129, // 34: lansweeper.multitenant.v1.DisableWebhookEmailRequest.errors:type_name -> lansweeper.multitenant.v1.DisableWebhookEmailRequest.WebhookError
9261
9395
  61, // 35: lansweeper.multitenant.v1.AuthorizedSitesResponse.site:type_name -> lansweeper.multitenant.v1.Site
9262
9396
  3, // 36: lansweeper.multitenant.v1.Subscription.type:type_name -> lansweeper.multitenant.v1.SubscriptionType
9263
9397
  3, // 37: lansweeper.multitenant.v1.UpdateSiteSubscriptionRequest.type:type_name -> lansweeper.multitenant.v1.SubscriptionType
9264
9398
  68, // 38: lansweeper.multitenant.v1.UpdateSiteSubscriptionResponse.subscription:type_name -> lansweeper.multitenant.v1.Subscription
9265
9399
  15, // 39: lansweeper.multitenant.v1.AllProfilesExistResponse.profiles:type_name -> lansweeper.multitenant.v1.Profile
9266
9400
  5, // 40: lansweeper.multitenant.v1.AllProfilesExistResponse.createdBy:type_name -> lansweeper.multitenant.v1.PreviewAccount
9267
- 128, // 41: lansweeper.multitenant.v1.GetSiteLimitsResponse.site_limits:type_name -> lansweeper.multitenant.v1.GetSiteLimitsResponse.SiteLimitsEntry
9401
+ 130, // 41: lansweeper.multitenant.v1.GetSiteLimitsResponse.site_limits:type_name -> lansweeper.multitenant.v1.GetSiteLimitsResponse.SiteLimitsEntry
9268
9402
  4, // 42: lansweeper.multitenant.v1.SiteHierarchyIdsItem.parent_type:type_name -> lansweeper.multitenant.v1.SiteHierarchyIdsItem.ParentType
9269
9403
  93, // 43: lansweeper.multitenant.v1.GetSiteHierarchyIdsResponse.items:type_name -> lansweeper.multitenant.v1.SiteHierarchyIdsItem
9270
9404
  94, // 44: lansweeper.multitenant.v1.GetSiteHierarchyIdsResponse.page_info:type_name -> lansweeper.multitenant.v1.SiteHierarchyIdsPageInfo
9271
- 97, // 45: lansweeper.multitenant.v1.GetSitesIdsWithFederationResponse.items:type_name -> lansweeper.multitenant.v1.SitesIdsWithFederationItem
9272
- 98, // 46: lansweeper.multitenant.v1.GetSitesIdsWithFederationResponse.page_info:type_name -> lansweeper.multitenant.v1.SitesIdsWithFederationPageInfo
9273
- 129, // 47: lansweeper.multitenant.v1.GetMsmpOrganizationListRequest.msmp_pagination:type_name -> lansweeper.multitenant.v1.GetMsmpOrganizationListRequest.MsmpPaginationRequest
9274
- 130, // 48: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.organizations:type_name -> lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpOrganization
9275
- 131, // 49: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.msmp_page_info:type_name -> lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpPageInfo
9276
- 100, // 50: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdRequest.msmp_pagination:type_name -> lansweeper.multitenant.v1.MsmpPagination
9277
- 12, // 51: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdResponse.sites:type_name -> lansweeper.multitenant.v1.PreviewSite
9278
- 101, // 52: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdResponse.msmp_pagination_info:type_name -> lansweeper.multitenant.v1.MsmpPaginationInfo
9279
- 12, // 53: lansweeper.multitenant.v1.GetSitePreviewResponse.site:type_name -> lansweeper.multitenant.v1.PreviewSite
9280
- 1, // 54: lansweeper.multitenant.v1.Install.InstallState.value:type_name -> lansweeper.multitenant.v1.InstallStateValue
9281
- 1, // 55: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter.state:type_name -> lansweeper.multitenant.v1.InstallStateValue
9282
- 2, // 56: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter.type:type_name -> lansweeper.multitenant.v1.InstallType
9283
- 32, // 57: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter.install_type:type_name -> lansweeper.multitenant.v1.NullableInstallType
9284
- 124, // 58: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role.actions:type_name -> lansweeper.multitenant.v1.GetUserPermissionsResponse.AuthorizationAction
9285
- 24, // 59: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role.installations:type_name -> lansweeper.multitenant.v1.Install
9286
- 125, // 60: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role.scopes:type_name -> lansweeper.multitenant.v1.GetUserPermissionsResponse.Scope
9287
- 132, // 61: lansweeper.multitenant.v1.GetSiteLimitsResponse.SiteLimitsEntry.value:type_name -> lansweeper.shared.limits.v1.SiteLimits
9288
- 20, // 62: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByAccountId:input_type -> lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest
9289
- 22, // 63: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByClientId:input_type -> lansweeper.multitenant.v1.CheckAccessToSiteByClientIdRequest
9290
- 6, // 64: lansweeper.multitenant.v1.Multitenant.GetPreviewAccountById:input_type -> lansweeper.multitenant.v1.GetPreviewAccountByIdRequest
9291
- 8, // 65: lansweeper.multitenant.v1.Multitenant.SearchPreviewAccountsBySiteIds:input_type -> lansweeper.multitenant.v1.SearchPreviewAccountsBySiteIdsRequest
9292
- 10, // 66: lansweeper.multitenant.v1.Multitenant.GetPreviewAccountsByAccountIds:input_type -> lansweeper.multitenant.v1.GetPreviewAccountsByAccountIdsRequest
9293
- 16, // 67: lansweeper.multitenant.v1.Multitenant.ListProfilesByAccountId:input_type -> lansweeper.multitenant.v1.ListProfilesByAccountIdRequest
9294
- 18, // 68: lansweeper.multitenant.v1.Multitenant.ListAuthorizedLinkProfiles:input_type -> lansweeper.multitenant.v1.ListAuthorizedLinkProfilesRequest
9295
- 13, // 69: lansweeper.multitenant.v1.Multitenant.PatchSiteMode:input_type -> lansweeper.multitenant.v1.PatchSiteModeRequest
9296
- 39, // 70: lansweeper.multitenant.v1.Multitenant.CreateInstall:input_type -> lansweeper.multitenant.v1.CreateInstallRequest
9297
- 41, // 71: lansweeper.multitenant.v1.Multitenant.CreateAndLinkInstall:input_type -> lansweeper.multitenant.v1.CreateAndLinkInstallRequest
9298
- 33, // 72: lansweeper.multitenant.v1.Multitenant.GetInstallsBySite:input_type -> lansweeper.multitenant.v1.GetInstallsBySiteRequest
9299
- 35, // 73: lansweeper.multitenant.v1.Multitenant.GetInstallsforMultipleSites:input_type -> lansweeper.multitenant.v1.GetInstallsForMultipleSitesRequest
9300
- 28, // 74: lansweeper.multitenant.v1.Multitenant.GetInstallsById:input_type -> lansweeper.multitenant.v1.GetInstallsByIdRequest
9301
- 26, // 75: lansweeper.multitenant.v1.Multitenant.GetInstallsCountBySite:input_type -> lansweeper.multitenant.v1.GetInstallsCountBySiteRequest
9302
- 37, // 76: lansweeper.multitenant.v1.Multitenant.GetInstallbyClientId:input_type -> lansweeper.multitenant.v1.GetInstallbyClientIdRequest
9303
- 43, // 77: lansweeper.multitenant.v1.Multitenant.UpdateInstallByClientId:input_type -> lansweeper.multitenant.v1.UpdateInstallByClientIdRequest
9304
- 45, // 78: lansweeper.multitenant.v1.Multitenant.RotateInstallByClientId:input_type -> lansweeper.multitenant.v1.RotateInstallByClientIdRequest
9305
- 49, // 79: lansweeper.multitenant.v1.Multitenant.LinkTrialInstallByClientId:input_type -> lansweeper.multitenant.v1.LinkTrialInstallByClientIdRequest
9306
- 47, // 80: lansweeper.multitenant.v1.Multitenant.UnlinkInstallByClientId:input_type -> lansweeper.multitenant.v1.UnlinkInstallByClientIdRequest
9307
- 51, // 81: lansweeper.multitenant.v1.Multitenant.RemoveInstallDataBySiteId:input_type -> lansweeper.multitenant.v1.RemoveInstallDataBySiteIdRequest
9308
- 53, // 82: lansweeper.multitenant.v1.Multitenant.GetDuplicatedInstallsByGlobalId:input_type -> lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdRequest
9309
- 55, // 83: lansweeper.multitenant.v1.Multitenant.GetUserPermissions:input_type -> lansweeper.multitenant.v1.GetUserPermissionsRequest
9310
- 57, // 84: lansweeper.multitenant.v1.Multitenant.ValidateApplicationPersonalAccessToken:input_type -> lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenRequest
9311
- 59, // 85: lansweeper.multitenant.v1.Multitenant.SendDisabledWebhookEmail:input_type -> lansweeper.multitenant.v1.DisableWebhookEmailRequest
9312
- 62, // 86: lansweeper.multitenant.v1.Multitenant.GetAuthorizedSitesByApplicationId:input_type -> lansweeper.multitenant.v1.AuthorizedSitesRequest
9313
- 64, // 87: lansweeper.multitenant.v1.Multitenant.GetAccountIdsBySiteId:input_type -> lansweeper.multitenant.v1.GetAccountIdsBySiteIdRequest
9314
- 66, // 88: lansweeper.multitenant.v1.Multitenant.CheckManagerInApplication:input_type -> lansweeper.multitenant.v1.CheckManagerInApplicationRequest
9315
- 69, // 89: lansweeper.multitenant.v1.Multitenant.UpdateSiteSubscription:input_type -> lansweeper.multitenant.v1.UpdateSiteSubscriptionRequest
9316
- 71, // 90: lansweeper.multitenant.v1.Multitenant.CreateTrialSiteAndInstaller:input_type -> lansweeper.multitenant.v1.CreateTrialSiteAndInstallerRequest
9317
- 73, // 91: lansweeper.multitenant.v1.Multitenant.GetInstallationLicenseByClientId:input_type -> lansweeper.multitenant.v1.GetInstallationLicenseByClientIdRequest
9318
- 77, // 92: lansweeper.multitenant.v1.Multitenant.AllProfilesExist:input_type -> lansweeper.multitenant.v1.AllProfilesExistRequest
9319
- 79, // 93: lansweeper.multitenant.v1.Multitenant.SendInviteLocalUsersMail:input_type -> lansweeper.multitenant.v1.SendInviteLocalUsersMailRequest
9320
- 75, // 94: lansweeper.multitenant.v1.Multitenant.AllProfileExists:input_type -> lansweeper.multitenant.v1.AllProfileExistsRequest
9321
- 81, // 95: lansweeper.multitenant.v1.Multitenant.CreateLinkingCode:input_type -> lansweeper.multitenant.v1.CreateLinkingCodeRequest
9322
- 83, // 96: lansweeper.multitenant.v1.Multitenant.GetSiteIdsWithIntegrationBySiteId:input_type -> lansweeper.multitenant.v1.GetSiteIdsWithIntegrationData
9323
- 84, // 97: lansweeper.multitenant.v1.Multitenant.CheckStandardizedSoftwareEnabled:input_type -> lansweeper.multitenant.v1.CheckStandardizedSoftwareEnabledRequest
9324
- 86, // 98: lansweeper.multitenant.v1.Multitenant.UpdateSiteMetadata:input_type -> lansweeper.multitenant.v1.UpdateSiteMetadataRequest
9325
- 90, // 99: lansweeper.multitenant.v1.Multitenant.GetSiteLimits:input_type -> lansweeper.multitenant.v1.GetSiteLimitsRequest
9326
- 102, // 100: lansweeper.multitenant.v1.Multitenant.GetMsmpOrganizationList:input_type -> lansweeper.multitenant.v1.GetMsmpOrganizationListRequest
9327
- 104, // 101: lansweeper.multitenant.v1.Multitenant.GetMsmpOrganizationAccount:input_type -> lansweeper.multitenant.v1.GetMsmpOrganizationAccountRequest
9328
- 106, // 102: lansweeper.multitenant.v1.Multitenant.GetSitesByMsmpOrganizationId:input_type -> lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdRequest
9329
- 30, // 103: lansweeper.multitenant.v1.Multitenant.GetInstallsByExternalIds:input_type -> lansweeper.multitenant.v1.GetInstallsByExternalIdsRequest
9330
- 108, // 104: lansweeper.multitenant.v1.Multitenant.SetEnabledCustomFieldsFederation:input_type -> lansweeper.multitenant.v1.SetEnabledCustomFieldsFederationRequest
9331
- 109, // 105: lansweeper.multitenant.v1.Multitenant.IsCustomFieldsFederationEnabled:input_type -> lansweeper.multitenant.v1.IsCustomFieldsFederationEnabledRequest
9332
- 110, // 106: lansweeper.multitenant.v1.Multitenant.IsMetadataFieldsFederationEnabled:input_type -> lansweeper.multitenant.v1.IsMetadataFieldsFederationEnabledRequest
9333
- 113, // 107: lansweeper.multitenant.v1.Multitenant.GetSitePreview:input_type -> lansweeper.multitenant.v1.GetSitePreviewRequest
9334
- 88, // 108: lansweeper.multitenant.v1.Multitenant.UpdateSiteSkipDataExport:input_type -> lansweeper.multitenant.v1.UpdateSiteSkipDataExportRequest
9335
- 92, // 109: lansweeper.multitenant.v1.Multitenant.GetSiteHierarchyIds:input_type -> lansweeper.multitenant.v1.GetSiteHierarchyIdsRequest
9336
- 96, // 110: lansweeper.multitenant.v1.Multitenant.GetSitesIdsWithFederation:input_type -> lansweeper.multitenant.v1.GetSitesIdsWithFederationRequest
9337
- 115, // 111: lansweeper.multitenant.v1.Multitenant.CreateOwnerPersonalAccessToken:input_type -> lansweeper.multitenant.v1.CreateOwnerPersonalAccessTokenRequest
9338
- 117, // 112: lansweeper.multitenant.v1.Multitenant.GetInstallationSettings:input_type -> lansweeper.multitenant.v1.GetInstallationSettingsRequest
9339
- 21, // 113: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByAccountId:output_type -> lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdResponse
9340
- 23, // 114: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByClientId:output_type -> lansweeper.multitenant.v1.CheckAccessToSiteByClientIdResponse
9341
- 7, // 115: lansweeper.multitenant.v1.Multitenant.GetPreviewAccountById:output_type -> lansweeper.multitenant.v1.GetPreviewAccountByIdResponse
9342
- 9, // 116: lansweeper.multitenant.v1.Multitenant.SearchPreviewAccountsBySiteIds:output_type -> lansweeper.multitenant.v1.SearchPreviewAccountsBySiteIdsResponse
9343
- 11, // 117: lansweeper.multitenant.v1.Multitenant.GetPreviewAccountsByAccountIds:output_type -> lansweeper.multitenant.v1.GetPreviewAccountsByAccountIdsResponse
9344
- 17, // 118: lansweeper.multitenant.v1.Multitenant.ListProfilesByAccountId:output_type -> lansweeper.multitenant.v1.ListProfilesByAccountIdResponse
9345
- 19, // 119: lansweeper.multitenant.v1.Multitenant.ListAuthorizedLinkProfiles:output_type -> lansweeper.multitenant.v1.ListAuthorizedLinkProfilesResponse
9346
- 14, // 120: lansweeper.multitenant.v1.Multitenant.PatchSiteMode:output_type -> lansweeper.multitenant.v1.PatchSiteModeResponse
9347
- 40, // 121: lansweeper.multitenant.v1.Multitenant.CreateInstall:output_type -> lansweeper.multitenant.v1.CreateInstallResponse
9348
- 42, // 122: lansweeper.multitenant.v1.Multitenant.CreateAndLinkInstall:output_type -> lansweeper.multitenant.v1.CreateAndLinkInstallResponse
9349
- 34, // 123: lansweeper.multitenant.v1.Multitenant.GetInstallsBySite:output_type -> lansweeper.multitenant.v1.GetInstallsBySiteResponse
9350
- 36, // 124: lansweeper.multitenant.v1.Multitenant.GetInstallsforMultipleSites:output_type -> lansweeper.multitenant.v1.GetInstallsForMultipleSitesResponse
9351
- 29, // 125: lansweeper.multitenant.v1.Multitenant.GetInstallsById:output_type -> lansweeper.multitenant.v1.GetInstallsByIdResponse
9352
- 27, // 126: lansweeper.multitenant.v1.Multitenant.GetInstallsCountBySite:output_type -> lansweeper.multitenant.v1.GetInstallsCountResponse
9353
- 38, // 127: lansweeper.multitenant.v1.Multitenant.GetInstallbyClientId:output_type -> lansweeper.multitenant.v1.GetInstallbyClientIdResponse
9354
- 44, // 128: lansweeper.multitenant.v1.Multitenant.UpdateInstallByClientId:output_type -> lansweeper.multitenant.v1.UpdateInstallByClientIdResponse
9355
- 46, // 129: lansweeper.multitenant.v1.Multitenant.RotateInstallByClientId:output_type -> lansweeper.multitenant.v1.RotateInstallByClientIdResponse
9356
- 50, // 130: lansweeper.multitenant.v1.Multitenant.LinkTrialInstallByClientId:output_type -> lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse
9357
- 48, // 131: lansweeper.multitenant.v1.Multitenant.UnlinkInstallByClientId:output_type -> lansweeper.multitenant.v1.UnlinkInstallByClientIdResponse
9358
- 52, // 132: lansweeper.multitenant.v1.Multitenant.RemoveInstallDataBySiteId:output_type -> lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse
9359
- 54, // 133: lansweeper.multitenant.v1.Multitenant.GetDuplicatedInstallsByGlobalId:output_type -> lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdResponse
9360
- 56, // 134: lansweeper.multitenant.v1.Multitenant.GetUserPermissions:output_type -> lansweeper.multitenant.v1.GetUserPermissionsResponse
9361
- 58, // 135: lansweeper.multitenant.v1.Multitenant.ValidateApplicationPersonalAccessToken:output_type -> lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenResponse
9362
- 60, // 136: lansweeper.multitenant.v1.Multitenant.SendDisabledWebhookEmail:output_type -> lansweeper.multitenant.v1.DisableWebhookEmailResponse
9363
- 63, // 137: lansweeper.multitenant.v1.Multitenant.GetAuthorizedSitesByApplicationId:output_type -> lansweeper.multitenant.v1.AuthorizedSitesResponse
9364
- 65, // 138: lansweeper.multitenant.v1.Multitenant.GetAccountIdsBySiteId:output_type -> lansweeper.multitenant.v1.GetAccountIdsBySiteIdResponse
9365
- 67, // 139: lansweeper.multitenant.v1.Multitenant.CheckManagerInApplication:output_type -> lansweeper.multitenant.v1.CheckManagerInApplicationResponse
9366
- 70, // 140: lansweeper.multitenant.v1.Multitenant.UpdateSiteSubscription:output_type -> lansweeper.multitenant.v1.UpdateSiteSubscriptionResponse
9367
- 72, // 141: lansweeper.multitenant.v1.Multitenant.CreateTrialSiteAndInstaller:output_type -> lansweeper.multitenant.v1.CreateTrialSiteAndInstallerResponse
9368
- 74, // 142: lansweeper.multitenant.v1.Multitenant.GetInstallationLicenseByClientId:output_type -> lansweeper.multitenant.v1.GetInstallationLicenseByClientIdResponse
9369
- 78, // 143: lansweeper.multitenant.v1.Multitenant.AllProfilesExist:output_type -> lansweeper.multitenant.v1.AllProfilesExistResponse
9370
- 80, // 144: lansweeper.multitenant.v1.Multitenant.SendInviteLocalUsersMail:output_type -> lansweeper.multitenant.v1.SendInviteLocalUsersMailResponse
9371
- 76, // 145: lansweeper.multitenant.v1.Multitenant.AllProfileExists:output_type -> lansweeper.multitenant.v1.AllProfileExistsResponse
9372
- 82, // 146: lansweeper.multitenant.v1.Multitenant.CreateLinkingCode:output_type -> lansweeper.multitenant.v1.CreateLinkingCodeResponse
9373
- 83, // 147: lansweeper.multitenant.v1.Multitenant.GetSiteIdsWithIntegrationBySiteId:output_type -> lansweeper.multitenant.v1.GetSiteIdsWithIntegrationData
9374
- 85, // 148: lansweeper.multitenant.v1.Multitenant.CheckStandardizedSoftwareEnabled:output_type -> lansweeper.multitenant.v1.CheckStandardizedSoftwareEnabledResponse
9375
- 87, // 149: lansweeper.multitenant.v1.Multitenant.UpdateSiteMetadata:output_type -> lansweeper.multitenant.v1.UpdateSiteMetadataResponse
9376
- 91, // 150: lansweeper.multitenant.v1.Multitenant.GetSiteLimits:output_type -> lansweeper.multitenant.v1.GetSiteLimitsResponse
9377
- 103, // 151: lansweeper.multitenant.v1.Multitenant.GetMsmpOrganizationList:output_type -> lansweeper.multitenant.v1.GetMsmpOrganizationListResponse
9378
- 105, // 152: lansweeper.multitenant.v1.Multitenant.GetMsmpOrganizationAccount:output_type -> lansweeper.multitenant.v1.GetMsmpOrganizationAccountResponse
9379
- 107, // 153: lansweeper.multitenant.v1.Multitenant.GetSitesByMsmpOrganizationId:output_type -> lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdResponse
9380
- 31, // 154: lansweeper.multitenant.v1.Multitenant.GetInstallsByExternalIds:output_type -> lansweeper.multitenant.v1.GetInstallsByExternalIdsResponse
9381
- 133, // 155: lansweeper.multitenant.v1.Multitenant.SetEnabledCustomFieldsFederation:output_type -> google.protobuf.Empty
9382
- 111, // 156: lansweeper.multitenant.v1.Multitenant.IsCustomFieldsFederationEnabled:output_type -> lansweeper.multitenant.v1.IsCustomFieldsFederationEnabledResponse
9383
- 112, // 157: lansweeper.multitenant.v1.Multitenant.IsMetadataFieldsFederationEnabled:output_type -> lansweeper.multitenant.v1.IsMetadataFieldsFederationEnabledResponse
9384
- 114, // 158: lansweeper.multitenant.v1.Multitenant.GetSitePreview:output_type -> lansweeper.multitenant.v1.GetSitePreviewResponse
9385
- 89, // 159: lansweeper.multitenant.v1.Multitenant.UpdateSiteSkipDataExport:output_type -> lansweeper.multitenant.v1.UpdateSiteSkipDataExportResponse
9386
- 95, // 160: lansweeper.multitenant.v1.Multitenant.GetSiteHierarchyIds:output_type -> lansweeper.multitenant.v1.GetSiteHierarchyIdsResponse
9387
- 99, // 161: lansweeper.multitenant.v1.Multitenant.GetSitesIdsWithFederation:output_type -> lansweeper.multitenant.v1.GetSitesIdsWithFederationResponse
9388
- 116, // 162: lansweeper.multitenant.v1.Multitenant.CreateOwnerPersonalAccessToken:output_type -> lansweeper.multitenant.v1.CreateOwnerPersonalAccessTokenResponse
9389
- 118, // 163: lansweeper.multitenant.v1.Multitenant.GetInstallationSettings:output_type -> lansweeper.multitenant.v1.GetInstallationSettingsResponse
9390
- 113, // [113:164] is the sub-list for method output_type
9391
- 62, // [62:113] is the sub-list for method input_type
9392
- 62, // [62:62] is the sub-list for extension type_name
9393
- 62, // [62:62] is the sub-list for extension extendee
9394
- 0, // [0:62] is the sub-list for field type_name
9405
+ 96, // 45: lansweeper.multitenant.v1.GetSitesRequest.options:type_name -> lansweeper.multitenant.v1.GetSitesOptions
9406
+ 98, // 46: lansweeper.multitenant.v1.GetSitesItems.metadata:type_name -> lansweeper.multitenant.v1.GetSitesItemsMetadata
9407
+ 99, // 47: lansweeper.multitenant.v1.GetSitesResponse.items:type_name -> lansweeper.multitenant.v1.GetSitesItems
9408
+ 100, // 48: lansweeper.multitenant.v1.GetSitesResponse.page_info:type_name -> lansweeper.multitenant.v1.GetSitesPageInfo
9409
+ 131, // 49: lansweeper.multitenant.v1.GetMsmpOrganizationListRequest.msmp_pagination:type_name -> lansweeper.multitenant.v1.GetMsmpOrganizationListRequest.MsmpPaginationRequest
9410
+ 132, // 50: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.organizations:type_name -> lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpOrganization
9411
+ 133, // 51: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.msmp_page_info:type_name -> lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpPageInfo
9412
+ 102, // 52: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdRequest.msmp_pagination:type_name -> lansweeper.multitenant.v1.MsmpPagination
9413
+ 12, // 53: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdResponse.sites:type_name -> lansweeper.multitenant.v1.PreviewSite
9414
+ 103, // 54: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdResponse.msmp_pagination_info:type_name -> lansweeper.multitenant.v1.MsmpPaginationInfo
9415
+ 12, // 55: lansweeper.multitenant.v1.GetSitePreviewResponse.site:type_name -> lansweeper.multitenant.v1.PreviewSite
9416
+ 1, // 56: lansweeper.multitenant.v1.Install.InstallState.value:type_name -> lansweeper.multitenant.v1.InstallStateValue
9417
+ 1, // 57: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter.state:type_name -> lansweeper.multitenant.v1.InstallStateValue
9418
+ 2, // 58: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter.type:type_name -> lansweeper.multitenant.v1.InstallType
9419
+ 32, // 59: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter.install_type:type_name -> lansweeper.multitenant.v1.NullableInstallType
9420
+ 126, // 60: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role.actions:type_name -> lansweeper.multitenant.v1.GetUserPermissionsResponse.AuthorizationAction
9421
+ 24, // 61: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role.installations:type_name -> lansweeper.multitenant.v1.Install
9422
+ 127, // 62: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role.scopes:type_name -> lansweeper.multitenant.v1.GetUserPermissionsResponse.Scope
9423
+ 134, // 63: lansweeper.multitenant.v1.GetSiteLimitsResponse.SiteLimitsEntry.value:type_name -> lansweeper.shared.limits.v1.SiteLimits
9424
+ 20, // 64: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByAccountId:input_type -> lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest
9425
+ 22, // 65: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByClientId:input_type -> lansweeper.multitenant.v1.CheckAccessToSiteByClientIdRequest
9426
+ 6, // 66: lansweeper.multitenant.v1.Multitenant.GetPreviewAccountById:input_type -> lansweeper.multitenant.v1.GetPreviewAccountByIdRequest
9427
+ 8, // 67: lansweeper.multitenant.v1.Multitenant.SearchPreviewAccountsBySiteIds:input_type -> lansweeper.multitenant.v1.SearchPreviewAccountsBySiteIdsRequest
9428
+ 10, // 68: lansweeper.multitenant.v1.Multitenant.GetPreviewAccountsByAccountIds:input_type -> lansweeper.multitenant.v1.GetPreviewAccountsByAccountIdsRequest
9429
+ 16, // 69: lansweeper.multitenant.v1.Multitenant.ListProfilesByAccountId:input_type -> lansweeper.multitenant.v1.ListProfilesByAccountIdRequest
9430
+ 18, // 70: lansweeper.multitenant.v1.Multitenant.ListAuthorizedLinkProfiles:input_type -> lansweeper.multitenant.v1.ListAuthorizedLinkProfilesRequest
9431
+ 13, // 71: lansweeper.multitenant.v1.Multitenant.PatchSiteMode:input_type -> lansweeper.multitenant.v1.PatchSiteModeRequest
9432
+ 39, // 72: lansweeper.multitenant.v1.Multitenant.CreateInstall:input_type -> lansweeper.multitenant.v1.CreateInstallRequest
9433
+ 41, // 73: lansweeper.multitenant.v1.Multitenant.CreateAndLinkInstall:input_type -> lansweeper.multitenant.v1.CreateAndLinkInstallRequest
9434
+ 33, // 74: lansweeper.multitenant.v1.Multitenant.GetInstallsBySite:input_type -> lansweeper.multitenant.v1.GetInstallsBySiteRequest
9435
+ 35, // 75: lansweeper.multitenant.v1.Multitenant.GetInstallsforMultipleSites:input_type -> lansweeper.multitenant.v1.GetInstallsForMultipleSitesRequest
9436
+ 28, // 76: lansweeper.multitenant.v1.Multitenant.GetInstallsById:input_type -> lansweeper.multitenant.v1.GetInstallsByIdRequest
9437
+ 26, // 77: lansweeper.multitenant.v1.Multitenant.GetInstallsCountBySite:input_type -> lansweeper.multitenant.v1.GetInstallsCountBySiteRequest
9438
+ 37, // 78: lansweeper.multitenant.v1.Multitenant.GetInstallbyClientId:input_type -> lansweeper.multitenant.v1.GetInstallbyClientIdRequest
9439
+ 43, // 79: lansweeper.multitenant.v1.Multitenant.UpdateInstallByClientId:input_type -> lansweeper.multitenant.v1.UpdateInstallByClientIdRequest
9440
+ 45, // 80: lansweeper.multitenant.v1.Multitenant.RotateInstallByClientId:input_type -> lansweeper.multitenant.v1.RotateInstallByClientIdRequest
9441
+ 49, // 81: lansweeper.multitenant.v1.Multitenant.LinkTrialInstallByClientId:input_type -> lansweeper.multitenant.v1.LinkTrialInstallByClientIdRequest
9442
+ 47, // 82: lansweeper.multitenant.v1.Multitenant.UnlinkInstallByClientId:input_type -> lansweeper.multitenant.v1.UnlinkInstallByClientIdRequest
9443
+ 51, // 83: lansweeper.multitenant.v1.Multitenant.RemoveInstallDataBySiteId:input_type -> lansweeper.multitenant.v1.RemoveInstallDataBySiteIdRequest
9444
+ 53, // 84: lansweeper.multitenant.v1.Multitenant.GetDuplicatedInstallsByGlobalId:input_type -> lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdRequest
9445
+ 55, // 85: lansweeper.multitenant.v1.Multitenant.GetUserPermissions:input_type -> lansweeper.multitenant.v1.GetUserPermissionsRequest
9446
+ 57, // 86: lansweeper.multitenant.v1.Multitenant.ValidateApplicationPersonalAccessToken:input_type -> lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenRequest
9447
+ 59, // 87: lansweeper.multitenant.v1.Multitenant.SendDisabledWebhookEmail:input_type -> lansweeper.multitenant.v1.DisableWebhookEmailRequest
9448
+ 62, // 88: lansweeper.multitenant.v1.Multitenant.GetAuthorizedSitesByApplicationId:input_type -> lansweeper.multitenant.v1.AuthorizedSitesRequest
9449
+ 64, // 89: lansweeper.multitenant.v1.Multitenant.GetAccountIdsBySiteId:input_type -> lansweeper.multitenant.v1.GetAccountIdsBySiteIdRequest
9450
+ 66, // 90: lansweeper.multitenant.v1.Multitenant.CheckManagerInApplication:input_type -> lansweeper.multitenant.v1.CheckManagerInApplicationRequest
9451
+ 69, // 91: lansweeper.multitenant.v1.Multitenant.UpdateSiteSubscription:input_type -> lansweeper.multitenant.v1.UpdateSiteSubscriptionRequest
9452
+ 71, // 92: lansweeper.multitenant.v1.Multitenant.CreateTrialSiteAndInstaller:input_type -> lansweeper.multitenant.v1.CreateTrialSiteAndInstallerRequest
9453
+ 73, // 93: lansweeper.multitenant.v1.Multitenant.GetInstallationLicenseByClientId:input_type -> lansweeper.multitenant.v1.GetInstallationLicenseByClientIdRequest
9454
+ 77, // 94: lansweeper.multitenant.v1.Multitenant.AllProfilesExist:input_type -> lansweeper.multitenant.v1.AllProfilesExistRequest
9455
+ 79, // 95: lansweeper.multitenant.v1.Multitenant.SendInviteLocalUsersMail:input_type -> lansweeper.multitenant.v1.SendInviteLocalUsersMailRequest
9456
+ 75, // 96: lansweeper.multitenant.v1.Multitenant.AllProfileExists:input_type -> lansweeper.multitenant.v1.AllProfileExistsRequest
9457
+ 81, // 97: lansweeper.multitenant.v1.Multitenant.CreateLinkingCode:input_type -> lansweeper.multitenant.v1.CreateLinkingCodeRequest
9458
+ 83, // 98: lansweeper.multitenant.v1.Multitenant.GetSiteIdsWithIntegrationBySiteId:input_type -> lansweeper.multitenant.v1.GetSiteIdsWithIntegrationData
9459
+ 84, // 99: lansweeper.multitenant.v1.Multitenant.CheckStandardizedSoftwareEnabled:input_type -> lansweeper.multitenant.v1.CheckStandardizedSoftwareEnabledRequest
9460
+ 86, // 100: lansweeper.multitenant.v1.Multitenant.UpdateSiteMetadata:input_type -> lansweeper.multitenant.v1.UpdateSiteMetadataRequest
9461
+ 90, // 101: lansweeper.multitenant.v1.Multitenant.GetSiteLimits:input_type -> lansweeper.multitenant.v1.GetSiteLimitsRequest
9462
+ 104, // 102: lansweeper.multitenant.v1.Multitenant.GetMsmpOrganizationList:input_type -> lansweeper.multitenant.v1.GetMsmpOrganizationListRequest
9463
+ 106, // 103: lansweeper.multitenant.v1.Multitenant.GetMsmpOrganizationAccount:input_type -> lansweeper.multitenant.v1.GetMsmpOrganizationAccountRequest
9464
+ 108, // 104: lansweeper.multitenant.v1.Multitenant.GetSitesByMsmpOrganizationId:input_type -> lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdRequest
9465
+ 30, // 105: lansweeper.multitenant.v1.Multitenant.GetInstallsByExternalIds:input_type -> lansweeper.multitenant.v1.GetInstallsByExternalIdsRequest
9466
+ 110, // 106: lansweeper.multitenant.v1.Multitenant.SetEnabledCustomFieldsFederation:input_type -> lansweeper.multitenant.v1.SetEnabledCustomFieldsFederationRequest
9467
+ 111, // 107: lansweeper.multitenant.v1.Multitenant.IsCustomFieldsFederationEnabled:input_type -> lansweeper.multitenant.v1.IsCustomFieldsFederationEnabledRequest
9468
+ 112, // 108: lansweeper.multitenant.v1.Multitenant.IsMetadataFieldsFederationEnabled:input_type -> lansweeper.multitenant.v1.IsMetadataFieldsFederationEnabledRequest
9469
+ 115, // 109: lansweeper.multitenant.v1.Multitenant.GetSitePreview:input_type -> lansweeper.multitenant.v1.GetSitePreviewRequest
9470
+ 88, // 110: lansweeper.multitenant.v1.Multitenant.UpdateSiteSkipDataExport:input_type -> lansweeper.multitenant.v1.UpdateSiteSkipDataExportRequest
9471
+ 92, // 111: lansweeper.multitenant.v1.Multitenant.GetSiteHierarchyIds:input_type -> lansweeper.multitenant.v1.GetSiteHierarchyIdsRequest
9472
+ 97, // 112: lansweeper.multitenant.v1.Multitenant.GetSites:input_type -> lansweeper.multitenant.v1.GetSitesRequest
9473
+ 117, // 113: lansweeper.multitenant.v1.Multitenant.CreateOwnerPersonalAccessToken:input_type -> lansweeper.multitenant.v1.CreateOwnerPersonalAccessTokenRequest
9474
+ 119, // 114: lansweeper.multitenant.v1.Multitenant.GetInstallationSettings:input_type -> lansweeper.multitenant.v1.GetInstallationSettingsRequest
9475
+ 21, // 115: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByAccountId:output_type -> lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdResponse
9476
+ 23, // 116: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByClientId:output_type -> lansweeper.multitenant.v1.CheckAccessToSiteByClientIdResponse
9477
+ 7, // 117: lansweeper.multitenant.v1.Multitenant.GetPreviewAccountById:output_type -> lansweeper.multitenant.v1.GetPreviewAccountByIdResponse
9478
+ 9, // 118: lansweeper.multitenant.v1.Multitenant.SearchPreviewAccountsBySiteIds:output_type -> lansweeper.multitenant.v1.SearchPreviewAccountsBySiteIdsResponse
9479
+ 11, // 119: lansweeper.multitenant.v1.Multitenant.GetPreviewAccountsByAccountIds:output_type -> lansweeper.multitenant.v1.GetPreviewAccountsByAccountIdsResponse
9480
+ 17, // 120: lansweeper.multitenant.v1.Multitenant.ListProfilesByAccountId:output_type -> lansweeper.multitenant.v1.ListProfilesByAccountIdResponse
9481
+ 19, // 121: lansweeper.multitenant.v1.Multitenant.ListAuthorizedLinkProfiles:output_type -> lansweeper.multitenant.v1.ListAuthorizedLinkProfilesResponse
9482
+ 14, // 122: lansweeper.multitenant.v1.Multitenant.PatchSiteMode:output_type -> lansweeper.multitenant.v1.PatchSiteModeResponse
9483
+ 40, // 123: lansweeper.multitenant.v1.Multitenant.CreateInstall:output_type -> lansweeper.multitenant.v1.CreateInstallResponse
9484
+ 42, // 124: lansweeper.multitenant.v1.Multitenant.CreateAndLinkInstall:output_type -> lansweeper.multitenant.v1.CreateAndLinkInstallResponse
9485
+ 34, // 125: lansweeper.multitenant.v1.Multitenant.GetInstallsBySite:output_type -> lansweeper.multitenant.v1.GetInstallsBySiteResponse
9486
+ 36, // 126: lansweeper.multitenant.v1.Multitenant.GetInstallsforMultipleSites:output_type -> lansweeper.multitenant.v1.GetInstallsForMultipleSitesResponse
9487
+ 29, // 127: lansweeper.multitenant.v1.Multitenant.GetInstallsById:output_type -> lansweeper.multitenant.v1.GetInstallsByIdResponse
9488
+ 27, // 128: lansweeper.multitenant.v1.Multitenant.GetInstallsCountBySite:output_type -> lansweeper.multitenant.v1.GetInstallsCountResponse
9489
+ 38, // 129: lansweeper.multitenant.v1.Multitenant.GetInstallbyClientId:output_type -> lansweeper.multitenant.v1.GetInstallbyClientIdResponse
9490
+ 44, // 130: lansweeper.multitenant.v1.Multitenant.UpdateInstallByClientId:output_type -> lansweeper.multitenant.v1.UpdateInstallByClientIdResponse
9491
+ 46, // 131: lansweeper.multitenant.v1.Multitenant.RotateInstallByClientId:output_type -> lansweeper.multitenant.v1.RotateInstallByClientIdResponse
9492
+ 50, // 132: lansweeper.multitenant.v1.Multitenant.LinkTrialInstallByClientId:output_type -> lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse
9493
+ 48, // 133: lansweeper.multitenant.v1.Multitenant.UnlinkInstallByClientId:output_type -> lansweeper.multitenant.v1.UnlinkInstallByClientIdResponse
9494
+ 52, // 134: lansweeper.multitenant.v1.Multitenant.RemoveInstallDataBySiteId:output_type -> lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse
9495
+ 54, // 135: lansweeper.multitenant.v1.Multitenant.GetDuplicatedInstallsByGlobalId:output_type -> lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdResponse
9496
+ 56, // 136: lansweeper.multitenant.v1.Multitenant.GetUserPermissions:output_type -> lansweeper.multitenant.v1.GetUserPermissionsResponse
9497
+ 58, // 137: lansweeper.multitenant.v1.Multitenant.ValidateApplicationPersonalAccessToken:output_type -> lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenResponse
9498
+ 60, // 138: lansweeper.multitenant.v1.Multitenant.SendDisabledWebhookEmail:output_type -> lansweeper.multitenant.v1.DisableWebhookEmailResponse
9499
+ 63, // 139: lansweeper.multitenant.v1.Multitenant.GetAuthorizedSitesByApplicationId:output_type -> lansweeper.multitenant.v1.AuthorizedSitesResponse
9500
+ 65, // 140: lansweeper.multitenant.v1.Multitenant.GetAccountIdsBySiteId:output_type -> lansweeper.multitenant.v1.GetAccountIdsBySiteIdResponse
9501
+ 67, // 141: lansweeper.multitenant.v1.Multitenant.CheckManagerInApplication:output_type -> lansweeper.multitenant.v1.CheckManagerInApplicationResponse
9502
+ 70, // 142: lansweeper.multitenant.v1.Multitenant.UpdateSiteSubscription:output_type -> lansweeper.multitenant.v1.UpdateSiteSubscriptionResponse
9503
+ 72, // 143: lansweeper.multitenant.v1.Multitenant.CreateTrialSiteAndInstaller:output_type -> lansweeper.multitenant.v1.CreateTrialSiteAndInstallerResponse
9504
+ 74, // 144: lansweeper.multitenant.v1.Multitenant.GetInstallationLicenseByClientId:output_type -> lansweeper.multitenant.v1.GetInstallationLicenseByClientIdResponse
9505
+ 78, // 145: lansweeper.multitenant.v1.Multitenant.AllProfilesExist:output_type -> lansweeper.multitenant.v1.AllProfilesExistResponse
9506
+ 80, // 146: lansweeper.multitenant.v1.Multitenant.SendInviteLocalUsersMail:output_type -> lansweeper.multitenant.v1.SendInviteLocalUsersMailResponse
9507
+ 76, // 147: lansweeper.multitenant.v1.Multitenant.AllProfileExists:output_type -> lansweeper.multitenant.v1.AllProfileExistsResponse
9508
+ 82, // 148: lansweeper.multitenant.v1.Multitenant.CreateLinkingCode:output_type -> lansweeper.multitenant.v1.CreateLinkingCodeResponse
9509
+ 83, // 149: lansweeper.multitenant.v1.Multitenant.GetSiteIdsWithIntegrationBySiteId:output_type -> lansweeper.multitenant.v1.GetSiteIdsWithIntegrationData
9510
+ 85, // 150: lansweeper.multitenant.v1.Multitenant.CheckStandardizedSoftwareEnabled:output_type -> lansweeper.multitenant.v1.CheckStandardizedSoftwareEnabledResponse
9511
+ 87, // 151: lansweeper.multitenant.v1.Multitenant.UpdateSiteMetadata:output_type -> lansweeper.multitenant.v1.UpdateSiteMetadataResponse
9512
+ 91, // 152: lansweeper.multitenant.v1.Multitenant.GetSiteLimits:output_type -> lansweeper.multitenant.v1.GetSiteLimitsResponse
9513
+ 105, // 153: lansweeper.multitenant.v1.Multitenant.GetMsmpOrganizationList:output_type -> lansweeper.multitenant.v1.GetMsmpOrganizationListResponse
9514
+ 107, // 154: lansweeper.multitenant.v1.Multitenant.GetMsmpOrganizationAccount:output_type -> lansweeper.multitenant.v1.GetMsmpOrganizationAccountResponse
9515
+ 109, // 155: lansweeper.multitenant.v1.Multitenant.GetSitesByMsmpOrganizationId:output_type -> lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdResponse
9516
+ 31, // 156: lansweeper.multitenant.v1.Multitenant.GetInstallsByExternalIds:output_type -> lansweeper.multitenant.v1.GetInstallsByExternalIdsResponse
9517
+ 135, // 157: lansweeper.multitenant.v1.Multitenant.SetEnabledCustomFieldsFederation:output_type -> google.protobuf.Empty
9518
+ 113, // 158: lansweeper.multitenant.v1.Multitenant.IsCustomFieldsFederationEnabled:output_type -> lansweeper.multitenant.v1.IsCustomFieldsFederationEnabledResponse
9519
+ 114, // 159: lansweeper.multitenant.v1.Multitenant.IsMetadataFieldsFederationEnabled:output_type -> lansweeper.multitenant.v1.IsMetadataFieldsFederationEnabledResponse
9520
+ 116, // 160: lansweeper.multitenant.v1.Multitenant.GetSitePreview:output_type -> lansweeper.multitenant.v1.GetSitePreviewResponse
9521
+ 89, // 161: lansweeper.multitenant.v1.Multitenant.UpdateSiteSkipDataExport:output_type -> lansweeper.multitenant.v1.UpdateSiteSkipDataExportResponse
9522
+ 95, // 162: lansweeper.multitenant.v1.Multitenant.GetSiteHierarchyIds:output_type -> lansweeper.multitenant.v1.GetSiteHierarchyIdsResponse
9523
+ 101, // 163: lansweeper.multitenant.v1.Multitenant.GetSites:output_type -> lansweeper.multitenant.v1.GetSitesResponse
9524
+ 118, // 164: lansweeper.multitenant.v1.Multitenant.CreateOwnerPersonalAccessToken:output_type -> lansweeper.multitenant.v1.CreateOwnerPersonalAccessTokenResponse
9525
+ 120, // 165: lansweeper.multitenant.v1.Multitenant.GetInstallationSettings:output_type -> lansweeper.multitenant.v1.GetInstallationSettingsResponse
9526
+ 115, // [115:166] is the sub-list for method output_type
9527
+ 64, // [64:115] is the sub-list for method input_type
9528
+ 64, // [64:64] is the sub-list for extension type_name
9529
+ 64, // [64:64] is the sub-list for extension extendee
9530
+ 0, // [0:64] is the sub-list for field type_name
9395
9531
  }
9396
9532
 
9397
9533
  func init() { file_multitenant_proto_init() }
@@ -10493,7 +10629,7 @@ func file_multitenant_proto_init() {
10493
10629
  }
10494
10630
  }
10495
10631
  file_multitenant_proto_msgTypes[91].Exporter = func(v any, i int) any {
10496
- switch v := v.(*GetSitesIdsWithFederationRequest); i {
10632
+ switch v := v.(*GetSitesOptions); i {
10497
10633
  case 0:
10498
10634
  return &v.state
10499
10635
  case 1:
@@ -10505,7 +10641,7 @@ func file_multitenant_proto_init() {
10505
10641
  }
10506
10642
  }
10507
10643
  file_multitenant_proto_msgTypes[92].Exporter = func(v any, i int) any {
10508
- switch v := v.(*SitesIdsWithFederationItem); i {
10644
+ switch v := v.(*GetSitesRequest); i {
10509
10645
  case 0:
10510
10646
  return &v.state
10511
10647
  case 1:
@@ -10517,7 +10653,7 @@ func file_multitenant_proto_init() {
10517
10653
  }
10518
10654
  }
10519
10655
  file_multitenant_proto_msgTypes[93].Exporter = func(v any, i int) any {
10520
- switch v := v.(*SitesIdsWithFederationPageInfo); i {
10656
+ switch v := v.(*GetSitesItemsMetadata); i {
10521
10657
  case 0:
10522
10658
  return &v.state
10523
10659
  case 1:
@@ -10529,7 +10665,7 @@ func file_multitenant_proto_init() {
10529
10665
  }
10530
10666
  }
10531
10667
  file_multitenant_proto_msgTypes[94].Exporter = func(v any, i int) any {
10532
- switch v := v.(*GetSitesIdsWithFederationResponse); i {
10668
+ switch v := v.(*GetSitesItems); i {
10533
10669
  case 0:
10534
10670
  return &v.state
10535
10671
  case 1:
@@ -10541,7 +10677,7 @@ func file_multitenant_proto_init() {
10541
10677
  }
10542
10678
  }
10543
10679
  file_multitenant_proto_msgTypes[95].Exporter = func(v any, i int) any {
10544
- switch v := v.(*MsmpPagination); i {
10680
+ switch v := v.(*GetSitesPageInfo); i {
10545
10681
  case 0:
10546
10682
  return &v.state
10547
10683
  case 1:
@@ -10553,7 +10689,7 @@ func file_multitenant_proto_init() {
10553
10689
  }
10554
10690
  }
10555
10691
  file_multitenant_proto_msgTypes[96].Exporter = func(v any, i int) any {
10556
- switch v := v.(*MsmpPaginationInfo); i {
10692
+ switch v := v.(*GetSitesResponse); i {
10557
10693
  case 0:
10558
10694
  return &v.state
10559
10695
  case 1:
@@ -10565,7 +10701,7 @@ func file_multitenant_proto_init() {
10565
10701
  }
10566
10702
  }
10567
10703
  file_multitenant_proto_msgTypes[97].Exporter = func(v any, i int) any {
10568
- switch v := v.(*GetMsmpOrganizationListRequest); i {
10704
+ switch v := v.(*MsmpPagination); i {
10569
10705
  case 0:
10570
10706
  return &v.state
10571
10707
  case 1:
@@ -10577,7 +10713,7 @@ func file_multitenant_proto_init() {
10577
10713
  }
10578
10714
  }
10579
10715
  file_multitenant_proto_msgTypes[98].Exporter = func(v any, i int) any {
10580
- switch v := v.(*GetMsmpOrganizationListResponse); i {
10716
+ switch v := v.(*MsmpPaginationInfo); i {
10581
10717
  case 0:
10582
10718
  return &v.state
10583
10719
  case 1:
@@ -10589,7 +10725,7 @@ func file_multitenant_proto_init() {
10589
10725
  }
10590
10726
  }
10591
10727
  file_multitenant_proto_msgTypes[99].Exporter = func(v any, i int) any {
10592
- switch v := v.(*GetMsmpOrganizationAccountRequest); i {
10728
+ switch v := v.(*GetMsmpOrganizationListRequest); i {
10593
10729
  case 0:
10594
10730
  return &v.state
10595
10731
  case 1:
@@ -10601,7 +10737,7 @@ func file_multitenant_proto_init() {
10601
10737
  }
10602
10738
  }
10603
10739
  file_multitenant_proto_msgTypes[100].Exporter = func(v any, i int) any {
10604
- switch v := v.(*GetMsmpOrganizationAccountResponse); i {
10740
+ switch v := v.(*GetMsmpOrganizationListResponse); i {
10605
10741
  case 0:
10606
10742
  return &v.state
10607
10743
  case 1:
@@ -10613,7 +10749,7 @@ func file_multitenant_proto_init() {
10613
10749
  }
10614
10750
  }
10615
10751
  file_multitenant_proto_msgTypes[101].Exporter = func(v any, i int) any {
10616
- switch v := v.(*GetSitesByMsmpOrganizationIdRequest); i {
10752
+ switch v := v.(*GetMsmpOrganizationAccountRequest); i {
10617
10753
  case 0:
10618
10754
  return &v.state
10619
10755
  case 1:
@@ -10625,7 +10761,7 @@ func file_multitenant_proto_init() {
10625
10761
  }
10626
10762
  }
10627
10763
  file_multitenant_proto_msgTypes[102].Exporter = func(v any, i int) any {
10628
- switch v := v.(*GetSitesByMsmpOrganizationIdResponse); i {
10764
+ switch v := v.(*GetMsmpOrganizationAccountResponse); i {
10629
10765
  case 0:
10630
10766
  return &v.state
10631
10767
  case 1:
@@ -10637,7 +10773,7 @@ func file_multitenant_proto_init() {
10637
10773
  }
10638
10774
  }
10639
10775
  file_multitenant_proto_msgTypes[103].Exporter = func(v any, i int) any {
10640
- switch v := v.(*SetEnabledCustomFieldsFederationRequest); i {
10776
+ switch v := v.(*GetSitesByMsmpOrganizationIdRequest); i {
10641
10777
  case 0:
10642
10778
  return &v.state
10643
10779
  case 1:
@@ -10649,7 +10785,7 @@ func file_multitenant_proto_init() {
10649
10785
  }
10650
10786
  }
10651
10787
  file_multitenant_proto_msgTypes[104].Exporter = func(v any, i int) any {
10652
- switch v := v.(*IsCustomFieldsFederationEnabledRequest); i {
10788
+ switch v := v.(*GetSitesByMsmpOrganizationIdResponse); i {
10653
10789
  case 0:
10654
10790
  return &v.state
10655
10791
  case 1:
@@ -10661,7 +10797,7 @@ func file_multitenant_proto_init() {
10661
10797
  }
10662
10798
  }
10663
10799
  file_multitenant_proto_msgTypes[105].Exporter = func(v any, i int) any {
10664
- switch v := v.(*IsMetadataFieldsFederationEnabledRequest); i {
10800
+ switch v := v.(*SetEnabledCustomFieldsFederationRequest); i {
10665
10801
  case 0:
10666
10802
  return &v.state
10667
10803
  case 1:
@@ -10673,7 +10809,7 @@ func file_multitenant_proto_init() {
10673
10809
  }
10674
10810
  }
10675
10811
  file_multitenant_proto_msgTypes[106].Exporter = func(v any, i int) any {
10676
- switch v := v.(*IsCustomFieldsFederationEnabledResponse); i {
10812
+ switch v := v.(*IsCustomFieldsFederationEnabledRequest); i {
10677
10813
  case 0:
10678
10814
  return &v.state
10679
10815
  case 1:
@@ -10685,7 +10821,7 @@ func file_multitenant_proto_init() {
10685
10821
  }
10686
10822
  }
10687
10823
  file_multitenant_proto_msgTypes[107].Exporter = func(v any, i int) any {
10688
- switch v := v.(*IsMetadataFieldsFederationEnabledResponse); i {
10824
+ switch v := v.(*IsMetadataFieldsFederationEnabledRequest); i {
10689
10825
  case 0:
10690
10826
  return &v.state
10691
10827
  case 1:
@@ -10697,7 +10833,7 @@ func file_multitenant_proto_init() {
10697
10833
  }
10698
10834
  }
10699
10835
  file_multitenant_proto_msgTypes[108].Exporter = func(v any, i int) any {
10700
- switch v := v.(*GetSitePreviewRequest); i {
10836
+ switch v := v.(*IsCustomFieldsFederationEnabledResponse); i {
10701
10837
  case 0:
10702
10838
  return &v.state
10703
10839
  case 1:
@@ -10709,7 +10845,7 @@ func file_multitenant_proto_init() {
10709
10845
  }
10710
10846
  }
10711
10847
  file_multitenant_proto_msgTypes[109].Exporter = func(v any, i int) any {
10712
- switch v := v.(*GetSitePreviewResponse); i {
10848
+ switch v := v.(*IsMetadataFieldsFederationEnabledResponse); i {
10713
10849
  case 0:
10714
10850
  return &v.state
10715
10851
  case 1:
@@ -10721,7 +10857,7 @@ func file_multitenant_proto_init() {
10721
10857
  }
10722
10858
  }
10723
10859
  file_multitenant_proto_msgTypes[110].Exporter = func(v any, i int) any {
10724
- switch v := v.(*CreateOwnerPersonalAccessTokenRequest); i {
10860
+ switch v := v.(*GetSitePreviewRequest); i {
10725
10861
  case 0:
10726
10862
  return &v.state
10727
10863
  case 1:
@@ -10733,7 +10869,7 @@ func file_multitenant_proto_init() {
10733
10869
  }
10734
10870
  }
10735
10871
  file_multitenant_proto_msgTypes[111].Exporter = func(v any, i int) any {
10736
- switch v := v.(*CreateOwnerPersonalAccessTokenResponse); i {
10872
+ switch v := v.(*GetSitePreviewResponse); i {
10737
10873
  case 0:
10738
10874
  return &v.state
10739
10875
  case 1:
@@ -10745,7 +10881,7 @@ func file_multitenant_proto_init() {
10745
10881
  }
10746
10882
  }
10747
10883
  file_multitenant_proto_msgTypes[112].Exporter = func(v any, i int) any {
10748
- switch v := v.(*GetInstallationSettingsRequest); i {
10884
+ switch v := v.(*CreateOwnerPersonalAccessTokenRequest); i {
10749
10885
  case 0:
10750
10886
  return &v.state
10751
10887
  case 1:
@@ -10757,7 +10893,7 @@ func file_multitenant_proto_init() {
10757
10893
  }
10758
10894
  }
10759
10895
  file_multitenant_proto_msgTypes[113].Exporter = func(v any, i int) any {
10760
- switch v := v.(*GetInstallationSettingsResponse); i {
10896
+ switch v := v.(*CreateOwnerPersonalAccessTokenResponse); i {
10761
10897
  case 0:
10762
10898
  return &v.state
10763
10899
  case 1:
@@ -10769,7 +10905,7 @@ func file_multitenant_proto_init() {
10769
10905
  }
10770
10906
  }
10771
10907
  file_multitenant_proto_msgTypes[114].Exporter = func(v any, i int) any {
10772
- switch v := v.(*CheckAccessToSiteByAccountIdRequest_UserInfo); i {
10908
+ switch v := v.(*GetInstallationSettingsRequest); i {
10773
10909
  case 0:
10774
10910
  return &v.state
10775
10911
  case 1:
@@ -10781,7 +10917,7 @@ func file_multitenant_proto_init() {
10781
10917
  }
10782
10918
  }
10783
10919
  file_multitenant_proto_msgTypes[115].Exporter = func(v any, i int) any {
10784
- switch v := v.(*Install_InstallState); i {
10920
+ switch v := v.(*GetInstallationSettingsResponse); i {
10785
10921
  case 0:
10786
10922
  return &v.state
10787
10923
  case 1:
@@ -10793,7 +10929,7 @@ func file_multitenant_proto_init() {
10793
10929
  }
10794
10930
  }
10795
10931
  file_multitenant_proto_msgTypes[116].Exporter = func(v any, i int) any {
10796
- switch v := v.(*GetInstallsBySiteRequest_Filter); i {
10932
+ switch v := v.(*CheckAccessToSiteByAccountIdRequest_UserInfo); i {
10797
10933
  case 0:
10798
10934
  return &v.state
10799
10935
  case 1:
@@ -10805,7 +10941,7 @@ func file_multitenant_proto_init() {
10805
10941
  }
10806
10942
  }
10807
10943
  file_multitenant_proto_msgTypes[117].Exporter = func(v any, i int) any {
10808
- switch v := v.(*UpdateInstallByClientIdRequest_SyncerSettings); i {
10944
+ switch v := v.(*Install_InstallState); i {
10809
10945
  case 0:
10810
10946
  return &v.state
10811
10947
  case 1:
@@ -10817,7 +10953,7 @@ func file_multitenant_proto_init() {
10817
10953
  }
10818
10954
  }
10819
10955
  file_multitenant_proto_msgTypes[118].Exporter = func(v any, i int) any {
10820
- switch v := v.(*RemoveInstallDataBySiteIdResponse_Result); i {
10956
+ switch v := v.(*GetInstallsBySiteRequest_Filter); i {
10821
10957
  case 0:
10822
10958
  return &v.state
10823
10959
  case 1:
@@ -10829,7 +10965,7 @@ func file_multitenant_proto_init() {
10829
10965
  }
10830
10966
  }
10831
10967
  file_multitenant_proto_msgTypes[119].Exporter = func(v any, i int) any {
10832
- switch v := v.(*GetUserPermissionsResponse_AuthorizationAction); i {
10968
+ switch v := v.(*UpdateInstallByClientIdRequest_SyncerSettings); i {
10833
10969
  case 0:
10834
10970
  return &v.state
10835
10971
  case 1:
@@ -10841,7 +10977,7 @@ func file_multitenant_proto_init() {
10841
10977
  }
10842
10978
  }
10843
10979
  file_multitenant_proto_msgTypes[120].Exporter = func(v any, i int) any {
10844
- switch v := v.(*GetUserPermissionsResponse_Scope); i {
10980
+ switch v := v.(*RemoveInstallDataBySiteIdResponse_Result); i {
10845
10981
  case 0:
10846
10982
  return &v.state
10847
10983
  case 1:
@@ -10853,7 +10989,7 @@ func file_multitenant_proto_init() {
10853
10989
  }
10854
10990
  }
10855
10991
  file_multitenant_proto_msgTypes[121].Exporter = func(v any, i int) any {
10856
- switch v := v.(*GetUserPermissionsResponse_Role); i {
10992
+ switch v := v.(*GetUserPermissionsResponse_AuthorizationAction); i {
10857
10993
  case 0:
10858
10994
  return &v.state
10859
10995
  case 1:
@@ -10865,7 +11001,19 @@ func file_multitenant_proto_init() {
10865
11001
  }
10866
11002
  }
10867
11003
  file_multitenant_proto_msgTypes[122].Exporter = func(v any, i int) any {
10868
- switch v := v.(*DisableWebhookEmailRequest_WebhookError); i {
11004
+ switch v := v.(*GetUserPermissionsResponse_Scope); i {
11005
+ case 0:
11006
+ return &v.state
11007
+ case 1:
11008
+ return &v.sizeCache
11009
+ case 2:
11010
+ return &v.unknownFields
11011
+ default:
11012
+ return nil
11013
+ }
11014
+ }
11015
+ file_multitenant_proto_msgTypes[123].Exporter = func(v any, i int) any {
11016
+ switch v := v.(*GetUserPermissionsResponse_Role); i {
10869
11017
  case 0:
10870
11018
  return &v.state
10871
11019
  case 1:
@@ -10877,6 +11025,18 @@ func file_multitenant_proto_init() {
10877
11025
  }
10878
11026
  }
10879
11027
  file_multitenant_proto_msgTypes[124].Exporter = func(v any, i int) any {
11028
+ switch v := v.(*DisableWebhookEmailRequest_WebhookError); i {
11029
+ case 0:
11030
+ return &v.state
11031
+ case 1:
11032
+ return &v.sizeCache
11033
+ case 2:
11034
+ return &v.unknownFields
11035
+ default:
11036
+ return nil
11037
+ }
11038
+ }
11039
+ file_multitenant_proto_msgTypes[126].Exporter = func(v any, i int) any {
10880
11040
  switch v := v.(*GetMsmpOrganizationListRequest_MsmpPaginationRequest); i {
10881
11041
  case 0:
10882
11042
  return &v.state
@@ -10888,7 +11048,7 @@ func file_multitenant_proto_init() {
10888
11048
  return nil
10889
11049
  }
10890
11050
  }
10891
- file_multitenant_proto_msgTypes[125].Exporter = func(v any, i int) any {
11051
+ file_multitenant_proto_msgTypes[127].Exporter = func(v any, i int) any {
10892
11052
  switch v := v.(*GetMsmpOrganizationListResponse_MsmpOrganization); i {
10893
11053
  case 0:
10894
11054
  return &v.state
@@ -10900,7 +11060,7 @@ func file_multitenant_proto_init() {
10900
11060
  return nil
10901
11061
  }
10902
11062
  }
10903
- file_multitenant_proto_msgTypes[126].Exporter = func(v any, i int) any {
11063
+ file_multitenant_proto_msgTypes[128].Exporter = func(v any, i int) any {
10904
11064
  switch v := v.(*GetMsmpOrganizationListResponse_MsmpPageInfo); i {
10905
11065
  case 0:
10906
11066
  return &v.state
@@ -10918,14 +11078,16 @@ func file_multitenant_proto_init() {
10918
11078
  }
10919
11079
  file_multitenant_proto_msgTypes[87].OneofWrappers = []any{}
10920
11080
  file_multitenant_proto_msgTypes[91].OneofWrappers = []any{}
10921
- file_multitenant_proto_msgTypes[110].OneofWrappers = []any{}
11081
+ file_multitenant_proto_msgTypes[92].OneofWrappers = []any{}
11082
+ file_multitenant_proto_msgTypes[94].OneofWrappers = []any{}
11083
+ file_multitenant_proto_msgTypes[112].OneofWrappers = []any{}
10922
11084
  type x struct{}
10923
11085
  out := protoimpl.TypeBuilder{
10924
11086
  File: protoimpl.DescBuilder{
10925
11087
  GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
10926
11088
  RawDescriptor: file_multitenant_proto_rawDesc,
10927
11089
  NumEnums: 5,
10928
- NumMessages: 127,
11090
+ NumMessages: 129,
10929
11091
  NumExtensions: 0,
10930
11092
  NumServices: 1,
10931
11093
  },