markdown_service.pb.go 120 KB

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