markdown_service.pb.go 119 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.36.3
  4. // protoc (unknown)
  5. // source: api/v1/markdown_service.proto
  6. package apiv1
  7. import (
  8. _ "google.golang.org/genproto/googleapis/api/annotations"
  9. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  10. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  11. reflect "reflect"
  12. sync "sync"
  13. )
  14. const (
  15. // Verify that this generated code is sufficiently up-to-date.
  16. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  17. // Verify that runtime/protoimpl is sufficiently up-to-date.
  18. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  19. )
  20. type NodeType int32
  21. const (
  22. NodeType_NODE_UNSPECIFIED NodeType = 0
  23. // Block nodes.
  24. NodeType_LINE_BREAK NodeType = 1
  25. NodeType_PARAGRAPH NodeType = 2
  26. NodeType_CODE_BLOCK NodeType = 3
  27. NodeType_HEADING NodeType = 4
  28. NodeType_HORIZONTAL_RULE NodeType = 5
  29. NodeType_BLOCKQUOTE NodeType = 6
  30. NodeType_LIST NodeType = 7
  31. NodeType_ORDERED_LIST_ITEM NodeType = 8
  32. NodeType_UNORDERED_LIST_ITEM NodeType = 9
  33. NodeType_TASK_LIST_ITEM NodeType = 10
  34. NodeType_MATH_BLOCK NodeType = 11
  35. NodeType_TABLE NodeType = 12
  36. NodeType_EMBEDDED_CONTENT NodeType = 13
  37. // Inline nodes.
  38. NodeType_TEXT NodeType = 51
  39. NodeType_BOLD NodeType = 52
  40. NodeType_ITALIC NodeType = 53
  41. NodeType_BOLD_ITALIC NodeType = 54
  42. NodeType_CODE NodeType = 55
  43. NodeType_IMAGE NodeType = 56
  44. NodeType_LINK NodeType = 57
  45. NodeType_AUTO_LINK NodeType = 58
  46. NodeType_TAG NodeType = 59
  47. NodeType_STRIKETHROUGH NodeType = 60
  48. NodeType_ESCAPING_CHARACTER NodeType = 61
  49. NodeType_MATH NodeType = 62
  50. NodeType_HIGHLIGHT NodeType = 63
  51. NodeType_SUBSCRIPT NodeType = 64
  52. NodeType_SUPERSCRIPT NodeType = 65
  53. NodeType_REFERENCED_CONTENT NodeType = 66
  54. NodeType_SPOILER NodeType = 67
  55. NodeType_HTML_ELEMENT NodeType = 68
  56. )
  57. // Enum value maps for NodeType.
  58. var (
  59. NodeType_name = map[int32]string{
  60. 0: "NODE_UNSPECIFIED",
  61. 1: "LINE_BREAK",
  62. 2: "PARAGRAPH",
  63. 3: "CODE_BLOCK",
  64. 4: "HEADING",
  65. 5: "HORIZONTAL_RULE",
  66. 6: "BLOCKQUOTE",
  67. 7: "LIST",
  68. 8: "ORDERED_LIST_ITEM",
  69. 9: "UNORDERED_LIST_ITEM",
  70. 10: "TASK_LIST_ITEM",
  71. 11: "MATH_BLOCK",
  72. 12: "TABLE",
  73. 13: "EMBEDDED_CONTENT",
  74. 51: "TEXT",
  75. 52: "BOLD",
  76. 53: "ITALIC",
  77. 54: "BOLD_ITALIC",
  78. 55: "CODE",
  79. 56: "IMAGE",
  80. 57: "LINK",
  81. 58: "AUTO_LINK",
  82. 59: "TAG",
  83. 60: "STRIKETHROUGH",
  84. 61: "ESCAPING_CHARACTER",
  85. 62: "MATH",
  86. 63: "HIGHLIGHT",
  87. 64: "SUBSCRIPT",
  88. 65: "SUPERSCRIPT",
  89. 66: "REFERENCED_CONTENT",
  90. 67: "SPOILER",
  91. 68: "HTML_ELEMENT",
  92. }
  93. NodeType_value = map[string]int32{
  94. "NODE_UNSPECIFIED": 0,
  95. "LINE_BREAK": 1,
  96. "PARAGRAPH": 2,
  97. "CODE_BLOCK": 3,
  98. "HEADING": 4,
  99. "HORIZONTAL_RULE": 5,
  100. "BLOCKQUOTE": 6,
  101. "LIST": 7,
  102. "ORDERED_LIST_ITEM": 8,
  103. "UNORDERED_LIST_ITEM": 9,
  104. "TASK_LIST_ITEM": 10,
  105. "MATH_BLOCK": 11,
  106. "TABLE": 12,
  107. "EMBEDDED_CONTENT": 13,
  108. "TEXT": 51,
  109. "BOLD": 52,
  110. "ITALIC": 53,
  111. "BOLD_ITALIC": 54,
  112. "CODE": 55,
  113. "IMAGE": 56,
  114. "LINK": 57,
  115. "AUTO_LINK": 58,
  116. "TAG": 59,
  117. "STRIKETHROUGH": 60,
  118. "ESCAPING_CHARACTER": 61,
  119. "MATH": 62,
  120. "HIGHLIGHT": 63,
  121. "SUBSCRIPT": 64,
  122. "SUPERSCRIPT": 65,
  123. "REFERENCED_CONTENT": 66,
  124. "SPOILER": 67,
  125. "HTML_ELEMENT": 68,
  126. }
  127. )
  128. func (x NodeType) Enum() *NodeType {
  129. p := new(NodeType)
  130. *p = x
  131. return p
  132. }
  133. func (x NodeType) String() string {
  134. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  135. }
  136. func (NodeType) Descriptor() protoreflect.EnumDescriptor {
  137. return file_api_v1_markdown_service_proto_enumTypes[0].Descriptor()
  138. }
  139. func (NodeType) Type() protoreflect.EnumType {
  140. return &file_api_v1_markdown_service_proto_enumTypes[0]
  141. }
  142. func (x NodeType) Number() protoreflect.EnumNumber {
  143. return protoreflect.EnumNumber(x)
  144. }
  145. // Deprecated: Use NodeType.Descriptor instead.
  146. func (NodeType) EnumDescriptor() ([]byte, []int) {
  147. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{0}
  148. }
  149. type ListNode_Kind int32
  150. const (
  151. ListNode_KIND_UNSPECIFIED ListNode_Kind = 0
  152. ListNode_ORDERED ListNode_Kind = 1
  153. ListNode_UNORDERED ListNode_Kind = 2
  154. ListNode_DESCRIPTION ListNode_Kind = 3
  155. )
  156. // Enum value maps for ListNode_Kind.
  157. var (
  158. ListNode_Kind_name = map[int32]string{
  159. 0: "KIND_UNSPECIFIED",
  160. 1: "ORDERED",
  161. 2: "UNORDERED",
  162. 3: "DESCRIPTION",
  163. }
  164. ListNode_Kind_value = map[string]int32{
  165. "KIND_UNSPECIFIED": 0,
  166. "ORDERED": 1,
  167. "UNORDERED": 2,
  168. "DESCRIPTION": 3,
  169. }
  170. )
  171. func (x ListNode_Kind) Enum() *ListNode_Kind {
  172. p := new(ListNode_Kind)
  173. *p = x
  174. return p
  175. }
  176. func (x ListNode_Kind) String() string {
  177. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  178. }
  179. func (ListNode_Kind) Descriptor() protoreflect.EnumDescriptor {
  180. return file_api_v1_markdown_service_proto_enumTypes[1].Descriptor()
  181. }
  182. func (ListNode_Kind) Type() protoreflect.EnumType {
  183. return &file_api_v1_markdown_service_proto_enumTypes[1]
  184. }
  185. func (x ListNode_Kind) Number() protoreflect.EnumNumber {
  186. return protoreflect.EnumNumber(x)
  187. }
  188. // Deprecated: Use ListNode_Kind.Descriptor instead.
  189. func (ListNode_Kind) EnumDescriptor() ([]byte, []int) {
  190. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{15, 0}
  191. }
  192. type ParseMarkdownRequest struct {
  193. state protoimpl.MessageState `protogen:"open.v1"`
  194. Markdown string `protobuf:"bytes,1,opt,name=markdown,proto3" json:"markdown,omitempty"`
  195. unknownFields protoimpl.UnknownFields
  196. sizeCache protoimpl.SizeCache
  197. }
  198. func (x *ParseMarkdownRequest) Reset() {
  199. *x = ParseMarkdownRequest{}
  200. mi := &file_api_v1_markdown_service_proto_msgTypes[0]
  201. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  202. ms.StoreMessageInfo(mi)
  203. }
  204. func (x *ParseMarkdownRequest) String() string {
  205. return protoimpl.X.MessageStringOf(x)
  206. }
  207. func (*ParseMarkdownRequest) ProtoMessage() {}
  208. func (x *ParseMarkdownRequest) ProtoReflect() protoreflect.Message {
  209. mi := &file_api_v1_markdown_service_proto_msgTypes[0]
  210. if x != nil {
  211. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  212. if ms.LoadMessageInfo() == nil {
  213. ms.StoreMessageInfo(mi)
  214. }
  215. return ms
  216. }
  217. return mi.MessageOf(x)
  218. }
  219. // Deprecated: Use ParseMarkdownRequest.ProtoReflect.Descriptor instead.
  220. func (*ParseMarkdownRequest) Descriptor() ([]byte, []int) {
  221. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{0}
  222. }
  223. func (x *ParseMarkdownRequest) GetMarkdown() string {
  224. if x != nil {
  225. return x.Markdown
  226. }
  227. return ""
  228. }
  229. type ParseMarkdownResponse struct {
  230. state protoimpl.MessageState `protogen:"open.v1"`
  231. Nodes []*Node `protobuf:"bytes,1,rep,name=nodes,proto3" json:"nodes,omitempty"`
  232. unknownFields protoimpl.UnknownFields
  233. sizeCache protoimpl.SizeCache
  234. }
  235. func (x *ParseMarkdownResponse) Reset() {
  236. *x = ParseMarkdownResponse{}
  237. mi := &file_api_v1_markdown_service_proto_msgTypes[1]
  238. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  239. ms.StoreMessageInfo(mi)
  240. }
  241. func (x *ParseMarkdownResponse) String() string {
  242. return protoimpl.X.MessageStringOf(x)
  243. }
  244. func (*ParseMarkdownResponse) ProtoMessage() {}
  245. func (x *ParseMarkdownResponse) ProtoReflect() protoreflect.Message {
  246. mi := &file_api_v1_markdown_service_proto_msgTypes[1]
  247. if x != nil {
  248. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  249. if ms.LoadMessageInfo() == nil {
  250. ms.StoreMessageInfo(mi)
  251. }
  252. return ms
  253. }
  254. return mi.MessageOf(x)
  255. }
  256. // Deprecated: Use ParseMarkdownResponse.ProtoReflect.Descriptor instead.
  257. func (*ParseMarkdownResponse) Descriptor() ([]byte, []int) {
  258. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{1}
  259. }
  260. func (x *ParseMarkdownResponse) GetNodes() []*Node {
  261. if x != nil {
  262. return x.Nodes
  263. }
  264. return nil
  265. }
  266. type RestoreMarkdownNodesRequest struct {
  267. state protoimpl.MessageState `protogen:"open.v1"`
  268. Nodes []*Node `protobuf:"bytes,1,rep,name=nodes,proto3" json:"nodes,omitempty"`
  269. unknownFields protoimpl.UnknownFields
  270. sizeCache protoimpl.SizeCache
  271. }
  272. func (x *RestoreMarkdownNodesRequest) Reset() {
  273. *x = RestoreMarkdownNodesRequest{}
  274. mi := &file_api_v1_markdown_service_proto_msgTypes[2]
  275. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  276. ms.StoreMessageInfo(mi)
  277. }
  278. func (x *RestoreMarkdownNodesRequest) String() string {
  279. return protoimpl.X.MessageStringOf(x)
  280. }
  281. func (*RestoreMarkdownNodesRequest) ProtoMessage() {}
  282. func (x *RestoreMarkdownNodesRequest) ProtoReflect() protoreflect.Message {
  283. mi := &file_api_v1_markdown_service_proto_msgTypes[2]
  284. if x != nil {
  285. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  286. if ms.LoadMessageInfo() == nil {
  287. ms.StoreMessageInfo(mi)
  288. }
  289. return ms
  290. }
  291. return mi.MessageOf(x)
  292. }
  293. // Deprecated: Use RestoreMarkdownNodesRequest.ProtoReflect.Descriptor instead.
  294. func (*RestoreMarkdownNodesRequest) Descriptor() ([]byte, []int) {
  295. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{2}
  296. }
  297. func (x *RestoreMarkdownNodesRequest) GetNodes() []*Node {
  298. if x != nil {
  299. return x.Nodes
  300. }
  301. return nil
  302. }
  303. type RestoreMarkdownNodesResponse struct {
  304. state protoimpl.MessageState `protogen:"open.v1"`
  305. Markdown string `protobuf:"bytes,1,opt,name=markdown,proto3" json:"markdown,omitempty"`
  306. unknownFields protoimpl.UnknownFields
  307. sizeCache protoimpl.SizeCache
  308. }
  309. func (x *RestoreMarkdownNodesResponse) Reset() {
  310. *x = RestoreMarkdownNodesResponse{}
  311. mi := &file_api_v1_markdown_service_proto_msgTypes[3]
  312. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  313. ms.StoreMessageInfo(mi)
  314. }
  315. func (x *RestoreMarkdownNodesResponse) String() string {
  316. return protoimpl.X.MessageStringOf(x)
  317. }
  318. func (*RestoreMarkdownNodesResponse) ProtoMessage() {}
  319. func (x *RestoreMarkdownNodesResponse) ProtoReflect() protoreflect.Message {
  320. mi := &file_api_v1_markdown_service_proto_msgTypes[3]
  321. if x != nil {
  322. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  323. if ms.LoadMessageInfo() == nil {
  324. ms.StoreMessageInfo(mi)
  325. }
  326. return ms
  327. }
  328. return mi.MessageOf(x)
  329. }
  330. // Deprecated: Use RestoreMarkdownNodesResponse.ProtoReflect.Descriptor instead.
  331. func (*RestoreMarkdownNodesResponse) Descriptor() ([]byte, []int) {
  332. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{3}
  333. }
  334. func (x *RestoreMarkdownNodesResponse) GetMarkdown() string {
  335. if x != nil {
  336. return x.Markdown
  337. }
  338. return ""
  339. }
  340. type StringifyMarkdownNodesRequest struct {
  341. state protoimpl.MessageState `protogen:"open.v1"`
  342. Nodes []*Node `protobuf:"bytes,1,rep,name=nodes,proto3" json:"nodes,omitempty"`
  343. unknownFields protoimpl.UnknownFields
  344. sizeCache protoimpl.SizeCache
  345. }
  346. func (x *StringifyMarkdownNodesRequest) Reset() {
  347. *x = StringifyMarkdownNodesRequest{}
  348. mi := &file_api_v1_markdown_service_proto_msgTypes[4]
  349. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  350. ms.StoreMessageInfo(mi)
  351. }
  352. func (x *StringifyMarkdownNodesRequest) String() string {
  353. return protoimpl.X.MessageStringOf(x)
  354. }
  355. func (*StringifyMarkdownNodesRequest) ProtoMessage() {}
  356. func (x *StringifyMarkdownNodesRequest) ProtoReflect() protoreflect.Message {
  357. mi := &file_api_v1_markdown_service_proto_msgTypes[4]
  358. if x != nil {
  359. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  360. if ms.LoadMessageInfo() == nil {
  361. ms.StoreMessageInfo(mi)
  362. }
  363. return ms
  364. }
  365. return mi.MessageOf(x)
  366. }
  367. // Deprecated: Use StringifyMarkdownNodesRequest.ProtoReflect.Descriptor instead.
  368. func (*StringifyMarkdownNodesRequest) Descriptor() ([]byte, []int) {
  369. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{4}
  370. }
  371. func (x *StringifyMarkdownNodesRequest) GetNodes() []*Node {
  372. if x != nil {
  373. return x.Nodes
  374. }
  375. return nil
  376. }
  377. type StringifyMarkdownNodesResponse struct {
  378. state protoimpl.MessageState `protogen:"open.v1"`
  379. PlainText string `protobuf:"bytes,1,opt,name=plain_text,json=plainText,proto3" json:"plain_text,omitempty"`
  380. unknownFields protoimpl.UnknownFields
  381. sizeCache protoimpl.SizeCache
  382. }
  383. func (x *StringifyMarkdownNodesResponse) Reset() {
  384. *x = StringifyMarkdownNodesResponse{}
  385. mi := &file_api_v1_markdown_service_proto_msgTypes[5]
  386. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  387. ms.StoreMessageInfo(mi)
  388. }
  389. func (x *StringifyMarkdownNodesResponse) String() string {
  390. return protoimpl.X.MessageStringOf(x)
  391. }
  392. func (*StringifyMarkdownNodesResponse) ProtoMessage() {}
  393. func (x *StringifyMarkdownNodesResponse) ProtoReflect() protoreflect.Message {
  394. mi := &file_api_v1_markdown_service_proto_msgTypes[5]
  395. if x != nil {
  396. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  397. if ms.LoadMessageInfo() == nil {
  398. ms.StoreMessageInfo(mi)
  399. }
  400. return ms
  401. }
  402. return mi.MessageOf(x)
  403. }
  404. // Deprecated: Use StringifyMarkdownNodesResponse.ProtoReflect.Descriptor instead.
  405. func (*StringifyMarkdownNodesResponse) Descriptor() ([]byte, []int) {
  406. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{5}
  407. }
  408. func (x *StringifyMarkdownNodesResponse) GetPlainText() string {
  409. if x != nil {
  410. return x.PlainText
  411. }
  412. return ""
  413. }
  414. type GetLinkMetadataRequest struct {
  415. state protoimpl.MessageState `protogen:"open.v1"`
  416. Link string `protobuf:"bytes,1,opt,name=link,proto3" json:"link,omitempty"`
  417. unknownFields protoimpl.UnknownFields
  418. sizeCache protoimpl.SizeCache
  419. }
  420. func (x *GetLinkMetadataRequest) Reset() {
  421. *x = GetLinkMetadataRequest{}
  422. mi := &file_api_v1_markdown_service_proto_msgTypes[6]
  423. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  424. ms.StoreMessageInfo(mi)
  425. }
  426. func (x *GetLinkMetadataRequest) String() string {
  427. return protoimpl.X.MessageStringOf(x)
  428. }
  429. func (*GetLinkMetadataRequest) ProtoMessage() {}
  430. func (x *GetLinkMetadataRequest) ProtoReflect() protoreflect.Message {
  431. mi := &file_api_v1_markdown_service_proto_msgTypes[6]
  432. if x != nil {
  433. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  434. if ms.LoadMessageInfo() == nil {
  435. ms.StoreMessageInfo(mi)
  436. }
  437. return ms
  438. }
  439. return mi.MessageOf(x)
  440. }
  441. // Deprecated: Use GetLinkMetadataRequest.ProtoReflect.Descriptor instead.
  442. func (*GetLinkMetadataRequest) Descriptor() ([]byte, []int) {
  443. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{6}
  444. }
  445. func (x *GetLinkMetadataRequest) GetLink() string {
  446. if x != nil {
  447. return x.Link
  448. }
  449. return ""
  450. }
  451. type LinkMetadata struct {
  452. state protoimpl.MessageState `protogen:"open.v1"`
  453. Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
  454. Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
  455. Image string `protobuf:"bytes,3,opt,name=image,proto3" json:"image,omitempty"`
  456. unknownFields protoimpl.UnknownFields
  457. sizeCache protoimpl.SizeCache
  458. }
  459. func (x *LinkMetadata) Reset() {
  460. *x = LinkMetadata{}
  461. mi := &file_api_v1_markdown_service_proto_msgTypes[7]
  462. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  463. ms.StoreMessageInfo(mi)
  464. }
  465. func (x *LinkMetadata) String() string {
  466. return protoimpl.X.MessageStringOf(x)
  467. }
  468. func (*LinkMetadata) ProtoMessage() {}
  469. func (x *LinkMetadata) ProtoReflect() protoreflect.Message {
  470. mi := &file_api_v1_markdown_service_proto_msgTypes[7]
  471. if x != nil {
  472. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  473. if ms.LoadMessageInfo() == nil {
  474. ms.StoreMessageInfo(mi)
  475. }
  476. return ms
  477. }
  478. return mi.MessageOf(x)
  479. }
  480. // Deprecated: Use LinkMetadata.ProtoReflect.Descriptor instead.
  481. func (*LinkMetadata) Descriptor() ([]byte, []int) {
  482. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{7}
  483. }
  484. func (x *LinkMetadata) GetTitle() string {
  485. if x != nil {
  486. return x.Title
  487. }
  488. return ""
  489. }
  490. func (x *LinkMetadata) GetDescription() string {
  491. if x != nil {
  492. return x.Description
  493. }
  494. return ""
  495. }
  496. func (x *LinkMetadata) GetImage() string {
  497. if x != nil {
  498. return x.Image
  499. }
  500. return ""
  501. }
  502. type Node struct {
  503. state protoimpl.MessageState `protogen:"open.v1"`
  504. Type NodeType `protobuf:"varint,1,opt,name=type,proto3,enum=memos.api.v1.NodeType" json:"type,omitempty"`
  505. // Types that are valid to be assigned to Node:
  506. //
  507. // *Node_LineBreakNode
  508. // *Node_ParagraphNode
  509. // *Node_CodeBlockNode
  510. // *Node_HeadingNode
  511. // *Node_HorizontalRuleNode
  512. // *Node_BlockquoteNode
  513. // *Node_ListNode
  514. // *Node_OrderedListItemNode
  515. // *Node_UnorderedListItemNode
  516. // *Node_TaskListItemNode
  517. // *Node_MathBlockNode
  518. // *Node_TableNode
  519. // *Node_EmbeddedContentNode
  520. // *Node_TextNode
  521. // *Node_BoldNode
  522. // *Node_ItalicNode
  523. // *Node_BoldItalicNode
  524. // *Node_CodeNode
  525. // *Node_ImageNode
  526. // *Node_LinkNode
  527. // *Node_AutoLinkNode
  528. // *Node_TagNode
  529. // *Node_StrikethroughNode
  530. // *Node_EscapingCharacterNode
  531. // *Node_MathNode
  532. // *Node_HighlightNode
  533. // *Node_SubscriptNode
  534. // *Node_SuperscriptNode
  535. // *Node_ReferencedContentNode
  536. // *Node_SpoilerNode
  537. // *Node_HtmlElementNode
  538. Node isNode_Node `protobuf_oneof:"node"`
  539. unknownFields protoimpl.UnknownFields
  540. sizeCache protoimpl.SizeCache
  541. }
  542. func (x *Node) Reset() {
  543. *x = Node{}
  544. mi := &file_api_v1_markdown_service_proto_msgTypes[8]
  545. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  546. ms.StoreMessageInfo(mi)
  547. }
  548. func (x *Node) String() string {
  549. return protoimpl.X.MessageStringOf(x)
  550. }
  551. func (*Node) ProtoMessage() {}
  552. func (x *Node) ProtoReflect() protoreflect.Message {
  553. mi := &file_api_v1_markdown_service_proto_msgTypes[8]
  554. if x != nil {
  555. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  556. if ms.LoadMessageInfo() == nil {
  557. ms.StoreMessageInfo(mi)
  558. }
  559. return ms
  560. }
  561. return mi.MessageOf(x)
  562. }
  563. // Deprecated: Use Node.ProtoReflect.Descriptor instead.
  564. func (*Node) Descriptor() ([]byte, []int) {
  565. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{8}
  566. }
  567. func (x *Node) GetType() NodeType {
  568. if x != nil {
  569. return x.Type
  570. }
  571. return NodeType_NODE_UNSPECIFIED
  572. }
  573. func (x *Node) GetNode() isNode_Node {
  574. if x != nil {
  575. return x.Node
  576. }
  577. return nil
  578. }
  579. func (x *Node) GetLineBreakNode() *LineBreakNode {
  580. if x != nil {
  581. if x, ok := x.Node.(*Node_LineBreakNode); ok {
  582. return x.LineBreakNode
  583. }
  584. }
  585. return nil
  586. }
  587. func (x *Node) GetParagraphNode() *ParagraphNode {
  588. if x != nil {
  589. if x, ok := x.Node.(*Node_ParagraphNode); ok {
  590. return x.ParagraphNode
  591. }
  592. }
  593. return nil
  594. }
  595. func (x *Node) GetCodeBlockNode() *CodeBlockNode {
  596. if x != nil {
  597. if x, ok := x.Node.(*Node_CodeBlockNode); ok {
  598. return x.CodeBlockNode
  599. }
  600. }
  601. return nil
  602. }
  603. func (x *Node) GetHeadingNode() *HeadingNode {
  604. if x != nil {
  605. if x, ok := x.Node.(*Node_HeadingNode); ok {
  606. return x.HeadingNode
  607. }
  608. }
  609. return nil
  610. }
  611. func (x *Node) GetHorizontalRuleNode() *HorizontalRuleNode {
  612. if x != nil {
  613. if x, ok := x.Node.(*Node_HorizontalRuleNode); ok {
  614. return x.HorizontalRuleNode
  615. }
  616. }
  617. return nil
  618. }
  619. func (x *Node) GetBlockquoteNode() *BlockquoteNode {
  620. if x != nil {
  621. if x, ok := x.Node.(*Node_BlockquoteNode); ok {
  622. return x.BlockquoteNode
  623. }
  624. }
  625. return nil
  626. }
  627. func (x *Node) GetListNode() *ListNode {
  628. if x != nil {
  629. if x, ok := x.Node.(*Node_ListNode); ok {
  630. return x.ListNode
  631. }
  632. }
  633. return nil
  634. }
  635. func (x *Node) GetOrderedListItemNode() *OrderedListItemNode {
  636. if x != nil {
  637. if x, ok := x.Node.(*Node_OrderedListItemNode); ok {
  638. return x.OrderedListItemNode
  639. }
  640. }
  641. return nil
  642. }
  643. func (x *Node) GetUnorderedListItemNode() *UnorderedListItemNode {
  644. if x != nil {
  645. if x, ok := x.Node.(*Node_UnorderedListItemNode); ok {
  646. return x.UnorderedListItemNode
  647. }
  648. }
  649. return nil
  650. }
  651. func (x *Node) GetTaskListItemNode() *TaskListItemNode {
  652. if x != nil {
  653. if x, ok := x.Node.(*Node_TaskListItemNode); ok {
  654. return x.TaskListItemNode
  655. }
  656. }
  657. return nil
  658. }
  659. func (x *Node) GetMathBlockNode() *MathBlockNode {
  660. if x != nil {
  661. if x, ok := x.Node.(*Node_MathBlockNode); ok {
  662. return x.MathBlockNode
  663. }
  664. }
  665. return nil
  666. }
  667. func (x *Node) GetTableNode() *TableNode {
  668. if x != nil {
  669. if x, ok := x.Node.(*Node_TableNode); ok {
  670. return x.TableNode
  671. }
  672. }
  673. return nil
  674. }
  675. func (x *Node) GetEmbeddedContentNode() *EmbeddedContentNode {
  676. if x != nil {
  677. if x, ok := x.Node.(*Node_EmbeddedContentNode); ok {
  678. return x.EmbeddedContentNode
  679. }
  680. }
  681. return nil
  682. }
  683. func (x *Node) GetTextNode() *TextNode {
  684. if x != nil {
  685. if x, ok := x.Node.(*Node_TextNode); ok {
  686. return x.TextNode
  687. }
  688. }
  689. return nil
  690. }
  691. func (x *Node) GetBoldNode() *BoldNode {
  692. if x != nil {
  693. if x, ok := x.Node.(*Node_BoldNode); ok {
  694. return x.BoldNode
  695. }
  696. }
  697. return nil
  698. }
  699. func (x *Node) GetItalicNode() *ItalicNode {
  700. if x != nil {
  701. if x, ok := x.Node.(*Node_ItalicNode); ok {
  702. return x.ItalicNode
  703. }
  704. }
  705. return nil
  706. }
  707. func (x *Node) GetBoldItalicNode() *BoldItalicNode {
  708. if x != nil {
  709. if x, ok := x.Node.(*Node_BoldItalicNode); ok {
  710. return x.BoldItalicNode
  711. }
  712. }
  713. return nil
  714. }
  715. func (x *Node) GetCodeNode() *CodeNode {
  716. if x != nil {
  717. if x, ok := x.Node.(*Node_CodeNode); ok {
  718. return x.CodeNode
  719. }
  720. }
  721. return nil
  722. }
  723. func (x *Node) GetImageNode() *ImageNode {
  724. if x != nil {
  725. if x, ok := x.Node.(*Node_ImageNode); ok {
  726. return x.ImageNode
  727. }
  728. }
  729. return nil
  730. }
  731. func (x *Node) GetLinkNode() *LinkNode {
  732. if x != nil {
  733. if x, ok := x.Node.(*Node_LinkNode); ok {
  734. return x.LinkNode
  735. }
  736. }
  737. return nil
  738. }
  739. func (x *Node) GetAutoLinkNode() *AutoLinkNode {
  740. if x != nil {
  741. if x, ok := x.Node.(*Node_AutoLinkNode); ok {
  742. return x.AutoLinkNode
  743. }
  744. }
  745. return nil
  746. }
  747. func (x *Node) GetTagNode() *TagNode {
  748. if x != nil {
  749. if x, ok := x.Node.(*Node_TagNode); ok {
  750. return x.TagNode
  751. }
  752. }
  753. return nil
  754. }
  755. func (x *Node) GetStrikethroughNode() *StrikethroughNode {
  756. if x != nil {
  757. if x, ok := x.Node.(*Node_StrikethroughNode); ok {
  758. return x.StrikethroughNode
  759. }
  760. }
  761. return nil
  762. }
  763. func (x *Node) GetEscapingCharacterNode() *EscapingCharacterNode {
  764. if x != nil {
  765. if x, ok := x.Node.(*Node_EscapingCharacterNode); ok {
  766. return x.EscapingCharacterNode
  767. }
  768. }
  769. return nil
  770. }
  771. func (x *Node) GetMathNode() *MathNode {
  772. if x != nil {
  773. if x, ok := x.Node.(*Node_MathNode); ok {
  774. return x.MathNode
  775. }
  776. }
  777. return nil
  778. }
  779. func (x *Node) GetHighlightNode() *HighlightNode {
  780. if x != nil {
  781. if x, ok := x.Node.(*Node_HighlightNode); ok {
  782. return x.HighlightNode
  783. }
  784. }
  785. return nil
  786. }
  787. func (x *Node) GetSubscriptNode() *SubscriptNode {
  788. if x != nil {
  789. if x, ok := x.Node.(*Node_SubscriptNode); ok {
  790. return x.SubscriptNode
  791. }
  792. }
  793. return nil
  794. }
  795. func (x *Node) GetSuperscriptNode() *SuperscriptNode {
  796. if x != nil {
  797. if x, ok := x.Node.(*Node_SuperscriptNode); ok {
  798. return x.SuperscriptNode
  799. }
  800. }
  801. return nil
  802. }
  803. func (x *Node) GetReferencedContentNode() *ReferencedContentNode {
  804. if x != nil {
  805. if x, ok := x.Node.(*Node_ReferencedContentNode); ok {
  806. return x.ReferencedContentNode
  807. }
  808. }
  809. return nil
  810. }
  811. func (x *Node) GetSpoilerNode() *SpoilerNode {
  812. if x != nil {
  813. if x, ok := x.Node.(*Node_SpoilerNode); ok {
  814. return x.SpoilerNode
  815. }
  816. }
  817. return nil
  818. }
  819. func (x *Node) GetHtmlElementNode() *HTMLElementNode {
  820. if x != nil {
  821. if x, ok := x.Node.(*Node_HtmlElementNode); ok {
  822. return x.HtmlElementNode
  823. }
  824. }
  825. return nil
  826. }
  827. type isNode_Node interface {
  828. isNode_Node()
  829. }
  830. type Node_LineBreakNode struct {
  831. // Block nodes.
  832. LineBreakNode *LineBreakNode `protobuf:"bytes,11,opt,name=line_break_node,json=lineBreakNode,proto3,oneof"`
  833. }
  834. type Node_ParagraphNode struct {
  835. ParagraphNode *ParagraphNode `protobuf:"bytes,12,opt,name=paragraph_node,json=paragraphNode,proto3,oneof"`
  836. }
  837. type Node_CodeBlockNode struct {
  838. CodeBlockNode *CodeBlockNode `protobuf:"bytes,13,opt,name=code_block_node,json=codeBlockNode,proto3,oneof"`
  839. }
  840. type Node_HeadingNode struct {
  841. HeadingNode *HeadingNode `protobuf:"bytes,14,opt,name=heading_node,json=headingNode,proto3,oneof"`
  842. }
  843. type Node_HorizontalRuleNode struct {
  844. HorizontalRuleNode *HorizontalRuleNode `protobuf:"bytes,15,opt,name=horizontal_rule_node,json=horizontalRuleNode,proto3,oneof"`
  845. }
  846. type Node_BlockquoteNode struct {
  847. BlockquoteNode *BlockquoteNode `protobuf:"bytes,16,opt,name=blockquote_node,json=blockquoteNode,proto3,oneof"`
  848. }
  849. type Node_ListNode struct {
  850. ListNode *ListNode `protobuf:"bytes,17,opt,name=list_node,json=listNode,proto3,oneof"`
  851. }
  852. type Node_OrderedListItemNode struct {
  853. OrderedListItemNode *OrderedListItemNode `protobuf:"bytes,18,opt,name=ordered_list_item_node,json=orderedListItemNode,proto3,oneof"`
  854. }
  855. type Node_UnorderedListItemNode struct {
  856. UnorderedListItemNode *UnorderedListItemNode `protobuf:"bytes,19,opt,name=unordered_list_item_node,json=unorderedListItemNode,proto3,oneof"`
  857. }
  858. type Node_TaskListItemNode struct {
  859. TaskListItemNode *TaskListItemNode `protobuf:"bytes,20,opt,name=task_list_item_node,json=taskListItemNode,proto3,oneof"`
  860. }
  861. type Node_MathBlockNode struct {
  862. MathBlockNode *MathBlockNode `protobuf:"bytes,21,opt,name=math_block_node,json=mathBlockNode,proto3,oneof"`
  863. }
  864. type Node_TableNode struct {
  865. TableNode *TableNode `protobuf:"bytes,22,opt,name=table_node,json=tableNode,proto3,oneof"`
  866. }
  867. type Node_EmbeddedContentNode struct {
  868. EmbeddedContentNode *EmbeddedContentNode `protobuf:"bytes,23,opt,name=embedded_content_node,json=embeddedContentNode,proto3,oneof"`
  869. }
  870. type Node_TextNode struct {
  871. // Inline nodes.
  872. TextNode *TextNode `protobuf:"bytes,51,opt,name=text_node,json=textNode,proto3,oneof"`
  873. }
  874. type Node_BoldNode struct {
  875. BoldNode *BoldNode `protobuf:"bytes,52,opt,name=bold_node,json=boldNode,proto3,oneof"`
  876. }
  877. type Node_ItalicNode struct {
  878. ItalicNode *ItalicNode `protobuf:"bytes,53,opt,name=italic_node,json=italicNode,proto3,oneof"`
  879. }
  880. type Node_BoldItalicNode struct {
  881. BoldItalicNode *BoldItalicNode `protobuf:"bytes,54,opt,name=bold_italic_node,json=boldItalicNode,proto3,oneof"`
  882. }
  883. type Node_CodeNode struct {
  884. CodeNode *CodeNode `protobuf:"bytes,55,opt,name=code_node,json=codeNode,proto3,oneof"`
  885. }
  886. type Node_ImageNode struct {
  887. ImageNode *ImageNode `protobuf:"bytes,56,opt,name=image_node,json=imageNode,proto3,oneof"`
  888. }
  889. type Node_LinkNode struct {
  890. LinkNode *LinkNode `protobuf:"bytes,57,opt,name=link_node,json=linkNode,proto3,oneof"`
  891. }
  892. type Node_AutoLinkNode struct {
  893. AutoLinkNode *AutoLinkNode `protobuf:"bytes,58,opt,name=auto_link_node,json=autoLinkNode,proto3,oneof"`
  894. }
  895. type Node_TagNode struct {
  896. TagNode *TagNode `protobuf:"bytes,59,opt,name=tag_node,json=tagNode,proto3,oneof"`
  897. }
  898. type Node_StrikethroughNode struct {
  899. StrikethroughNode *StrikethroughNode `protobuf:"bytes,60,opt,name=strikethrough_node,json=strikethroughNode,proto3,oneof"`
  900. }
  901. type Node_EscapingCharacterNode struct {
  902. EscapingCharacterNode *EscapingCharacterNode `protobuf:"bytes,61,opt,name=escaping_character_node,json=escapingCharacterNode,proto3,oneof"`
  903. }
  904. type Node_MathNode struct {
  905. MathNode *MathNode `protobuf:"bytes,62,opt,name=math_node,json=mathNode,proto3,oneof"`
  906. }
  907. type Node_HighlightNode struct {
  908. HighlightNode *HighlightNode `protobuf:"bytes,63,opt,name=highlight_node,json=highlightNode,proto3,oneof"`
  909. }
  910. type Node_SubscriptNode struct {
  911. SubscriptNode *SubscriptNode `protobuf:"bytes,64,opt,name=subscript_node,json=subscriptNode,proto3,oneof"`
  912. }
  913. type Node_SuperscriptNode struct {
  914. SuperscriptNode *SuperscriptNode `protobuf:"bytes,65,opt,name=superscript_node,json=superscriptNode,proto3,oneof"`
  915. }
  916. type Node_ReferencedContentNode struct {
  917. ReferencedContentNode *ReferencedContentNode `protobuf:"bytes,66,opt,name=referenced_content_node,json=referencedContentNode,proto3,oneof"`
  918. }
  919. type Node_SpoilerNode struct {
  920. SpoilerNode *SpoilerNode `protobuf:"bytes,67,opt,name=spoiler_node,json=spoilerNode,proto3,oneof"`
  921. }
  922. type Node_HtmlElementNode struct {
  923. HtmlElementNode *HTMLElementNode `protobuf:"bytes,68,opt,name=html_element_node,json=htmlElementNode,proto3,oneof"`
  924. }
  925. func (*Node_LineBreakNode) isNode_Node() {}
  926. func (*Node_ParagraphNode) isNode_Node() {}
  927. func (*Node_CodeBlockNode) isNode_Node() {}
  928. func (*Node_HeadingNode) isNode_Node() {}
  929. func (*Node_HorizontalRuleNode) isNode_Node() {}
  930. func (*Node_BlockquoteNode) isNode_Node() {}
  931. func (*Node_ListNode) isNode_Node() {}
  932. func (*Node_OrderedListItemNode) isNode_Node() {}
  933. func (*Node_UnorderedListItemNode) isNode_Node() {}
  934. func (*Node_TaskListItemNode) isNode_Node() {}
  935. func (*Node_MathBlockNode) isNode_Node() {}
  936. func (*Node_TableNode) isNode_Node() {}
  937. func (*Node_EmbeddedContentNode) isNode_Node() {}
  938. func (*Node_TextNode) isNode_Node() {}
  939. func (*Node_BoldNode) isNode_Node() {}
  940. func (*Node_ItalicNode) isNode_Node() {}
  941. func (*Node_BoldItalicNode) isNode_Node() {}
  942. func (*Node_CodeNode) isNode_Node() {}
  943. func (*Node_ImageNode) isNode_Node() {}
  944. func (*Node_LinkNode) isNode_Node() {}
  945. func (*Node_AutoLinkNode) isNode_Node() {}
  946. func (*Node_TagNode) isNode_Node() {}
  947. func (*Node_StrikethroughNode) isNode_Node() {}
  948. func (*Node_EscapingCharacterNode) isNode_Node() {}
  949. func (*Node_MathNode) isNode_Node() {}
  950. func (*Node_HighlightNode) isNode_Node() {}
  951. func (*Node_SubscriptNode) isNode_Node() {}
  952. func (*Node_SuperscriptNode) isNode_Node() {}
  953. func (*Node_ReferencedContentNode) isNode_Node() {}
  954. func (*Node_SpoilerNode) isNode_Node() {}
  955. func (*Node_HtmlElementNode) isNode_Node() {}
  956. type LineBreakNode struct {
  957. state protoimpl.MessageState `protogen:"open.v1"`
  958. unknownFields protoimpl.UnknownFields
  959. sizeCache protoimpl.SizeCache
  960. }
  961. func (x *LineBreakNode) Reset() {
  962. *x = LineBreakNode{}
  963. mi := &file_api_v1_markdown_service_proto_msgTypes[9]
  964. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  965. ms.StoreMessageInfo(mi)
  966. }
  967. func (x *LineBreakNode) String() string {
  968. return protoimpl.X.MessageStringOf(x)
  969. }
  970. func (*LineBreakNode) ProtoMessage() {}
  971. func (x *LineBreakNode) ProtoReflect() protoreflect.Message {
  972. mi := &file_api_v1_markdown_service_proto_msgTypes[9]
  973. if x != nil {
  974. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  975. if ms.LoadMessageInfo() == nil {
  976. ms.StoreMessageInfo(mi)
  977. }
  978. return ms
  979. }
  980. return mi.MessageOf(x)
  981. }
  982. // Deprecated: Use LineBreakNode.ProtoReflect.Descriptor instead.
  983. func (*LineBreakNode) Descriptor() ([]byte, []int) {
  984. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{9}
  985. }
  986. type ParagraphNode struct {
  987. state protoimpl.MessageState `protogen:"open.v1"`
  988. Children []*Node `protobuf:"bytes,1,rep,name=children,proto3" json:"children,omitempty"`
  989. unknownFields protoimpl.UnknownFields
  990. sizeCache protoimpl.SizeCache
  991. }
  992. func (x *ParagraphNode) Reset() {
  993. *x = ParagraphNode{}
  994. mi := &file_api_v1_markdown_service_proto_msgTypes[10]
  995. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  996. ms.StoreMessageInfo(mi)
  997. }
  998. func (x *ParagraphNode) String() string {
  999. return protoimpl.X.MessageStringOf(x)
  1000. }
  1001. func (*ParagraphNode) ProtoMessage() {}
  1002. func (x *ParagraphNode) ProtoReflect() protoreflect.Message {
  1003. mi := &file_api_v1_markdown_service_proto_msgTypes[10]
  1004. if x != nil {
  1005. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1006. if ms.LoadMessageInfo() == nil {
  1007. ms.StoreMessageInfo(mi)
  1008. }
  1009. return ms
  1010. }
  1011. return mi.MessageOf(x)
  1012. }
  1013. // Deprecated: Use ParagraphNode.ProtoReflect.Descriptor instead.
  1014. func (*ParagraphNode) Descriptor() ([]byte, []int) {
  1015. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{10}
  1016. }
  1017. func (x *ParagraphNode) GetChildren() []*Node {
  1018. if x != nil {
  1019. return x.Children
  1020. }
  1021. return nil
  1022. }
  1023. type CodeBlockNode struct {
  1024. state protoimpl.MessageState `protogen:"open.v1"`
  1025. Language string `protobuf:"bytes,1,opt,name=language,proto3" json:"language,omitempty"`
  1026. Content string `protobuf:"bytes,2,opt,name=content,proto3" json:"content,omitempty"`
  1027. unknownFields protoimpl.UnknownFields
  1028. sizeCache protoimpl.SizeCache
  1029. }
  1030. func (x *CodeBlockNode) Reset() {
  1031. *x = CodeBlockNode{}
  1032. mi := &file_api_v1_markdown_service_proto_msgTypes[11]
  1033. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1034. ms.StoreMessageInfo(mi)
  1035. }
  1036. func (x *CodeBlockNode) String() string {
  1037. return protoimpl.X.MessageStringOf(x)
  1038. }
  1039. func (*CodeBlockNode) ProtoMessage() {}
  1040. func (x *CodeBlockNode) ProtoReflect() protoreflect.Message {
  1041. mi := &file_api_v1_markdown_service_proto_msgTypes[11]
  1042. if x != nil {
  1043. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1044. if ms.LoadMessageInfo() == nil {
  1045. ms.StoreMessageInfo(mi)
  1046. }
  1047. return ms
  1048. }
  1049. return mi.MessageOf(x)
  1050. }
  1051. // Deprecated: Use CodeBlockNode.ProtoReflect.Descriptor instead.
  1052. func (*CodeBlockNode) Descriptor() ([]byte, []int) {
  1053. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{11}
  1054. }
  1055. func (x *CodeBlockNode) GetLanguage() string {
  1056. if x != nil {
  1057. return x.Language
  1058. }
  1059. return ""
  1060. }
  1061. func (x *CodeBlockNode) GetContent() string {
  1062. if x != nil {
  1063. return x.Content
  1064. }
  1065. return ""
  1066. }
  1067. type HeadingNode struct {
  1068. state protoimpl.MessageState `protogen:"open.v1"`
  1069. Level int32 `protobuf:"varint,1,opt,name=level,proto3" json:"level,omitempty"`
  1070. Children []*Node `protobuf:"bytes,2,rep,name=children,proto3" json:"children,omitempty"`
  1071. unknownFields protoimpl.UnknownFields
  1072. sizeCache protoimpl.SizeCache
  1073. }
  1074. func (x *HeadingNode) Reset() {
  1075. *x = HeadingNode{}
  1076. mi := &file_api_v1_markdown_service_proto_msgTypes[12]
  1077. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1078. ms.StoreMessageInfo(mi)
  1079. }
  1080. func (x *HeadingNode) String() string {
  1081. return protoimpl.X.MessageStringOf(x)
  1082. }
  1083. func (*HeadingNode) ProtoMessage() {}
  1084. func (x *HeadingNode) ProtoReflect() protoreflect.Message {
  1085. mi := &file_api_v1_markdown_service_proto_msgTypes[12]
  1086. if x != nil {
  1087. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1088. if ms.LoadMessageInfo() == nil {
  1089. ms.StoreMessageInfo(mi)
  1090. }
  1091. return ms
  1092. }
  1093. return mi.MessageOf(x)
  1094. }
  1095. // Deprecated: Use HeadingNode.ProtoReflect.Descriptor instead.
  1096. func (*HeadingNode) Descriptor() ([]byte, []int) {
  1097. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{12}
  1098. }
  1099. func (x *HeadingNode) GetLevel() int32 {
  1100. if x != nil {
  1101. return x.Level
  1102. }
  1103. return 0
  1104. }
  1105. func (x *HeadingNode) GetChildren() []*Node {
  1106. if x != nil {
  1107. return x.Children
  1108. }
  1109. return nil
  1110. }
  1111. type HorizontalRuleNode struct {
  1112. state protoimpl.MessageState `protogen:"open.v1"`
  1113. Symbol string `protobuf:"bytes,1,opt,name=symbol,proto3" json:"symbol,omitempty"`
  1114. unknownFields protoimpl.UnknownFields
  1115. sizeCache protoimpl.SizeCache
  1116. }
  1117. func (x *HorizontalRuleNode) Reset() {
  1118. *x = HorizontalRuleNode{}
  1119. mi := &file_api_v1_markdown_service_proto_msgTypes[13]
  1120. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1121. ms.StoreMessageInfo(mi)
  1122. }
  1123. func (x *HorizontalRuleNode) String() string {
  1124. return protoimpl.X.MessageStringOf(x)
  1125. }
  1126. func (*HorizontalRuleNode) ProtoMessage() {}
  1127. func (x *HorizontalRuleNode) ProtoReflect() protoreflect.Message {
  1128. mi := &file_api_v1_markdown_service_proto_msgTypes[13]
  1129. if x != nil {
  1130. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1131. if ms.LoadMessageInfo() == nil {
  1132. ms.StoreMessageInfo(mi)
  1133. }
  1134. return ms
  1135. }
  1136. return mi.MessageOf(x)
  1137. }
  1138. // Deprecated: Use HorizontalRuleNode.ProtoReflect.Descriptor instead.
  1139. func (*HorizontalRuleNode) Descriptor() ([]byte, []int) {
  1140. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{13}
  1141. }
  1142. func (x *HorizontalRuleNode) GetSymbol() string {
  1143. if x != nil {
  1144. return x.Symbol
  1145. }
  1146. return ""
  1147. }
  1148. type BlockquoteNode struct {
  1149. state protoimpl.MessageState `protogen:"open.v1"`
  1150. Children []*Node `protobuf:"bytes,1,rep,name=children,proto3" json:"children,omitempty"`
  1151. unknownFields protoimpl.UnknownFields
  1152. sizeCache protoimpl.SizeCache
  1153. }
  1154. func (x *BlockquoteNode) Reset() {
  1155. *x = BlockquoteNode{}
  1156. mi := &file_api_v1_markdown_service_proto_msgTypes[14]
  1157. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1158. ms.StoreMessageInfo(mi)
  1159. }
  1160. func (x *BlockquoteNode) String() string {
  1161. return protoimpl.X.MessageStringOf(x)
  1162. }
  1163. func (*BlockquoteNode) ProtoMessage() {}
  1164. func (x *BlockquoteNode) ProtoReflect() protoreflect.Message {
  1165. mi := &file_api_v1_markdown_service_proto_msgTypes[14]
  1166. if x != nil {
  1167. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1168. if ms.LoadMessageInfo() == nil {
  1169. ms.StoreMessageInfo(mi)
  1170. }
  1171. return ms
  1172. }
  1173. return mi.MessageOf(x)
  1174. }
  1175. // Deprecated: Use BlockquoteNode.ProtoReflect.Descriptor instead.
  1176. func (*BlockquoteNode) Descriptor() ([]byte, []int) {
  1177. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{14}
  1178. }
  1179. func (x *BlockquoteNode) GetChildren() []*Node {
  1180. if x != nil {
  1181. return x.Children
  1182. }
  1183. return nil
  1184. }
  1185. type ListNode struct {
  1186. state protoimpl.MessageState `protogen:"open.v1"`
  1187. Kind ListNode_Kind `protobuf:"varint,1,opt,name=kind,proto3,enum=memos.api.v1.ListNode_Kind" json:"kind,omitempty"`
  1188. Indent int32 `protobuf:"varint,2,opt,name=indent,proto3" json:"indent,omitempty"`
  1189. Children []*Node `protobuf:"bytes,3,rep,name=children,proto3" json:"children,omitempty"`
  1190. unknownFields protoimpl.UnknownFields
  1191. sizeCache protoimpl.SizeCache
  1192. }
  1193. func (x *ListNode) Reset() {
  1194. *x = ListNode{}
  1195. mi := &file_api_v1_markdown_service_proto_msgTypes[15]
  1196. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1197. ms.StoreMessageInfo(mi)
  1198. }
  1199. func (x *ListNode) String() string {
  1200. return protoimpl.X.MessageStringOf(x)
  1201. }
  1202. func (*ListNode) ProtoMessage() {}
  1203. func (x *ListNode) ProtoReflect() protoreflect.Message {
  1204. mi := &file_api_v1_markdown_service_proto_msgTypes[15]
  1205. if x != nil {
  1206. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1207. if ms.LoadMessageInfo() == nil {
  1208. ms.StoreMessageInfo(mi)
  1209. }
  1210. return ms
  1211. }
  1212. return mi.MessageOf(x)
  1213. }
  1214. // Deprecated: Use ListNode.ProtoReflect.Descriptor instead.
  1215. func (*ListNode) Descriptor() ([]byte, []int) {
  1216. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{15}
  1217. }
  1218. func (x *ListNode) GetKind() ListNode_Kind {
  1219. if x != nil {
  1220. return x.Kind
  1221. }
  1222. return ListNode_KIND_UNSPECIFIED
  1223. }
  1224. func (x *ListNode) GetIndent() int32 {
  1225. if x != nil {
  1226. return x.Indent
  1227. }
  1228. return 0
  1229. }
  1230. func (x *ListNode) GetChildren() []*Node {
  1231. if x != nil {
  1232. return x.Children
  1233. }
  1234. return nil
  1235. }
  1236. type OrderedListItemNode struct {
  1237. state protoimpl.MessageState `protogen:"open.v1"`
  1238. Number string `protobuf:"bytes,1,opt,name=number,proto3" json:"number,omitempty"`
  1239. Indent int32 `protobuf:"varint,2,opt,name=indent,proto3" json:"indent,omitempty"`
  1240. Children []*Node `protobuf:"bytes,3,rep,name=children,proto3" json:"children,omitempty"`
  1241. unknownFields protoimpl.UnknownFields
  1242. sizeCache protoimpl.SizeCache
  1243. }
  1244. func (x *OrderedListItemNode) Reset() {
  1245. *x = OrderedListItemNode{}
  1246. mi := &file_api_v1_markdown_service_proto_msgTypes[16]
  1247. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1248. ms.StoreMessageInfo(mi)
  1249. }
  1250. func (x *OrderedListItemNode) String() string {
  1251. return protoimpl.X.MessageStringOf(x)
  1252. }
  1253. func (*OrderedListItemNode) ProtoMessage() {}
  1254. func (x *OrderedListItemNode) ProtoReflect() protoreflect.Message {
  1255. mi := &file_api_v1_markdown_service_proto_msgTypes[16]
  1256. if x != nil {
  1257. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1258. if ms.LoadMessageInfo() == nil {
  1259. ms.StoreMessageInfo(mi)
  1260. }
  1261. return ms
  1262. }
  1263. return mi.MessageOf(x)
  1264. }
  1265. // Deprecated: Use OrderedListItemNode.ProtoReflect.Descriptor instead.
  1266. func (*OrderedListItemNode) Descriptor() ([]byte, []int) {
  1267. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{16}
  1268. }
  1269. func (x *OrderedListItemNode) GetNumber() string {
  1270. if x != nil {
  1271. return x.Number
  1272. }
  1273. return ""
  1274. }
  1275. func (x *OrderedListItemNode) GetIndent() int32 {
  1276. if x != nil {
  1277. return x.Indent
  1278. }
  1279. return 0
  1280. }
  1281. func (x *OrderedListItemNode) GetChildren() []*Node {
  1282. if x != nil {
  1283. return x.Children
  1284. }
  1285. return nil
  1286. }
  1287. type UnorderedListItemNode struct {
  1288. state protoimpl.MessageState `protogen:"open.v1"`
  1289. Symbol string `protobuf:"bytes,1,opt,name=symbol,proto3" json:"symbol,omitempty"`
  1290. Indent int32 `protobuf:"varint,2,opt,name=indent,proto3" json:"indent,omitempty"`
  1291. Children []*Node `protobuf:"bytes,3,rep,name=children,proto3" json:"children,omitempty"`
  1292. unknownFields protoimpl.UnknownFields
  1293. sizeCache protoimpl.SizeCache
  1294. }
  1295. func (x *UnorderedListItemNode) Reset() {
  1296. *x = UnorderedListItemNode{}
  1297. mi := &file_api_v1_markdown_service_proto_msgTypes[17]
  1298. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1299. ms.StoreMessageInfo(mi)
  1300. }
  1301. func (x *UnorderedListItemNode) String() string {
  1302. return protoimpl.X.MessageStringOf(x)
  1303. }
  1304. func (*UnorderedListItemNode) ProtoMessage() {}
  1305. func (x *UnorderedListItemNode) ProtoReflect() protoreflect.Message {
  1306. mi := &file_api_v1_markdown_service_proto_msgTypes[17]
  1307. if x != nil {
  1308. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1309. if ms.LoadMessageInfo() == nil {
  1310. ms.StoreMessageInfo(mi)
  1311. }
  1312. return ms
  1313. }
  1314. return mi.MessageOf(x)
  1315. }
  1316. // Deprecated: Use UnorderedListItemNode.ProtoReflect.Descriptor instead.
  1317. func (*UnorderedListItemNode) Descriptor() ([]byte, []int) {
  1318. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{17}
  1319. }
  1320. func (x *UnorderedListItemNode) GetSymbol() string {
  1321. if x != nil {
  1322. return x.Symbol
  1323. }
  1324. return ""
  1325. }
  1326. func (x *UnorderedListItemNode) GetIndent() int32 {
  1327. if x != nil {
  1328. return x.Indent
  1329. }
  1330. return 0
  1331. }
  1332. func (x *UnorderedListItemNode) GetChildren() []*Node {
  1333. if x != nil {
  1334. return x.Children
  1335. }
  1336. return nil
  1337. }
  1338. type TaskListItemNode struct {
  1339. state protoimpl.MessageState `protogen:"open.v1"`
  1340. Symbol string `protobuf:"bytes,1,opt,name=symbol,proto3" json:"symbol,omitempty"`
  1341. Indent int32 `protobuf:"varint,2,opt,name=indent,proto3" json:"indent,omitempty"`
  1342. Complete bool `protobuf:"varint,3,opt,name=complete,proto3" json:"complete,omitempty"`
  1343. Children []*Node `protobuf:"bytes,4,rep,name=children,proto3" json:"children,omitempty"`
  1344. unknownFields protoimpl.UnknownFields
  1345. sizeCache protoimpl.SizeCache
  1346. }
  1347. func (x *TaskListItemNode) Reset() {
  1348. *x = TaskListItemNode{}
  1349. mi := &file_api_v1_markdown_service_proto_msgTypes[18]
  1350. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1351. ms.StoreMessageInfo(mi)
  1352. }
  1353. func (x *TaskListItemNode) String() string {
  1354. return protoimpl.X.MessageStringOf(x)
  1355. }
  1356. func (*TaskListItemNode) ProtoMessage() {}
  1357. func (x *TaskListItemNode) ProtoReflect() protoreflect.Message {
  1358. mi := &file_api_v1_markdown_service_proto_msgTypes[18]
  1359. if x != nil {
  1360. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1361. if ms.LoadMessageInfo() == nil {
  1362. ms.StoreMessageInfo(mi)
  1363. }
  1364. return ms
  1365. }
  1366. return mi.MessageOf(x)
  1367. }
  1368. // Deprecated: Use TaskListItemNode.ProtoReflect.Descriptor instead.
  1369. func (*TaskListItemNode) Descriptor() ([]byte, []int) {
  1370. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{18}
  1371. }
  1372. func (x *TaskListItemNode) GetSymbol() string {
  1373. if x != nil {
  1374. return x.Symbol
  1375. }
  1376. return ""
  1377. }
  1378. func (x *TaskListItemNode) GetIndent() int32 {
  1379. if x != nil {
  1380. return x.Indent
  1381. }
  1382. return 0
  1383. }
  1384. func (x *TaskListItemNode) GetComplete() bool {
  1385. if x != nil {
  1386. return x.Complete
  1387. }
  1388. return false
  1389. }
  1390. func (x *TaskListItemNode) GetChildren() []*Node {
  1391. if x != nil {
  1392. return x.Children
  1393. }
  1394. return nil
  1395. }
  1396. type MathBlockNode struct {
  1397. state protoimpl.MessageState `protogen:"open.v1"`
  1398. Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"`
  1399. unknownFields protoimpl.UnknownFields
  1400. sizeCache protoimpl.SizeCache
  1401. }
  1402. func (x *MathBlockNode) Reset() {
  1403. *x = MathBlockNode{}
  1404. mi := &file_api_v1_markdown_service_proto_msgTypes[19]
  1405. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1406. ms.StoreMessageInfo(mi)
  1407. }
  1408. func (x *MathBlockNode) String() string {
  1409. return protoimpl.X.MessageStringOf(x)
  1410. }
  1411. func (*MathBlockNode) ProtoMessage() {}
  1412. func (x *MathBlockNode) ProtoReflect() protoreflect.Message {
  1413. mi := &file_api_v1_markdown_service_proto_msgTypes[19]
  1414. if x != nil {
  1415. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1416. if ms.LoadMessageInfo() == nil {
  1417. ms.StoreMessageInfo(mi)
  1418. }
  1419. return ms
  1420. }
  1421. return mi.MessageOf(x)
  1422. }
  1423. // Deprecated: Use MathBlockNode.ProtoReflect.Descriptor instead.
  1424. func (*MathBlockNode) Descriptor() ([]byte, []int) {
  1425. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{19}
  1426. }
  1427. func (x *MathBlockNode) GetContent() string {
  1428. if x != nil {
  1429. return x.Content
  1430. }
  1431. return ""
  1432. }
  1433. type TableNode struct {
  1434. state protoimpl.MessageState `protogen:"open.v1"`
  1435. Header []*Node `protobuf:"bytes,1,rep,name=header,proto3" json:"header,omitempty"`
  1436. Delimiter []string `protobuf:"bytes,2,rep,name=delimiter,proto3" json:"delimiter,omitempty"`
  1437. Rows []*TableNode_Row `protobuf:"bytes,3,rep,name=rows,proto3" json:"rows,omitempty"`
  1438. unknownFields protoimpl.UnknownFields
  1439. sizeCache protoimpl.SizeCache
  1440. }
  1441. func (x *TableNode) Reset() {
  1442. *x = TableNode{}
  1443. mi := &file_api_v1_markdown_service_proto_msgTypes[20]
  1444. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1445. ms.StoreMessageInfo(mi)
  1446. }
  1447. func (x *TableNode) String() string {
  1448. return protoimpl.X.MessageStringOf(x)
  1449. }
  1450. func (*TableNode) ProtoMessage() {}
  1451. func (x *TableNode) ProtoReflect() protoreflect.Message {
  1452. mi := &file_api_v1_markdown_service_proto_msgTypes[20]
  1453. if x != nil {
  1454. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1455. if ms.LoadMessageInfo() == nil {
  1456. ms.StoreMessageInfo(mi)
  1457. }
  1458. return ms
  1459. }
  1460. return mi.MessageOf(x)
  1461. }
  1462. // Deprecated: Use TableNode.ProtoReflect.Descriptor instead.
  1463. func (*TableNode) Descriptor() ([]byte, []int) {
  1464. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{20}
  1465. }
  1466. func (x *TableNode) GetHeader() []*Node {
  1467. if x != nil {
  1468. return x.Header
  1469. }
  1470. return nil
  1471. }
  1472. func (x *TableNode) GetDelimiter() []string {
  1473. if x != nil {
  1474. return x.Delimiter
  1475. }
  1476. return nil
  1477. }
  1478. func (x *TableNode) GetRows() []*TableNode_Row {
  1479. if x != nil {
  1480. return x.Rows
  1481. }
  1482. return nil
  1483. }
  1484. type EmbeddedContentNode struct {
  1485. state protoimpl.MessageState `protogen:"open.v1"`
  1486. ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"`
  1487. Params string `protobuf:"bytes,2,opt,name=params,proto3" json:"params,omitempty"`
  1488. unknownFields protoimpl.UnknownFields
  1489. sizeCache protoimpl.SizeCache
  1490. }
  1491. func (x *EmbeddedContentNode) Reset() {
  1492. *x = EmbeddedContentNode{}
  1493. mi := &file_api_v1_markdown_service_proto_msgTypes[21]
  1494. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1495. ms.StoreMessageInfo(mi)
  1496. }
  1497. func (x *EmbeddedContentNode) String() string {
  1498. return protoimpl.X.MessageStringOf(x)
  1499. }
  1500. func (*EmbeddedContentNode) ProtoMessage() {}
  1501. func (x *EmbeddedContentNode) ProtoReflect() protoreflect.Message {
  1502. mi := &file_api_v1_markdown_service_proto_msgTypes[21]
  1503. if x != nil {
  1504. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1505. if ms.LoadMessageInfo() == nil {
  1506. ms.StoreMessageInfo(mi)
  1507. }
  1508. return ms
  1509. }
  1510. return mi.MessageOf(x)
  1511. }
  1512. // Deprecated: Use EmbeddedContentNode.ProtoReflect.Descriptor instead.
  1513. func (*EmbeddedContentNode) Descriptor() ([]byte, []int) {
  1514. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{21}
  1515. }
  1516. func (x *EmbeddedContentNode) GetResourceName() string {
  1517. if x != nil {
  1518. return x.ResourceName
  1519. }
  1520. return ""
  1521. }
  1522. func (x *EmbeddedContentNode) GetParams() string {
  1523. if x != nil {
  1524. return x.Params
  1525. }
  1526. return ""
  1527. }
  1528. type TextNode struct {
  1529. state protoimpl.MessageState `protogen:"open.v1"`
  1530. Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"`
  1531. unknownFields protoimpl.UnknownFields
  1532. sizeCache protoimpl.SizeCache
  1533. }
  1534. func (x *TextNode) Reset() {
  1535. *x = TextNode{}
  1536. mi := &file_api_v1_markdown_service_proto_msgTypes[22]
  1537. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1538. ms.StoreMessageInfo(mi)
  1539. }
  1540. func (x *TextNode) String() string {
  1541. return protoimpl.X.MessageStringOf(x)
  1542. }
  1543. func (*TextNode) ProtoMessage() {}
  1544. func (x *TextNode) ProtoReflect() protoreflect.Message {
  1545. mi := &file_api_v1_markdown_service_proto_msgTypes[22]
  1546. if x != nil {
  1547. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1548. if ms.LoadMessageInfo() == nil {
  1549. ms.StoreMessageInfo(mi)
  1550. }
  1551. return ms
  1552. }
  1553. return mi.MessageOf(x)
  1554. }
  1555. // Deprecated: Use TextNode.ProtoReflect.Descriptor instead.
  1556. func (*TextNode) Descriptor() ([]byte, []int) {
  1557. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{22}
  1558. }
  1559. func (x *TextNode) GetContent() string {
  1560. if x != nil {
  1561. return x.Content
  1562. }
  1563. return ""
  1564. }
  1565. type BoldNode struct {
  1566. state protoimpl.MessageState `protogen:"open.v1"`
  1567. Symbol string `protobuf:"bytes,1,opt,name=symbol,proto3" json:"symbol,omitempty"`
  1568. Children []*Node `protobuf:"bytes,2,rep,name=children,proto3" json:"children,omitempty"`
  1569. unknownFields protoimpl.UnknownFields
  1570. sizeCache protoimpl.SizeCache
  1571. }
  1572. func (x *BoldNode) Reset() {
  1573. *x = BoldNode{}
  1574. mi := &file_api_v1_markdown_service_proto_msgTypes[23]
  1575. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1576. ms.StoreMessageInfo(mi)
  1577. }
  1578. func (x *BoldNode) String() string {
  1579. return protoimpl.X.MessageStringOf(x)
  1580. }
  1581. func (*BoldNode) ProtoMessage() {}
  1582. func (x *BoldNode) ProtoReflect() protoreflect.Message {
  1583. mi := &file_api_v1_markdown_service_proto_msgTypes[23]
  1584. if x != nil {
  1585. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1586. if ms.LoadMessageInfo() == nil {
  1587. ms.StoreMessageInfo(mi)
  1588. }
  1589. return ms
  1590. }
  1591. return mi.MessageOf(x)
  1592. }
  1593. // Deprecated: Use BoldNode.ProtoReflect.Descriptor instead.
  1594. func (*BoldNode) Descriptor() ([]byte, []int) {
  1595. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{23}
  1596. }
  1597. func (x *BoldNode) GetSymbol() string {
  1598. if x != nil {
  1599. return x.Symbol
  1600. }
  1601. return ""
  1602. }
  1603. func (x *BoldNode) GetChildren() []*Node {
  1604. if x != nil {
  1605. return x.Children
  1606. }
  1607. return nil
  1608. }
  1609. type ItalicNode struct {
  1610. state protoimpl.MessageState `protogen:"open.v1"`
  1611. Symbol string `protobuf:"bytes,1,opt,name=symbol,proto3" json:"symbol,omitempty"`
  1612. Content string `protobuf:"bytes,2,opt,name=content,proto3" json:"content,omitempty"`
  1613. unknownFields protoimpl.UnknownFields
  1614. sizeCache protoimpl.SizeCache
  1615. }
  1616. func (x *ItalicNode) Reset() {
  1617. *x = ItalicNode{}
  1618. mi := &file_api_v1_markdown_service_proto_msgTypes[24]
  1619. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1620. ms.StoreMessageInfo(mi)
  1621. }
  1622. func (x *ItalicNode) String() string {
  1623. return protoimpl.X.MessageStringOf(x)
  1624. }
  1625. func (*ItalicNode) ProtoMessage() {}
  1626. func (x *ItalicNode) ProtoReflect() protoreflect.Message {
  1627. mi := &file_api_v1_markdown_service_proto_msgTypes[24]
  1628. if x != nil {
  1629. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1630. if ms.LoadMessageInfo() == nil {
  1631. ms.StoreMessageInfo(mi)
  1632. }
  1633. return ms
  1634. }
  1635. return mi.MessageOf(x)
  1636. }
  1637. // Deprecated: Use ItalicNode.ProtoReflect.Descriptor instead.
  1638. func (*ItalicNode) Descriptor() ([]byte, []int) {
  1639. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{24}
  1640. }
  1641. func (x *ItalicNode) GetSymbol() string {
  1642. if x != nil {
  1643. return x.Symbol
  1644. }
  1645. return ""
  1646. }
  1647. func (x *ItalicNode) GetContent() string {
  1648. if x != nil {
  1649. return x.Content
  1650. }
  1651. return ""
  1652. }
  1653. type BoldItalicNode struct {
  1654. state protoimpl.MessageState `protogen:"open.v1"`
  1655. Symbol string `protobuf:"bytes,1,opt,name=symbol,proto3" json:"symbol,omitempty"`
  1656. Content string `protobuf:"bytes,2,opt,name=content,proto3" json:"content,omitempty"`
  1657. unknownFields protoimpl.UnknownFields
  1658. sizeCache protoimpl.SizeCache
  1659. }
  1660. func (x *BoldItalicNode) Reset() {
  1661. *x = BoldItalicNode{}
  1662. mi := &file_api_v1_markdown_service_proto_msgTypes[25]
  1663. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1664. ms.StoreMessageInfo(mi)
  1665. }
  1666. func (x *BoldItalicNode) String() string {
  1667. return protoimpl.X.MessageStringOf(x)
  1668. }
  1669. func (*BoldItalicNode) ProtoMessage() {}
  1670. func (x *BoldItalicNode) ProtoReflect() protoreflect.Message {
  1671. mi := &file_api_v1_markdown_service_proto_msgTypes[25]
  1672. if x != nil {
  1673. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1674. if ms.LoadMessageInfo() == nil {
  1675. ms.StoreMessageInfo(mi)
  1676. }
  1677. return ms
  1678. }
  1679. return mi.MessageOf(x)
  1680. }
  1681. // Deprecated: Use BoldItalicNode.ProtoReflect.Descriptor instead.
  1682. func (*BoldItalicNode) Descriptor() ([]byte, []int) {
  1683. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{25}
  1684. }
  1685. func (x *BoldItalicNode) GetSymbol() string {
  1686. if x != nil {
  1687. return x.Symbol
  1688. }
  1689. return ""
  1690. }
  1691. func (x *BoldItalicNode) GetContent() string {
  1692. if x != nil {
  1693. return x.Content
  1694. }
  1695. return ""
  1696. }
  1697. type CodeNode struct {
  1698. state protoimpl.MessageState `protogen:"open.v1"`
  1699. Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"`
  1700. unknownFields protoimpl.UnknownFields
  1701. sizeCache protoimpl.SizeCache
  1702. }
  1703. func (x *CodeNode) Reset() {
  1704. *x = CodeNode{}
  1705. mi := &file_api_v1_markdown_service_proto_msgTypes[26]
  1706. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1707. ms.StoreMessageInfo(mi)
  1708. }
  1709. func (x *CodeNode) String() string {
  1710. return protoimpl.X.MessageStringOf(x)
  1711. }
  1712. func (*CodeNode) ProtoMessage() {}
  1713. func (x *CodeNode) ProtoReflect() protoreflect.Message {
  1714. mi := &file_api_v1_markdown_service_proto_msgTypes[26]
  1715. if x != nil {
  1716. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1717. if ms.LoadMessageInfo() == nil {
  1718. ms.StoreMessageInfo(mi)
  1719. }
  1720. return ms
  1721. }
  1722. return mi.MessageOf(x)
  1723. }
  1724. // Deprecated: Use CodeNode.ProtoReflect.Descriptor instead.
  1725. func (*CodeNode) Descriptor() ([]byte, []int) {
  1726. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{26}
  1727. }
  1728. func (x *CodeNode) GetContent() string {
  1729. if x != nil {
  1730. return x.Content
  1731. }
  1732. return ""
  1733. }
  1734. type ImageNode struct {
  1735. state protoimpl.MessageState `protogen:"open.v1"`
  1736. AltText string `protobuf:"bytes,1,opt,name=alt_text,json=altText,proto3" json:"alt_text,omitempty"`
  1737. Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
  1738. unknownFields protoimpl.UnknownFields
  1739. sizeCache protoimpl.SizeCache
  1740. }
  1741. func (x *ImageNode) Reset() {
  1742. *x = ImageNode{}
  1743. mi := &file_api_v1_markdown_service_proto_msgTypes[27]
  1744. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1745. ms.StoreMessageInfo(mi)
  1746. }
  1747. func (x *ImageNode) String() string {
  1748. return protoimpl.X.MessageStringOf(x)
  1749. }
  1750. func (*ImageNode) ProtoMessage() {}
  1751. func (x *ImageNode) ProtoReflect() protoreflect.Message {
  1752. mi := &file_api_v1_markdown_service_proto_msgTypes[27]
  1753. if x != nil {
  1754. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1755. if ms.LoadMessageInfo() == nil {
  1756. ms.StoreMessageInfo(mi)
  1757. }
  1758. return ms
  1759. }
  1760. return mi.MessageOf(x)
  1761. }
  1762. // Deprecated: Use ImageNode.ProtoReflect.Descriptor instead.
  1763. func (*ImageNode) Descriptor() ([]byte, []int) {
  1764. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{27}
  1765. }
  1766. func (x *ImageNode) GetAltText() string {
  1767. if x != nil {
  1768. return x.AltText
  1769. }
  1770. return ""
  1771. }
  1772. func (x *ImageNode) GetUrl() string {
  1773. if x != nil {
  1774. return x.Url
  1775. }
  1776. return ""
  1777. }
  1778. type LinkNode struct {
  1779. state protoimpl.MessageState `protogen:"open.v1"`
  1780. Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
  1781. Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
  1782. unknownFields protoimpl.UnknownFields
  1783. sizeCache protoimpl.SizeCache
  1784. }
  1785. func (x *LinkNode) Reset() {
  1786. *x = LinkNode{}
  1787. mi := &file_api_v1_markdown_service_proto_msgTypes[28]
  1788. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1789. ms.StoreMessageInfo(mi)
  1790. }
  1791. func (x *LinkNode) String() string {
  1792. return protoimpl.X.MessageStringOf(x)
  1793. }
  1794. func (*LinkNode) ProtoMessage() {}
  1795. func (x *LinkNode) ProtoReflect() protoreflect.Message {
  1796. mi := &file_api_v1_markdown_service_proto_msgTypes[28]
  1797. if x != nil {
  1798. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1799. if ms.LoadMessageInfo() == nil {
  1800. ms.StoreMessageInfo(mi)
  1801. }
  1802. return ms
  1803. }
  1804. return mi.MessageOf(x)
  1805. }
  1806. // Deprecated: Use LinkNode.ProtoReflect.Descriptor instead.
  1807. func (*LinkNode) Descriptor() ([]byte, []int) {
  1808. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{28}
  1809. }
  1810. func (x *LinkNode) GetText() string {
  1811. if x != nil {
  1812. return x.Text
  1813. }
  1814. return ""
  1815. }
  1816. func (x *LinkNode) GetUrl() string {
  1817. if x != nil {
  1818. return x.Url
  1819. }
  1820. return ""
  1821. }
  1822. type AutoLinkNode struct {
  1823. state protoimpl.MessageState `protogen:"open.v1"`
  1824. Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
  1825. IsRawText bool `protobuf:"varint,2,opt,name=is_raw_text,json=isRawText,proto3" json:"is_raw_text,omitempty"`
  1826. unknownFields protoimpl.UnknownFields
  1827. sizeCache protoimpl.SizeCache
  1828. }
  1829. func (x *AutoLinkNode) Reset() {
  1830. *x = AutoLinkNode{}
  1831. mi := &file_api_v1_markdown_service_proto_msgTypes[29]
  1832. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1833. ms.StoreMessageInfo(mi)
  1834. }
  1835. func (x *AutoLinkNode) String() string {
  1836. return protoimpl.X.MessageStringOf(x)
  1837. }
  1838. func (*AutoLinkNode) ProtoMessage() {}
  1839. func (x *AutoLinkNode) ProtoReflect() protoreflect.Message {
  1840. mi := &file_api_v1_markdown_service_proto_msgTypes[29]
  1841. if x != nil {
  1842. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1843. if ms.LoadMessageInfo() == nil {
  1844. ms.StoreMessageInfo(mi)
  1845. }
  1846. return ms
  1847. }
  1848. return mi.MessageOf(x)
  1849. }
  1850. // Deprecated: Use AutoLinkNode.ProtoReflect.Descriptor instead.
  1851. func (*AutoLinkNode) Descriptor() ([]byte, []int) {
  1852. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{29}
  1853. }
  1854. func (x *AutoLinkNode) GetUrl() string {
  1855. if x != nil {
  1856. return x.Url
  1857. }
  1858. return ""
  1859. }
  1860. func (x *AutoLinkNode) GetIsRawText() bool {
  1861. if x != nil {
  1862. return x.IsRawText
  1863. }
  1864. return false
  1865. }
  1866. type TagNode struct {
  1867. state protoimpl.MessageState `protogen:"open.v1"`
  1868. Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"`
  1869. unknownFields protoimpl.UnknownFields
  1870. sizeCache protoimpl.SizeCache
  1871. }
  1872. func (x *TagNode) Reset() {
  1873. *x = TagNode{}
  1874. mi := &file_api_v1_markdown_service_proto_msgTypes[30]
  1875. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1876. ms.StoreMessageInfo(mi)
  1877. }
  1878. func (x *TagNode) String() string {
  1879. return protoimpl.X.MessageStringOf(x)
  1880. }
  1881. func (*TagNode) ProtoMessage() {}
  1882. func (x *TagNode) ProtoReflect() protoreflect.Message {
  1883. mi := &file_api_v1_markdown_service_proto_msgTypes[30]
  1884. if x != nil {
  1885. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1886. if ms.LoadMessageInfo() == nil {
  1887. ms.StoreMessageInfo(mi)
  1888. }
  1889. return ms
  1890. }
  1891. return mi.MessageOf(x)
  1892. }
  1893. // Deprecated: Use TagNode.ProtoReflect.Descriptor instead.
  1894. func (*TagNode) Descriptor() ([]byte, []int) {
  1895. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{30}
  1896. }
  1897. func (x *TagNode) GetContent() string {
  1898. if x != nil {
  1899. return x.Content
  1900. }
  1901. return ""
  1902. }
  1903. type StrikethroughNode struct {
  1904. state protoimpl.MessageState `protogen:"open.v1"`
  1905. Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"`
  1906. unknownFields protoimpl.UnknownFields
  1907. sizeCache protoimpl.SizeCache
  1908. }
  1909. func (x *StrikethroughNode) Reset() {
  1910. *x = StrikethroughNode{}
  1911. mi := &file_api_v1_markdown_service_proto_msgTypes[31]
  1912. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1913. ms.StoreMessageInfo(mi)
  1914. }
  1915. func (x *StrikethroughNode) String() string {
  1916. return protoimpl.X.MessageStringOf(x)
  1917. }
  1918. func (*StrikethroughNode) ProtoMessage() {}
  1919. func (x *StrikethroughNode) ProtoReflect() protoreflect.Message {
  1920. mi := &file_api_v1_markdown_service_proto_msgTypes[31]
  1921. if x != nil {
  1922. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1923. if ms.LoadMessageInfo() == nil {
  1924. ms.StoreMessageInfo(mi)
  1925. }
  1926. return ms
  1927. }
  1928. return mi.MessageOf(x)
  1929. }
  1930. // Deprecated: Use StrikethroughNode.ProtoReflect.Descriptor instead.
  1931. func (*StrikethroughNode) Descriptor() ([]byte, []int) {
  1932. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{31}
  1933. }
  1934. func (x *StrikethroughNode) GetContent() string {
  1935. if x != nil {
  1936. return x.Content
  1937. }
  1938. return ""
  1939. }
  1940. type EscapingCharacterNode struct {
  1941. state protoimpl.MessageState `protogen:"open.v1"`
  1942. Symbol string `protobuf:"bytes,1,opt,name=symbol,proto3" json:"symbol,omitempty"`
  1943. unknownFields protoimpl.UnknownFields
  1944. sizeCache protoimpl.SizeCache
  1945. }
  1946. func (x *EscapingCharacterNode) Reset() {
  1947. *x = EscapingCharacterNode{}
  1948. mi := &file_api_v1_markdown_service_proto_msgTypes[32]
  1949. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1950. ms.StoreMessageInfo(mi)
  1951. }
  1952. func (x *EscapingCharacterNode) String() string {
  1953. return protoimpl.X.MessageStringOf(x)
  1954. }
  1955. func (*EscapingCharacterNode) ProtoMessage() {}
  1956. func (x *EscapingCharacterNode) ProtoReflect() protoreflect.Message {
  1957. mi := &file_api_v1_markdown_service_proto_msgTypes[32]
  1958. if x != nil {
  1959. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1960. if ms.LoadMessageInfo() == nil {
  1961. ms.StoreMessageInfo(mi)
  1962. }
  1963. return ms
  1964. }
  1965. return mi.MessageOf(x)
  1966. }
  1967. // Deprecated: Use EscapingCharacterNode.ProtoReflect.Descriptor instead.
  1968. func (*EscapingCharacterNode) Descriptor() ([]byte, []int) {
  1969. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{32}
  1970. }
  1971. func (x *EscapingCharacterNode) GetSymbol() string {
  1972. if x != nil {
  1973. return x.Symbol
  1974. }
  1975. return ""
  1976. }
  1977. type MathNode struct {
  1978. state protoimpl.MessageState `protogen:"open.v1"`
  1979. Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"`
  1980. unknownFields protoimpl.UnknownFields
  1981. sizeCache protoimpl.SizeCache
  1982. }
  1983. func (x *MathNode) Reset() {
  1984. *x = MathNode{}
  1985. mi := &file_api_v1_markdown_service_proto_msgTypes[33]
  1986. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1987. ms.StoreMessageInfo(mi)
  1988. }
  1989. func (x *MathNode) String() string {
  1990. return protoimpl.X.MessageStringOf(x)
  1991. }
  1992. func (*MathNode) ProtoMessage() {}
  1993. func (x *MathNode) ProtoReflect() protoreflect.Message {
  1994. mi := &file_api_v1_markdown_service_proto_msgTypes[33]
  1995. if x != nil {
  1996. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1997. if ms.LoadMessageInfo() == nil {
  1998. ms.StoreMessageInfo(mi)
  1999. }
  2000. return ms
  2001. }
  2002. return mi.MessageOf(x)
  2003. }
  2004. // Deprecated: Use MathNode.ProtoReflect.Descriptor instead.
  2005. func (*MathNode) Descriptor() ([]byte, []int) {
  2006. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{33}
  2007. }
  2008. func (x *MathNode) GetContent() string {
  2009. if x != nil {
  2010. return x.Content
  2011. }
  2012. return ""
  2013. }
  2014. type HighlightNode struct {
  2015. state protoimpl.MessageState `protogen:"open.v1"`
  2016. Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"`
  2017. unknownFields protoimpl.UnknownFields
  2018. sizeCache protoimpl.SizeCache
  2019. }
  2020. func (x *HighlightNode) Reset() {
  2021. *x = HighlightNode{}
  2022. mi := &file_api_v1_markdown_service_proto_msgTypes[34]
  2023. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2024. ms.StoreMessageInfo(mi)
  2025. }
  2026. func (x *HighlightNode) String() string {
  2027. return protoimpl.X.MessageStringOf(x)
  2028. }
  2029. func (*HighlightNode) ProtoMessage() {}
  2030. func (x *HighlightNode) ProtoReflect() protoreflect.Message {
  2031. mi := &file_api_v1_markdown_service_proto_msgTypes[34]
  2032. if x != nil {
  2033. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2034. if ms.LoadMessageInfo() == nil {
  2035. ms.StoreMessageInfo(mi)
  2036. }
  2037. return ms
  2038. }
  2039. return mi.MessageOf(x)
  2040. }
  2041. // Deprecated: Use HighlightNode.ProtoReflect.Descriptor instead.
  2042. func (*HighlightNode) Descriptor() ([]byte, []int) {
  2043. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{34}
  2044. }
  2045. func (x *HighlightNode) GetContent() string {
  2046. if x != nil {
  2047. return x.Content
  2048. }
  2049. return ""
  2050. }
  2051. type SubscriptNode struct {
  2052. state protoimpl.MessageState `protogen:"open.v1"`
  2053. Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"`
  2054. unknownFields protoimpl.UnknownFields
  2055. sizeCache protoimpl.SizeCache
  2056. }
  2057. func (x *SubscriptNode) Reset() {
  2058. *x = SubscriptNode{}
  2059. mi := &file_api_v1_markdown_service_proto_msgTypes[35]
  2060. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2061. ms.StoreMessageInfo(mi)
  2062. }
  2063. func (x *SubscriptNode) String() string {
  2064. return protoimpl.X.MessageStringOf(x)
  2065. }
  2066. func (*SubscriptNode) ProtoMessage() {}
  2067. func (x *SubscriptNode) ProtoReflect() protoreflect.Message {
  2068. mi := &file_api_v1_markdown_service_proto_msgTypes[35]
  2069. if x != nil {
  2070. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2071. if ms.LoadMessageInfo() == nil {
  2072. ms.StoreMessageInfo(mi)
  2073. }
  2074. return ms
  2075. }
  2076. return mi.MessageOf(x)
  2077. }
  2078. // Deprecated: Use SubscriptNode.ProtoReflect.Descriptor instead.
  2079. func (*SubscriptNode) Descriptor() ([]byte, []int) {
  2080. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{35}
  2081. }
  2082. func (x *SubscriptNode) GetContent() string {
  2083. if x != nil {
  2084. return x.Content
  2085. }
  2086. return ""
  2087. }
  2088. type SuperscriptNode struct {
  2089. state protoimpl.MessageState `protogen:"open.v1"`
  2090. Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"`
  2091. unknownFields protoimpl.UnknownFields
  2092. sizeCache protoimpl.SizeCache
  2093. }
  2094. func (x *SuperscriptNode) Reset() {
  2095. *x = SuperscriptNode{}
  2096. mi := &file_api_v1_markdown_service_proto_msgTypes[36]
  2097. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2098. ms.StoreMessageInfo(mi)
  2099. }
  2100. func (x *SuperscriptNode) String() string {
  2101. return protoimpl.X.MessageStringOf(x)
  2102. }
  2103. func (*SuperscriptNode) ProtoMessage() {}
  2104. func (x *SuperscriptNode) ProtoReflect() protoreflect.Message {
  2105. mi := &file_api_v1_markdown_service_proto_msgTypes[36]
  2106. if x != nil {
  2107. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2108. if ms.LoadMessageInfo() == nil {
  2109. ms.StoreMessageInfo(mi)
  2110. }
  2111. return ms
  2112. }
  2113. return mi.MessageOf(x)
  2114. }
  2115. // Deprecated: Use SuperscriptNode.ProtoReflect.Descriptor instead.
  2116. func (*SuperscriptNode) Descriptor() ([]byte, []int) {
  2117. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{36}
  2118. }
  2119. func (x *SuperscriptNode) GetContent() string {
  2120. if x != nil {
  2121. return x.Content
  2122. }
  2123. return ""
  2124. }
  2125. type ReferencedContentNode struct {
  2126. state protoimpl.MessageState `protogen:"open.v1"`
  2127. ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"`
  2128. Params string `protobuf:"bytes,2,opt,name=params,proto3" json:"params,omitempty"`
  2129. unknownFields protoimpl.UnknownFields
  2130. sizeCache protoimpl.SizeCache
  2131. }
  2132. func (x *ReferencedContentNode) Reset() {
  2133. *x = ReferencedContentNode{}
  2134. mi := &file_api_v1_markdown_service_proto_msgTypes[37]
  2135. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2136. ms.StoreMessageInfo(mi)
  2137. }
  2138. func (x *ReferencedContentNode) String() string {
  2139. return protoimpl.X.MessageStringOf(x)
  2140. }
  2141. func (*ReferencedContentNode) ProtoMessage() {}
  2142. func (x *ReferencedContentNode) ProtoReflect() protoreflect.Message {
  2143. mi := &file_api_v1_markdown_service_proto_msgTypes[37]
  2144. if x != nil {
  2145. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2146. if ms.LoadMessageInfo() == nil {
  2147. ms.StoreMessageInfo(mi)
  2148. }
  2149. return ms
  2150. }
  2151. return mi.MessageOf(x)
  2152. }
  2153. // Deprecated: Use ReferencedContentNode.ProtoReflect.Descriptor instead.
  2154. func (*ReferencedContentNode) Descriptor() ([]byte, []int) {
  2155. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{37}
  2156. }
  2157. func (x *ReferencedContentNode) GetResourceName() string {
  2158. if x != nil {
  2159. return x.ResourceName
  2160. }
  2161. return ""
  2162. }
  2163. func (x *ReferencedContentNode) GetParams() string {
  2164. if x != nil {
  2165. return x.Params
  2166. }
  2167. return ""
  2168. }
  2169. type SpoilerNode struct {
  2170. state protoimpl.MessageState `protogen:"open.v1"`
  2171. Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"`
  2172. unknownFields protoimpl.UnknownFields
  2173. sizeCache protoimpl.SizeCache
  2174. }
  2175. func (x *SpoilerNode) Reset() {
  2176. *x = SpoilerNode{}
  2177. mi := &file_api_v1_markdown_service_proto_msgTypes[38]
  2178. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2179. ms.StoreMessageInfo(mi)
  2180. }
  2181. func (x *SpoilerNode) String() string {
  2182. return protoimpl.X.MessageStringOf(x)
  2183. }
  2184. func (*SpoilerNode) ProtoMessage() {}
  2185. func (x *SpoilerNode) ProtoReflect() protoreflect.Message {
  2186. mi := &file_api_v1_markdown_service_proto_msgTypes[38]
  2187. if x != nil {
  2188. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2189. if ms.LoadMessageInfo() == nil {
  2190. ms.StoreMessageInfo(mi)
  2191. }
  2192. return ms
  2193. }
  2194. return mi.MessageOf(x)
  2195. }
  2196. // Deprecated: Use SpoilerNode.ProtoReflect.Descriptor instead.
  2197. func (*SpoilerNode) Descriptor() ([]byte, []int) {
  2198. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{38}
  2199. }
  2200. func (x *SpoilerNode) GetContent() string {
  2201. if x != nil {
  2202. return x.Content
  2203. }
  2204. return ""
  2205. }
  2206. type HTMLElementNode struct {
  2207. state protoimpl.MessageState `protogen:"open.v1"`
  2208. TagName string `protobuf:"bytes,1,opt,name=tag_name,json=tagName,proto3" json:"tag_name,omitempty"`
  2209. Attributes map[string]string `protobuf:"bytes,2,rep,name=attributes,proto3" json:"attributes,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  2210. unknownFields protoimpl.UnknownFields
  2211. sizeCache protoimpl.SizeCache
  2212. }
  2213. func (x *HTMLElementNode) Reset() {
  2214. *x = HTMLElementNode{}
  2215. mi := &file_api_v1_markdown_service_proto_msgTypes[39]
  2216. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2217. ms.StoreMessageInfo(mi)
  2218. }
  2219. func (x *HTMLElementNode) String() string {
  2220. return protoimpl.X.MessageStringOf(x)
  2221. }
  2222. func (*HTMLElementNode) ProtoMessage() {}
  2223. func (x *HTMLElementNode) ProtoReflect() protoreflect.Message {
  2224. mi := &file_api_v1_markdown_service_proto_msgTypes[39]
  2225. if x != nil {
  2226. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2227. if ms.LoadMessageInfo() == nil {
  2228. ms.StoreMessageInfo(mi)
  2229. }
  2230. return ms
  2231. }
  2232. return mi.MessageOf(x)
  2233. }
  2234. // Deprecated: Use HTMLElementNode.ProtoReflect.Descriptor instead.
  2235. func (*HTMLElementNode) Descriptor() ([]byte, []int) {
  2236. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{39}
  2237. }
  2238. func (x *HTMLElementNode) GetTagName() string {
  2239. if x != nil {
  2240. return x.TagName
  2241. }
  2242. return ""
  2243. }
  2244. func (x *HTMLElementNode) GetAttributes() map[string]string {
  2245. if x != nil {
  2246. return x.Attributes
  2247. }
  2248. return nil
  2249. }
  2250. type TableNode_Row struct {
  2251. state protoimpl.MessageState `protogen:"open.v1"`
  2252. Cells []*Node `protobuf:"bytes,1,rep,name=cells,proto3" json:"cells,omitempty"`
  2253. unknownFields protoimpl.UnknownFields
  2254. sizeCache protoimpl.SizeCache
  2255. }
  2256. func (x *TableNode_Row) Reset() {
  2257. *x = TableNode_Row{}
  2258. mi := &file_api_v1_markdown_service_proto_msgTypes[40]
  2259. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2260. ms.StoreMessageInfo(mi)
  2261. }
  2262. func (x *TableNode_Row) String() string {
  2263. return protoimpl.X.MessageStringOf(x)
  2264. }
  2265. func (*TableNode_Row) ProtoMessage() {}
  2266. func (x *TableNode_Row) ProtoReflect() protoreflect.Message {
  2267. mi := &file_api_v1_markdown_service_proto_msgTypes[40]
  2268. if x != nil {
  2269. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2270. if ms.LoadMessageInfo() == nil {
  2271. ms.StoreMessageInfo(mi)
  2272. }
  2273. return ms
  2274. }
  2275. return mi.MessageOf(x)
  2276. }
  2277. // Deprecated: Use TableNode_Row.ProtoReflect.Descriptor instead.
  2278. func (*TableNode_Row) Descriptor() ([]byte, []int) {
  2279. return file_api_v1_markdown_service_proto_rawDescGZIP(), []int{20, 0}
  2280. }
  2281. func (x *TableNode_Row) GetCells() []*Node {
  2282. if x != nil {
  2283. return x.Cells
  2284. }
  2285. return nil
  2286. }
  2287. var File_api_v1_markdown_service_proto protoreflect.FileDescriptor
  2288. var file_api_v1_markdown_service_proto_rawDesc = []byte{
  2289. 0x0a, 0x1d, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x6d, 0x61, 0x72, 0x6b, 0x64, 0x6f, 0x77,
  2290. 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
  2291. 0x0c, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x1a, 0x1c, 0x67,
  2292. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61,
  2293. 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x32, 0x0a, 0x14, 0x50,
  2294. 0x61, 0x72, 0x73, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x64, 0x6f, 0x77, 0x6e, 0x52, 0x65, 0x71, 0x75,
  2295. 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x61, 0x72, 0x6b, 0x64, 0x6f, 0x77, 0x6e, 0x18,
  2296. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6d, 0x61, 0x72, 0x6b, 0x64, 0x6f, 0x77, 0x6e, 0x22,
  2297. 0x41, 0x0a, 0x15, 0x50, 0x61, 0x72, 0x73, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x64, 0x6f, 0x77, 0x6e,
  2298. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x28, 0x0a, 0x05, 0x6e, 0x6f, 0x64, 0x65,
  2299. 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e,
  2300. 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x05, 0x6e, 0x6f, 0x64,
  2301. 0x65, 0x73, 0x22, 0x47, 0x0a, 0x1b, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x4d, 0x61, 0x72,
  2302. 0x6b, 0x64, 0x6f, 0x77, 0x6e, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2303. 0x74, 0x12, 0x28, 0x0a, 0x05, 0x6e, 0x6f, 0x64, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
  2304. 0x32, 0x12, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
  2305. 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x05, 0x6e, 0x6f, 0x64, 0x65, 0x73, 0x22, 0x3a, 0x0a, 0x1c, 0x52,
  2306. 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x64, 0x6f, 0x77, 0x6e, 0x4e, 0x6f,
  2307. 0x64, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6d,
  2308. 0x61, 0x72, 0x6b, 0x64, 0x6f, 0x77, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6d,
  2309. 0x61, 0x72, 0x6b, 0x64, 0x6f, 0x77, 0x6e, 0x22, 0x49, 0x0a, 0x1d, 0x53, 0x74, 0x72, 0x69, 0x6e,
  2310. 0x67, 0x69, 0x66, 0x79, 0x4d, 0x61, 0x72, 0x6b, 0x64, 0x6f, 0x77, 0x6e, 0x4e, 0x6f, 0x64, 0x65,
  2311. 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x05, 0x6e, 0x6f, 0x64, 0x65,
  2312. 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e,
  2313. 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x05, 0x6e, 0x6f, 0x64,
  2314. 0x65, 0x73, 0x22, 0x3f, 0x0a, 0x1e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x69, 0x66, 0x79, 0x4d,
  2315. 0x61, 0x72, 0x6b, 0x64, 0x6f, 0x77, 0x6e, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70,
  2316. 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x6c, 0x61, 0x69, 0x6e, 0x5f, 0x74, 0x65,
  2317. 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x6c, 0x61, 0x69, 0x6e, 0x54,
  2318. 0x65, 0x78, 0x74, 0x22, 0x2c, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x4d, 0x65,
  2319. 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a,
  2320. 0x04, 0x6c, 0x69, 0x6e, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6c, 0x69, 0x6e,
  2321. 0x6b, 0x22, 0x5c, 0x0a, 0x0c, 0x4c, 0x69, 0x6e, 0x6b, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74,
  2322. 0x61, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  2323. 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72,
  2324. 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65,
  2325. 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x6d, 0x61,
  2326. 0x67, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x22,
  2327. 0xca, 0x11, 0x0a, 0x04, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x2a, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65,
  2328. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x16, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61,
  2329. 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4e, 0x6f, 0x64, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04,
  2330. 0x74, 0x79, 0x70, 0x65, 0x12, 0x45, 0x0a, 0x0f, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x62, 0x72, 0x65,
  2331. 0x61, 0x6b, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e,
  2332. 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x6e,
  2333. 0x65, 0x42, 0x72, 0x65, 0x61, 0x6b, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x00, 0x52, 0x0d, 0x6c, 0x69,
  2334. 0x6e, 0x65, 0x42, 0x72, 0x65, 0x61, 0x6b, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x44, 0x0a, 0x0e, 0x70,
  2335. 0x61, 0x72, 0x61, 0x67, 0x72, 0x61, 0x70, 0x68, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x0c, 0x20,
  2336. 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2337. 0x76, 0x31, 0x2e, 0x50, 0x61, 0x72, 0x61, 0x67, 0x72, 0x61, 0x70, 0x68, 0x4e, 0x6f, 0x64, 0x65,
  2338. 0x48, 0x00, 0x52, 0x0d, 0x70, 0x61, 0x72, 0x61, 0x67, 0x72, 0x61, 0x70, 0x68, 0x4e, 0x6f, 0x64,
  2339. 0x65, 0x12, 0x45, 0x0a, 0x0f, 0x63, 0x6f, 0x64, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f,
  2340. 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x6d, 0x65, 0x6d,
  2341. 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x6f, 0x64, 0x65, 0x42, 0x6c,
  2342. 0x6f, 0x63, 0x6b, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x00, 0x52, 0x0d, 0x63, 0x6f, 0x64, 0x65, 0x42,
  2343. 0x6c, 0x6f, 0x63, 0x6b, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x3e, 0x0a, 0x0c, 0x68, 0x65, 0x61, 0x64,
  2344. 0x69, 0x6e, 0x67, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19,
  2345. 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x48, 0x65,
  2346. 0x61, 0x64, 0x69, 0x6e, 0x67, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x00, 0x52, 0x0b, 0x68, 0x65, 0x61,
  2347. 0x64, 0x69, 0x6e, 0x67, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x54, 0x0a, 0x14, 0x68, 0x6f, 0x72, 0x69,
  2348. 0x7a, 0x6f, 0x6e, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x6e, 0x6f, 0x64, 0x65,
  2349. 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61,
  2350. 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x48, 0x6f, 0x72, 0x69, 0x7a, 0x6f, 0x6e, 0x74, 0x61, 0x6c,
  2351. 0x52, 0x75, 0x6c, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x00, 0x52, 0x12, 0x68, 0x6f, 0x72, 0x69,
  2352. 0x7a, 0x6f, 0x6e, 0x74, 0x61, 0x6c, 0x52, 0x75, 0x6c, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x47,
  2353. 0x0a, 0x0f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x6e, 0x6f, 0x64,
  2354. 0x65, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e,
  2355. 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x71, 0x75, 0x6f, 0x74,
  2356. 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x00, 0x52, 0x0e, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x71, 0x75,
  2357. 0x6f, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x35, 0x0a, 0x09, 0x6c, 0x69, 0x73, 0x74, 0x5f,
  2358. 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x6d, 0x65, 0x6d,
  2359. 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4e, 0x6f,
  2360. 0x64, 0x65, 0x48, 0x00, 0x52, 0x08, 0x6c, 0x69, 0x73, 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x58,
  2361. 0x0a, 0x16, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x65, 0x64, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x69,
  2362. 0x74, 0x65, 0x6d, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21,
  2363. 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72,
  2364. 0x64, 0x65, 0x72, 0x65, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x74, 0x65, 0x6d, 0x4e, 0x6f, 0x64,
  2365. 0x65, 0x48, 0x00, 0x52, 0x13, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x65, 0x64, 0x4c, 0x69, 0x73, 0x74,
  2366. 0x49, 0x74, 0x65, 0x6d, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x5e, 0x0a, 0x18, 0x75, 0x6e, 0x6f, 0x72,
  2367. 0x64, 0x65, 0x72, 0x65, 0x64, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f,
  2368. 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x6d, 0x65, 0x6d,
  2369. 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x6e, 0x6f, 0x72, 0x64, 0x65,
  2370. 0x72, 0x65, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x74, 0x65, 0x6d, 0x4e, 0x6f, 0x64, 0x65, 0x48,
  2371. 0x00, 0x52, 0x15, 0x75, 0x6e, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x65, 0x64, 0x4c, 0x69, 0x73, 0x74,
  2372. 0x49, 0x74, 0x65, 0x6d, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x4f, 0x0a, 0x13, 0x74, 0x61, 0x73, 0x6b,
  2373. 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18,
  2374. 0x14, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70,
  2375. 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x61, 0x73, 0x6b, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x74, 0x65,
  2376. 0x6d, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x00, 0x52, 0x10, 0x74, 0x61, 0x73, 0x6b, 0x4c, 0x69, 0x73,
  2377. 0x74, 0x49, 0x74, 0x65, 0x6d, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x45, 0x0a, 0x0f, 0x6d, 0x61, 0x74,
  2378. 0x68, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x15, 0x20, 0x01,
  2379. 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
  2380. 0x31, 0x2e, 0x4d, 0x61, 0x74, 0x68, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x4e, 0x6f, 0x64, 0x65, 0x48,
  2381. 0x00, 0x52, 0x0d, 0x6d, 0x61, 0x74, 0x68, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x4e, 0x6f, 0x64, 0x65,
  2382. 0x12, 0x38, 0x0a, 0x0a, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x16,
  2383. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69,
  2384. 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x00, 0x52,
  2385. 0x09, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x57, 0x0a, 0x15, 0x65, 0x6d,
  2386. 0x62, 0x65, 0x64, 0x64, 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x6e,
  2387. 0x6f, 0x64, 0x65, 0x18, 0x17, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x6d, 0x65, 0x6d, 0x6f,
  2388. 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6d, 0x62, 0x65, 0x64, 0x64, 0x65,
  2389. 0x64, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x00, 0x52, 0x13,
  2390. 0x65, 0x6d, 0x62, 0x65, 0x64, 0x64, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x4e,
  2391. 0x6f, 0x64, 0x65, 0x12, 0x35, 0x0a, 0x09, 0x74, 0x65, 0x78, 0x74, 0x5f, 0x6e, 0x6f, 0x64, 0x65,
  2392. 0x18, 0x33, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61,
  2393. 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x65, 0x78, 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x00,
  2394. 0x52, 0x08, 0x74, 0x65, 0x78, 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x35, 0x0a, 0x09, 0x62, 0x6f,
  2395. 0x6c, 0x64, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x34, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e,
  2396. 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x42, 0x6f, 0x6c,
  2397. 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x00, 0x52, 0x08, 0x62, 0x6f, 0x6c, 0x64, 0x4e, 0x6f, 0x64,
  2398. 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x69, 0x74, 0x61, 0x6c, 0x69, 0x63, 0x5f, 0x6e, 0x6f, 0x64, 0x65,
  2399. 0x18, 0x35, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61,
  2400. 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x74, 0x61, 0x6c, 0x69, 0x63, 0x4e, 0x6f, 0x64, 0x65,
  2401. 0x48, 0x00, 0x52, 0x0a, 0x69, 0x74, 0x61, 0x6c, 0x69, 0x63, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x48,
  2402. 0x0a, 0x10, 0x62, 0x6f, 0x6c, 0x64, 0x5f, 0x69, 0x74, 0x61, 0x6c, 0x69, 0x63, 0x5f, 0x6e, 0x6f,
  2403. 0x64, 0x65, 0x18, 0x36, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73,
  2404. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x42, 0x6f, 0x6c, 0x64, 0x49, 0x74, 0x61, 0x6c,
  2405. 0x69, 0x63, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x00, 0x52, 0x0e, 0x62, 0x6f, 0x6c, 0x64, 0x49, 0x74,
  2406. 0x61, 0x6c, 0x69, 0x63, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x35, 0x0a, 0x09, 0x63, 0x6f, 0x64, 0x65,
  2407. 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x37, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x6d, 0x65,
  2408. 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x6f, 0x64, 0x65, 0x4e,
  2409. 0x6f, 0x64, 0x65, 0x48, 0x00, 0x52, 0x08, 0x63, 0x6f, 0x64, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x12,
  2410. 0x38, 0x0a, 0x0a, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x38, 0x20,
  2411. 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2412. 0x76, 0x31, 0x2e, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x00, 0x52, 0x09,
  2413. 0x69, 0x6d, 0x61, 0x67, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x35, 0x0a, 0x09, 0x6c, 0x69, 0x6e,
  2414. 0x6b, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x39, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x6d,
  2415. 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x6e, 0x6b,
  2416. 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x00, 0x52, 0x08, 0x6c, 0x69, 0x6e, 0x6b, 0x4e, 0x6f, 0x64, 0x65,
  2417. 0x12, 0x42, 0x0a, 0x0e, 0x61, 0x75, 0x74, 0x6f, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x6e, 0x6f,
  2418. 0x64, 0x65, 0x18, 0x3a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73,
  2419. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x74, 0x6f, 0x4c, 0x69, 0x6e, 0x6b,
  2420. 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x00, 0x52, 0x0c, 0x61, 0x75, 0x74, 0x6f, 0x4c, 0x69, 0x6e, 0x6b,
  2421. 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x32, 0x0a, 0x08, 0x74, 0x61, 0x67, 0x5f, 0x6e, 0x6f, 0x64, 0x65,
  2422. 0x18, 0x3b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61,
  2423. 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x61, 0x67, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x00, 0x52,
  2424. 0x07, 0x74, 0x61, 0x67, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x50, 0x0a, 0x12, 0x73, 0x74, 0x72, 0x69,
  2425. 0x6b, 0x65, 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x3c,
  2426. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69,
  2427. 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6b, 0x65, 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67,
  2428. 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x00, 0x52, 0x11, 0x73, 0x74, 0x72, 0x69, 0x6b, 0x65, 0x74,
  2429. 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x5d, 0x0a, 0x17, 0x65, 0x73,
  2430. 0x63, 0x61, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72,
  2431. 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x3d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x6d, 0x65,
  2432. 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x73, 0x63, 0x61, 0x70,
  2433. 0x69, 0x6e, 0x67, 0x43, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x4e, 0x6f, 0x64, 0x65,
  2434. 0x48, 0x00, 0x52, 0x15, 0x65, 0x73, 0x63, 0x61, 0x70, 0x69, 0x6e, 0x67, 0x43, 0x68, 0x61, 0x72,
  2435. 0x61, 0x63, 0x74, 0x65, 0x72, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x35, 0x0a, 0x09, 0x6d, 0x61, 0x74,
  2436. 0x68, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x3e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x6d,
  2437. 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x61, 0x74, 0x68,
  2438. 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x00, 0x52, 0x08, 0x6d, 0x61, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65,
  2439. 0x12, 0x44, 0x0a, 0x0e, 0x68, 0x69, 0x67, 0x68, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x6e, 0x6f,
  2440. 0x64, 0x65, 0x18, 0x3f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73,
  2441. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x48, 0x69, 0x67, 0x68, 0x6c, 0x69, 0x67, 0x68,
  2442. 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x00, 0x52, 0x0d, 0x68, 0x69, 0x67, 0x68, 0x6c, 0x69, 0x67,
  2443. 0x68, 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x44, 0x0a, 0x0e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72,
  2444. 0x69, 0x70, 0x74, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x40, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b,
  2445. 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x75,
  2446. 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x00, 0x52, 0x0d, 0x73,
  2447. 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x4a, 0x0a, 0x10,
  2448. 0x73, 0x75, 0x70, 0x65, 0x72, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x5f, 0x6e, 0x6f, 0x64, 0x65,
  2449. 0x18, 0x41, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61,
  2450. 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x75, 0x70, 0x65, 0x72, 0x73, 0x63, 0x72, 0x69, 0x70,
  2451. 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x00, 0x52, 0x0f, 0x73, 0x75, 0x70, 0x65, 0x72, 0x73, 0x63,
  2452. 0x72, 0x69, 0x70, 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x5d, 0x0a, 0x17, 0x72, 0x65, 0x66, 0x65,
  2453. 0x72, 0x65, 0x6e, 0x63, 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x6e,
  2454. 0x6f, 0x64, 0x65, 0x18, 0x42, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x6d, 0x65, 0x6d, 0x6f,
  2455. 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e,
  2456. 0x63, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x00,
  2457. 0x52, 0x15, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x74,
  2458. 0x65, 0x6e, 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x3e, 0x0a, 0x0c, 0x73, 0x70, 0x6f, 0x69, 0x6c,
  2459. 0x65, 0x72, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x43, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e,
  2460. 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x70, 0x6f,
  2461. 0x69, 0x6c, 0x65, 0x72, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x00, 0x52, 0x0b, 0x73, 0x70, 0x6f, 0x69,
  2462. 0x6c, 0x65, 0x72, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x4b, 0x0a, 0x11, 0x68, 0x74, 0x6d, 0x6c, 0x5f,
  2463. 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x44, 0x20, 0x01,
  2464. 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
  2465. 0x31, 0x2e, 0x48, 0x54, 0x4d, 0x4c, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x4e, 0x6f, 0x64,
  2466. 0x65, 0x48, 0x00, 0x52, 0x0f, 0x68, 0x74, 0x6d, 0x6c, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74,
  2467. 0x4e, 0x6f, 0x64, 0x65, 0x42, 0x06, 0x0a, 0x04, 0x6e, 0x6f, 0x64, 0x65, 0x22, 0x0f, 0x0a, 0x0d,
  2468. 0x4c, 0x69, 0x6e, 0x65, 0x42, 0x72, 0x65, 0x61, 0x6b, 0x4e, 0x6f, 0x64, 0x65, 0x22, 0x3f, 0x0a,
  2469. 0x0d, 0x50, 0x61, 0x72, 0x61, 0x67, 0x72, 0x61, 0x70, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x2e,
  2470. 0x0a, 0x08, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x72, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
  2471. 0x32, 0x12, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
  2472. 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x08, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x72, 0x65, 0x6e, 0x22, 0x45,
  2473. 0x0a, 0x0d, 0x43, 0x6f, 0x64, 0x65, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x4e, 0x6f, 0x64, 0x65, 0x12,
  2474. 0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  2475. 0x09, 0x52, 0x08, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63,
  2476. 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f,
  2477. 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x22, 0x53, 0x0a, 0x0b, 0x48, 0x65, 0x61, 0x64, 0x69, 0x6e, 0x67,
  2478. 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x01, 0x20,
  2479. 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x2e, 0x0a, 0x08, 0x63, 0x68,
  2480. 0x69, 0x6c, 0x64, 0x72, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x6d,
  2481. 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4e, 0x6f, 0x64, 0x65,
  2482. 0x52, 0x08, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x72, 0x65, 0x6e, 0x22, 0x2c, 0x0a, 0x12, 0x48, 0x6f,
  2483. 0x72, 0x69, 0x7a, 0x6f, 0x6e, 0x74, 0x61, 0x6c, 0x52, 0x75, 0x6c, 0x65, 0x4e, 0x6f, 0x64, 0x65,
  2484. 0x12, 0x16, 0x0a, 0x06, 0x73, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  2485. 0x52, 0x06, 0x73, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x22, 0x40, 0x0a, 0x0e, 0x42, 0x6c, 0x6f, 0x63,
  2486. 0x6b, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x2e, 0x0a, 0x08, 0x63, 0x68,
  2487. 0x69, 0x6c, 0x64, 0x72, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x6d,
  2488. 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4e, 0x6f, 0x64, 0x65,
  2489. 0x52, 0x08, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x72, 0x65, 0x6e, 0x22, 0xce, 0x01, 0x0a, 0x08, 0x4c,
  2490. 0x69, 0x73, 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x2f, 0x0a, 0x04, 0x6b, 0x69, 0x6e, 0x64, 0x18,
  2491. 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1b, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70,
  2492. 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x2e, 0x4b, 0x69,
  2493. 0x6e, 0x64, 0x52, 0x04, 0x6b, 0x69, 0x6e, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x6e, 0x64, 0x65,
  2494. 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x69, 0x6e, 0x64, 0x65, 0x6e, 0x74,
  2495. 0x12, 0x2e, 0x0a, 0x08, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x72, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x03,
  2496. 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
  2497. 0x31, 0x2e, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x08, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x72, 0x65, 0x6e,
  2498. 0x22, 0x49, 0x0a, 0x04, 0x4b, 0x69, 0x6e, 0x64, 0x12, 0x14, 0x0a, 0x10, 0x4b, 0x49, 0x4e, 0x44,
  2499. 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0b,
  2500. 0x0a, 0x07, 0x4f, 0x52, 0x44, 0x45, 0x52, 0x45, 0x44, 0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x55,
  2501. 0x4e, 0x4f, 0x52, 0x44, 0x45, 0x52, 0x45, 0x44, 0x10, 0x02, 0x12, 0x0f, 0x0a, 0x0b, 0x44, 0x45,
  2502. 0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x03, 0x22, 0x75, 0x0a, 0x13, 0x4f,
  2503. 0x72, 0x64, 0x65, 0x72, 0x65, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x74, 0x65, 0x6d, 0x4e, 0x6f,
  2504. 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01,
  2505. 0x28, 0x09, 0x52, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x6e,
  2506. 0x64, 0x65, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x69, 0x6e, 0x64, 0x65,
  2507. 0x6e, 0x74, 0x12, 0x2e, 0x0a, 0x08, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x72, 0x65, 0x6e, 0x18, 0x03,
  2508. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69,
  2509. 0x2e, 0x76, 0x31, 0x2e, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x08, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x72,
  2510. 0x65, 0x6e, 0x22, 0x77, 0x0a, 0x15, 0x55, 0x6e, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x65, 0x64, 0x4c,
  2511. 0x69, 0x73, 0x74, 0x49, 0x74, 0x65, 0x6d, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73,
  2512. 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x79, 0x6d,
  2513. 0x62, 0x6f, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x6e, 0x64, 0x65, 0x6e, 0x74, 0x18, 0x02, 0x20,
  2514. 0x01, 0x28, 0x05, 0x52, 0x06, 0x69, 0x6e, 0x64, 0x65, 0x6e, 0x74, 0x12, 0x2e, 0x0a, 0x08, 0x63,
  2515. 0x68, 0x69, 0x6c, 0x64, 0x72, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x12, 0x2e,
  2516. 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4e, 0x6f, 0x64,
  2517. 0x65, 0x52, 0x08, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x72, 0x65, 0x6e, 0x22, 0x8e, 0x01, 0x0a, 0x10,
  2518. 0x54, 0x61, 0x73, 0x6b, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x74, 0x65, 0x6d, 0x4e, 0x6f, 0x64, 0x65,
  2519. 0x12, 0x16, 0x0a, 0x06, 0x73, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  2520. 0x52, 0x06, 0x73, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x6e, 0x64, 0x65,
  2521. 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x69, 0x6e, 0x64, 0x65, 0x6e, 0x74,
  2522. 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01,
  2523. 0x28, 0x08, 0x52, 0x08, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x2e, 0x0a, 0x08,
  2524. 0x63, 0x68, 0x69, 0x6c, 0x64, 0x72, 0x65, 0x6e, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x12,
  2525. 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4e, 0x6f,
  2526. 0x64, 0x65, 0x52, 0x08, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x72, 0x65, 0x6e, 0x22, 0x29, 0x0a, 0x0d,
  2527. 0x4d, 0x61, 0x74, 0x68, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a,
  2528. 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  2529. 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x22, 0xb7, 0x01, 0x0a, 0x09, 0x54, 0x61, 0x62, 0x6c,
  2530. 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x2a, 0x0a, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18,
  2531. 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70,
  2532. 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65,
  2533. 0x72, 0x12, 0x1c, 0x0a, 0x09, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x02,
  2534. 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x12,
  2535. 0x2f, 0x0a, 0x04, 0x72, 0x6f, 0x77, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1b, 0x2e,
  2536. 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x61, 0x62,
  2537. 0x6c, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x2e, 0x52, 0x6f, 0x77, 0x52, 0x04, 0x72, 0x6f, 0x77, 0x73,
  2538. 0x1a, 0x2f, 0x0a, 0x03, 0x52, 0x6f, 0x77, 0x12, 0x28, 0x0a, 0x05, 0x63, 0x65, 0x6c, 0x6c, 0x73,
  2539. 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61,
  2540. 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x05, 0x63, 0x65, 0x6c, 0x6c,
  2541. 0x73, 0x22, 0x52, 0x0a, 0x13, 0x45, 0x6d, 0x62, 0x65, 0x64, 0x64, 0x65, 0x64, 0x43, 0x6f, 0x6e,
  2542. 0x74, 0x65, 0x6e, 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x6f,
  2543. 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  2544. 0x0c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a,
  2545. 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70,
  2546. 0x61, 0x72, 0x61, 0x6d, 0x73, 0x22, 0x24, 0x0a, 0x08, 0x54, 0x65, 0x78, 0x74, 0x4e, 0x6f, 0x64,
  2547. 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01,
  2548. 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x22, 0x52, 0x0a, 0x08, 0x42,
  2549. 0x6f, 0x6c, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x79, 0x6d, 0x62, 0x6f,
  2550. 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x12,
  2551. 0x2e, 0x0a, 0x08, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x72, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x03, 0x28,
  2552. 0x0b, 0x32, 0x12, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
  2553. 0x2e, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x08, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x72, 0x65, 0x6e, 0x22,
  2554. 0x3e, 0x0a, 0x0a, 0x49, 0x74, 0x61, 0x6c, 0x69, 0x63, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a,
  2555. 0x06, 0x73, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73,
  2556. 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
  2557. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x22,
  2558. 0x42, 0x0a, 0x0e, 0x42, 0x6f, 0x6c, 0x64, 0x49, 0x74, 0x61, 0x6c, 0x69, 0x63, 0x4e, 0x6f, 0x64,
  2559. 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28,
  2560. 0x09, 0x52, 0x06, 0x73, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e,
  2561. 0x74, 0x65, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74,
  2562. 0x65, 0x6e, 0x74, 0x22, 0x24, 0x0a, 0x08, 0x43, 0x6f, 0x64, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x12,
  2563. 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  2564. 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x22, 0x38, 0x0a, 0x09, 0x49, 0x6d, 0x61,
  2565. 0x67, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x6c, 0x74, 0x5f, 0x74, 0x65,
  2566. 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x6c, 0x74, 0x54, 0x65, 0x78,
  2567. 0x74, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  2568. 0x75, 0x72, 0x6c, 0x22, 0x30, 0x0a, 0x08, 0x4c, 0x69, 0x6e, 0x6b, 0x4e, 0x6f, 0x64, 0x65, 0x12,
  2569. 0x12, 0x0a, 0x04, 0x74, 0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74,
  2570. 0x65, 0x78, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  2571. 0x52, 0x03, 0x75, 0x72, 0x6c, 0x22, 0x40, 0x0a, 0x0c, 0x41, 0x75, 0x74, 0x6f, 0x4c, 0x69, 0x6e,
  2572. 0x6b, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01,
  2573. 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x1e, 0x0a, 0x0b, 0x69, 0x73, 0x5f, 0x72, 0x61,
  2574. 0x77, 0x5f, 0x74, 0x65, 0x78, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73,
  2575. 0x52, 0x61, 0x77, 0x54, 0x65, 0x78, 0x74, 0x22, 0x23, 0x0a, 0x07, 0x54, 0x61, 0x67, 0x4e, 0x6f,
  2576. 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20,
  2577. 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x22, 0x2d, 0x0a, 0x11,
  2578. 0x53, 0x74, 0x72, 0x69, 0x6b, 0x65, 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x4e, 0x6f, 0x64,
  2579. 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01,
  2580. 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x22, 0x2f, 0x0a, 0x15, 0x45,
  2581. 0x73, 0x63, 0x61, 0x70, 0x69, 0x6e, 0x67, 0x43, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72,
  2582. 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x18, 0x01,
  2583. 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x22, 0x24, 0x0a, 0x08,
  2584. 0x4d, 0x61, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74,
  2585. 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65,
  2586. 0x6e, 0x74, 0x22, 0x29, 0x0a, 0x0d, 0x48, 0x69, 0x67, 0x68, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x4e,
  2587. 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x01,
  2588. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x22, 0x29, 0x0a,
  2589. 0x0d, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x18,
  2590. 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  2591. 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x22, 0x2b, 0x0a, 0x0f, 0x53, 0x75, 0x70, 0x65,
  2592. 0x72, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63,
  2593. 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f,
  2594. 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x22, 0x54, 0x0a, 0x15, 0x52, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e,
  2595. 0x63, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x23,
  2596. 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  2597. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e,
  2598. 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x18, 0x02, 0x20,
  2599. 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x22, 0x27, 0x0a, 0x0b, 0x53,
  2600. 0x70, 0x6f, 0x69, 0x6c, 0x65, 0x72, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f,
  2601. 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e,
  2602. 0x74, 0x65, 0x6e, 0x74, 0x22, 0xba, 0x01, 0x0a, 0x0f, 0x48, 0x54, 0x4d, 0x4c, 0x45, 0x6c, 0x65,
  2603. 0x6d, 0x65, 0x6e, 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x74, 0x61, 0x67, 0x5f,
  2604. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x74, 0x61, 0x67, 0x4e,
  2605. 0x61, 0x6d, 0x65, 0x12, 0x4d, 0x0a, 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65,
  2606. 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e,
  2607. 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x48, 0x54, 0x4d, 0x4c, 0x45, 0x6c, 0x65, 0x6d, 0x65,
  2608. 0x6e, 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x2e, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65,
  2609. 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74,
  2610. 0x65, 0x73, 0x1a, 0x3d, 0x0a, 0x0f, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73,
  2611. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01,
  2612. 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  2613. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
  2614. 0x01, 0x2a, 0x83, 0x04, 0x0a, 0x08, 0x4e, 0x6f, 0x64, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14,
  2615. 0x0a, 0x10, 0x4e, 0x4f, 0x44, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49,
  2616. 0x45, 0x44, 0x10, 0x00, 0x12, 0x0e, 0x0a, 0x0a, 0x4c, 0x49, 0x4e, 0x45, 0x5f, 0x42, 0x52, 0x45,
  2617. 0x41, 0x4b, 0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x50, 0x41, 0x52, 0x41, 0x47, 0x52, 0x41, 0x50,
  2618. 0x48, 0x10, 0x02, 0x12, 0x0e, 0x0a, 0x0a, 0x43, 0x4f, 0x44, 0x45, 0x5f, 0x42, 0x4c, 0x4f, 0x43,
  2619. 0x4b, 0x10, 0x03, 0x12, 0x0b, 0x0a, 0x07, 0x48, 0x45, 0x41, 0x44, 0x49, 0x4e, 0x47, 0x10, 0x04,
  2620. 0x12, 0x13, 0x0a, 0x0f, 0x48, 0x4f, 0x52, 0x49, 0x5a, 0x4f, 0x4e, 0x54, 0x41, 0x4c, 0x5f, 0x52,
  2621. 0x55, 0x4c, 0x45, 0x10, 0x05, 0x12, 0x0e, 0x0a, 0x0a, 0x42, 0x4c, 0x4f, 0x43, 0x4b, 0x51, 0x55,
  2622. 0x4f, 0x54, 0x45, 0x10, 0x06, 0x12, 0x08, 0x0a, 0x04, 0x4c, 0x49, 0x53, 0x54, 0x10, 0x07, 0x12,
  2623. 0x15, 0x0a, 0x11, 0x4f, 0x52, 0x44, 0x45, 0x52, 0x45, 0x44, 0x5f, 0x4c, 0x49, 0x53, 0x54, 0x5f,
  2624. 0x49, 0x54, 0x45, 0x4d, 0x10, 0x08, 0x12, 0x17, 0x0a, 0x13, 0x55, 0x4e, 0x4f, 0x52, 0x44, 0x45,
  2625. 0x52, 0x45, 0x44, 0x5f, 0x4c, 0x49, 0x53, 0x54, 0x5f, 0x49, 0x54, 0x45, 0x4d, 0x10, 0x09, 0x12,
  2626. 0x12, 0x0a, 0x0e, 0x54, 0x41, 0x53, 0x4b, 0x5f, 0x4c, 0x49, 0x53, 0x54, 0x5f, 0x49, 0x54, 0x45,
  2627. 0x4d, 0x10, 0x0a, 0x12, 0x0e, 0x0a, 0x0a, 0x4d, 0x41, 0x54, 0x48, 0x5f, 0x42, 0x4c, 0x4f, 0x43,
  2628. 0x4b, 0x10, 0x0b, 0x12, 0x09, 0x0a, 0x05, 0x54, 0x41, 0x42, 0x4c, 0x45, 0x10, 0x0c, 0x12, 0x14,
  2629. 0x0a, 0x10, 0x45, 0x4d, 0x42, 0x45, 0x44, 0x44, 0x45, 0x44, 0x5f, 0x43, 0x4f, 0x4e, 0x54, 0x45,
  2630. 0x4e, 0x54, 0x10, 0x0d, 0x12, 0x08, 0x0a, 0x04, 0x54, 0x45, 0x58, 0x54, 0x10, 0x33, 0x12, 0x08,
  2631. 0x0a, 0x04, 0x42, 0x4f, 0x4c, 0x44, 0x10, 0x34, 0x12, 0x0a, 0x0a, 0x06, 0x49, 0x54, 0x41, 0x4c,
  2632. 0x49, 0x43, 0x10, 0x35, 0x12, 0x0f, 0x0a, 0x0b, 0x42, 0x4f, 0x4c, 0x44, 0x5f, 0x49, 0x54, 0x41,
  2633. 0x4c, 0x49, 0x43, 0x10, 0x36, 0x12, 0x08, 0x0a, 0x04, 0x43, 0x4f, 0x44, 0x45, 0x10, 0x37, 0x12,
  2634. 0x09, 0x0a, 0x05, 0x49, 0x4d, 0x41, 0x47, 0x45, 0x10, 0x38, 0x12, 0x08, 0x0a, 0x04, 0x4c, 0x49,
  2635. 0x4e, 0x4b, 0x10, 0x39, 0x12, 0x0d, 0x0a, 0x09, 0x41, 0x55, 0x54, 0x4f, 0x5f, 0x4c, 0x49, 0x4e,
  2636. 0x4b, 0x10, 0x3a, 0x12, 0x07, 0x0a, 0x03, 0x54, 0x41, 0x47, 0x10, 0x3b, 0x12, 0x11, 0x0a, 0x0d,
  2637. 0x53, 0x54, 0x52, 0x49, 0x4b, 0x45, 0x54, 0x48, 0x52, 0x4f, 0x55, 0x47, 0x48, 0x10, 0x3c, 0x12,
  2638. 0x16, 0x0a, 0x12, 0x45, 0x53, 0x43, 0x41, 0x50, 0x49, 0x4e, 0x47, 0x5f, 0x43, 0x48, 0x41, 0x52,
  2639. 0x41, 0x43, 0x54, 0x45, 0x52, 0x10, 0x3d, 0x12, 0x08, 0x0a, 0x04, 0x4d, 0x41, 0x54, 0x48, 0x10,
  2640. 0x3e, 0x12, 0x0d, 0x0a, 0x09, 0x48, 0x49, 0x47, 0x48, 0x4c, 0x49, 0x47, 0x48, 0x54, 0x10, 0x3f,
  2641. 0x12, 0x0d, 0x0a, 0x09, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x10, 0x40, 0x12,
  2642. 0x0f, 0x0a, 0x0b, 0x53, 0x55, 0x50, 0x45, 0x52, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x10, 0x41,
  2643. 0x12, 0x16, 0x0a, 0x12, 0x52, 0x45, 0x46, 0x45, 0x52, 0x45, 0x4e, 0x43, 0x45, 0x44, 0x5f, 0x43,
  2644. 0x4f, 0x4e, 0x54, 0x45, 0x4e, 0x54, 0x10, 0x42, 0x12, 0x0b, 0x0a, 0x07, 0x53, 0x50, 0x4f, 0x49,
  2645. 0x4c, 0x45, 0x52, 0x10, 0x43, 0x12, 0x10, 0x0a, 0x0c, 0x48, 0x54, 0x4d, 0x4c, 0x5f, 0x45, 0x4c,
  2646. 0x45, 0x4d, 0x45, 0x4e, 0x54, 0x10, 0x44, 0x32, 0xc7, 0x04, 0x0a, 0x0f, 0x4d, 0x61, 0x72, 0x6b,
  2647. 0x64, 0x6f, 0x77, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x7b, 0x0a, 0x0d, 0x50,
  2648. 0x61, 0x72, 0x73, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x64, 0x6f, 0x77, 0x6e, 0x12, 0x22, 0x2e, 0x6d,
  2649. 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x72, 0x73,
  2650. 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x64, 0x6f, 0x77, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2651. 0x1a, 0x23, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
  2652. 0x50, 0x61, 0x72, 0x73, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x64, 0x6f, 0x77, 0x6e, 0x52, 0x65, 0x73,
  2653. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x3a, 0x01, 0x2a,
  2654. 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x6d, 0x61, 0x72, 0x6b, 0x64, 0x6f,
  2655. 0x77, 0x6e, 0x3a, 0x70, 0x61, 0x72, 0x73, 0x65, 0x12, 0x97, 0x01, 0x0a, 0x14, 0x52, 0x65, 0x73,
  2656. 0x74, 0x6f, 0x72, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x64, 0x6f, 0x77, 0x6e, 0x4e, 0x6f, 0x64, 0x65,
  2657. 0x73, 0x12, 0x29, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
  2658. 0x2e, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x64, 0x6f, 0x77, 0x6e,
  2659. 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x6d,
  2660. 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x74,
  2661. 0x6f, 0x72, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x64, 0x6f, 0x77, 0x6e, 0x4e, 0x6f, 0x64, 0x65, 0x73,
  2662. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22,
  2663. 0x3a, 0x01, 0x2a, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x6d, 0x61, 0x72,
  2664. 0x6b, 0x64, 0x6f, 0x77, 0x6e, 0x2f, 0x6e, 0x6f, 0x64, 0x65, 0x3a, 0x72, 0x65, 0x73, 0x74, 0x6f,
  2665. 0x72, 0x65, 0x12, 0x9f, 0x01, 0x0a, 0x16, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x69, 0x66, 0x79,
  2666. 0x4d, 0x61, 0x72, 0x6b, 0x64, 0x6f, 0x77, 0x6e, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x12, 0x2b, 0x2e,
  2667. 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x74, 0x72,
  2668. 0x69, 0x6e, 0x67, 0x69, 0x66, 0x79, 0x4d, 0x61, 0x72, 0x6b, 0x64, 0x6f, 0x77, 0x6e, 0x4e, 0x6f,
  2669. 0x64, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x6d, 0x65, 0x6d,
  2670. 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67,
  2671. 0x69, 0x66, 0x79, 0x4d, 0x61, 0x72, 0x6b, 0x64, 0x6f, 0x77, 0x6e, 0x4e, 0x6f, 0x64, 0x65, 0x73,
  2672. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x2a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x24,
  2673. 0x3a, 0x01, 0x2a, 0x22, 0x1f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x6d, 0x61, 0x72,
  2674. 0x6b, 0x64, 0x6f, 0x77, 0x6e, 0x2f, 0x6e, 0x6f, 0x64, 0x65, 0x3a, 0x73, 0x74, 0x72, 0x69, 0x6e,
  2675. 0x67, 0x69, 0x66, 0x79, 0x12, 0x7b, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x4d,
  2676. 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x24, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e,
  2677. 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x4d, 0x65,
  2678. 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e,
  2679. 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x6e,
  2680. 0x6b, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  2681. 0x20, 0x12, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x6d, 0x61, 0x72, 0x6b, 0x64,
  2682. 0x6f, 0x77, 0x6e, 0x2f, 0x6c, 0x69, 0x6e, 0x6b, 0x3a, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74,
  2683. 0x61, 0x42, 0xac, 0x01, 0x0a, 0x10, 0x63, 0x6f, 0x6d, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e,
  2684. 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x42, 0x14, 0x4d, 0x61, 0x72, 0x6b, 0x64, 0x6f, 0x77, 0x6e,
  2685. 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x30,
  2686. 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x75, 0x73, 0x65, 0x6d, 0x65,
  2687. 0x6d, 0x6f, 0x73, 0x2f, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
  2688. 0x67, 0x65, 0x6e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x3b, 0x61, 0x70, 0x69, 0x76, 0x31,
  2689. 0xa2, 0x02, 0x03, 0x4d, 0x41, 0x58, 0xaa, 0x02, 0x0c, 0x4d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x41,
  2690. 0x70, 0x69, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x0c, 0x4d, 0x65, 0x6d, 0x6f, 0x73, 0x5c, 0x41, 0x70,
  2691. 0x69, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x18, 0x4d, 0x65, 0x6d, 0x6f, 0x73, 0x5c, 0x41, 0x70, 0x69,
  2692. 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea,
  2693. 0x02, 0x0e, 0x4d, 0x65, 0x6d, 0x6f, 0x73, 0x3a, 0x3a, 0x41, 0x70, 0x69, 0x3a, 0x3a, 0x56, 0x31,
  2694. 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  2695. }
  2696. var (
  2697. file_api_v1_markdown_service_proto_rawDescOnce sync.Once
  2698. file_api_v1_markdown_service_proto_rawDescData = file_api_v1_markdown_service_proto_rawDesc
  2699. )
  2700. func file_api_v1_markdown_service_proto_rawDescGZIP() []byte {
  2701. file_api_v1_markdown_service_proto_rawDescOnce.Do(func() {
  2702. file_api_v1_markdown_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_api_v1_markdown_service_proto_rawDescData)
  2703. })
  2704. return file_api_v1_markdown_service_proto_rawDescData
  2705. }
  2706. var file_api_v1_markdown_service_proto_enumTypes = make([]protoimpl.EnumInfo, 2)
  2707. var file_api_v1_markdown_service_proto_msgTypes = make([]protoimpl.MessageInfo, 42)
  2708. var file_api_v1_markdown_service_proto_goTypes = []any{
  2709. (NodeType)(0), // 0: memos.api.v1.NodeType
  2710. (ListNode_Kind)(0), // 1: memos.api.v1.ListNode.Kind
  2711. (*ParseMarkdownRequest)(nil), // 2: memos.api.v1.ParseMarkdownRequest
  2712. (*ParseMarkdownResponse)(nil), // 3: memos.api.v1.ParseMarkdownResponse
  2713. (*RestoreMarkdownNodesRequest)(nil), // 4: memos.api.v1.RestoreMarkdownNodesRequest
  2714. (*RestoreMarkdownNodesResponse)(nil), // 5: memos.api.v1.RestoreMarkdownNodesResponse
  2715. (*StringifyMarkdownNodesRequest)(nil), // 6: memos.api.v1.StringifyMarkdownNodesRequest
  2716. (*StringifyMarkdownNodesResponse)(nil), // 7: memos.api.v1.StringifyMarkdownNodesResponse
  2717. (*GetLinkMetadataRequest)(nil), // 8: memos.api.v1.GetLinkMetadataRequest
  2718. (*LinkMetadata)(nil), // 9: memos.api.v1.LinkMetadata
  2719. (*Node)(nil), // 10: memos.api.v1.Node
  2720. (*LineBreakNode)(nil), // 11: memos.api.v1.LineBreakNode
  2721. (*ParagraphNode)(nil), // 12: memos.api.v1.ParagraphNode
  2722. (*CodeBlockNode)(nil), // 13: memos.api.v1.CodeBlockNode
  2723. (*HeadingNode)(nil), // 14: memos.api.v1.HeadingNode
  2724. (*HorizontalRuleNode)(nil), // 15: memos.api.v1.HorizontalRuleNode
  2725. (*BlockquoteNode)(nil), // 16: memos.api.v1.BlockquoteNode
  2726. (*ListNode)(nil), // 17: memos.api.v1.ListNode
  2727. (*OrderedListItemNode)(nil), // 18: memos.api.v1.OrderedListItemNode
  2728. (*UnorderedListItemNode)(nil), // 19: memos.api.v1.UnorderedListItemNode
  2729. (*TaskListItemNode)(nil), // 20: memos.api.v1.TaskListItemNode
  2730. (*MathBlockNode)(nil), // 21: memos.api.v1.MathBlockNode
  2731. (*TableNode)(nil), // 22: memos.api.v1.TableNode
  2732. (*EmbeddedContentNode)(nil), // 23: memos.api.v1.EmbeddedContentNode
  2733. (*TextNode)(nil), // 24: memos.api.v1.TextNode
  2734. (*BoldNode)(nil), // 25: memos.api.v1.BoldNode
  2735. (*ItalicNode)(nil), // 26: memos.api.v1.ItalicNode
  2736. (*BoldItalicNode)(nil), // 27: memos.api.v1.BoldItalicNode
  2737. (*CodeNode)(nil), // 28: memos.api.v1.CodeNode
  2738. (*ImageNode)(nil), // 29: memos.api.v1.ImageNode
  2739. (*LinkNode)(nil), // 30: memos.api.v1.LinkNode
  2740. (*AutoLinkNode)(nil), // 31: memos.api.v1.AutoLinkNode
  2741. (*TagNode)(nil), // 32: memos.api.v1.TagNode
  2742. (*StrikethroughNode)(nil), // 33: memos.api.v1.StrikethroughNode
  2743. (*EscapingCharacterNode)(nil), // 34: memos.api.v1.EscapingCharacterNode
  2744. (*MathNode)(nil), // 35: memos.api.v1.MathNode
  2745. (*HighlightNode)(nil), // 36: memos.api.v1.HighlightNode
  2746. (*SubscriptNode)(nil), // 37: memos.api.v1.SubscriptNode
  2747. (*SuperscriptNode)(nil), // 38: memos.api.v1.SuperscriptNode
  2748. (*ReferencedContentNode)(nil), // 39: memos.api.v1.ReferencedContentNode
  2749. (*SpoilerNode)(nil), // 40: memos.api.v1.SpoilerNode
  2750. (*HTMLElementNode)(nil), // 41: memos.api.v1.HTMLElementNode
  2751. (*TableNode_Row)(nil), // 42: memos.api.v1.TableNode.Row
  2752. nil, // 43: memos.api.v1.HTMLElementNode.AttributesEntry
  2753. }
  2754. var file_api_v1_markdown_service_proto_depIdxs = []int32{
  2755. 10, // 0: memos.api.v1.ParseMarkdownResponse.nodes:type_name -> memos.api.v1.Node
  2756. 10, // 1: memos.api.v1.RestoreMarkdownNodesRequest.nodes:type_name -> memos.api.v1.Node
  2757. 10, // 2: memos.api.v1.StringifyMarkdownNodesRequest.nodes:type_name -> memos.api.v1.Node
  2758. 0, // 3: memos.api.v1.Node.type:type_name -> memos.api.v1.NodeType
  2759. 11, // 4: memos.api.v1.Node.line_break_node:type_name -> memos.api.v1.LineBreakNode
  2760. 12, // 5: memos.api.v1.Node.paragraph_node:type_name -> memos.api.v1.ParagraphNode
  2761. 13, // 6: memos.api.v1.Node.code_block_node:type_name -> memos.api.v1.CodeBlockNode
  2762. 14, // 7: memos.api.v1.Node.heading_node:type_name -> memos.api.v1.HeadingNode
  2763. 15, // 8: memos.api.v1.Node.horizontal_rule_node:type_name -> memos.api.v1.HorizontalRuleNode
  2764. 16, // 9: memos.api.v1.Node.blockquote_node:type_name -> memos.api.v1.BlockquoteNode
  2765. 17, // 10: memos.api.v1.Node.list_node:type_name -> memos.api.v1.ListNode
  2766. 18, // 11: memos.api.v1.Node.ordered_list_item_node:type_name -> memos.api.v1.OrderedListItemNode
  2767. 19, // 12: memos.api.v1.Node.unordered_list_item_node:type_name -> memos.api.v1.UnorderedListItemNode
  2768. 20, // 13: memos.api.v1.Node.task_list_item_node:type_name -> memos.api.v1.TaskListItemNode
  2769. 21, // 14: memos.api.v1.Node.math_block_node:type_name -> memos.api.v1.MathBlockNode
  2770. 22, // 15: memos.api.v1.Node.table_node:type_name -> memos.api.v1.TableNode
  2771. 23, // 16: memos.api.v1.Node.embedded_content_node:type_name -> memos.api.v1.EmbeddedContentNode
  2772. 24, // 17: memos.api.v1.Node.text_node:type_name -> memos.api.v1.TextNode
  2773. 25, // 18: memos.api.v1.Node.bold_node:type_name -> memos.api.v1.BoldNode
  2774. 26, // 19: memos.api.v1.Node.italic_node:type_name -> memos.api.v1.ItalicNode
  2775. 27, // 20: memos.api.v1.Node.bold_italic_node:type_name -> memos.api.v1.BoldItalicNode
  2776. 28, // 21: memos.api.v1.Node.code_node:type_name -> memos.api.v1.CodeNode
  2777. 29, // 22: memos.api.v1.Node.image_node:type_name -> memos.api.v1.ImageNode
  2778. 30, // 23: memos.api.v1.Node.link_node:type_name -> memos.api.v1.LinkNode
  2779. 31, // 24: memos.api.v1.Node.auto_link_node:type_name -> memos.api.v1.AutoLinkNode
  2780. 32, // 25: memos.api.v1.Node.tag_node:type_name -> memos.api.v1.TagNode
  2781. 33, // 26: memos.api.v1.Node.strikethrough_node:type_name -> memos.api.v1.StrikethroughNode
  2782. 34, // 27: memos.api.v1.Node.escaping_character_node:type_name -> memos.api.v1.EscapingCharacterNode
  2783. 35, // 28: memos.api.v1.Node.math_node:type_name -> memos.api.v1.MathNode
  2784. 36, // 29: memos.api.v1.Node.highlight_node:type_name -> memos.api.v1.HighlightNode
  2785. 37, // 30: memos.api.v1.Node.subscript_node:type_name -> memos.api.v1.SubscriptNode
  2786. 38, // 31: memos.api.v1.Node.superscript_node:type_name -> memos.api.v1.SuperscriptNode
  2787. 39, // 32: memos.api.v1.Node.referenced_content_node:type_name -> memos.api.v1.ReferencedContentNode
  2788. 40, // 33: memos.api.v1.Node.spoiler_node:type_name -> memos.api.v1.SpoilerNode
  2789. 41, // 34: memos.api.v1.Node.html_element_node:type_name -> memos.api.v1.HTMLElementNode
  2790. 10, // 35: memos.api.v1.ParagraphNode.children:type_name -> memos.api.v1.Node
  2791. 10, // 36: memos.api.v1.HeadingNode.children:type_name -> memos.api.v1.Node
  2792. 10, // 37: memos.api.v1.BlockquoteNode.children:type_name -> memos.api.v1.Node
  2793. 1, // 38: memos.api.v1.ListNode.kind:type_name -> memos.api.v1.ListNode.Kind
  2794. 10, // 39: memos.api.v1.ListNode.children:type_name -> memos.api.v1.Node
  2795. 10, // 40: memos.api.v1.OrderedListItemNode.children:type_name -> memos.api.v1.Node
  2796. 10, // 41: memos.api.v1.UnorderedListItemNode.children:type_name -> memos.api.v1.Node
  2797. 10, // 42: memos.api.v1.TaskListItemNode.children:type_name -> memos.api.v1.Node
  2798. 10, // 43: memos.api.v1.TableNode.header:type_name -> memos.api.v1.Node
  2799. 42, // 44: memos.api.v1.TableNode.rows:type_name -> memos.api.v1.TableNode.Row
  2800. 10, // 45: memos.api.v1.BoldNode.children:type_name -> memos.api.v1.Node
  2801. 43, // 46: memos.api.v1.HTMLElementNode.attributes:type_name -> memos.api.v1.HTMLElementNode.AttributesEntry
  2802. 10, // 47: memos.api.v1.TableNode.Row.cells:type_name -> memos.api.v1.Node
  2803. 2, // 48: memos.api.v1.MarkdownService.ParseMarkdown:input_type -> memos.api.v1.ParseMarkdownRequest
  2804. 4, // 49: memos.api.v1.MarkdownService.RestoreMarkdownNodes:input_type -> memos.api.v1.RestoreMarkdownNodesRequest
  2805. 6, // 50: memos.api.v1.MarkdownService.StringifyMarkdownNodes:input_type -> memos.api.v1.StringifyMarkdownNodesRequest
  2806. 8, // 51: memos.api.v1.MarkdownService.GetLinkMetadata:input_type -> memos.api.v1.GetLinkMetadataRequest
  2807. 3, // 52: memos.api.v1.MarkdownService.ParseMarkdown:output_type -> memos.api.v1.ParseMarkdownResponse
  2808. 5, // 53: memos.api.v1.MarkdownService.RestoreMarkdownNodes:output_type -> memos.api.v1.RestoreMarkdownNodesResponse
  2809. 7, // 54: memos.api.v1.MarkdownService.StringifyMarkdownNodes:output_type -> memos.api.v1.StringifyMarkdownNodesResponse
  2810. 9, // 55: memos.api.v1.MarkdownService.GetLinkMetadata:output_type -> memos.api.v1.LinkMetadata
  2811. 52, // [52:56] is the sub-list for method output_type
  2812. 48, // [48:52] is the sub-list for method input_type
  2813. 48, // [48:48] is the sub-list for extension type_name
  2814. 48, // [48:48] is the sub-list for extension extendee
  2815. 0, // [0:48] is the sub-list for field type_name
  2816. }
  2817. func init() { file_api_v1_markdown_service_proto_init() }
  2818. func file_api_v1_markdown_service_proto_init() {
  2819. if File_api_v1_markdown_service_proto != nil {
  2820. return
  2821. }
  2822. file_api_v1_markdown_service_proto_msgTypes[8].OneofWrappers = []any{
  2823. (*Node_LineBreakNode)(nil),
  2824. (*Node_ParagraphNode)(nil),
  2825. (*Node_CodeBlockNode)(nil),
  2826. (*Node_HeadingNode)(nil),
  2827. (*Node_HorizontalRuleNode)(nil),
  2828. (*Node_BlockquoteNode)(nil),
  2829. (*Node_ListNode)(nil),
  2830. (*Node_OrderedListItemNode)(nil),
  2831. (*Node_UnorderedListItemNode)(nil),
  2832. (*Node_TaskListItemNode)(nil),
  2833. (*Node_MathBlockNode)(nil),
  2834. (*Node_TableNode)(nil),
  2835. (*Node_EmbeddedContentNode)(nil),
  2836. (*Node_TextNode)(nil),
  2837. (*Node_BoldNode)(nil),
  2838. (*Node_ItalicNode)(nil),
  2839. (*Node_BoldItalicNode)(nil),
  2840. (*Node_CodeNode)(nil),
  2841. (*Node_ImageNode)(nil),
  2842. (*Node_LinkNode)(nil),
  2843. (*Node_AutoLinkNode)(nil),
  2844. (*Node_TagNode)(nil),
  2845. (*Node_StrikethroughNode)(nil),
  2846. (*Node_EscapingCharacterNode)(nil),
  2847. (*Node_MathNode)(nil),
  2848. (*Node_HighlightNode)(nil),
  2849. (*Node_SubscriptNode)(nil),
  2850. (*Node_SuperscriptNode)(nil),
  2851. (*Node_ReferencedContentNode)(nil),
  2852. (*Node_SpoilerNode)(nil),
  2853. (*Node_HtmlElementNode)(nil),
  2854. }
  2855. type x struct{}
  2856. out := protoimpl.TypeBuilder{
  2857. File: protoimpl.DescBuilder{
  2858. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  2859. RawDescriptor: file_api_v1_markdown_service_proto_rawDesc,
  2860. NumEnums: 2,
  2861. NumMessages: 42,
  2862. NumExtensions: 0,
  2863. NumServices: 1,
  2864. },
  2865. GoTypes: file_api_v1_markdown_service_proto_goTypes,
  2866. DependencyIndexes: file_api_v1_markdown_service_proto_depIdxs,
  2867. EnumInfos: file_api_v1_markdown_service_proto_enumTypes,
  2868. MessageInfos: file_api_v1_markdown_service_proto_msgTypes,
  2869. }.Build()
  2870. File_api_v1_markdown_service_proto = out.File
  2871. file_api_v1_markdown_service_proto_rawDesc = nil
  2872. file_api_v1_markdown_service_proto_goTypes = nil
  2873. file_api_v1_markdown_service_proto_depIdxs = nil
  2874. }