command.pb.go 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572
  1. package command
  2. import (
  3. subscription "github.com/v2fly/v2ray-core/v5/app/subscription"
  4. _ "github.com/v2fly/v2ray-core/v5/common/protoext"
  5. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  6. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  7. reflect "reflect"
  8. sync "sync"
  9. )
  10. const (
  11. // Verify that this generated code is sufficiently up-to-date.
  12. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  13. // Verify that runtime/protoimpl is sufficiently up-to-date.
  14. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  15. )
  16. type ListTrackedSubscriptionRequest struct {
  17. state protoimpl.MessageState `protogen:"open.v1"`
  18. unknownFields protoimpl.UnknownFields
  19. sizeCache protoimpl.SizeCache
  20. }
  21. func (x *ListTrackedSubscriptionRequest) Reset() {
  22. *x = ListTrackedSubscriptionRequest{}
  23. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[0]
  24. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  25. ms.StoreMessageInfo(mi)
  26. }
  27. func (x *ListTrackedSubscriptionRequest) String() string {
  28. return protoimpl.X.MessageStringOf(x)
  29. }
  30. func (*ListTrackedSubscriptionRequest) ProtoMessage() {}
  31. func (x *ListTrackedSubscriptionRequest) ProtoReflect() protoreflect.Message {
  32. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[0]
  33. if x != nil {
  34. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  35. if ms.LoadMessageInfo() == nil {
  36. ms.StoreMessageInfo(mi)
  37. }
  38. return ms
  39. }
  40. return mi.MessageOf(x)
  41. }
  42. // Deprecated: Use ListTrackedSubscriptionRequest.ProtoReflect.Descriptor instead.
  43. func (*ListTrackedSubscriptionRequest) Descriptor() ([]byte, []int) {
  44. return file_app_subscription_subscriptionmanager_command_command_proto_rawDescGZIP(), []int{0}
  45. }
  46. type ListTrackedSubscriptionResponse struct {
  47. state protoimpl.MessageState `protogen:"open.v1"`
  48. Names []string `protobuf:"bytes,1,rep,name=names,proto3" json:"names,omitempty"`
  49. unknownFields protoimpl.UnknownFields
  50. sizeCache protoimpl.SizeCache
  51. }
  52. func (x *ListTrackedSubscriptionResponse) Reset() {
  53. *x = ListTrackedSubscriptionResponse{}
  54. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[1]
  55. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  56. ms.StoreMessageInfo(mi)
  57. }
  58. func (x *ListTrackedSubscriptionResponse) String() string {
  59. return protoimpl.X.MessageStringOf(x)
  60. }
  61. func (*ListTrackedSubscriptionResponse) ProtoMessage() {}
  62. func (x *ListTrackedSubscriptionResponse) ProtoReflect() protoreflect.Message {
  63. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[1]
  64. if x != nil {
  65. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  66. if ms.LoadMessageInfo() == nil {
  67. ms.StoreMessageInfo(mi)
  68. }
  69. return ms
  70. }
  71. return mi.MessageOf(x)
  72. }
  73. // Deprecated: Use ListTrackedSubscriptionResponse.ProtoReflect.Descriptor instead.
  74. func (*ListTrackedSubscriptionResponse) Descriptor() ([]byte, []int) {
  75. return file_app_subscription_subscriptionmanager_command_command_proto_rawDescGZIP(), []int{1}
  76. }
  77. func (x *ListTrackedSubscriptionResponse) GetNames() []string {
  78. if x != nil {
  79. return x.Names
  80. }
  81. return nil
  82. }
  83. type AddTrackedSubscriptionRequest struct {
  84. state protoimpl.MessageState `protogen:"open.v1"`
  85. Source *subscription.ImportSource `protobuf:"bytes,1,opt,name=source,proto3" json:"source,omitempty"`
  86. unknownFields protoimpl.UnknownFields
  87. sizeCache protoimpl.SizeCache
  88. }
  89. func (x *AddTrackedSubscriptionRequest) Reset() {
  90. *x = AddTrackedSubscriptionRequest{}
  91. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[2]
  92. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  93. ms.StoreMessageInfo(mi)
  94. }
  95. func (x *AddTrackedSubscriptionRequest) String() string {
  96. return protoimpl.X.MessageStringOf(x)
  97. }
  98. func (*AddTrackedSubscriptionRequest) ProtoMessage() {}
  99. func (x *AddTrackedSubscriptionRequest) ProtoReflect() protoreflect.Message {
  100. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[2]
  101. if x != nil {
  102. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  103. if ms.LoadMessageInfo() == nil {
  104. ms.StoreMessageInfo(mi)
  105. }
  106. return ms
  107. }
  108. return mi.MessageOf(x)
  109. }
  110. // Deprecated: Use AddTrackedSubscriptionRequest.ProtoReflect.Descriptor instead.
  111. func (*AddTrackedSubscriptionRequest) Descriptor() ([]byte, []int) {
  112. return file_app_subscription_subscriptionmanager_command_command_proto_rawDescGZIP(), []int{2}
  113. }
  114. func (x *AddTrackedSubscriptionRequest) GetSource() *subscription.ImportSource {
  115. if x != nil {
  116. return x.Source
  117. }
  118. return nil
  119. }
  120. type AddTrackedSubscriptionResponse struct {
  121. state protoimpl.MessageState `protogen:"open.v1"`
  122. unknownFields protoimpl.UnknownFields
  123. sizeCache protoimpl.SizeCache
  124. }
  125. func (x *AddTrackedSubscriptionResponse) Reset() {
  126. *x = AddTrackedSubscriptionResponse{}
  127. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[3]
  128. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  129. ms.StoreMessageInfo(mi)
  130. }
  131. func (x *AddTrackedSubscriptionResponse) String() string {
  132. return protoimpl.X.MessageStringOf(x)
  133. }
  134. func (*AddTrackedSubscriptionResponse) ProtoMessage() {}
  135. func (x *AddTrackedSubscriptionResponse) ProtoReflect() protoreflect.Message {
  136. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[3]
  137. if x != nil {
  138. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  139. if ms.LoadMessageInfo() == nil {
  140. ms.StoreMessageInfo(mi)
  141. }
  142. return ms
  143. }
  144. return mi.MessageOf(x)
  145. }
  146. // Deprecated: Use AddTrackedSubscriptionResponse.ProtoReflect.Descriptor instead.
  147. func (*AddTrackedSubscriptionResponse) Descriptor() ([]byte, []int) {
  148. return file_app_subscription_subscriptionmanager_command_command_proto_rawDescGZIP(), []int{3}
  149. }
  150. type RemoveTrackedSubscriptionRequest struct {
  151. state protoimpl.MessageState `protogen:"open.v1"`
  152. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  153. unknownFields protoimpl.UnknownFields
  154. sizeCache protoimpl.SizeCache
  155. }
  156. func (x *RemoveTrackedSubscriptionRequest) Reset() {
  157. *x = RemoveTrackedSubscriptionRequest{}
  158. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[4]
  159. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  160. ms.StoreMessageInfo(mi)
  161. }
  162. func (x *RemoveTrackedSubscriptionRequest) String() string {
  163. return protoimpl.X.MessageStringOf(x)
  164. }
  165. func (*RemoveTrackedSubscriptionRequest) ProtoMessage() {}
  166. func (x *RemoveTrackedSubscriptionRequest) ProtoReflect() protoreflect.Message {
  167. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[4]
  168. if x != nil {
  169. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  170. if ms.LoadMessageInfo() == nil {
  171. ms.StoreMessageInfo(mi)
  172. }
  173. return ms
  174. }
  175. return mi.MessageOf(x)
  176. }
  177. // Deprecated: Use RemoveTrackedSubscriptionRequest.ProtoReflect.Descriptor instead.
  178. func (*RemoveTrackedSubscriptionRequest) Descriptor() ([]byte, []int) {
  179. return file_app_subscription_subscriptionmanager_command_command_proto_rawDescGZIP(), []int{4}
  180. }
  181. func (x *RemoveTrackedSubscriptionRequest) GetName() string {
  182. if x != nil {
  183. return x.Name
  184. }
  185. return ""
  186. }
  187. type RemoveTrackedSubscriptionResponse struct {
  188. state protoimpl.MessageState `protogen:"open.v1"`
  189. unknownFields protoimpl.UnknownFields
  190. sizeCache protoimpl.SizeCache
  191. }
  192. func (x *RemoveTrackedSubscriptionResponse) Reset() {
  193. *x = RemoveTrackedSubscriptionResponse{}
  194. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[5]
  195. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  196. ms.StoreMessageInfo(mi)
  197. }
  198. func (x *RemoveTrackedSubscriptionResponse) String() string {
  199. return protoimpl.X.MessageStringOf(x)
  200. }
  201. func (*RemoveTrackedSubscriptionResponse) ProtoMessage() {}
  202. func (x *RemoveTrackedSubscriptionResponse) ProtoReflect() protoreflect.Message {
  203. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[5]
  204. if x != nil {
  205. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  206. if ms.LoadMessageInfo() == nil {
  207. ms.StoreMessageInfo(mi)
  208. }
  209. return ms
  210. }
  211. return mi.MessageOf(x)
  212. }
  213. // Deprecated: Use RemoveTrackedSubscriptionResponse.ProtoReflect.Descriptor instead.
  214. func (*RemoveTrackedSubscriptionResponse) Descriptor() ([]byte, []int) {
  215. return file_app_subscription_subscriptionmanager_command_command_proto_rawDescGZIP(), []int{5}
  216. }
  217. type GetTrackedSubscriptionStatusRequest struct {
  218. state protoimpl.MessageState `protogen:"open.v1"`
  219. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  220. unknownFields protoimpl.UnknownFields
  221. sizeCache protoimpl.SizeCache
  222. }
  223. func (x *GetTrackedSubscriptionStatusRequest) Reset() {
  224. *x = GetTrackedSubscriptionStatusRequest{}
  225. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[6]
  226. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  227. ms.StoreMessageInfo(mi)
  228. }
  229. func (x *GetTrackedSubscriptionStatusRequest) String() string {
  230. return protoimpl.X.MessageStringOf(x)
  231. }
  232. func (*GetTrackedSubscriptionStatusRequest) ProtoMessage() {}
  233. func (x *GetTrackedSubscriptionStatusRequest) ProtoReflect() protoreflect.Message {
  234. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[6]
  235. if x != nil {
  236. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  237. if ms.LoadMessageInfo() == nil {
  238. ms.StoreMessageInfo(mi)
  239. }
  240. return ms
  241. }
  242. return mi.MessageOf(x)
  243. }
  244. // Deprecated: Use GetTrackedSubscriptionStatusRequest.ProtoReflect.Descriptor instead.
  245. func (*GetTrackedSubscriptionStatusRequest) Descriptor() ([]byte, []int) {
  246. return file_app_subscription_subscriptionmanager_command_command_proto_rawDescGZIP(), []int{6}
  247. }
  248. func (x *GetTrackedSubscriptionStatusRequest) GetName() string {
  249. if x != nil {
  250. return x.Name
  251. }
  252. return ""
  253. }
  254. type GetTrackedSubscriptionStatusResponse struct {
  255. state protoimpl.MessageState `protogen:"open.v1"`
  256. Status *subscription.TrackedSubscriptionStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
  257. unknownFields protoimpl.UnknownFields
  258. sizeCache protoimpl.SizeCache
  259. }
  260. func (x *GetTrackedSubscriptionStatusResponse) Reset() {
  261. *x = GetTrackedSubscriptionStatusResponse{}
  262. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[7]
  263. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  264. ms.StoreMessageInfo(mi)
  265. }
  266. func (x *GetTrackedSubscriptionStatusResponse) String() string {
  267. return protoimpl.X.MessageStringOf(x)
  268. }
  269. func (*GetTrackedSubscriptionStatusResponse) ProtoMessage() {}
  270. func (x *GetTrackedSubscriptionStatusResponse) ProtoReflect() protoreflect.Message {
  271. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[7]
  272. if x != nil {
  273. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  274. if ms.LoadMessageInfo() == nil {
  275. ms.StoreMessageInfo(mi)
  276. }
  277. return ms
  278. }
  279. return mi.MessageOf(x)
  280. }
  281. // Deprecated: Use GetTrackedSubscriptionStatusResponse.ProtoReflect.Descriptor instead.
  282. func (*GetTrackedSubscriptionStatusResponse) Descriptor() ([]byte, []int) {
  283. return file_app_subscription_subscriptionmanager_command_command_proto_rawDescGZIP(), []int{7}
  284. }
  285. func (x *GetTrackedSubscriptionStatusResponse) GetStatus() *subscription.TrackedSubscriptionStatus {
  286. if x != nil {
  287. return x.Status
  288. }
  289. return nil
  290. }
  291. type Config struct {
  292. state protoimpl.MessageState `protogen:"open.v1"`
  293. unknownFields protoimpl.UnknownFields
  294. sizeCache protoimpl.SizeCache
  295. }
  296. func (x *Config) Reset() {
  297. *x = Config{}
  298. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[8]
  299. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  300. ms.StoreMessageInfo(mi)
  301. }
  302. func (x *Config) String() string {
  303. return protoimpl.X.MessageStringOf(x)
  304. }
  305. func (*Config) ProtoMessage() {}
  306. func (x *Config) ProtoReflect() protoreflect.Message {
  307. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[8]
  308. if x != nil {
  309. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  310. if ms.LoadMessageInfo() == nil {
  311. ms.StoreMessageInfo(mi)
  312. }
  313. return ms
  314. }
  315. return mi.MessageOf(x)
  316. }
  317. // Deprecated: Use Config.ProtoReflect.Descriptor instead.
  318. func (*Config) Descriptor() ([]byte, []int) {
  319. return file_app_subscription_subscriptionmanager_command_command_proto_rawDescGZIP(), []int{8}
  320. }
  321. var File_app_subscription_subscriptionmanager_command_command_proto protoreflect.FileDescriptor
  322. var file_app_subscription_subscriptionmanager_command_command_proto_rawDesc = []byte{
  323. 0x0a, 0x3a, 0x61, 0x70, 0x70, 0x2f, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
  324. 0x6f, 0x6e, 0x2f, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x6d,
  325. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2f, 0x63,
  326. 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x37, 0x76, 0x32,
  327. 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x73, 0x75, 0x62,
  328. 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72,
  329. 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e, 0x63, 0x6f,
  330. 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x1a, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x70, 0x72,
  331. 0x6f, 0x74, 0x6f, 0x65, 0x78, 0x74, 0x2f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  332. 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1d, 0x61, 0x70, 0x70, 0x2f, 0x73, 0x75, 0x62,
  333. 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
  334. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x27, 0x61, 0x70, 0x70, 0x2f, 0x73, 0x75, 0x62, 0x73,
  335. 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
  336. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x70, 0x63, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22,
  337. 0x20, 0x0a, 0x1e, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x75,
  338. 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  339. 0x74, 0x22, 0x37, 0x0a, 0x1f, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64,
  340. 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70,
  341. 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x01, 0x20,
  342. 0x03, 0x28, 0x09, 0x52, 0x05, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x22, 0x62, 0x0a, 0x1d, 0x41, 0x64,
  343. 0x64, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
  344. 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x41, 0x0a, 0x06, 0x73,
  345. 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x76, 0x32,
  346. 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x73, 0x75, 0x62,
  347. 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74,
  348. 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x22, 0x20,
  349. 0x0a, 0x1e, 0x41, 0x64, 0x64, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73,
  350. 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  351. 0x22, 0x36, 0x0a, 0x20, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65,
  352. 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71,
  353. 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01,
  354. 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x23, 0x0a, 0x21, 0x52, 0x65, 0x6d, 0x6f,
  355. 0x76, 0x65, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
  356. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x39, 0x0a,
  357. 0x23, 0x47, 0x65, 0x74, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63,
  358. 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71,
  359. 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01,
  360. 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x76, 0x0a, 0x24, 0x47, 0x65, 0x74, 0x54,
  361. 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
  362. 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  363. 0x12, 0x4e, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
  364. 0x32, 0x36, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70,
  365. 0x70, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x54,
  366. 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
  367. 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
  368. 0x22, 0x30, 0x0a, 0x06, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x3a, 0x26, 0x82, 0xb5, 0x18, 0x22,
  369. 0x0a, 0x0b, 0x67, 0x72, 0x70, 0x63, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x13, 0x73,
  370. 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
  371. 0x65, 0x72, 0x32, 0xf2, 0x06, 0x0a, 0x1a, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
  372. 0x69, 0x6f, 0x6e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63,
  373. 0x65, 0x12, 0xce, 0x01, 0x0a, 0x17, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65,
  374. 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x57, 0x2e,
  375. 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x73,
  376. 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x73, 0x75, 0x62, 0x73,
  377. 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e,
  378. 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x72, 0x61, 0x63,
  379. 0x6b, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52,
  380. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x58, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63,
  381. 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
  382. 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
  383. 0x6e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64,
  384. 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73,
  385. 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  386. 0x22, 0x00, 0x12, 0xcb, 0x01, 0x0a, 0x16, 0x41, 0x64, 0x64, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65,
  387. 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x56, 0x2e,
  388. 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x73,
  389. 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x73, 0x75, 0x62, 0x73,
  390. 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e,
  391. 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x41, 0x64, 0x64, 0x54, 0x72, 0x61, 0x63, 0x6b,
  392. 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65,
  393. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x57, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f,
  394. 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
  395. 0x69, 0x6f, 0x6e, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  396. 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e,
  397. 0x41, 0x64, 0x64, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72,
  398. 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
  399. 0x12, 0xd4, 0x01, 0x0a, 0x19, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x54, 0x72, 0x61, 0x63, 0x6b,
  400. 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x59,
  401. 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e,
  402. 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x73, 0x75, 0x62,
  403. 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  404. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x54,
  405. 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
  406. 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x5a, 0x2e, 0x76, 0x32, 0x72, 0x61,
  407. 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63,
  408. 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
  409. 0x74, 0x69, 0x6f, 0x6e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  410. 0x61, 0x6e, 0x64, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65,
  411. 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73,
  412. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xdd, 0x01, 0x0a, 0x1c, 0x47, 0x65, 0x74, 0x54,
  413. 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
  414. 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x5c, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79,
  415. 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72,
  416. 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
  417. 0x69, 0x6f, 0x6e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61,
  418. 0x6e, 0x64, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x75, 0x62,
  419. 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
  420. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x5d, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63,
  421. 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
  422. 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
  423. 0x6e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64,
  424. 0x2e, 0x47, 0x65, 0x74, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63,
  425. 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73,
  426. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0xc2, 0x01, 0x0a, 0x37, 0x63, 0x6f, 0x6d, 0x2e,
  427. 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63,
  428. 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
  429. 0x74, 0x69, 0x6f, 0x6e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  430. 0x61, 0x6e, 0x64, 0x50, 0x01, 0x5a, 0x4b, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f,
  431. 0x6d, 0x2f, 0x76, 0x32, 0x66, 0x6c, 0x79, 0x2f, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2d, 0x63, 0x6f,
  432. 0x72, 0x65, 0x2f, 0x76, 0x35, 0x2f, 0x61, 0x70, 0x70, 0x2f, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72,
  433. 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
  434. 0x69, 0x6f, 0x6e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x61,
  435. 0x6e, 0x64, 0xaa, 0x02, 0x37, 0x56, 0x32, 0x52, 0x61, 0x79, 0x2e, 0x43, 0x6f, 0x72, 0x65, 0x2e,
  436. 0x41, 0x70, 0x70, 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  437. 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x6d, 0x61, 0x6e,
  438. 0x61, 0x67, 0x65, 0x72, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x62, 0x06, 0x70, 0x72,
  439. 0x6f, 0x74, 0x6f, 0x33,
  440. }
  441. var (
  442. file_app_subscription_subscriptionmanager_command_command_proto_rawDescOnce sync.Once
  443. file_app_subscription_subscriptionmanager_command_command_proto_rawDescData = file_app_subscription_subscriptionmanager_command_command_proto_rawDesc
  444. )
  445. func file_app_subscription_subscriptionmanager_command_command_proto_rawDescGZIP() []byte {
  446. file_app_subscription_subscriptionmanager_command_command_proto_rawDescOnce.Do(func() {
  447. file_app_subscription_subscriptionmanager_command_command_proto_rawDescData = protoimpl.X.CompressGZIP(file_app_subscription_subscriptionmanager_command_command_proto_rawDescData)
  448. })
  449. return file_app_subscription_subscriptionmanager_command_command_proto_rawDescData
  450. }
  451. var file_app_subscription_subscriptionmanager_command_command_proto_msgTypes = make([]protoimpl.MessageInfo, 9)
  452. var file_app_subscription_subscriptionmanager_command_command_proto_goTypes = []any{
  453. (*ListTrackedSubscriptionRequest)(nil), // 0: v2ray.core.app.subscription.subscriptionmanager.command.ListTrackedSubscriptionRequest
  454. (*ListTrackedSubscriptionResponse)(nil), // 1: v2ray.core.app.subscription.subscriptionmanager.command.ListTrackedSubscriptionResponse
  455. (*AddTrackedSubscriptionRequest)(nil), // 2: v2ray.core.app.subscription.subscriptionmanager.command.AddTrackedSubscriptionRequest
  456. (*AddTrackedSubscriptionResponse)(nil), // 3: v2ray.core.app.subscription.subscriptionmanager.command.AddTrackedSubscriptionResponse
  457. (*RemoveTrackedSubscriptionRequest)(nil), // 4: v2ray.core.app.subscription.subscriptionmanager.command.RemoveTrackedSubscriptionRequest
  458. (*RemoveTrackedSubscriptionResponse)(nil), // 5: v2ray.core.app.subscription.subscriptionmanager.command.RemoveTrackedSubscriptionResponse
  459. (*GetTrackedSubscriptionStatusRequest)(nil), // 6: v2ray.core.app.subscription.subscriptionmanager.command.GetTrackedSubscriptionStatusRequest
  460. (*GetTrackedSubscriptionStatusResponse)(nil), // 7: v2ray.core.app.subscription.subscriptionmanager.command.GetTrackedSubscriptionStatusResponse
  461. (*Config)(nil), // 8: v2ray.core.app.subscription.subscriptionmanager.command.Config
  462. (*subscription.ImportSource)(nil), // 9: v2ray.core.app.subscription.ImportSource
  463. (*subscription.TrackedSubscriptionStatus)(nil), // 10: v2ray.core.app.subscription.TrackedSubscriptionStatus
  464. }
  465. var file_app_subscription_subscriptionmanager_command_command_proto_depIdxs = []int32{
  466. 9, // 0: v2ray.core.app.subscription.subscriptionmanager.command.AddTrackedSubscriptionRequest.source:type_name -> v2ray.core.app.subscription.ImportSource
  467. 10, // 1: v2ray.core.app.subscription.subscriptionmanager.command.GetTrackedSubscriptionStatusResponse.status:type_name -> v2ray.core.app.subscription.TrackedSubscriptionStatus
  468. 0, // 2: v2ray.core.app.subscription.subscriptionmanager.command.SubscriptionManagerService.ListTrackedSubscription:input_type -> v2ray.core.app.subscription.subscriptionmanager.command.ListTrackedSubscriptionRequest
  469. 2, // 3: v2ray.core.app.subscription.subscriptionmanager.command.SubscriptionManagerService.AddTrackedSubscription:input_type -> v2ray.core.app.subscription.subscriptionmanager.command.AddTrackedSubscriptionRequest
  470. 4, // 4: v2ray.core.app.subscription.subscriptionmanager.command.SubscriptionManagerService.RemoveTrackedSubscription:input_type -> v2ray.core.app.subscription.subscriptionmanager.command.RemoveTrackedSubscriptionRequest
  471. 6, // 5: v2ray.core.app.subscription.subscriptionmanager.command.SubscriptionManagerService.GetTrackedSubscriptionStatus:input_type -> v2ray.core.app.subscription.subscriptionmanager.command.GetTrackedSubscriptionStatusRequest
  472. 1, // 6: v2ray.core.app.subscription.subscriptionmanager.command.SubscriptionManagerService.ListTrackedSubscription:output_type -> v2ray.core.app.subscription.subscriptionmanager.command.ListTrackedSubscriptionResponse
  473. 3, // 7: v2ray.core.app.subscription.subscriptionmanager.command.SubscriptionManagerService.AddTrackedSubscription:output_type -> v2ray.core.app.subscription.subscriptionmanager.command.AddTrackedSubscriptionResponse
  474. 5, // 8: v2ray.core.app.subscription.subscriptionmanager.command.SubscriptionManagerService.RemoveTrackedSubscription:output_type -> v2ray.core.app.subscription.subscriptionmanager.command.RemoveTrackedSubscriptionResponse
  475. 7, // 9: v2ray.core.app.subscription.subscriptionmanager.command.SubscriptionManagerService.GetTrackedSubscriptionStatus:output_type -> v2ray.core.app.subscription.subscriptionmanager.command.GetTrackedSubscriptionStatusResponse
  476. 6, // [6:10] is the sub-list for method output_type
  477. 2, // [2:6] is the sub-list for method input_type
  478. 2, // [2:2] is the sub-list for extension type_name
  479. 2, // [2:2] is the sub-list for extension extendee
  480. 0, // [0:2] is the sub-list for field type_name
  481. }
  482. func init() { file_app_subscription_subscriptionmanager_command_command_proto_init() }
  483. func file_app_subscription_subscriptionmanager_command_command_proto_init() {
  484. if File_app_subscription_subscriptionmanager_command_command_proto != nil {
  485. return
  486. }
  487. type x struct{}
  488. out := protoimpl.TypeBuilder{
  489. File: protoimpl.DescBuilder{
  490. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  491. RawDescriptor: file_app_subscription_subscriptionmanager_command_command_proto_rawDesc,
  492. NumEnums: 0,
  493. NumMessages: 9,
  494. NumExtensions: 0,
  495. NumServices: 1,
  496. },
  497. GoTypes: file_app_subscription_subscriptionmanager_command_command_proto_goTypes,
  498. DependencyIndexes: file_app_subscription_subscriptionmanager_command_command_proto_depIdxs,
  499. MessageInfos: file_app_subscription_subscriptionmanager_command_command_proto_msgTypes,
  500. }.Build()
  501. File_app_subscription_subscriptionmanager_command_command_proto = out.File
  502. file_app_subscription_subscriptionmanager_command_command_proto_rawDesc = nil
  503. file_app_subscription_subscriptionmanager_command_command_proto_goTypes = nil
  504. file_app_subscription_subscriptionmanager_command_command_proto_depIdxs = nil
  505. }