base_grpc_web_pb.js 268 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074
  1. /**
  2. * @fileoverview gRPC-Web generated client stub for base
  3. * @enhanceable
  4. * @public
  5. */
  6. // GENERATED CODE -- DO NOT EDIT!
  7. /* eslint-disable */
  8. // @ts-nocheck
  9. const grpc = {};
  10. grpc.web = require('grpc-web');
  11. const proto = {};
  12. proto.base = require('./base_pb.js');
  13. /**
  14. * @param {string} hostname
  15. * @param {?Object} credentials
  16. * @param {?Object} options
  17. * @constructor
  18. * @struct
  19. * @final
  20. */
  21. proto.base.ApiClient =
  22. function(hostname, credentials, options) {
  23. if (!options) options = {};
  24. options['format'] = 'text';
  25. /**
  26. * @private @const {!grpc.web.GrpcWebClientBase} The client
  27. */
  28. this.client_ = new grpc.web.GrpcWebClientBase(options);
  29. /**
  30. * @private @const {string} The hostname
  31. */
  32. this.hostname_ = hostname;
  33. };
  34. /**
  35. * @param {string} hostname
  36. * @param {?Object} credentials
  37. * @param {?Object} options
  38. * @constructor
  39. * @struct
  40. * @final
  41. */
  42. proto.base.ApiPromiseClient =
  43. function(hostname, credentials, options) {
  44. if (!options) options = {};
  45. options['format'] = 'text';
  46. /**
  47. * @private @const {!grpc.web.GrpcWebClientBase} The client
  48. */
  49. this.client_ = new grpc.web.GrpcWebClientBase(options);
  50. /**
  51. * @private @const {string} The hostname
  52. */
  53. this.hostname_ = hostname;
  54. };
  55. /**
  56. * @const
  57. * @type {!grpc.web.MethodDescriptor<
  58. * !proto.base.SignUpRequest,
  59. * !proto.base.DefaultReply>}
  60. */
  61. const methodDescriptor_Api_SignUp = new grpc.web.MethodDescriptor(
  62. '/base.Api/SignUp',
  63. grpc.web.MethodType.UNARY,
  64. proto.base.SignUpRequest,
  65. proto.base.DefaultReply,
  66. /**
  67. * @param {!proto.base.SignUpRequest} request
  68. * @return {!Uint8Array}
  69. */
  70. function(request) {
  71. return request.serializeBinary();
  72. },
  73. proto.base.DefaultReply.deserializeBinary
  74. );
  75. /**
  76. * @const
  77. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  78. * !proto.base.SignUpRequest,
  79. * !proto.base.DefaultReply>}
  80. */
  81. const methodInfo_Api_SignUp = new grpc.web.AbstractClientBase.MethodInfo(
  82. proto.base.DefaultReply,
  83. /**
  84. * @param {!proto.base.SignUpRequest} request
  85. * @return {!Uint8Array}
  86. */
  87. function(request) {
  88. return request.serializeBinary();
  89. },
  90. proto.base.DefaultReply.deserializeBinary
  91. );
  92. /**
  93. * @param {!proto.base.SignUpRequest} request The
  94. * request proto
  95. * @param {?Object<string, string>} metadata User defined
  96. * call metadata
  97. * @param {function(?grpc.web.Error, ?proto.base.DefaultReply)}
  98. * callback The callback function(error, response)
  99. * @return {!grpc.web.ClientReadableStream<!proto.base.DefaultReply>|undefined}
  100. * The XHR Node Readable Stream
  101. */
  102. proto.base.ApiClient.prototype.signUp =
  103. function(request, metadata, callback) {
  104. return this.client_.rpcCall(this.hostname_ +
  105. '/base.Api/SignUp',
  106. request,
  107. metadata || {},
  108. methodDescriptor_Api_SignUp,
  109. callback);
  110. };
  111. /**
  112. * @param {!proto.base.SignUpRequest} request The
  113. * request proto
  114. * @param {?Object<string, string>} metadata User defined
  115. * call metadata
  116. * @return {!Promise<!proto.base.DefaultReply>}
  117. * Promise that resolves to the response
  118. */
  119. proto.base.ApiPromiseClient.prototype.signUp =
  120. function(request, metadata) {
  121. return this.client_.unaryCall(this.hostname_ +
  122. '/base.Api/SignUp',
  123. request,
  124. metadata || {},
  125. methodDescriptor_Api_SignUp);
  126. };
  127. /**
  128. * @const
  129. * @type {!grpc.web.MethodDescriptor<
  130. * !proto.base.SignInRequest,
  131. * !proto.base.SignInReply>}
  132. */
  133. const methodDescriptor_Api_SignIn = new grpc.web.MethodDescriptor(
  134. '/base.Api/SignIn',
  135. grpc.web.MethodType.UNARY,
  136. proto.base.SignInRequest,
  137. proto.base.SignInReply,
  138. /**
  139. * @param {!proto.base.SignInRequest} request
  140. * @return {!Uint8Array}
  141. */
  142. function(request) {
  143. return request.serializeBinary();
  144. },
  145. proto.base.SignInReply.deserializeBinary
  146. );
  147. /**
  148. * @const
  149. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  150. * !proto.base.SignInRequest,
  151. * !proto.base.SignInReply>}
  152. */
  153. const methodInfo_Api_SignIn = new grpc.web.AbstractClientBase.MethodInfo(
  154. proto.base.SignInReply,
  155. /**
  156. * @param {!proto.base.SignInRequest} request
  157. * @return {!Uint8Array}
  158. */
  159. function(request) {
  160. return request.serializeBinary();
  161. },
  162. proto.base.SignInReply.deserializeBinary
  163. );
  164. /**
  165. * @param {!proto.base.SignInRequest} request The
  166. * request proto
  167. * @param {?Object<string, string>} metadata User defined
  168. * call metadata
  169. * @param {function(?grpc.web.Error, ?proto.base.SignInReply)}
  170. * callback The callback function(error, response)
  171. * @return {!grpc.web.ClientReadableStream<!proto.base.SignInReply>|undefined}
  172. * The XHR Node Readable Stream
  173. */
  174. proto.base.ApiClient.prototype.signIn =
  175. function(request, metadata, callback) {
  176. return this.client_.rpcCall(this.hostname_ +
  177. '/base.Api/SignIn',
  178. request,
  179. metadata || {},
  180. methodDescriptor_Api_SignIn,
  181. callback);
  182. };
  183. /**
  184. * @param {!proto.base.SignInRequest} request The
  185. * request proto
  186. * @param {?Object<string, string>} metadata User defined
  187. * call metadata
  188. * @return {!Promise<!proto.base.SignInReply>}
  189. * Promise that resolves to the response
  190. */
  191. proto.base.ApiPromiseClient.prototype.signIn =
  192. function(request, metadata) {
  193. return this.client_.unaryCall(this.hostname_ +
  194. '/base.Api/SignIn',
  195. request,
  196. metadata || {},
  197. methodDescriptor_Api_SignIn);
  198. };
  199. /**
  200. * @const
  201. * @type {!grpc.web.MethodDescriptor<
  202. * !proto.base.DefaultRequest,
  203. * !proto.base.DefaultReply>}
  204. */
  205. const methodDescriptor_Api_SignOut = new grpc.web.MethodDescriptor(
  206. '/base.Api/SignOut',
  207. grpc.web.MethodType.UNARY,
  208. proto.base.DefaultRequest,
  209. proto.base.DefaultReply,
  210. /**
  211. * @param {!proto.base.DefaultRequest} request
  212. * @return {!Uint8Array}
  213. */
  214. function(request) {
  215. return request.serializeBinary();
  216. },
  217. proto.base.DefaultReply.deserializeBinary
  218. );
  219. /**
  220. * @const
  221. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  222. * !proto.base.DefaultRequest,
  223. * !proto.base.DefaultReply>}
  224. */
  225. const methodInfo_Api_SignOut = new grpc.web.AbstractClientBase.MethodInfo(
  226. proto.base.DefaultReply,
  227. /**
  228. * @param {!proto.base.DefaultRequest} request
  229. * @return {!Uint8Array}
  230. */
  231. function(request) {
  232. return request.serializeBinary();
  233. },
  234. proto.base.DefaultReply.deserializeBinary
  235. );
  236. /**
  237. * @param {!proto.base.DefaultRequest} request The
  238. * request proto
  239. * @param {?Object<string, string>} metadata User defined
  240. * call metadata
  241. * @param {function(?grpc.web.Error, ?proto.base.DefaultReply)}
  242. * callback The callback function(error, response)
  243. * @return {!grpc.web.ClientReadableStream<!proto.base.DefaultReply>|undefined}
  244. * The XHR Node Readable Stream
  245. */
  246. proto.base.ApiClient.prototype.signOut =
  247. function(request, metadata, callback) {
  248. return this.client_.rpcCall(this.hostname_ +
  249. '/base.Api/SignOut',
  250. request,
  251. metadata || {},
  252. methodDescriptor_Api_SignOut,
  253. callback);
  254. };
  255. /**
  256. * @param {!proto.base.DefaultRequest} request The
  257. * request proto
  258. * @param {?Object<string, string>} metadata User defined
  259. * call metadata
  260. * @return {!Promise<!proto.base.DefaultReply>}
  261. * Promise that resolves to the response
  262. */
  263. proto.base.ApiPromiseClient.prototype.signOut =
  264. function(request, metadata) {
  265. return this.client_.unaryCall(this.hostname_ +
  266. '/base.Api/SignOut',
  267. request,
  268. metadata || {},
  269. methodDescriptor_Api_SignOut);
  270. };
  271. /**
  272. * @const
  273. * @type {!grpc.web.MethodDescriptor<
  274. * !proto.base.GenVerifyImageRequest,
  275. * !proto.base.GenVerifyImageReply>}
  276. */
  277. const methodDescriptor_Api_GenVerifyImage = new grpc.web.MethodDescriptor(
  278. '/base.Api/GenVerifyImage',
  279. grpc.web.MethodType.UNARY,
  280. proto.base.GenVerifyImageRequest,
  281. proto.base.GenVerifyImageReply,
  282. /**
  283. * @param {!proto.base.GenVerifyImageRequest} request
  284. * @return {!Uint8Array}
  285. */
  286. function(request) {
  287. return request.serializeBinary();
  288. },
  289. proto.base.GenVerifyImageReply.deserializeBinary
  290. );
  291. /**
  292. * @const
  293. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  294. * !proto.base.GenVerifyImageRequest,
  295. * !proto.base.GenVerifyImageReply>}
  296. */
  297. const methodInfo_Api_GenVerifyImage = new grpc.web.AbstractClientBase.MethodInfo(
  298. proto.base.GenVerifyImageReply,
  299. /**
  300. * @param {!proto.base.GenVerifyImageRequest} request
  301. * @return {!Uint8Array}
  302. */
  303. function(request) {
  304. return request.serializeBinary();
  305. },
  306. proto.base.GenVerifyImageReply.deserializeBinary
  307. );
  308. /**
  309. * @param {!proto.base.GenVerifyImageRequest} request The
  310. * request proto
  311. * @param {?Object<string, string>} metadata User defined
  312. * call metadata
  313. * @param {function(?grpc.web.Error, ?proto.base.GenVerifyImageReply)}
  314. * callback The callback function(error, response)
  315. * @return {!grpc.web.ClientReadableStream<!proto.base.GenVerifyImageReply>|undefined}
  316. * The XHR Node Readable Stream
  317. */
  318. proto.base.ApiClient.prototype.genVerifyImage =
  319. function(request, metadata, callback) {
  320. return this.client_.rpcCall(this.hostname_ +
  321. '/base.Api/GenVerifyImage',
  322. request,
  323. metadata || {},
  324. methodDescriptor_Api_GenVerifyImage,
  325. callback);
  326. };
  327. /**
  328. * @param {!proto.base.GenVerifyImageRequest} request The
  329. * request proto
  330. * @param {?Object<string, string>} metadata User defined
  331. * call metadata
  332. * @return {!Promise<!proto.base.GenVerifyImageReply>}
  333. * Promise that resolves to the response
  334. */
  335. proto.base.ApiPromiseClient.prototype.genVerifyImage =
  336. function(request, metadata) {
  337. return this.client_.unaryCall(this.hostname_ +
  338. '/base.Api/GenVerifyImage',
  339. request,
  340. metadata || {},
  341. methodDescriptor_Api_GenVerifyImage);
  342. };
  343. /**
  344. * @const
  345. * @type {!grpc.web.MethodDescriptor<
  346. * !proto.base.StandardRequest,
  347. * !proto.base.StandardReply>}
  348. */
  349. const methodDescriptor_Api_SelectHrSensors = new grpc.web.MethodDescriptor(
  350. '/base.Api/SelectHrSensors',
  351. grpc.web.MethodType.UNARY,
  352. proto.base.StandardRequest,
  353. proto.base.StandardReply,
  354. /**
  355. * @param {!proto.base.StandardRequest} request
  356. * @return {!Uint8Array}
  357. */
  358. function(request) {
  359. return request.serializeBinary();
  360. },
  361. proto.base.StandardReply.deserializeBinary
  362. );
  363. /**
  364. * @const
  365. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  366. * !proto.base.StandardRequest,
  367. * !proto.base.StandardReply>}
  368. */
  369. const methodInfo_Api_SelectHrSensors = new grpc.web.AbstractClientBase.MethodInfo(
  370. proto.base.StandardReply,
  371. /**
  372. * @param {!proto.base.StandardRequest} request
  373. * @return {!Uint8Array}
  374. */
  375. function(request) {
  376. return request.serializeBinary();
  377. },
  378. proto.base.StandardReply.deserializeBinary
  379. );
  380. /**
  381. * @param {!proto.base.StandardRequest} request The
  382. * request proto
  383. * @param {?Object<string, string>} metadata User defined
  384. * call metadata
  385. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  386. * callback The callback function(error, response)
  387. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  388. * The XHR Node Readable Stream
  389. */
  390. proto.base.ApiClient.prototype.selectHrSensors =
  391. function(request, metadata, callback) {
  392. return this.client_.rpcCall(this.hostname_ +
  393. '/base.Api/SelectHrSensors',
  394. request,
  395. metadata || {},
  396. methodDescriptor_Api_SelectHrSensors,
  397. callback);
  398. };
  399. /**
  400. * @param {!proto.base.StandardRequest} request The
  401. * request proto
  402. * @param {?Object<string, string>} metadata User defined
  403. * call metadata
  404. * @return {!Promise<!proto.base.StandardReply>}
  405. * Promise that resolves to the response
  406. */
  407. proto.base.ApiPromiseClient.prototype.selectHrSensors =
  408. function(request, metadata) {
  409. return this.client_.unaryCall(this.hostname_ +
  410. '/base.Api/SelectHrSensors',
  411. request,
  412. metadata || {},
  413. methodDescriptor_Api_SelectHrSensors);
  414. };
  415. /**
  416. * @const
  417. * @type {!grpc.web.MethodDescriptor<
  418. * !proto.base.StandardRequest,
  419. * !proto.base.StandardReply>}
  420. */
  421. const methodDescriptor_Api_AcrossUserSimpleQuery = new grpc.web.MethodDescriptor(
  422. '/base.Api/AcrossUserSimpleQuery',
  423. grpc.web.MethodType.UNARY,
  424. proto.base.StandardRequest,
  425. proto.base.StandardReply,
  426. /**
  427. * @param {!proto.base.StandardRequest} request
  428. * @return {!Uint8Array}
  429. */
  430. function(request) {
  431. return request.serializeBinary();
  432. },
  433. proto.base.StandardReply.deserializeBinary
  434. );
  435. /**
  436. * @const
  437. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  438. * !proto.base.StandardRequest,
  439. * !proto.base.StandardReply>}
  440. */
  441. const methodInfo_Api_AcrossUserSimpleQuery = new grpc.web.AbstractClientBase.MethodInfo(
  442. proto.base.StandardReply,
  443. /**
  444. * @param {!proto.base.StandardRequest} request
  445. * @return {!Uint8Array}
  446. */
  447. function(request) {
  448. return request.serializeBinary();
  449. },
  450. proto.base.StandardReply.deserializeBinary
  451. );
  452. /**
  453. * @param {!proto.base.StandardRequest} request The
  454. * request proto
  455. * @param {?Object<string, string>} metadata User defined
  456. * call metadata
  457. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  458. * callback The callback function(error, response)
  459. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  460. * The XHR Node Readable Stream
  461. */
  462. proto.base.ApiClient.prototype.acrossUserSimpleQuery =
  463. function(request, metadata, callback) {
  464. return this.client_.rpcCall(this.hostname_ +
  465. '/base.Api/AcrossUserSimpleQuery',
  466. request,
  467. metadata || {},
  468. methodDescriptor_Api_AcrossUserSimpleQuery,
  469. callback);
  470. };
  471. /**
  472. * @param {!proto.base.StandardRequest} request The
  473. * request proto
  474. * @param {?Object<string, string>} metadata User defined
  475. * call metadata
  476. * @return {!Promise<!proto.base.StandardReply>}
  477. * Promise that resolves to the response
  478. */
  479. proto.base.ApiPromiseClient.prototype.acrossUserSimpleQuery =
  480. function(request, metadata) {
  481. return this.client_.unaryCall(this.hostname_ +
  482. '/base.Api/AcrossUserSimpleQuery',
  483. request,
  484. metadata || {},
  485. methodDescriptor_Api_AcrossUserSimpleQuery);
  486. };
  487. /**
  488. * @const
  489. * @type {!grpc.web.MethodDescriptor<
  490. * !proto.base.StandardRequest,
  491. * !proto.base.StandardReply>}
  492. */
  493. const methodDescriptor_Api_VipUserSimpleQuery = new grpc.web.MethodDescriptor(
  494. '/base.Api/VipUserSimpleQuery',
  495. grpc.web.MethodType.UNARY,
  496. proto.base.StandardRequest,
  497. proto.base.StandardReply,
  498. /**
  499. * @param {!proto.base.StandardRequest} request
  500. * @return {!Uint8Array}
  501. */
  502. function(request) {
  503. return request.serializeBinary();
  504. },
  505. proto.base.StandardReply.deserializeBinary
  506. );
  507. /**
  508. * @const
  509. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  510. * !proto.base.StandardRequest,
  511. * !proto.base.StandardReply>}
  512. */
  513. const methodInfo_Api_VipUserSimpleQuery = new grpc.web.AbstractClientBase.MethodInfo(
  514. proto.base.StandardReply,
  515. /**
  516. * @param {!proto.base.StandardRequest} request
  517. * @return {!Uint8Array}
  518. */
  519. function(request) {
  520. return request.serializeBinary();
  521. },
  522. proto.base.StandardReply.deserializeBinary
  523. );
  524. /**
  525. * @param {!proto.base.StandardRequest} request The
  526. * request proto
  527. * @param {?Object<string, string>} metadata User defined
  528. * call metadata
  529. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  530. * callback The callback function(error, response)
  531. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  532. * The XHR Node Readable Stream
  533. */
  534. proto.base.ApiClient.prototype.vipUserSimpleQuery =
  535. function(request, metadata, callback) {
  536. return this.client_.rpcCall(this.hostname_ +
  537. '/base.Api/VipUserSimpleQuery',
  538. request,
  539. metadata || {},
  540. methodDescriptor_Api_VipUserSimpleQuery,
  541. callback);
  542. };
  543. /**
  544. * @param {!proto.base.StandardRequest} request The
  545. * request proto
  546. * @param {?Object<string, string>} metadata User defined
  547. * call metadata
  548. * @return {!Promise<!proto.base.StandardReply>}
  549. * Promise that resolves to the response
  550. */
  551. proto.base.ApiPromiseClient.prototype.vipUserSimpleQuery =
  552. function(request, metadata) {
  553. return this.client_.unaryCall(this.hostname_ +
  554. '/base.Api/VipUserSimpleQuery',
  555. request,
  556. metadata || {},
  557. methodDescriptor_Api_VipUserSimpleQuery);
  558. };
  559. /**
  560. * @const
  561. * @type {!grpc.web.MethodDescriptor<
  562. * !proto.base.StandardRequest,
  563. * !proto.base.StandardReply>}
  564. */
  565. const methodDescriptor_Api_TempVipUserSimpleQuery = new grpc.web.MethodDescriptor(
  566. '/base.Api/TempVipUserSimpleQuery',
  567. grpc.web.MethodType.UNARY,
  568. proto.base.StandardRequest,
  569. proto.base.StandardReply,
  570. /**
  571. * @param {!proto.base.StandardRequest} request
  572. * @return {!Uint8Array}
  573. */
  574. function(request) {
  575. return request.serializeBinary();
  576. },
  577. proto.base.StandardReply.deserializeBinary
  578. );
  579. /**
  580. * @const
  581. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  582. * !proto.base.StandardRequest,
  583. * !proto.base.StandardReply>}
  584. */
  585. const methodInfo_Api_TempVipUserSimpleQuery = new grpc.web.AbstractClientBase.MethodInfo(
  586. proto.base.StandardReply,
  587. /**
  588. * @param {!proto.base.StandardRequest} request
  589. * @return {!Uint8Array}
  590. */
  591. function(request) {
  592. return request.serializeBinary();
  593. },
  594. proto.base.StandardReply.deserializeBinary
  595. );
  596. /**
  597. * @param {!proto.base.StandardRequest} request The
  598. * request proto
  599. * @param {?Object<string, string>} metadata User defined
  600. * call metadata
  601. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  602. * callback The callback function(error, response)
  603. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  604. * The XHR Node Readable Stream
  605. */
  606. proto.base.ApiClient.prototype.tempVipUserSimpleQuery =
  607. function(request, metadata, callback) {
  608. return this.client_.rpcCall(this.hostname_ +
  609. '/base.Api/TempVipUserSimpleQuery',
  610. request,
  611. metadata || {},
  612. methodDescriptor_Api_TempVipUserSimpleQuery,
  613. callback);
  614. };
  615. /**
  616. * @param {!proto.base.StandardRequest} request The
  617. * request proto
  618. * @param {?Object<string, string>} metadata User defined
  619. * call metadata
  620. * @return {!Promise<!proto.base.StandardReply>}
  621. * Promise that resolves to the response
  622. */
  623. proto.base.ApiPromiseClient.prototype.tempVipUserSimpleQuery =
  624. function(request, metadata) {
  625. return this.client_.unaryCall(this.hostname_ +
  626. '/base.Api/TempVipUserSimpleQuery',
  627. request,
  628. metadata || {},
  629. methodDescriptor_Api_TempVipUserSimpleQuery);
  630. };
  631. /**
  632. * @const
  633. * @type {!grpc.web.MethodDescriptor<
  634. * !proto.base.StandardRequest,
  635. * !proto.base.StandardReply>}
  636. */
  637. const methodDescriptor_Api_ShopSimpleQuery = new grpc.web.MethodDescriptor(
  638. '/base.Api/ShopSimpleQuery',
  639. grpc.web.MethodType.UNARY,
  640. proto.base.StandardRequest,
  641. proto.base.StandardReply,
  642. /**
  643. * @param {!proto.base.StandardRequest} request
  644. * @return {!Uint8Array}
  645. */
  646. function(request) {
  647. return request.serializeBinary();
  648. },
  649. proto.base.StandardReply.deserializeBinary
  650. );
  651. /**
  652. * @const
  653. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  654. * !proto.base.StandardRequest,
  655. * !proto.base.StandardReply>}
  656. */
  657. const methodInfo_Api_ShopSimpleQuery = new grpc.web.AbstractClientBase.MethodInfo(
  658. proto.base.StandardReply,
  659. /**
  660. * @param {!proto.base.StandardRequest} request
  661. * @return {!Uint8Array}
  662. */
  663. function(request) {
  664. return request.serializeBinary();
  665. },
  666. proto.base.StandardReply.deserializeBinary
  667. );
  668. /**
  669. * @param {!proto.base.StandardRequest} request The
  670. * request proto
  671. * @param {?Object<string, string>} metadata User defined
  672. * call metadata
  673. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  674. * callback The callback function(error, response)
  675. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  676. * The XHR Node Readable Stream
  677. */
  678. proto.base.ApiClient.prototype.shopSimpleQuery =
  679. function(request, metadata, callback) {
  680. return this.client_.rpcCall(this.hostname_ +
  681. '/base.Api/ShopSimpleQuery',
  682. request,
  683. metadata || {},
  684. methodDescriptor_Api_ShopSimpleQuery,
  685. callback);
  686. };
  687. /**
  688. * @param {!proto.base.StandardRequest} request The
  689. * request proto
  690. * @param {?Object<string, string>} metadata User defined
  691. * call metadata
  692. * @return {!Promise<!proto.base.StandardReply>}
  693. * Promise that resolves to the response
  694. */
  695. proto.base.ApiPromiseClient.prototype.shopSimpleQuery =
  696. function(request, metadata) {
  697. return this.client_.unaryCall(this.hostname_ +
  698. '/base.Api/ShopSimpleQuery',
  699. request,
  700. metadata || {},
  701. methodDescriptor_Api_ShopSimpleQuery);
  702. };
  703. /**
  704. * @const
  705. * @type {!grpc.web.MethodDescriptor<
  706. * !proto.base.StandardRequest,
  707. * !proto.base.StandardReply>}
  708. */
  709. const methodDescriptor_Api_ManageableSimpleQuery = new grpc.web.MethodDescriptor(
  710. '/base.Api/ManageableSimpleQuery',
  711. grpc.web.MethodType.UNARY,
  712. proto.base.StandardRequest,
  713. proto.base.StandardReply,
  714. /**
  715. * @param {!proto.base.StandardRequest} request
  716. * @return {!Uint8Array}
  717. */
  718. function(request) {
  719. return request.serializeBinary();
  720. },
  721. proto.base.StandardReply.deserializeBinary
  722. );
  723. /**
  724. * @const
  725. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  726. * !proto.base.StandardRequest,
  727. * !proto.base.StandardReply>}
  728. */
  729. const methodInfo_Api_ManageableSimpleQuery = new grpc.web.AbstractClientBase.MethodInfo(
  730. proto.base.StandardReply,
  731. /**
  732. * @param {!proto.base.StandardRequest} request
  733. * @return {!Uint8Array}
  734. */
  735. function(request) {
  736. return request.serializeBinary();
  737. },
  738. proto.base.StandardReply.deserializeBinary
  739. );
  740. /**
  741. * @param {!proto.base.StandardRequest} request The
  742. * request proto
  743. * @param {?Object<string, string>} metadata User defined
  744. * call metadata
  745. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  746. * callback The callback function(error, response)
  747. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  748. * The XHR Node Readable Stream
  749. */
  750. proto.base.ApiClient.prototype.manageableSimpleQuery =
  751. function(request, metadata, callback) {
  752. return this.client_.rpcCall(this.hostname_ +
  753. '/base.Api/ManageableSimpleQuery',
  754. request,
  755. metadata || {},
  756. methodDescriptor_Api_ManageableSimpleQuery,
  757. callback);
  758. };
  759. /**
  760. * @param {!proto.base.StandardRequest} request The
  761. * request proto
  762. * @param {?Object<string, string>} metadata User defined
  763. * call metadata
  764. * @return {!Promise<!proto.base.StandardReply>}
  765. * Promise that resolves to the response
  766. */
  767. proto.base.ApiPromiseClient.prototype.manageableSimpleQuery =
  768. function(request, metadata) {
  769. return this.client_.unaryCall(this.hostname_ +
  770. '/base.Api/ManageableSimpleQuery',
  771. request,
  772. metadata || {},
  773. methodDescriptor_Api_ManageableSimpleQuery);
  774. };
  775. /**
  776. * @const
  777. * @type {!grpc.web.MethodDescriptor<
  778. * !proto.base.StandardRequest,
  779. * !proto.base.StandardReply>}
  780. */
  781. const methodDescriptor_Api_ClassSimpleQuery = new grpc.web.MethodDescriptor(
  782. '/base.Api/ClassSimpleQuery',
  783. grpc.web.MethodType.UNARY,
  784. proto.base.StandardRequest,
  785. proto.base.StandardReply,
  786. /**
  787. * @param {!proto.base.StandardRequest} request
  788. * @return {!Uint8Array}
  789. */
  790. function(request) {
  791. return request.serializeBinary();
  792. },
  793. proto.base.StandardReply.deserializeBinary
  794. );
  795. /**
  796. * @const
  797. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  798. * !proto.base.StandardRequest,
  799. * !proto.base.StandardReply>}
  800. */
  801. const methodInfo_Api_ClassSimpleQuery = new grpc.web.AbstractClientBase.MethodInfo(
  802. proto.base.StandardReply,
  803. /**
  804. * @param {!proto.base.StandardRequest} request
  805. * @return {!Uint8Array}
  806. */
  807. function(request) {
  808. return request.serializeBinary();
  809. },
  810. proto.base.StandardReply.deserializeBinary
  811. );
  812. /**
  813. * @param {!proto.base.StandardRequest} request The
  814. * request proto
  815. * @param {?Object<string, string>} metadata User defined
  816. * call metadata
  817. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  818. * callback The callback function(error, response)
  819. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  820. * The XHR Node Readable Stream
  821. */
  822. proto.base.ApiClient.prototype.classSimpleQuery =
  823. function(request, metadata, callback) {
  824. return this.client_.rpcCall(this.hostname_ +
  825. '/base.Api/ClassSimpleQuery',
  826. request,
  827. metadata || {},
  828. methodDescriptor_Api_ClassSimpleQuery,
  829. callback);
  830. };
  831. /**
  832. * @param {!proto.base.StandardRequest} request The
  833. * request proto
  834. * @param {?Object<string, string>} metadata User defined
  835. * call metadata
  836. * @return {!Promise<!proto.base.StandardReply>}
  837. * Promise that resolves to the response
  838. */
  839. proto.base.ApiPromiseClient.prototype.classSimpleQuery =
  840. function(request, metadata) {
  841. return this.client_.unaryCall(this.hostname_ +
  842. '/base.Api/ClassSimpleQuery',
  843. request,
  844. metadata || {},
  845. methodDescriptor_Api_ClassSimpleQuery);
  846. };
  847. /**
  848. * @const
  849. * @type {!grpc.web.MethodDescriptor<
  850. * !proto.base.StandardRequest,
  851. * !proto.base.StandardReply>}
  852. */
  853. const methodDescriptor_Api_ScreenSimpleQuery = new grpc.web.MethodDescriptor(
  854. '/base.Api/ScreenSimpleQuery',
  855. grpc.web.MethodType.UNARY,
  856. proto.base.StandardRequest,
  857. proto.base.StandardReply,
  858. /**
  859. * @param {!proto.base.StandardRequest} request
  860. * @return {!Uint8Array}
  861. */
  862. function(request) {
  863. return request.serializeBinary();
  864. },
  865. proto.base.StandardReply.deserializeBinary
  866. );
  867. /**
  868. * @const
  869. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  870. * !proto.base.StandardRequest,
  871. * !proto.base.StandardReply>}
  872. */
  873. const methodInfo_Api_ScreenSimpleQuery = new grpc.web.AbstractClientBase.MethodInfo(
  874. proto.base.StandardReply,
  875. /**
  876. * @param {!proto.base.StandardRequest} request
  877. * @return {!Uint8Array}
  878. */
  879. function(request) {
  880. return request.serializeBinary();
  881. },
  882. proto.base.StandardReply.deserializeBinary
  883. );
  884. /**
  885. * @param {!proto.base.StandardRequest} request The
  886. * request proto
  887. * @param {?Object<string, string>} metadata User defined
  888. * call metadata
  889. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  890. * callback The callback function(error, response)
  891. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  892. * The XHR Node Readable Stream
  893. */
  894. proto.base.ApiClient.prototype.screenSimpleQuery =
  895. function(request, metadata, callback) {
  896. return this.client_.rpcCall(this.hostname_ +
  897. '/base.Api/ScreenSimpleQuery',
  898. request,
  899. metadata || {},
  900. methodDescriptor_Api_ScreenSimpleQuery,
  901. callback);
  902. };
  903. /**
  904. * @param {!proto.base.StandardRequest} request The
  905. * request proto
  906. * @param {?Object<string, string>} metadata User defined
  907. * call metadata
  908. * @return {!Promise<!proto.base.StandardReply>}
  909. * Promise that resolves to the response
  910. */
  911. proto.base.ApiPromiseClient.prototype.screenSimpleQuery =
  912. function(request, metadata) {
  913. return this.client_.unaryCall(this.hostname_ +
  914. '/base.Api/ScreenSimpleQuery',
  915. request,
  916. metadata || {},
  917. methodDescriptor_Api_ScreenSimpleQuery);
  918. };
  919. /**
  920. * @const
  921. * @type {!grpc.web.MethodDescriptor<
  922. * !proto.base.StandardRequest,
  923. * !proto.base.StandardReply>}
  924. */
  925. const methodDescriptor_Api_GroupSimpleQueryByShopID = new grpc.web.MethodDescriptor(
  926. '/base.Api/GroupSimpleQueryByShopID',
  927. grpc.web.MethodType.UNARY,
  928. proto.base.StandardRequest,
  929. proto.base.StandardReply,
  930. /**
  931. * @param {!proto.base.StandardRequest} request
  932. * @return {!Uint8Array}
  933. */
  934. function(request) {
  935. return request.serializeBinary();
  936. },
  937. proto.base.StandardReply.deserializeBinary
  938. );
  939. /**
  940. * @const
  941. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  942. * !proto.base.StandardRequest,
  943. * !proto.base.StandardReply>}
  944. */
  945. const methodInfo_Api_GroupSimpleQueryByShopID = new grpc.web.AbstractClientBase.MethodInfo(
  946. proto.base.StandardReply,
  947. /**
  948. * @param {!proto.base.StandardRequest} request
  949. * @return {!Uint8Array}
  950. */
  951. function(request) {
  952. return request.serializeBinary();
  953. },
  954. proto.base.StandardReply.deserializeBinary
  955. );
  956. /**
  957. * @param {!proto.base.StandardRequest} request The
  958. * request proto
  959. * @param {?Object<string, string>} metadata User defined
  960. * call metadata
  961. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  962. * callback The callback function(error, response)
  963. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  964. * The XHR Node Readable Stream
  965. */
  966. proto.base.ApiClient.prototype.groupSimpleQueryByShopID =
  967. function(request, metadata, callback) {
  968. return this.client_.rpcCall(this.hostname_ +
  969. '/base.Api/GroupSimpleQueryByShopID',
  970. request,
  971. metadata || {},
  972. methodDescriptor_Api_GroupSimpleQueryByShopID,
  973. callback);
  974. };
  975. /**
  976. * @param {!proto.base.StandardRequest} request The
  977. * request proto
  978. * @param {?Object<string, string>} metadata User defined
  979. * call metadata
  980. * @return {!Promise<!proto.base.StandardReply>}
  981. * Promise that resolves to the response
  982. */
  983. proto.base.ApiPromiseClient.prototype.groupSimpleQueryByShopID =
  984. function(request, metadata) {
  985. return this.client_.unaryCall(this.hostname_ +
  986. '/base.Api/GroupSimpleQueryByShopID',
  987. request,
  988. metadata || {},
  989. methodDescriptor_Api_GroupSimpleQueryByShopID);
  990. };
  991. /**
  992. * @const
  993. * @type {!grpc.web.MethodDescriptor<
  994. * !proto.base.ShopListRequest,
  995. * !proto.base.ShopListReply>}
  996. */
  997. const methodDescriptor_Api_ManageableShopList = new grpc.web.MethodDescriptor(
  998. '/base.Api/ManageableShopList',
  999. grpc.web.MethodType.UNARY,
  1000. proto.base.ShopListRequest,
  1001. proto.base.ShopListReply,
  1002. /**
  1003. * @param {!proto.base.ShopListRequest} request
  1004. * @return {!Uint8Array}
  1005. */
  1006. function(request) {
  1007. return request.serializeBinary();
  1008. },
  1009. proto.base.ShopListReply.deserializeBinary
  1010. );
  1011. /**
  1012. * @const
  1013. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  1014. * !proto.base.ShopListRequest,
  1015. * !proto.base.ShopListReply>}
  1016. */
  1017. const methodInfo_Api_ManageableShopList = new grpc.web.AbstractClientBase.MethodInfo(
  1018. proto.base.ShopListReply,
  1019. /**
  1020. * @param {!proto.base.ShopListRequest} request
  1021. * @return {!Uint8Array}
  1022. */
  1023. function(request) {
  1024. return request.serializeBinary();
  1025. },
  1026. proto.base.ShopListReply.deserializeBinary
  1027. );
  1028. /**
  1029. * @param {!proto.base.ShopListRequest} request The
  1030. * request proto
  1031. * @param {?Object<string, string>} metadata User defined
  1032. * call metadata
  1033. * @param {function(?grpc.web.Error, ?proto.base.ShopListReply)}
  1034. * callback The callback function(error, response)
  1035. * @return {!grpc.web.ClientReadableStream<!proto.base.ShopListReply>|undefined}
  1036. * The XHR Node Readable Stream
  1037. */
  1038. proto.base.ApiClient.prototype.manageableShopList =
  1039. function(request, metadata, callback) {
  1040. return this.client_.rpcCall(this.hostname_ +
  1041. '/base.Api/ManageableShopList',
  1042. request,
  1043. metadata || {},
  1044. methodDescriptor_Api_ManageableShopList,
  1045. callback);
  1046. };
  1047. /**
  1048. * @param {!proto.base.ShopListRequest} request The
  1049. * request proto
  1050. * @param {?Object<string, string>} metadata User defined
  1051. * call metadata
  1052. * @return {!Promise<!proto.base.ShopListReply>}
  1053. * Promise that resolves to the response
  1054. */
  1055. proto.base.ApiPromiseClient.prototype.manageableShopList =
  1056. function(request, metadata) {
  1057. return this.client_.unaryCall(this.hostname_ +
  1058. '/base.Api/ManageableShopList',
  1059. request,
  1060. metadata || {},
  1061. methodDescriptor_Api_ManageableShopList);
  1062. };
  1063. /**
  1064. * @const
  1065. * @type {!grpc.web.MethodDescriptor<
  1066. * !proto.base.ShopDetailRequest,
  1067. * !proto.base.ShopInfo>}
  1068. */
  1069. const methodDescriptor_Api_ManageableGetShopInfo = new grpc.web.MethodDescriptor(
  1070. '/base.Api/ManageableGetShopInfo',
  1071. grpc.web.MethodType.UNARY,
  1072. proto.base.ShopDetailRequest,
  1073. proto.base.ShopInfo,
  1074. /**
  1075. * @param {!proto.base.ShopDetailRequest} request
  1076. * @return {!Uint8Array}
  1077. */
  1078. function(request) {
  1079. return request.serializeBinary();
  1080. },
  1081. proto.base.ShopInfo.deserializeBinary
  1082. );
  1083. /**
  1084. * @const
  1085. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  1086. * !proto.base.ShopDetailRequest,
  1087. * !proto.base.ShopInfo>}
  1088. */
  1089. const methodInfo_Api_ManageableGetShopInfo = new grpc.web.AbstractClientBase.MethodInfo(
  1090. proto.base.ShopInfo,
  1091. /**
  1092. * @param {!proto.base.ShopDetailRequest} request
  1093. * @return {!Uint8Array}
  1094. */
  1095. function(request) {
  1096. return request.serializeBinary();
  1097. },
  1098. proto.base.ShopInfo.deserializeBinary
  1099. );
  1100. /**
  1101. * @param {!proto.base.ShopDetailRequest} request The
  1102. * request proto
  1103. * @param {?Object<string, string>} metadata User defined
  1104. * call metadata
  1105. * @param {function(?grpc.web.Error, ?proto.base.ShopInfo)}
  1106. * callback The callback function(error, response)
  1107. * @return {!grpc.web.ClientReadableStream<!proto.base.ShopInfo>|undefined}
  1108. * The XHR Node Readable Stream
  1109. */
  1110. proto.base.ApiClient.prototype.manageableGetShopInfo =
  1111. function(request, metadata, callback) {
  1112. return this.client_.rpcCall(this.hostname_ +
  1113. '/base.Api/ManageableGetShopInfo',
  1114. request,
  1115. metadata || {},
  1116. methodDescriptor_Api_ManageableGetShopInfo,
  1117. callback);
  1118. };
  1119. /**
  1120. * @param {!proto.base.ShopDetailRequest} request The
  1121. * request proto
  1122. * @param {?Object<string, string>} metadata User defined
  1123. * call metadata
  1124. * @return {!Promise<!proto.base.ShopInfo>}
  1125. * Promise that resolves to the response
  1126. */
  1127. proto.base.ApiPromiseClient.prototype.manageableGetShopInfo =
  1128. function(request, metadata) {
  1129. return this.client_.unaryCall(this.hostname_ +
  1130. '/base.Api/ManageableGetShopInfo',
  1131. request,
  1132. metadata || {},
  1133. methodDescriptor_Api_ManageableGetShopInfo);
  1134. };
  1135. /**
  1136. * @const
  1137. * @type {!grpc.web.MethodDescriptor<
  1138. * !proto.base.ShopDetailRequest,
  1139. * !proto.base.LicenseList>}
  1140. */
  1141. const methodDescriptor_Api_ShopLicenseList = new grpc.web.MethodDescriptor(
  1142. '/base.Api/ShopLicenseList',
  1143. grpc.web.MethodType.UNARY,
  1144. proto.base.ShopDetailRequest,
  1145. proto.base.LicenseList,
  1146. /**
  1147. * @param {!proto.base.ShopDetailRequest} request
  1148. * @return {!Uint8Array}
  1149. */
  1150. function(request) {
  1151. return request.serializeBinary();
  1152. },
  1153. proto.base.LicenseList.deserializeBinary
  1154. );
  1155. /**
  1156. * @const
  1157. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  1158. * !proto.base.ShopDetailRequest,
  1159. * !proto.base.LicenseList>}
  1160. */
  1161. const methodInfo_Api_ShopLicenseList = new grpc.web.AbstractClientBase.MethodInfo(
  1162. proto.base.LicenseList,
  1163. /**
  1164. * @param {!proto.base.ShopDetailRequest} request
  1165. * @return {!Uint8Array}
  1166. */
  1167. function(request) {
  1168. return request.serializeBinary();
  1169. },
  1170. proto.base.LicenseList.deserializeBinary
  1171. );
  1172. /**
  1173. * @param {!proto.base.ShopDetailRequest} request The
  1174. * request proto
  1175. * @param {?Object<string, string>} metadata User defined
  1176. * call metadata
  1177. * @param {function(?grpc.web.Error, ?proto.base.LicenseList)}
  1178. * callback The callback function(error, response)
  1179. * @return {!grpc.web.ClientReadableStream<!proto.base.LicenseList>|undefined}
  1180. * The XHR Node Readable Stream
  1181. */
  1182. proto.base.ApiClient.prototype.shopLicenseList =
  1183. function(request, metadata, callback) {
  1184. return this.client_.rpcCall(this.hostname_ +
  1185. '/base.Api/ShopLicenseList',
  1186. request,
  1187. metadata || {},
  1188. methodDescriptor_Api_ShopLicenseList,
  1189. callback);
  1190. };
  1191. /**
  1192. * @param {!proto.base.ShopDetailRequest} request The
  1193. * request proto
  1194. * @param {?Object<string, string>} metadata User defined
  1195. * call metadata
  1196. * @return {!Promise<!proto.base.LicenseList>}
  1197. * Promise that resolves to the response
  1198. */
  1199. proto.base.ApiPromiseClient.prototype.shopLicenseList =
  1200. function(request, metadata) {
  1201. return this.client_.unaryCall(this.hostname_ +
  1202. '/base.Api/ShopLicenseList',
  1203. request,
  1204. metadata || {},
  1205. methodDescriptor_Api_ShopLicenseList);
  1206. };
  1207. /**
  1208. * @const
  1209. * @type {!grpc.web.MethodDescriptor<
  1210. * !proto.base.IdList,
  1211. * !proto.base.LicenseTypeMapReply>}
  1212. */
  1213. const methodDescriptor_Api_ShopLicenseTypeMap = new grpc.web.MethodDescriptor(
  1214. '/base.Api/ShopLicenseTypeMap',
  1215. grpc.web.MethodType.UNARY,
  1216. proto.base.IdList,
  1217. proto.base.LicenseTypeMapReply,
  1218. /**
  1219. * @param {!proto.base.IdList} request
  1220. * @return {!Uint8Array}
  1221. */
  1222. function(request) {
  1223. return request.serializeBinary();
  1224. },
  1225. proto.base.LicenseTypeMapReply.deserializeBinary
  1226. );
  1227. /**
  1228. * @const
  1229. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  1230. * !proto.base.IdList,
  1231. * !proto.base.LicenseTypeMapReply>}
  1232. */
  1233. const methodInfo_Api_ShopLicenseTypeMap = new grpc.web.AbstractClientBase.MethodInfo(
  1234. proto.base.LicenseTypeMapReply,
  1235. /**
  1236. * @param {!proto.base.IdList} request
  1237. * @return {!Uint8Array}
  1238. */
  1239. function(request) {
  1240. return request.serializeBinary();
  1241. },
  1242. proto.base.LicenseTypeMapReply.deserializeBinary
  1243. );
  1244. /**
  1245. * @param {!proto.base.IdList} request The
  1246. * request proto
  1247. * @param {?Object<string, string>} metadata User defined
  1248. * call metadata
  1249. * @param {function(?grpc.web.Error, ?proto.base.LicenseTypeMapReply)}
  1250. * callback The callback function(error, response)
  1251. * @return {!grpc.web.ClientReadableStream<!proto.base.LicenseTypeMapReply>|undefined}
  1252. * The XHR Node Readable Stream
  1253. */
  1254. proto.base.ApiClient.prototype.shopLicenseTypeMap =
  1255. function(request, metadata, callback) {
  1256. return this.client_.rpcCall(this.hostname_ +
  1257. '/base.Api/ShopLicenseTypeMap',
  1258. request,
  1259. metadata || {},
  1260. methodDescriptor_Api_ShopLicenseTypeMap,
  1261. callback);
  1262. };
  1263. /**
  1264. * @param {!proto.base.IdList} request The
  1265. * request proto
  1266. * @param {?Object<string, string>} metadata User defined
  1267. * call metadata
  1268. * @return {!Promise<!proto.base.LicenseTypeMapReply>}
  1269. * Promise that resolves to the response
  1270. */
  1271. proto.base.ApiPromiseClient.prototype.shopLicenseTypeMap =
  1272. function(request, metadata) {
  1273. return this.client_.unaryCall(this.hostname_ +
  1274. '/base.Api/ShopLicenseTypeMap',
  1275. request,
  1276. metadata || {},
  1277. methodDescriptor_Api_ShopLicenseTypeMap);
  1278. };
  1279. /**
  1280. * @const
  1281. * @type {!grpc.web.MethodDescriptor<
  1282. * !proto.base.GetShopNaviRequest,
  1283. * !proto.base.GetShopNaviReply>}
  1284. */
  1285. const methodDescriptor_Api_GetShopNavi = new grpc.web.MethodDescriptor(
  1286. '/base.Api/GetShopNavi',
  1287. grpc.web.MethodType.UNARY,
  1288. proto.base.GetShopNaviRequest,
  1289. proto.base.GetShopNaviReply,
  1290. /**
  1291. * @param {!proto.base.GetShopNaviRequest} request
  1292. * @return {!Uint8Array}
  1293. */
  1294. function(request) {
  1295. return request.serializeBinary();
  1296. },
  1297. proto.base.GetShopNaviReply.deserializeBinary
  1298. );
  1299. /**
  1300. * @const
  1301. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  1302. * !proto.base.GetShopNaviRequest,
  1303. * !proto.base.GetShopNaviReply>}
  1304. */
  1305. const methodInfo_Api_GetShopNavi = new grpc.web.AbstractClientBase.MethodInfo(
  1306. proto.base.GetShopNaviReply,
  1307. /**
  1308. * @param {!proto.base.GetShopNaviRequest} request
  1309. * @return {!Uint8Array}
  1310. */
  1311. function(request) {
  1312. return request.serializeBinary();
  1313. },
  1314. proto.base.GetShopNaviReply.deserializeBinary
  1315. );
  1316. /**
  1317. * @param {!proto.base.GetShopNaviRequest} request The
  1318. * request proto
  1319. * @param {?Object<string, string>} metadata User defined
  1320. * call metadata
  1321. * @param {function(?grpc.web.Error, ?proto.base.GetShopNaviReply)}
  1322. * callback The callback function(error, response)
  1323. * @return {!grpc.web.ClientReadableStream<!proto.base.GetShopNaviReply>|undefined}
  1324. * The XHR Node Readable Stream
  1325. */
  1326. proto.base.ApiClient.prototype.getShopNavi =
  1327. function(request, metadata, callback) {
  1328. return this.client_.rpcCall(this.hostname_ +
  1329. '/base.Api/GetShopNavi',
  1330. request,
  1331. metadata || {},
  1332. methodDescriptor_Api_GetShopNavi,
  1333. callback);
  1334. };
  1335. /**
  1336. * @param {!proto.base.GetShopNaviRequest} request The
  1337. * request proto
  1338. * @param {?Object<string, string>} metadata User defined
  1339. * call metadata
  1340. * @return {!Promise<!proto.base.GetShopNaviReply>}
  1341. * Promise that resolves to the response
  1342. */
  1343. proto.base.ApiPromiseClient.prototype.getShopNavi =
  1344. function(request, metadata) {
  1345. return this.client_.unaryCall(this.hostname_ +
  1346. '/base.Api/GetShopNavi',
  1347. request,
  1348. metadata || {},
  1349. methodDescriptor_Api_GetShopNavi);
  1350. };
  1351. /**
  1352. * @const
  1353. * @type {!grpc.web.MethodDescriptor<
  1354. * !proto.base.GetShopNaviAllRequest,
  1355. * !proto.base.GetShopNaviAllReply>}
  1356. */
  1357. const methodDescriptor_Api_GetShopNaviAll = new grpc.web.MethodDescriptor(
  1358. '/base.Api/GetShopNaviAll',
  1359. grpc.web.MethodType.UNARY,
  1360. proto.base.GetShopNaviAllRequest,
  1361. proto.base.GetShopNaviAllReply,
  1362. /**
  1363. * @param {!proto.base.GetShopNaviAllRequest} request
  1364. * @return {!Uint8Array}
  1365. */
  1366. function(request) {
  1367. return request.serializeBinary();
  1368. },
  1369. proto.base.GetShopNaviAllReply.deserializeBinary
  1370. );
  1371. /**
  1372. * @const
  1373. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  1374. * !proto.base.GetShopNaviAllRequest,
  1375. * !proto.base.GetShopNaviAllReply>}
  1376. */
  1377. const methodInfo_Api_GetShopNaviAll = new grpc.web.AbstractClientBase.MethodInfo(
  1378. proto.base.GetShopNaviAllReply,
  1379. /**
  1380. * @param {!proto.base.GetShopNaviAllRequest} request
  1381. * @return {!Uint8Array}
  1382. */
  1383. function(request) {
  1384. return request.serializeBinary();
  1385. },
  1386. proto.base.GetShopNaviAllReply.deserializeBinary
  1387. );
  1388. /**
  1389. * @param {!proto.base.GetShopNaviAllRequest} request The
  1390. * request proto
  1391. * @param {?Object<string, string>} metadata User defined
  1392. * call metadata
  1393. * @param {function(?grpc.web.Error, ?proto.base.GetShopNaviAllReply)}
  1394. * callback The callback function(error, response)
  1395. * @return {!grpc.web.ClientReadableStream<!proto.base.GetShopNaviAllReply>|undefined}
  1396. * The XHR Node Readable Stream
  1397. */
  1398. proto.base.ApiClient.prototype.getShopNaviAll =
  1399. function(request, metadata, callback) {
  1400. return this.client_.rpcCall(this.hostname_ +
  1401. '/base.Api/GetShopNaviAll',
  1402. request,
  1403. metadata || {},
  1404. methodDescriptor_Api_GetShopNaviAll,
  1405. callback);
  1406. };
  1407. /**
  1408. * @param {!proto.base.GetShopNaviAllRequest} request The
  1409. * request proto
  1410. * @param {?Object<string, string>} metadata User defined
  1411. * call metadata
  1412. * @return {!Promise<!proto.base.GetShopNaviAllReply>}
  1413. * Promise that resolves to the response
  1414. */
  1415. proto.base.ApiPromiseClient.prototype.getShopNaviAll =
  1416. function(request, metadata) {
  1417. return this.client_.unaryCall(this.hostname_ +
  1418. '/base.Api/GetShopNaviAll',
  1419. request,
  1420. metadata || {},
  1421. methodDescriptor_Api_GetShopNaviAll);
  1422. };
  1423. /**
  1424. * @const
  1425. * @type {!grpc.web.MethodDescriptor<
  1426. * !proto.base.StandardRequest,
  1427. * !proto.base.StandardReply>}
  1428. */
  1429. const methodDescriptor_Api_ShopGroupQuery = new grpc.web.MethodDescriptor(
  1430. '/base.Api/ShopGroupQuery',
  1431. grpc.web.MethodType.UNARY,
  1432. proto.base.StandardRequest,
  1433. proto.base.StandardReply,
  1434. /**
  1435. * @param {!proto.base.StandardRequest} request
  1436. * @return {!Uint8Array}
  1437. */
  1438. function(request) {
  1439. return request.serializeBinary();
  1440. },
  1441. proto.base.StandardReply.deserializeBinary
  1442. );
  1443. /**
  1444. * @const
  1445. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  1446. * !proto.base.StandardRequest,
  1447. * !proto.base.StandardReply>}
  1448. */
  1449. const methodInfo_Api_ShopGroupQuery = new grpc.web.AbstractClientBase.MethodInfo(
  1450. proto.base.StandardReply,
  1451. /**
  1452. * @param {!proto.base.StandardRequest} request
  1453. * @return {!Uint8Array}
  1454. */
  1455. function(request) {
  1456. return request.serializeBinary();
  1457. },
  1458. proto.base.StandardReply.deserializeBinary
  1459. );
  1460. /**
  1461. * @param {!proto.base.StandardRequest} request The
  1462. * request proto
  1463. * @param {?Object<string, string>} metadata User defined
  1464. * call metadata
  1465. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  1466. * callback The callback function(error, response)
  1467. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  1468. * The XHR Node Readable Stream
  1469. */
  1470. proto.base.ApiClient.prototype.shopGroupQuery =
  1471. function(request, metadata, callback) {
  1472. return this.client_.rpcCall(this.hostname_ +
  1473. '/base.Api/ShopGroupQuery',
  1474. request,
  1475. metadata || {},
  1476. methodDescriptor_Api_ShopGroupQuery,
  1477. callback);
  1478. };
  1479. /**
  1480. * @param {!proto.base.StandardRequest} request The
  1481. * request proto
  1482. * @param {?Object<string, string>} metadata User defined
  1483. * call metadata
  1484. * @return {!Promise<!proto.base.StandardReply>}
  1485. * Promise that resolves to the response
  1486. */
  1487. proto.base.ApiPromiseClient.prototype.shopGroupQuery =
  1488. function(request, metadata) {
  1489. return this.client_.unaryCall(this.hostname_ +
  1490. '/base.Api/ShopGroupQuery',
  1491. request,
  1492. metadata || {},
  1493. methodDescriptor_Api_ShopGroupQuery);
  1494. };
  1495. /**
  1496. * @const
  1497. * @type {!grpc.web.MethodDescriptor<
  1498. * !proto.base.StandardRequest,
  1499. * !proto.base.StandardReply>}
  1500. */
  1501. const methodDescriptor_Api_ShopGroupAdd = new grpc.web.MethodDescriptor(
  1502. '/base.Api/ShopGroupAdd',
  1503. grpc.web.MethodType.UNARY,
  1504. proto.base.StandardRequest,
  1505. proto.base.StandardReply,
  1506. /**
  1507. * @param {!proto.base.StandardRequest} request
  1508. * @return {!Uint8Array}
  1509. */
  1510. function(request) {
  1511. return request.serializeBinary();
  1512. },
  1513. proto.base.StandardReply.deserializeBinary
  1514. );
  1515. /**
  1516. * @const
  1517. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  1518. * !proto.base.StandardRequest,
  1519. * !proto.base.StandardReply>}
  1520. */
  1521. const methodInfo_Api_ShopGroupAdd = new grpc.web.AbstractClientBase.MethodInfo(
  1522. proto.base.StandardReply,
  1523. /**
  1524. * @param {!proto.base.StandardRequest} request
  1525. * @return {!Uint8Array}
  1526. */
  1527. function(request) {
  1528. return request.serializeBinary();
  1529. },
  1530. proto.base.StandardReply.deserializeBinary
  1531. );
  1532. /**
  1533. * @param {!proto.base.StandardRequest} request The
  1534. * request proto
  1535. * @param {?Object<string, string>} metadata User defined
  1536. * call metadata
  1537. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  1538. * callback The callback function(error, response)
  1539. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  1540. * The XHR Node Readable Stream
  1541. */
  1542. proto.base.ApiClient.prototype.shopGroupAdd =
  1543. function(request, metadata, callback) {
  1544. return this.client_.rpcCall(this.hostname_ +
  1545. '/base.Api/ShopGroupAdd',
  1546. request,
  1547. metadata || {},
  1548. methodDescriptor_Api_ShopGroupAdd,
  1549. callback);
  1550. };
  1551. /**
  1552. * @param {!proto.base.StandardRequest} request The
  1553. * request proto
  1554. * @param {?Object<string, string>} metadata User defined
  1555. * call metadata
  1556. * @return {!Promise<!proto.base.StandardReply>}
  1557. * Promise that resolves to the response
  1558. */
  1559. proto.base.ApiPromiseClient.prototype.shopGroupAdd =
  1560. function(request, metadata) {
  1561. return this.client_.unaryCall(this.hostname_ +
  1562. '/base.Api/ShopGroupAdd',
  1563. request,
  1564. metadata || {},
  1565. methodDescriptor_Api_ShopGroupAdd);
  1566. };
  1567. /**
  1568. * @const
  1569. * @type {!grpc.web.MethodDescriptor<
  1570. * !proto.base.StandardRequest,
  1571. * !proto.base.StandardReply>}
  1572. */
  1573. const methodDescriptor_Api_ShopGroupEdit = new grpc.web.MethodDescriptor(
  1574. '/base.Api/ShopGroupEdit',
  1575. grpc.web.MethodType.UNARY,
  1576. proto.base.StandardRequest,
  1577. proto.base.StandardReply,
  1578. /**
  1579. * @param {!proto.base.StandardRequest} request
  1580. * @return {!Uint8Array}
  1581. */
  1582. function(request) {
  1583. return request.serializeBinary();
  1584. },
  1585. proto.base.StandardReply.deserializeBinary
  1586. );
  1587. /**
  1588. * @const
  1589. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  1590. * !proto.base.StandardRequest,
  1591. * !proto.base.StandardReply>}
  1592. */
  1593. const methodInfo_Api_ShopGroupEdit = new grpc.web.AbstractClientBase.MethodInfo(
  1594. proto.base.StandardReply,
  1595. /**
  1596. * @param {!proto.base.StandardRequest} request
  1597. * @return {!Uint8Array}
  1598. */
  1599. function(request) {
  1600. return request.serializeBinary();
  1601. },
  1602. proto.base.StandardReply.deserializeBinary
  1603. );
  1604. /**
  1605. * @param {!proto.base.StandardRequest} request The
  1606. * request proto
  1607. * @param {?Object<string, string>} metadata User defined
  1608. * call metadata
  1609. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  1610. * callback The callback function(error, response)
  1611. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  1612. * The XHR Node Readable Stream
  1613. */
  1614. proto.base.ApiClient.prototype.shopGroupEdit =
  1615. function(request, metadata, callback) {
  1616. return this.client_.rpcCall(this.hostname_ +
  1617. '/base.Api/ShopGroupEdit',
  1618. request,
  1619. metadata || {},
  1620. methodDescriptor_Api_ShopGroupEdit,
  1621. callback);
  1622. };
  1623. /**
  1624. * @param {!proto.base.StandardRequest} request The
  1625. * request proto
  1626. * @param {?Object<string, string>} metadata User defined
  1627. * call metadata
  1628. * @return {!Promise<!proto.base.StandardReply>}
  1629. * Promise that resolves to the response
  1630. */
  1631. proto.base.ApiPromiseClient.prototype.shopGroupEdit =
  1632. function(request, metadata) {
  1633. return this.client_.unaryCall(this.hostname_ +
  1634. '/base.Api/ShopGroupEdit',
  1635. request,
  1636. metadata || {},
  1637. methodDescriptor_Api_ShopGroupEdit);
  1638. };
  1639. /**
  1640. * @const
  1641. * @type {!grpc.web.MethodDescriptor<
  1642. * !proto.base.StandardRequest,
  1643. * !proto.base.StandardReply>}
  1644. */
  1645. const methodDescriptor_Api_ShopGroupStatusEdit = new grpc.web.MethodDescriptor(
  1646. '/base.Api/ShopGroupStatusEdit',
  1647. grpc.web.MethodType.UNARY,
  1648. proto.base.StandardRequest,
  1649. proto.base.StandardReply,
  1650. /**
  1651. * @param {!proto.base.StandardRequest} request
  1652. * @return {!Uint8Array}
  1653. */
  1654. function(request) {
  1655. return request.serializeBinary();
  1656. },
  1657. proto.base.StandardReply.deserializeBinary
  1658. );
  1659. /**
  1660. * @const
  1661. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  1662. * !proto.base.StandardRequest,
  1663. * !proto.base.StandardReply>}
  1664. */
  1665. const methodInfo_Api_ShopGroupStatusEdit = new grpc.web.AbstractClientBase.MethodInfo(
  1666. proto.base.StandardReply,
  1667. /**
  1668. * @param {!proto.base.StandardRequest} request
  1669. * @return {!Uint8Array}
  1670. */
  1671. function(request) {
  1672. return request.serializeBinary();
  1673. },
  1674. proto.base.StandardReply.deserializeBinary
  1675. );
  1676. /**
  1677. * @param {!proto.base.StandardRequest} request The
  1678. * request proto
  1679. * @param {?Object<string, string>} metadata User defined
  1680. * call metadata
  1681. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  1682. * callback The callback function(error, response)
  1683. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  1684. * The XHR Node Readable Stream
  1685. */
  1686. proto.base.ApiClient.prototype.shopGroupStatusEdit =
  1687. function(request, metadata, callback) {
  1688. return this.client_.rpcCall(this.hostname_ +
  1689. '/base.Api/ShopGroupStatusEdit',
  1690. request,
  1691. metadata || {},
  1692. methodDescriptor_Api_ShopGroupStatusEdit,
  1693. callback);
  1694. };
  1695. /**
  1696. * @param {!proto.base.StandardRequest} request The
  1697. * request proto
  1698. * @param {?Object<string, string>} metadata User defined
  1699. * call metadata
  1700. * @return {!Promise<!proto.base.StandardReply>}
  1701. * Promise that resolves to the response
  1702. */
  1703. proto.base.ApiPromiseClient.prototype.shopGroupStatusEdit =
  1704. function(request, metadata) {
  1705. return this.client_.unaryCall(this.hostname_ +
  1706. '/base.Api/ShopGroupStatusEdit',
  1707. request,
  1708. metadata || {},
  1709. methodDescriptor_Api_ShopGroupStatusEdit);
  1710. };
  1711. /**
  1712. * @const
  1713. * @type {!grpc.web.MethodDescriptor<
  1714. * !proto.base.StandardRequest,
  1715. * !proto.base.StandardReply>}
  1716. */
  1717. const methodDescriptor_Api_ShopGroupDetailsQuery = new grpc.web.MethodDescriptor(
  1718. '/base.Api/ShopGroupDetailsQuery',
  1719. grpc.web.MethodType.UNARY,
  1720. proto.base.StandardRequest,
  1721. proto.base.StandardReply,
  1722. /**
  1723. * @param {!proto.base.StandardRequest} request
  1724. * @return {!Uint8Array}
  1725. */
  1726. function(request) {
  1727. return request.serializeBinary();
  1728. },
  1729. proto.base.StandardReply.deserializeBinary
  1730. );
  1731. /**
  1732. * @const
  1733. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  1734. * !proto.base.StandardRequest,
  1735. * !proto.base.StandardReply>}
  1736. */
  1737. const methodInfo_Api_ShopGroupDetailsQuery = new grpc.web.AbstractClientBase.MethodInfo(
  1738. proto.base.StandardReply,
  1739. /**
  1740. * @param {!proto.base.StandardRequest} request
  1741. * @return {!Uint8Array}
  1742. */
  1743. function(request) {
  1744. return request.serializeBinary();
  1745. },
  1746. proto.base.StandardReply.deserializeBinary
  1747. );
  1748. /**
  1749. * @param {!proto.base.StandardRequest} request The
  1750. * request proto
  1751. * @param {?Object<string, string>} metadata User defined
  1752. * call metadata
  1753. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  1754. * callback The callback function(error, response)
  1755. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  1756. * The XHR Node Readable Stream
  1757. */
  1758. proto.base.ApiClient.prototype.shopGroupDetailsQuery =
  1759. function(request, metadata, callback) {
  1760. return this.client_.rpcCall(this.hostname_ +
  1761. '/base.Api/ShopGroupDetailsQuery',
  1762. request,
  1763. metadata || {},
  1764. methodDescriptor_Api_ShopGroupDetailsQuery,
  1765. callback);
  1766. };
  1767. /**
  1768. * @param {!proto.base.StandardRequest} request The
  1769. * request proto
  1770. * @param {?Object<string, string>} metadata User defined
  1771. * call metadata
  1772. * @return {!Promise<!proto.base.StandardReply>}
  1773. * Promise that resolves to the response
  1774. */
  1775. proto.base.ApiPromiseClient.prototype.shopGroupDetailsQuery =
  1776. function(request, metadata) {
  1777. return this.client_.unaryCall(this.hostname_ +
  1778. '/base.Api/ShopGroupDetailsQuery',
  1779. request,
  1780. metadata || {},
  1781. methodDescriptor_Api_ShopGroupDetailsQuery);
  1782. };
  1783. /**
  1784. * @const
  1785. * @type {!grpc.web.MethodDescriptor<
  1786. * !proto.base.StandardRequest,
  1787. * !proto.base.StandardReply>}
  1788. */
  1789. const methodDescriptor_Api_ShopGroupDetailsAdd = new grpc.web.MethodDescriptor(
  1790. '/base.Api/ShopGroupDetailsAdd',
  1791. grpc.web.MethodType.UNARY,
  1792. proto.base.StandardRequest,
  1793. proto.base.StandardReply,
  1794. /**
  1795. * @param {!proto.base.StandardRequest} request
  1796. * @return {!Uint8Array}
  1797. */
  1798. function(request) {
  1799. return request.serializeBinary();
  1800. },
  1801. proto.base.StandardReply.deserializeBinary
  1802. );
  1803. /**
  1804. * @const
  1805. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  1806. * !proto.base.StandardRequest,
  1807. * !proto.base.StandardReply>}
  1808. */
  1809. const methodInfo_Api_ShopGroupDetailsAdd = new grpc.web.AbstractClientBase.MethodInfo(
  1810. proto.base.StandardReply,
  1811. /**
  1812. * @param {!proto.base.StandardRequest} request
  1813. * @return {!Uint8Array}
  1814. */
  1815. function(request) {
  1816. return request.serializeBinary();
  1817. },
  1818. proto.base.StandardReply.deserializeBinary
  1819. );
  1820. /**
  1821. * @param {!proto.base.StandardRequest} request The
  1822. * request proto
  1823. * @param {?Object<string, string>} metadata User defined
  1824. * call metadata
  1825. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  1826. * callback The callback function(error, response)
  1827. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  1828. * The XHR Node Readable Stream
  1829. */
  1830. proto.base.ApiClient.prototype.shopGroupDetailsAdd =
  1831. function(request, metadata, callback) {
  1832. return this.client_.rpcCall(this.hostname_ +
  1833. '/base.Api/ShopGroupDetailsAdd',
  1834. request,
  1835. metadata || {},
  1836. methodDescriptor_Api_ShopGroupDetailsAdd,
  1837. callback);
  1838. };
  1839. /**
  1840. * @param {!proto.base.StandardRequest} request The
  1841. * request proto
  1842. * @param {?Object<string, string>} metadata User defined
  1843. * call metadata
  1844. * @return {!Promise<!proto.base.StandardReply>}
  1845. * Promise that resolves to the response
  1846. */
  1847. proto.base.ApiPromiseClient.prototype.shopGroupDetailsAdd =
  1848. function(request, metadata) {
  1849. return this.client_.unaryCall(this.hostname_ +
  1850. '/base.Api/ShopGroupDetailsAdd',
  1851. request,
  1852. metadata || {},
  1853. methodDescriptor_Api_ShopGroupDetailsAdd);
  1854. };
  1855. /**
  1856. * @const
  1857. * @type {!grpc.web.MethodDescriptor<
  1858. * !proto.base.StandardRequest,
  1859. * !proto.base.StandardReply>}
  1860. */
  1861. const methodDescriptor_Api_ShopVenueQuery = new grpc.web.MethodDescriptor(
  1862. '/base.Api/ShopVenueQuery',
  1863. grpc.web.MethodType.UNARY,
  1864. proto.base.StandardRequest,
  1865. proto.base.StandardReply,
  1866. /**
  1867. * @param {!proto.base.StandardRequest} request
  1868. * @return {!Uint8Array}
  1869. */
  1870. function(request) {
  1871. return request.serializeBinary();
  1872. },
  1873. proto.base.StandardReply.deserializeBinary
  1874. );
  1875. /**
  1876. * @const
  1877. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  1878. * !proto.base.StandardRequest,
  1879. * !proto.base.StandardReply>}
  1880. */
  1881. const methodInfo_Api_ShopVenueQuery = new grpc.web.AbstractClientBase.MethodInfo(
  1882. proto.base.StandardReply,
  1883. /**
  1884. * @param {!proto.base.StandardRequest} request
  1885. * @return {!Uint8Array}
  1886. */
  1887. function(request) {
  1888. return request.serializeBinary();
  1889. },
  1890. proto.base.StandardReply.deserializeBinary
  1891. );
  1892. /**
  1893. * @param {!proto.base.StandardRequest} request The
  1894. * request proto
  1895. * @param {?Object<string, string>} metadata User defined
  1896. * call metadata
  1897. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  1898. * callback The callback function(error, response)
  1899. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  1900. * The XHR Node Readable Stream
  1901. */
  1902. proto.base.ApiClient.prototype.shopVenueQuery =
  1903. function(request, metadata, callback) {
  1904. return this.client_.rpcCall(this.hostname_ +
  1905. '/base.Api/ShopVenueQuery',
  1906. request,
  1907. metadata || {},
  1908. methodDescriptor_Api_ShopVenueQuery,
  1909. callback);
  1910. };
  1911. /**
  1912. * @param {!proto.base.StandardRequest} request The
  1913. * request proto
  1914. * @param {?Object<string, string>} metadata User defined
  1915. * call metadata
  1916. * @return {!Promise<!proto.base.StandardReply>}
  1917. * Promise that resolves to the response
  1918. */
  1919. proto.base.ApiPromiseClient.prototype.shopVenueQuery =
  1920. function(request, metadata) {
  1921. return this.client_.unaryCall(this.hostname_ +
  1922. '/base.Api/ShopVenueQuery',
  1923. request,
  1924. metadata || {},
  1925. methodDescriptor_Api_ShopVenueQuery);
  1926. };
  1927. /**
  1928. * @const
  1929. * @type {!grpc.web.MethodDescriptor<
  1930. * !proto.base.StandardRequest,
  1931. * !proto.base.StandardReply>}
  1932. */
  1933. const methodDescriptor_Api_ShopVenueAdd = new grpc.web.MethodDescriptor(
  1934. '/base.Api/ShopVenueAdd',
  1935. grpc.web.MethodType.UNARY,
  1936. proto.base.StandardRequest,
  1937. proto.base.StandardReply,
  1938. /**
  1939. * @param {!proto.base.StandardRequest} request
  1940. * @return {!Uint8Array}
  1941. */
  1942. function(request) {
  1943. return request.serializeBinary();
  1944. },
  1945. proto.base.StandardReply.deserializeBinary
  1946. );
  1947. /**
  1948. * @const
  1949. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  1950. * !proto.base.StandardRequest,
  1951. * !proto.base.StandardReply>}
  1952. */
  1953. const methodInfo_Api_ShopVenueAdd = new grpc.web.AbstractClientBase.MethodInfo(
  1954. proto.base.StandardReply,
  1955. /**
  1956. * @param {!proto.base.StandardRequest} request
  1957. * @return {!Uint8Array}
  1958. */
  1959. function(request) {
  1960. return request.serializeBinary();
  1961. },
  1962. proto.base.StandardReply.deserializeBinary
  1963. );
  1964. /**
  1965. * @param {!proto.base.StandardRequest} request The
  1966. * request proto
  1967. * @param {?Object<string, string>} metadata User defined
  1968. * call metadata
  1969. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  1970. * callback The callback function(error, response)
  1971. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  1972. * The XHR Node Readable Stream
  1973. */
  1974. proto.base.ApiClient.prototype.shopVenueAdd =
  1975. function(request, metadata, callback) {
  1976. return this.client_.rpcCall(this.hostname_ +
  1977. '/base.Api/ShopVenueAdd',
  1978. request,
  1979. metadata || {},
  1980. methodDescriptor_Api_ShopVenueAdd,
  1981. callback);
  1982. };
  1983. /**
  1984. * @param {!proto.base.StandardRequest} request The
  1985. * request proto
  1986. * @param {?Object<string, string>} metadata User defined
  1987. * call metadata
  1988. * @return {!Promise<!proto.base.StandardReply>}
  1989. * Promise that resolves to the response
  1990. */
  1991. proto.base.ApiPromiseClient.prototype.shopVenueAdd =
  1992. function(request, metadata) {
  1993. return this.client_.unaryCall(this.hostname_ +
  1994. '/base.Api/ShopVenueAdd',
  1995. request,
  1996. metadata || {},
  1997. methodDescriptor_Api_ShopVenueAdd);
  1998. };
  1999. /**
  2000. * @const
  2001. * @type {!grpc.web.MethodDescriptor<
  2002. * !proto.base.StandardRequest,
  2003. * !proto.base.StandardReply>}
  2004. */
  2005. const methodDescriptor_Api_ShopVenueEdit = new grpc.web.MethodDescriptor(
  2006. '/base.Api/ShopVenueEdit',
  2007. grpc.web.MethodType.UNARY,
  2008. proto.base.StandardRequest,
  2009. proto.base.StandardReply,
  2010. /**
  2011. * @param {!proto.base.StandardRequest} request
  2012. * @return {!Uint8Array}
  2013. */
  2014. function(request) {
  2015. return request.serializeBinary();
  2016. },
  2017. proto.base.StandardReply.deserializeBinary
  2018. );
  2019. /**
  2020. * @const
  2021. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  2022. * !proto.base.StandardRequest,
  2023. * !proto.base.StandardReply>}
  2024. */
  2025. const methodInfo_Api_ShopVenueEdit = new grpc.web.AbstractClientBase.MethodInfo(
  2026. proto.base.StandardReply,
  2027. /**
  2028. * @param {!proto.base.StandardRequest} request
  2029. * @return {!Uint8Array}
  2030. */
  2031. function(request) {
  2032. return request.serializeBinary();
  2033. },
  2034. proto.base.StandardReply.deserializeBinary
  2035. );
  2036. /**
  2037. * @param {!proto.base.StandardRequest} request The
  2038. * request proto
  2039. * @param {?Object<string, string>} metadata User defined
  2040. * call metadata
  2041. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  2042. * callback The callback function(error, response)
  2043. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  2044. * The XHR Node Readable Stream
  2045. */
  2046. proto.base.ApiClient.prototype.shopVenueEdit =
  2047. function(request, metadata, callback) {
  2048. return this.client_.rpcCall(this.hostname_ +
  2049. '/base.Api/ShopVenueEdit',
  2050. request,
  2051. metadata || {},
  2052. methodDescriptor_Api_ShopVenueEdit,
  2053. callback);
  2054. };
  2055. /**
  2056. * @param {!proto.base.StandardRequest} request The
  2057. * request proto
  2058. * @param {?Object<string, string>} metadata User defined
  2059. * call metadata
  2060. * @return {!Promise<!proto.base.StandardReply>}
  2061. * Promise that resolves to the response
  2062. */
  2063. proto.base.ApiPromiseClient.prototype.shopVenueEdit =
  2064. function(request, metadata) {
  2065. return this.client_.unaryCall(this.hostname_ +
  2066. '/base.Api/ShopVenueEdit',
  2067. request,
  2068. metadata || {},
  2069. methodDescriptor_Api_ShopVenueEdit);
  2070. };
  2071. /**
  2072. * @const
  2073. * @type {!grpc.web.MethodDescriptor<
  2074. * !proto.base.StandardRequest,
  2075. * !proto.base.StandardReply>}
  2076. */
  2077. const methodDescriptor_Api_ShopVenueStatusEdit = new grpc.web.MethodDescriptor(
  2078. '/base.Api/ShopVenueStatusEdit',
  2079. grpc.web.MethodType.UNARY,
  2080. proto.base.StandardRequest,
  2081. proto.base.StandardReply,
  2082. /**
  2083. * @param {!proto.base.StandardRequest} request
  2084. * @return {!Uint8Array}
  2085. */
  2086. function(request) {
  2087. return request.serializeBinary();
  2088. },
  2089. proto.base.StandardReply.deserializeBinary
  2090. );
  2091. /**
  2092. * @const
  2093. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  2094. * !proto.base.StandardRequest,
  2095. * !proto.base.StandardReply>}
  2096. */
  2097. const methodInfo_Api_ShopVenueStatusEdit = new grpc.web.AbstractClientBase.MethodInfo(
  2098. proto.base.StandardReply,
  2099. /**
  2100. * @param {!proto.base.StandardRequest} request
  2101. * @return {!Uint8Array}
  2102. */
  2103. function(request) {
  2104. return request.serializeBinary();
  2105. },
  2106. proto.base.StandardReply.deserializeBinary
  2107. );
  2108. /**
  2109. * @param {!proto.base.StandardRequest} request The
  2110. * request proto
  2111. * @param {?Object<string, string>} metadata User defined
  2112. * call metadata
  2113. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  2114. * callback The callback function(error, response)
  2115. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  2116. * The XHR Node Readable Stream
  2117. */
  2118. proto.base.ApiClient.prototype.shopVenueStatusEdit =
  2119. function(request, metadata, callback) {
  2120. return this.client_.rpcCall(this.hostname_ +
  2121. '/base.Api/ShopVenueStatusEdit',
  2122. request,
  2123. metadata || {},
  2124. methodDescriptor_Api_ShopVenueStatusEdit,
  2125. callback);
  2126. };
  2127. /**
  2128. * @param {!proto.base.StandardRequest} request The
  2129. * request proto
  2130. * @param {?Object<string, string>} metadata User defined
  2131. * call metadata
  2132. * @return {!Promise<!proto.base.StandardReply>}
  2133. * Promise that resolves to the response
  2134. */
  2135. proto.base.ApiPromiseClient.prototype.shopVenueStatusEdit =
  2136. function(request, metadata) {
  2137. return this.client_.unaryCall(this.hostname_ +
  2138. '/base.Api/ShopVenueStatusEdit',
  2139. request,
  2140. metadata || {},
  2141. methodDescriptor_Api_ShopVenueStatusEdit);
  2142. };
  2143. /**
  2144. * @const
  2145. * @type {!grpc.web.MethodDescriptor<
  2146. * !proto.base.StandardRequest,
  2147. * !proto.base.StandardReply>}
  2148. */
  2149. const methodDescriptor_Api_ShopVenueEquipQuery = new grpc.web.MethodDescriptor(
  2150. '/base.Api/ShopVenueEquipQuery',
  2151. grpc.web.MethodType.UNARY,
  2152. proto.base.StandardRequest,
  2153. proto.base.StandardReply,
  2154. /**
  2155. * @param {!proto.base.StandardRequest} request
  2156. * @return {!Uint8Array}
  2157. */
  2158. function(request) {
  2159. return request.serializeBinary();
  2160. },
  2161. proto.base.StandardReply.deserializeBinary
  2162. );
  2163. /**
  2164. * @const
  2165. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  2166. * !proto.base.StandardRequest,
  2167. * !proto.base.StandardReply>}
  2168. */
  2169. const methodInfo_Api_ShopVenueEquipQuery = new grpc.web.AbstractClientBase.MethodInfo(
  2170. proto.base.StandardReply,
  2171. /**
  2172. * @param {!proto.base.StandardRequest} request
  2173. * @return {!Uint8Array}
  2174. */
  2175. function(request) {
  2176. return request.serializeBinary();
  2177. },
  2178. proto.base.StandardReply.deserializeBinary
  2179. );
  2180. /**
  2181. * @param {!proto.base.StandardRequest} request The
  2182. * request proto
  2183. * @param {?Object<string, string>} metadata User defined
  2184. * call metadata
  2185. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  2186. * callback The callback function(error, response)
  2187. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  2188. * The XHR Node Readable Stream
  2189. */
  2190. proto.base.ApiClient.prototype.shopVenueEquipQuery =
  2191. function(request, metadata, callback) {
  2192. return this.client_.rpcCall(this.hostname_ +
  2193. '/base.Api/ShopVenueEquipQuery',
  2194. request,
  2195. metadata || {},
  2196. methodDescriptor_Api_ShopVenueEquipQuery,
  2197. callback);
  2198. };
  2199. /**
  2200. * @param {!proto.base.StandardRequest} request The
  2201. * request proto
  2202. * @param {?Object<string, string>} metadata User defined
  2203. * call metadata
  2204. * @return {!Promise<!proto.base.StandardReply>}
  2205. * Promise that resolves to the response
  2206. */
  2207. proto.base.ApiPromiseClient.prototype.shopVenueEquipQuery =
  2208. function(request, metadata) {
  2209. return this.client_.unaryCall(this.hostname_ +
  2210. '/base.Api/ShopVenueEquipQuery',
  2211. request,
  2212. metadata || {},
  2213. methodDescriptor_Api_ShopVenueEquipQuery);
  2214. };
  2215. /**
  2216. * @const
  2217. * @type {!grpc.web.MethodDescriptor<
  2218. * !proto.base.StandardRequest,
  2219. * !proto.base.StandardReply>}
  2220. */
  2221. const methodDescriptor_Api_ShopVenueEquipAdd = new grpc.web.MethodDescriptor(
  2222. '/base.Api/ShopVenueEquipAdd',
  2223. grpc.web.MethodType.UNARY,
  2224. proto.base.StandardRequest,
  2225. proto.base.StandardReply,
  2226. /**
  2227. * @param {!proto.base.StandardRequest} request
  2228. * @return {!Uint8Array}
  2229. */
  2230. function(request) {
  2231. return request.serializeBinary();
  2232. },
  2233. proto.base.StandardReply.deserializeBinary
  2234. );
  2235. /**
  2236. * @const
  2237. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  2238. * !proto.base.StandardRequest,
  2239. * !proto.base.StandardReply>}
  2240. */
  2241. const methodInfo_Api_ShopVenueEquipAdd = new grpc.web.AbstractClientBase.MethodInfo(
  2242. proto.base.StandardReply,
  2243. /**
  2244. * @param {!proto.base.StandardRequest} request
  2245. * @return {!Uint8Array}
  2246. */
  2247. function(request) {
  2248. return request.serializeBinary();
  2249. },
  2250. proto.base.StandardReply.deserializeBinary
  2251. );
  2252. /**
  2253. * @param {!proto.base.StandardRequest} request The
  2254. * request proto
  2255. * @param {?Object<string, string>} metadata User defined
  2256. * call metadata
  2257. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  2258. * callback The callback function(error, response)
  2259. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  2260. * The XHR Node Readable Stream
  2261. */
  2262. proto.base.ApiClient.prototype.shopVenueEquipAdd =
  2263. function(request, metadata, callback) {
  2264. return this.client_.rpcCall(this.hostname_ +
  2265. '/base.Api/ShopVenueEquipAdd',
  2266. request,
  2267. metadata || {},
  2268. methodDescriptor_Api_ShopVenueEquipAdd,
  2269. callback);
  2270. };
  2271. /**
  2272. * @param {!proto.base.StandardRequest} request The
  2273. * request proto
  2274. * @param {?Object<string, string>} metadata User defined
  2275. * call metadata
  2276. * @return {!Promise<!proto.base.StandardReply>}
  2277. * Promise that resolves to the response
  2278. */
  2279. proto.base.ApiPromiseClient.prototype.shopVenueEquipAdd =
  2280. function(request, metadata) {
  2281. return this.client_.unaryCall(this.hostname_ +
  2282. '/base.Api/ShopVenueEquipAdd',
  2283. request,
  2284. metadata || {},
  2285. methodDescriptor_Api_ShopVenueEquipAdd);
  2286. };
  2287. /**
  2288. * @const
  2289. * @type {!grpc.web.MethodDescriptor<
  2290. * !proto.base.StandardRequest,
  2291. * !proto.base.StandardReply>}
  2292. */
  2293. const methodDescriptor_Api_ShopVenueEquipEdit = new grpc.web.MethodDescriptor(
  2294. '/base.Api/ShopVenueEquipEdit',
  2295. grpc.web.MethodType.UNARY,
  2296. proto.base.StandardRequest,
  2297. proto.base.StandardReply,
  2298. /**
  2299. * @param {!proto.base.StandardRequest} request
  2300. * @return {!Uint8Array}
  2301. */
  2302. function(request) {
  2303. return request.serializeBinary();
  2304. },
  2305. proto.base.StandardReply.deserializeBinary
  2306. );
  2307. /**
  2308. * @const
  2309. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  2310. * !proto.base.StandardRequest,
  2311. * !proto.base.StandardReply>}
  2312. */
  2313. const methodInfo_Api_ShopVenueEquipEdit = new grpc.web.AbstractClientBase.MethodInfo(
  2314. proto.base.StandardReply,
  2315. /**
  2316. * @param {!proto.base.StandardRequest} request
  2317. * @return {!Uint8Array}
  2318. */
  2319. function(request) {
  2320. return request.serializeBinary();
  2321. },
  2322. proto.base.StandardReply.deserializeBinary
  2323. );
  2324. /**
  2325. * @param {!proto.base.StandardRequest} request The
  2326. * request proto
  2327. * @param {?Object<string, string>} metadata User defined
  2328. * call metadata
  2329. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  2330. * callback The callback function(error, response)
  2331. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  2332. * The XHR Node Readable Stream
  2333. */
  2334. proto.base.ApiClient.prototype.shopVenueEquipEdit =
  2335. function(request, metadata, callback) {
  2336. return this.client_.rpcCall(this.hostname_ +
  2337. '/base.Api/ShopVenueEquipEdit',
  2338. request,
  2339. metadata || {},
  2340. methodDescriptor_Api_ShopVenueEquipEdit,
  2341. callback);
  2342. };
  2343. /**
  2344. * @param {!proto.base.StandardRequest} request The
  2345. * request proto
  2346. * @param {?Object<string, string>} metadata User defined
  2347. * call metadata
  2348. * @return {!Promise<!proto.base.StandardReply>}
  2349. * Promise that resolves to the response
  2350. */
  2351. proto.base.ApiPromiseClient.prototype.shopVenueEquipEdit =
  2352. function(request, metadata) {
  2353. return this.client_.unaryCall(this.hostname_ +
  2354. '/base.Api/ShopVenueEquipEdit',
  2355. request,
  2356. metadata || {},
  2357. methodDescriptor_Api_ShopVenueEquipEdit);
  2358. };
  2359. /**
  2360. * @const
  2361. * @type {!grpc.web.MethodDescriptor<
  2362. * !proto.base.StandardRequest,
  2363. * !proto.base.StandardReply>}
  2364. */
  2365. const methodDescriptor_Api_ShopVenueEquipStatusEdit = new grpc.web.MethodDescriptor(
  2366. '/base.Api/ShopVenueEquipStatusEdit',
  2367. grpc.web.MethodType.UNARY,
  2368. proto.base.StandardRequest,
  2369. proto.base.StandardReply,
  2370. /**
  2371. * @param {!proto.base.StandardRequest} request
  2372. * @return {!Uint8Array}
  2373. */
  2374. function(request) {
  2375. return request.serializeBinary();
  2376. },
  2377. proto.base.StandardReply.deserializeBinary
  2378. );
  2379. /**
  2380. * @const
  2381. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  2382. * !proto.base.StandardRequest,
  2383. * !proto.base.StandardReply>}
  2384. */
  2385. const methodInfo_Api_ShopVenueEquipStatusEdit = new grpc.web.AbstractClientBase.MethodInfo(
  2386. proto.base.StandardReply,
  2387. /**
  2388. * @param {!proto.base.StandardRequest} request
  2389. * @return {!Uint8Array}
  2390. */
  2391. function(request) {
  2392. return request.serializeBinary();
  2393. },
  2394. proto.base.StandardReply.deserializeBinary
  2395. );
  2396. /**
  2397. * @param {!proto.base.StandardRequest} request The
  2398. * request proto
  2399. * @param {?Object<string, string>} metadata User defined
  2400. * call metadata
  2401. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  2402. * callback The callback function(error, response)
  2403. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  2404. * The XHR Node Readable Stream
  2405. */
  2406. proto.base.ApiClient.prototype.shopVenueEquipStatusEdit =
  2407. function(request, metadata, callback) {
  2408. return this.client_.rpcCall(this.hostname_ +
  2409. '/base.Api/ShopVenueEquipStatusEdit',
  2410. request,
  2411. metadata || {},
  2412. methodDescriptor_Api_ShopVenueEquipStatusEdit,
  2413. callback);
  2414. };
  2415. /**
  2416. * @param {!proto.base.StandardRequest} request The
  2417. * request proto
  2418. * @param {?Object<string, string>} metadata User defined
  2419. * call metadata
  2420. * @return {!Promise<!proto.base.StandardReply>}
  2421. * Promise that resolves to the response
  2422. */
  2423. proto.base.ApiPromiseClient.prototype.shopVenueEquipStatusEdit =
  2424. function(request, metadata) {
  2425. return this.client_.unaryCall(this.hostname_ +
  2426. '/base.Api/ShopVenueEquipStatusEdit',
  2427. request,
  2428. metadata || {},
  2429. methodDescriptor_Api_ShopVenueEquipStatusEdit);
  2430. };
  2431. /**
  2432. * @const
  2433. * @type {!grpc.web.MethodDescriptor<
  2434. * !proto.base.StandardRequest,
  2435. * !proto.base.StandardReply>}
  2436. */
  2437. const methodDescriptor_Api_ShopVenueEquipStatusDel = new grpc.web.MethodDescriptor(
  2438. '/base.Api/ShopVenueEquipStatusDel',
  2439. grpc.web.MethodType.UNARY,
  2440. proto.base.StandardRequest,
  2441. proto.base.StandardReply,
  2442. /**
  2443. * @param {!proto.base.StandardRequest} request
  2444. * @return {!Uint8Array}
  2445. */
  2446. function(request) {
  2447. return request.serializeBinary();
  2448. },
  2449. proto.base.StandardReply.deserializeBinary
  2450. );
  2451. /**
  2452. * @const
  2453. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  2454. * !proto.base.StandardRequest,
  2455. * !proto.base.StandardReply>}
  2456. */
  2457. const methodInfo_Api_ShopVenueEquipStatusDel = new grpc.web.AbstractClientBase.MethodInfo(
  2458. proto.base.StandardReply,
  2459. /**
  2460. * @param {!proto.base.StandardRequest} request
  2461. * @return {!Uint8Array}
  2462. */
  2463. function(request) {
  2464. return request.serializeBinary();
  2465. },
  2466. proto.base.StandardReply.deserializeBinary
  2467. );
  2468. /**
  2469. * @param {!proto.base.StandardRequest} request The
  2470. * request proto
  2471. * @param {?Object<string, string>} metadata User defined
  2472. * call metadata
  2473. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  2474. * callback The callback function(error, response)
  2475. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  2476. * The XHR Node Readable Stream
  2477. */
  2478. proto.base.ApiClient.prototype.shopVenueEquipStatusDel =
  2479. function(request, metadata, callback) {
  2480. return this.client_.rpcCall(this.hostname_ +
  2481. '/base.Api/ShopVenueEquipStatusDel',
  2482. request,
  2483. metadata || {},
  2484. methodDescriptor_Api_ShopVenueEquipStatusDel,
  2485. callback);
  2486. };
  2487. /**
  2488. * @param {!proto.base.StandardRequest} request The
  2489. * request proto
  2490. * @param {?Object<string, string>} metadata User defined
  2491. * call metadata
  2492. * @return {!Promise<!proto.base.StandardReply>}
  2493. * Promise that resolves to the response
  2494. */
  2495. proto.base.ApiPromiseClient.prototype.shopVenueEquipStatusDel =
  2496. function(request, metadata) {
  2497. return this.client_.unaryCall(this.hostname_ +
  2498. '/base.Api/ShopVenueEquipStatusDel',
  2499. request,
  2500. metadata || {},
  2501. methodDescriptor_Api_ShopVenueEquipStatusDel);
  2502. };
  2503. /**
  2504. * @const
  2505. * @type {!grpc.web.MethodDescriptor<
  2506. * !proto.base.StandardRequest,
  2507. * !proto.base.StandardReply>}
  2508. */
  2509. const methodDescriptor_Api_ShopManagerQuery = new grpc.web.MethodDescriptor(
  2510. '/base.Api/ShopManagerQuery',
  2511. grpc.web.MethodType.UNARY,
  2512. proto.base.StandardRequest,
  2513. proto.base.StandardReply,
  2514. /**
  2515. * @param {!proto.base.StandardRequest} request
  2516. * @return {!Uint8Array}
  2517. */
  2518. function(request) {
  2519. return request.serializeBinary();
  2520. },
  2521. proto.base.StandardReply.deserializeBinary
  2522. );
  2523. /**
  2524. * @const
  2525. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  2526. * !proto.base.StandardRequest,
  2527. * !proto.base.StandardReply>}
  2528. */
  2529. const methodInfo_Api_ShopManagerQuery = new grpc.web.AbstractClientBase.MethodInfo(
  2530. proto.base.StandardReply,
  2531. /**
  2532. * @param {!proto.base.StandardRequest} request
  2533. * @return {!Uint8Array}
  2534. */
  2535. function(request) {
  2536. return request.serializeBinary();
  2537. },
  2538. proto.base.StandardReply.deserializeBinary
  2539. );
  2540. /**
  2541. * @param {!proto.base.StandardRequest} request The
  2542. * request proto
  2543. * @param {?Object<string, string>} metadata User defined
  2544. * call metadata
  2545. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  2546. * callback The callback function(error, response)
  2547. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  2548. * The XHR Node Readable Stream
  2549. */
  2550. proto.base.ApiClient.prototype.shopManagerQuery =
  2551. function(request, metadata, callback) {
  2552. return this.client_.rpcCall(this.hostname_ +
  2553. '/base.Api/ShopManagerQuery',
  2554. request,
  2555. metadata || {},
  2556. methodDescriptor_Api_ShopManagerQuery,
  2557. callback);
  2558. };
  2559. /**
  2560. * @param {!proto.base.StandardRequest} request The
  2561. * request proto
  2562. * @param {?Object<string, string>} metadata User defined
  2563. * call metadata
  2564. * @return {!Promise<!proto.base.StandardReply>}
  2565. * Promise that resolves to the response
  2566. */
  2567. proto.base.ApiPromiseClient.prototype.shopManagerQuery =
  2568. function(request, metadata) {
  2569. return this.client_.unaryCall(this.hostname_ +
  2570. '/base.Api/ShopManagerQuery',
  2571. request,
  2572. metadata || {},
  2573. methodDescriptor_Api_ShopManagerQuery);
  2574. };
  2575. /**
  2576. * @const
  2577. * @type {!grpc.web.MethodDescriptor<
  2578. * !proto.base.StandardRequest,
  2579. * !proto.base.StandardReply>}
  2580. */
  2581. const methodDescriptor_Api_ShopManagerAdd = new grpc.web.MethodDescriptor(
  2582. '/base.Api/ShopManagerAdd',
  2583. grpc.web.MethodType.UNARY,
  2584. proto.base.StandardRequest,
  2585. proto.base.StandardReply,
  2586. /**
  2587. * @param {!proto.base.StandardRequest} request
  2588. * @return {!Uint8Array}
  2589. */
  2590. function(request) {
  2591. return request.serializeBinary();
  2592. },
  2593. proto.base.StandardReply.deserializeBinary
  2594. );
  2595. /**
  2596. * @const
  2597. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  2598. * !proto.base.StandardRequest,
  2599. * !proto.base.StandardReply>}
  2600. */
  2601. const methodInfo_Api_ShopManagerAdd = new grpc.web.AbstractClientBase.MethodInfo(
  2602. proto.base.StandardReply,
  2603. /**
  2604. * @param {!proto.base.StandardRequest} request
  2605. * @return {!Uint8Array}
  2606. */
  2607. function(request) {
  2608. return request.serializeBinary();
  2609. },
  2610. proto.base.StandardReply.deserializeBinary
  2611. );
  2612. /**
  2613. * @param {!proto.base.StandardRequest} request The
  2614. * request proto
  2615. * @param {?Object<string, string>} metadata User defined
  2616. * call metadata
  2617. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  2618. * callback The callback function(error, response)
  2619. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  2620. * The XHR Node Readable Stream
  2621. */
  2622. proto.base.ApiClient.prototype.shopManagerAdd =
  2623. function(request, metadata, callback) {
  2624. return this.client_.rpcCall(this.hostname_ +
  2625. '/base.Api/ShopManagerAdd',
  2626. request,
  2627. metadata || {},
  2628. methodDescriptor_Api_ShopManagerAdd,
  2629. callback);
  2630. };
  2631. /**
  2632. * @param {!proto.base.StandardRequest} request The
  2633. * request proto
  2634. * @param {?Object<string, string>} metadata User defined
  2635. * call metadata
  2636. * @return {!Promise<!proto.base.StandardReply>}
  2637. * Promise that resolves to the response
  2638. */
  2639. proto.base.ApiPromiseClient.prototype.shopManagerAdd =
  2640. function(request, metadata) {
  2641. return this.client_.unaryCall(this.hostname_ +
  2642. '/base.Api/ShopManagerAdd',
  2643. request,
  2644. metadata || {},
  2645. methodDescriptor_Api_ShopManagerAdd);
  2646. };
  2647. /**
  2648. * @const
  2649. * @type {!grpc.web.MethodDescriptor<
  2650. * !proto.base.StandardRequest,
  2651. * !proto.base.StandardReply>}
  2652. */
  2653. const methodDescriptor_Api_ShopManagerEdit = new grpc.web.MethodDescriptor(
  2654. '/base.Api/ShopManagerEdit',
  2655. grpc.web.MethodType.UNARY,
  2656. proto.base.StandardRequest,
  2657. proto.base.StandardReply,
  2658. /**
  2659. * @param {!proto.base.StandardRequest} request
  2660. * @return {!Uint8Array}
  2661. */
  2662. function(request) {
  2663. return request.serializeBinary();
  2664. },
  2665. proto.base.StandardReply.deserializeBinary
  2666. );
  2667. /**
  2668. * @const
  2669. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  2670. * !proto.base.StandardRequest,
  2671. * !proto.base.StandardReply>}
  2672. */
  2673. const methodInfo_Api_ShopManagerEdit = new grpc.web.AbstractClientBase.MethodInfo(
  2674. proto.base.StandardReply,
  2675. /**
  2676. * @param {!proto.base.StandardRequest} request
  2677. * @return {!Uint8Array}
  2678. */
  2679. function(request) {
  2680. return request.serializeBinary();
  2681. },
  2682. proto.base.StandardReply.deserializeBinary
  2683. );
  2684. /**
  2685. * @param {!proto.base.StandardRequest} request The
  2686. * request proto
  2687. * @param {?Object<string, string>} metadata User defined
  2688. * call metadata
  2689. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  2690. * callback The callback function(error, response)
  2691. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  2692. * The XHR Node Readable Stream
  2693. */
  2694. proto.base.ApiClient.prototype.shopManagerEdit =
  2695. function(request, metadata, callback) {
  2696. return this.client_.rpcCall(this.hostname_ +
  2697. '/base.Api/ShopManagerEdit',
  2698. request,
  2699. metadata || {},
  2700. methodDescriptor_Api_ShopManagerEdit,
  2701. callback);
  2702. };
  2703. /**
  2704. * @param {!proto.base.StandardRequest} request The
  2705. * request proto
  2706. * @param {?Object<string, string>} metadata User defined
  2707. * call metadata
  2708. * @return {!Promise<!proto.base.StandardReply>}
  2709. * Promise that resolves to the response
  2710. */
  2711. proto.base.ApiPromiseClient.prototype.shopManagerEdit =
  2712. function(request, metadata) {
  2713. return this.client_.unaryCall(this.hostname_ +
  2714. '/base.Api/ShopManagerEdit',
  2715. request,
  2716. metadata || {},
  2717. methodDescriptor_Api_ShopManagerEdit);
  2718. };
  2719. /**
  2720. * @const
  2721. * @type {!grpc.web.MethodDescriptor<
  2722. * !proto.base.StandardRequest,
  2723. * !proto.base.StandardReply>}
  2724. */
  2725. const methodDescriptor_Api_ShopManagerStatusEdit = new grpc.web.MethodDescriptor(
  2726. '/base.Api/ShopManagerStatusEdit',
  2727. grpc.web.MethodType.UNARY,
  2728. proto.base.StandardRequest,
  2729. proto.base.StandardReply,
  2730. /**
  2731. * @param {!proto.base.StandardRequest} request
  2732. * @return {!Uint8Array}
  2733. */
  2734. function(request) {
  2735. return request.serializeBinary();
  2736. },
  2737. proto.base.StandardReply.deserializeBinary
  2738. );
  2739. /**
  2740. * @const
  2741. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  2742. * !proto.base.StandardRequest,
  2743. * !proto.base.StandardReply>}
  2744. */
  2745. const methodInfo_Api_ShopManagerStatusEdit = new grpc.web.AbstractClientBase.MethodInfo(
  2746. proto.base.StandardReply,
  2747. /**
  2748. * @param {!proto.base.StandardRequest} request
  2749. * @return {!Uint8Array}
  2750. */
  2751. function(request) {
  2752. return request.serializeBinary();
  2753. },
  2754. proto.base.StandardReply.deserializeBinary
  2755. );
  2756. /**
  2757. * @param {!proto.base.StandardRequest} request The
  2758. * request proto
  2759. * @param {?Object<string, string>} metadata User defined
  2760. * call metadata
  2761. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  2762. * callback The callback function(error, response)
  2763. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  2764. * The XHR Node Readable Stream
  2765. */
  2766. proto.base.ApiClient.prototype.shopManagerStatusEdit =
  2767. function(request, metadata, callback) {
  2768. return this.client_.rpcCall(this.hostname_ +
  2769. '/base.Api/ShopManagerStatusEdit',
  2770. request,
  2771. metadata || {},
  2772. methodDescriptor_Api_ShopManagerStatusEdit,
  2773. callback);
  2774. };
  2775. /**
  2776. * @param {!proto.base.StandardRequest} request The
  2777. * request proto
  2778. * @param {?Object<string, string>} metadata User defined
  2779. * call metadata
  2780. * @return {!Promise<!proto.base.StandardReply>}
  2781. * Promise that resolves to the response
  2782. */
  2783. proto.base.ApiPromiseClient.prototype.shopManagerStatusEdit =
  2784. function(request, metadata) {
  2785. return this.client_.unaryCall(this.hostname_ +
  2786. '/base.Api/ShopManagerStatusEdit',
  2787. request,
  2788. metadata || {},
  2789. methodDescriptor_Api_ShopManagerStatusEdit);
  2790. };
  2791. /**
  2792. * @const
  2793. * @type {!grpc.web.MethodDescriptor<
  2794. * !proto.base.StandardRequest,
  2795. * !proto.base.StandardReply>}
  2796. */
  2797. const methodDescriptor_Api_ShopConfigQuery = new grpc.web.MethodDescriptor(
  2798. '/base.Api/ShopConfigQuery',
  2799. grpc.web.MethodType.UNARY,
  2800. proto.base.StandardRequest,
  2801. proto.base.StandardReply,
  2802. /**
  2803. * @param {!proto.base.StandardRequest} request
  2804. * @return {!Uint8Array}
  2805. */
  2806. function(request) {
  2807. return request.serializeBinary();
  2808. },
  2809. proto.base.StandardReply.deserializeBinary
  2810. );
  2811. /**
  2812. * @const
  2813. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  2814. * !proto.base.StandardRequest,
  2815. * !proto.base.StandardReply>}
  2816. */
  2817. const methodInfo_Api_ShopConfigQuery = new grpc.web.AbstractClientBase.MethodInfo(
  2818. proto.base.StandardReply,
  2819. /**
  2820. * @param {!proto.base.StandardRequest} request
  2821. * @return {!Uint8Array}
  2822. */
  2823. function(request) {
  2824. return request.serializeBinary();
  2825. },
  2826. proto.base.StandardReply.deserializeBinary
  2827. );
  2828. /**
  2829. * @param {!proto.base.StandardRequest} request The
  2830. * request proto
  2831. * @param {?Object<string, string>} metadata User defined
  2832. * call metadata
  2833. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  2834. * callback The callback function(error, response)
  2835. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  2836. * The XHR Node Readable Stream
  2837. */
  2838. proto.base.ApiClient.prototype.shopConfigQuery =
  2839. function(request, metadata, callback) {
  2840. return this.client_.rpcCall(this.hostname_ +
  2841. '/base.Api/ShopConfigQuery',
  2842. request,
  2843. metadata || {},
  2844. methodDescriptor_Api_ShopConfigQuery,
  2845. callback);
  2846. };
  2847. /**
  2848. * @param {!proto.base.StandardRequest} request The
  2849. * request proto
  2850. * @param {?Object<string, string>} metadata User defined
  2851. * call metadata
  2852. * @return {!Promise<!proto.base.StandardReply>}
  2853. * Promise that resolves to the response
  2854. */
  2855. proto.base.ApiPromiseClient.prototype.shopConfigQuery =
  2856. function(request, metadata) {
  2857. return this.client_.unaryCall(this.hostname_ +
  2858. '/base.Api/ShopConfigQuery',
  2859. request,
  2860. metadata || {},
  2861. methodDescriptor_Api_ShopConfigQuery);
  2862. };
  2863. /**
  2864. * @const
  2865. * @type {!grpc.web.MethodDescriptor<
  2866. * !proto.base.StandardRequest,
  2867. * !proto.base.StandardReply>}
  2868. */
  2869. const methodDescriptor_Api_ShopConfigEdit = new grpc.web.MethodDescriptor(
  2870. '/base.Api/ShopConfigEdit',
  2871. grpc.web.MethodType.UNARY,
  2872. proto.base.StandardRequest,
  2873. proto.base.StandardReply,
  2874. /**
  2875. * @param {!proto.base.StandardRequest} request
  2876. * @return {!Uint8Array}
  2877. */
  2878. function(request) {
  2879. return request.serializeBinary();
  2880. },
  2881. proto.base.StandardReply.deserializeBinary
  2882. );
  2883. /**
  2884. * @const
  2885. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  2886. * !proto.base.StandardRequest,
  2887. * !proto.base.StandardReply>}
  2888. */
  2889. const methodInfo_Api_ShopConfigEdit = new grpc.web.AbstractClientBase.MethodInfo(
  2890. proto.base.StandardReply,
  2891. /**
  2892. * @param {!proto.base.StandardRequest} request
  2893. * @return {!Uint8Array}
  2894. */
  2895. function(request) {
  2896. return request.serializeBinary();
  2897. },
  2898. proto.base.StandardReply.deserializeBinary
  2899. );
  2900. /**
  2901. * @param {!proto.base.StandardRequest} request The
  2902. * request proto
  2903. * @param {?Object<string, string>} metadata User defined
  2904. * call metadata
  2905. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  2906. * callback The callback function(error, response)
  2907. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  2908. * The XHR Node Readable Stream
  2909. */
  2910. proto.base.ApiClient.prototype.shopConfigEdit =
  2911. function(request, metadata, callback) {
  2912. return this.client_.rpcCall(this.hostname_ +
  2913. '/base.Api/ShopConfigEdit',
  2914. request,
  2915. metadata || {},
  2916. methodDescriptor_Api_ShopConfigEdit,
  2917. callback);
  2918. };
  2919. /**
  2920. * @param {!proto.base.StandardRequest} request The
  2921. * request proto
  2922. * @param {?Object<string, string>} metadata User defined
  2923. * call metadata
  2924. * @return {!Promise<!proto.base.StandardReply>}
  2925. * Promise that resolves to the response
  2926. */
  2927. proto.base.ApiPromiseClient.prototype.shopConfigEdit =
  2928. function(request, metadata) {
  2929. return this.client_.unaryCall(this.hostname_ +
  2930. '/base.Api/ShopConfigEdit',
  2931. request,
  2932. metadata || {},
  2933. methodDescriptor_Api_ShopConfigEdit);
  2934. };
  2935. /**
  2936. * @const
  2937. * @type {!grpc.web.MethodDescriptor<
  2938. * !proto.base.StandardRequest,
  2939. * !proto.base.StandardReply>}
  2940. */
  2941. const methodDescriptor_Api_ShopVipUserQuery = new grpc.web.MethodDescriptor(
  2942. '/base.Api/ShopVipUserQuery',
  2943. grpc.web.MethodType.UNARY,
  2944. proto.base.StandardRequest,
  2945. proto.base.StandardReply,
  2946. /**
  2947. * @param {!proto.base.StandardRequest} request
  2948. * @return {!Uint8Array}
  2949. */
  2950. function(request) {
  2951. return request.serializeBinary();
  2952. },
  2953. proto.base.StandardReply.deserializeBinary
  2954. );
  2955. /**
  2956. * @const
  2957. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  2958. * !proto.base.StandardRequest,
  2959. * !proto.base.StandardReply>}
  2960. */
  2961. const methodInfo_Api_ShopVipUserQuery = new grpc.web.AbstractClientBase.MethodInfo(
  2962. proto.base.StandardReply,
  2963. /**
  2964. * @param {!proto.base.StandardRequest} request
  2965. * @return {!Uint8Array}
  2966. */
  2967. function(request) {
  2968. return request.serializeBinary();
  2969. },
  2970. proto.base.StandardReply.deserializeBinary
  2971. );
  2972. /**
  2973. * @param {!proto.base.StandardRequest} request The
  2974. * request proto
  2975. * @param {?Object<string, string>} metadata User defined
  2976. * call metadata
  2977. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  2978. * callback The callback function(error, response)
  2979. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  2980. * The XHR Node Readable Stream
  2981. */
  2982. proto.base.ApiClient.prototype.shopVipUserQuery =
  2983. function(request, metadata, callback) {
  2984. return this.client_.rpcCall(this.hostname_ +
  2985. '/base.Api/ShopVipUserQuery',
  2986. request,
  2987. metadata || {},
  2988. methodDescriptor_Api_ShopVipUserQuery,
  2989. callback);
  2990. };
  2991. /**
  2992. * @param {!proto.base.StandardRequest} request The
  2993. * request proto
  2994. * @param {?Object<string, string>} metadata User defined
  2995. * call metadata
  2996. * @return {!Promise<!proto.base.StandardReply>}
  2997. * Promise that resolves to the response
  2998. */
  2999. proto.base.ApiPromiseClient.prototype.shopVipUserQuery =
  3000. function(request, metadata) {
  3001. return this.client_.unaryCall(this.hostname_ +
  3002. '/base.Api/ShopVipUserQuery',
  3003. request,
  3004. metadata || {},
  3005. methodDescriptor_Api_ShopVipUserQuery);
  3006. };
  3007. /**
  3008. * @const
  3009. * @type {!grpc.web.MethodDescriptor<
  3010. * !proto.base.StandardRequest,
  3011. * !proto.base.StandardReply>}
  3012. */
  3013. const methodDescriptor_Api_ShopVipUserAdd = new grpc.web.MethodDescriptor(
  3014. '/base.Api/ShopVipUserAdd',
  3015. grpc.web.MethodType.UNARY,
  3016. proto.base.StandardRequest,
  3017. proto.base.StandardReply,
  3018. /**
  3019. * @param {!proto.base.StandardRequest} request
  3020. * @return {!Uint8Array}
  3021. */
  3022. function(request) {
  3023. return request.serializeBinary();
  3024. },
  3025. proto.base.StandardReply.deserializeBinary
  3026. );
  3027. /**
  3028. * @const
  3029. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  3030. * !proto.base.StandardRequest,
  3031. * !proto.base.StandardReply>}
  3032. */
  3033. const methodInfo_Api_ShopVipUserAdd = new grpc.web.AbstractClientBase.MethodInfo(
  3034. proto.base.StandardReply,
  3035. /**
  3036. * @param {!proto.base.StandardRequest} request
  3037. * @return {!Uint8Array}
  3038. */
  3039. function(request) {
  3040. return request.serializeBinary();
  3041. },
  3042. proto.base.StandardReply.deserializeBinary
  3043. );
  3044. /**
  3045. * @param {!proto.base.StandardRequest} request The
  3046. * request proto
  3047. * @param {?Object<string, string>} metadata User defined
  3048. * call metadata
  3049. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  3050. * callback The callback function(error, response)
  3051. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  3052. * The XHR Node Readable Stream
  3053. */
  3054. proto.base.ApiClient.prototype.shopVipUserAdd =
  3055. function(request, metadata, callback) {
  3056. return this.client_.rpcCall(this.hostname_ +
  3057. '/base.Api/ShopVipUserAdd',
  3058. request,
  3059. metadata || {},
  3060. methodDescriptor_Api_ShopVipUserAdd,
  3061. callback);
  3062. };
  3063. /**
  3064. * @param {!proto.base.StandardRequest} request The
  3065. * request proto
  3066. * @param {?Object<string, string>} metadata User defined
  3067. * call metadata
  3068. * @return {!Promise<!proto.base.StandardReply>}
  3069. * Promise that resolves to the response
  3070. */
  3071. proto.base.ApiPromiseClient.prototype.shopVipUserAdd =
  3072. function(request, metadata) {
  3073. return this.client_.unaryCall(this.hostname_ +
  3074. '/base.Api/ShopVipUserAdd',
  3075. request,
  3076. metadata || {},
  3077. methodDescriptor_Api_ShopVipUserAdd);
  3078. };
  3079. /**
  3080. * @const
  3081. * @type {!grpc.web.MethodDescriptor<
  3082. * !proto.base.StandardRequest,
  3083. * !proto.base.StandardReply>}
  3084. */
  3085. const methodDescriptor_Api_ShopVipUserEdit = new grpc.web.MethodDescriptor(
  3086. '/base.Api/ShopVipUserEdit',
  3087. grpc.web.MethodType.UNARY,
  3088. proto.base.StandardRequest,
  3089. proto.base.StandardReply,
  3090. /**
  3091. * @param {!proto.base.StandardRequest} request
  3092. * @return {!Uint8Array}
  3093. */
  3094. function(request) {
  3095. return request.serializeBinary();
  3096. },
  3097. proto.base.StandardReply.deserializeBinary
  3098. );
  3099. /**
  3100. * @const
  3101. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  3102. * !proto.base.StandardRequest,
  3103. * !proto.base.StandardReply>}
  3104. */
  3105. const methodInfo_Api_ShopVipUserEdit = new grpc.web.AbstractClientBase.MethodInfo(
  3106. proto.base.StandardReply,
  3107. /**
  3108. * @param {!proto.base.StandardRequest} request
  3109. * @return {!Uint8Array}
  3110. */
  3111. function(request) {
  3112. return request.serializeBinary();
  3113. },
  3114. proto.base.StandardReply.deserializeBinary
  3115. );
  3116. /**
  3117. * @param {!proto.base.StandardRequest} request The
  3118. * request proto
  3119. * @param {?Object<string, string>} metadata User defined
  3120. * call metadata
  3121. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  3122. * callback The callback function(error, response)
  3123. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  3124. * The XHR Node Readable Stream
  3125. */
  3126. proto.base.ApiClient.prototype.shopVipUserEdit =
  3127. function(request, metadata, callback) {
  3128. return this.client_.rpcCall(this.hostname_ +
  3129. '/base.Api/ShopVipUserEdit',
  3130. request,
  3131. metadata || {},
  3132. methodDescriptor_Api_ShopVipUserEdit,
  3133. callback);
  3134. };
  3135. /**
  3136. * @param {!proto.base.StandardRequest} request The
  3137. * request proto
  3138. * @param {?Object<string, string>} metadata User defined
  3139. * call metadata
  3140. * @return {!Promise<!proto.base.StandardReply>}
  3141. * Promise that resolves to the response
  3142. */
  3143. proto.base.ApiPromiseClient.prototype.shopVipUserEdit =
  3144. function(request, metadata) {
  3145. return this.client_.unaryCall(this.hostname_ +
  3146. '/base.Api/ShopVipUserEdit',
  3147. request,
  3148. metadata || {},
  3149. methodDescriptor_Api_ShopVipUserEdit);
  3150. };
  3151. /**
  3152. * @const
  3153. * @type {!grpc.web.MethodDescriptor<
  3154. * !proto.base.StandardRequest,
  3155. * !proto.base.StandardReply>}
  3156. */
  3157. const methodDescriptor_Api_ShopVipUserStatusEdit = new grpc.web.MethodDescriptor(
  3158. '/base.Api/ShopVipUserStatusEdit',
  3159. grpc.web.MethodType.UNARY,
  3160. proto.base.StandardRequest,
  3161. proto.base.StandardReply,
  3162. /**
  3163. * @param {!proto.base.StandardRequest} request
  3164. * @return {!Uint8Array}
  3165. */
  3166. function(request) {
  3167. return request.serializeBinary();
  3168. },
  3169. proto.base.StandardReply.deserializeBinary
  3170. );
  3171. /**
  3172. * @const
  3173. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  3174. * !proto.base.StandardRequest,
  3175. * !proto.base.StandardReply>}
  3176. */
  3177. const methodInfo_Api_ShopVipUserStatusEdit = new grpc.web.AbstractClientBase.MethodInfo(
  3178. proto.base.StandardReply,
  3179. /**
  3180. * @param {!proto.base.StandardRequest} request
  3181. * @return {!Uint8Array}
  3182. */
  3183. function(request) {
  3184. return request.serializeBinary();
  3185. },
  3186. proto.base.StandardReply.deserializeBinary
  3187. );
  3188. /**
  3189. * @param {!proto.base.StandardRequest} request The
  3190. * request proto
  3191. * @param {?Object<string, string>} metadata User defined
  3192. * call metadata
  3193. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  3194. * callback The callback function(error, response)
  3195. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  3196. * The XHR Node Readable Stream
  3197. */
  3198. proto.base.ApiClient.prototype.shopVipUserStatusEdit =
  3199. function(request, metadata, callback) {
  3200. return this.client_.rpcCall(this.hostname_ +
  3201. '/base.Api/ShopVipUserStatusEdit',
  3202. request,
  3203. metadata || {},
  3204. methodDescriptor_Api_ShopVipUserStatusEdit,
  3205. callback);
  3206. };
  3207. /**
  3208. * @param {!proto.base.StandardRequest} request The
  3209. * request proto
  3210. * @param {?Object<string, string>} metadata User defined
  3211. * call metadata
  3212. * @return {!Promise<!proto.base.StandardReply>}
  3213. * Promise that resolves to the response
  3214. */
  3215. proto.base.ApiPromiseClient.prototype.shopVipUserStatusEdit =
  3216. function(request, metadata) {
  3217. return this.client_.unaryCall(this.hostname_ +
  3218. '/base.Api/ShopVipUserStatusEdit',
  3219. request,
  3220. metadata || {},
  3221. methodDescriptor_Api_ShopVipUserStatusEdit);
  3222. };
  3223. /**
  3224. * @const
  3225. * @type {!grpc.web.MethodDescriptor<
  3226. * !proto.base.StandardRequest,
  3227. * !proto.base.StandardReply>}
  3228. */
  3229. const methodDescriptor_Api_AcrossVipUserQuery = new grpc.web.MethodDescriptor(
  3230. '/base.Api/AcrossVipUserQuery',
  3231. grpc.web.MethodType.UNARY,
  3232. proto.base.StandardRequest,
  3233. proto.base.StandardReply,
  3234. /**
  3235. * @param {!proto.base.StandardRequest} request
  3236. * @return {!Uint8Array}
  3237. */
  3238. function(request) {
  3239. return request.serializeBinary();
  3240. },
  3241. proto.base.StandardReply.deserializeBinary
  3242. );
  3243. /**
  3244. * @const
  3245. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  3246. * !proto.base.StandardRequest,
  3247. * !proto.base.StandardReply>}
  3248. */
  3249. const methodInfo_Api_AcrossVipUserQuery = new grpc.web.AbstractClientBase.MethodInfo(
  3250. proto.base.StandardReply,
  3251. /**
  3252. * @param {!proto.base.StandardRequest} request
  3253. * @return {!Uint8Array}
  3254. */
  3255. function(request) {
  3256. return request.serializeBinary();
  3257. },
  3258. proto.base.StandardReply.deserializeBinary
  3259. );
  3260. /**
  3261. * @param {!proto.base.StandardRequest} request The
  3262. * request proto
  3263. * @param {?Object<string, string>} metadata User defined
  3264. * call metadata
  3265. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  3266. * callback The callback function(error, response)
  3267. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  3268. * The XHR Node Readable Stream
  3269. */
  3270. proto.base.ApiClient.prototype.acrossVipUserQuery =
  3271. function(request, metadata, callback) {
  3272. return this.client_.rpcCall(this.hostname_ +
  3273. '/base.Api/AcrossVipUserQuery',
  3274. request,
  3275. metadata || {},
  3276. methodDescriptor_Api_AcrossVipUserQuery,
  3277. callback);
  3278. };
  3279. /**
  3280. * @param {!proto.base.StandardRequest} request The
  3281. * request proto
  3282. * @param {?Object<string, string>} metadata User defined
  3283. * call metadata
  3284. * @return {!Promise<!proto.base.StandardReply>}
  3285. * Promise that resolves to the response
  3286. */
  3287. proto.base.ApiPromiseClient.prototype.acrossVipUserQuery =
  3288. function(request, metadata) {
  3289. return this.client_.unaryCall(this.hostname_ +
  3290. '/base.Api/AcrossVipUserQuery',
  3291. request,
  3292. metadata || {},
  3293. methodDescriptor_Api_AcrossVipUserQuery);
  3294. };
  3295. /**
  3296. * @const
  3297. * @type {!grpc.web.MethodDescriptor<
  3298. * !proto.base.StandardRequest,
  3299. * !proto.base.StandardReply>}
  3300. */
  3301. const methodDescriptor_Api_AcrossVipUserAdd = new grpc.web.MethodDescriptor(
  3302. '/base.Api/AcrossVipUserAdd',
  3303. grpc.web.MethodType.UNARY,
  3304. proto.base.StandardRequest,
  3305. proto.base.StandardReply,
  3306. /**
  3307. * @param {!proto.base.StandardRequest} request
  3308. * @return {!Uint8Array}
  3309. */
  3310. function(request) {
  3311. return request.serializeBinary();
  3312. },
  3313. proto.base.StandardReply.deserializeBinary
  3314. );
  3315. /**
  3316. * @const
  3317. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  3318. * !proto.base.StandardRequest,
  3319. * !proto.base.StandardReply>}
  3320. */
  3321. const methodInfo_Api_AcrossVipUserAdd = new grpc.web.AbstractClientBase.MethodInfo(
  3322. proto.base.StandardReply,
  3323. /**
  3324. * @param {!proto.base.StandardRequest} request
  3325. * @return {!Uint8Array}
  3326. */
  3327. function(request) {
  3328. return request.serializeBinary();
  3329. },
  3330. proto.base.StandardReply.deserializeBinary
  3331. );
  3332. /**
  3333. * @param {!proto.base.StandardRequest} request The
  3334. * request proto
  3335. * @param {?Object<string, string>} metadata User defined
  3336. * call metadata
  3337. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  3338. * callback The callback function(error, response)
  3339. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  3340. * The XHR Node Readable Stream
  3341. */
  3342. proto.base.ApiClient.prototype.acrossVipUserAdd =
  3343. function(request, metadata, callback) {
  3344. return this.client_.rpcCall(this.hostname_ +
  3345. '/base.Api/AcrossVipUserAdd',
  3346. request,
  3347. metadata || {},
  3348. methodDescriptor_Api_AcrossVipUserAdd,
  3349. callback);
  3350. };
  3351. /**
  3352. * @param {!proto.base.StandardRequest} request The
  3353. * request proto
  3354. * @param {?Object<string, string>} metadata User defined
  3355. * call metadata
  3356. * @return {!Promise<!proto.base.StandardReply>}
  3357. * Promise that resolves to the response
  3358. */
  3359. proto.base.ApiPromiseClient.prototype.acrossVipUserAdd =
  3360. function(request, metadata) {
  3361. return this.client_.unaryCall(this.hostname_ +
  3362. '/base.Api/AcrossVipUserAdd',
  3363. request,
  3364. metadata || {},
  3365. methodDescriptor_Api_AcrossVipUserAdd);
  3366. };
  3367. /**
  3368. * @const
  3369. * @type {!grpc.web.MethodDescriptor<
  3370. * !proto.base.StandardRequest,
  3371. * !proto.base.StandardReply>}
  3372. */
  3373. const methodDescriptor_Api_AcrossVipUserDel = new grpc.web.MethodDescriptor(
  3374. '/base.Api/AcrossVipUserDel',
  3375. grpc.web.MethodType.UNARY,
  3376. proto.base.StandardRequest,
  3377. proto.base.StandardReply,
  3378. /**
  3379. * @param {!proto.base.StandardRequest} request
  3380. * @return {!Uint8Array}
  3381. */
  3382. function(request) {
  3383. return request.serializeBinary();
  3384. },
  3385. proto.base.StandardReply.deserializeBinary
  3386. );
  3387. /**
  3388. * @const
  3389. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  3390. * !proto.base.StandardRequest,
  3391. * !proto.base.StandardReply>}
  3392. */
  3393. const methodInfo_Api_AcrossVipUserDel = new grpc.web.AbstractClientBase.MethodInfo(
  3394. proto.base.StandardReply,
  3395. /**
  3396. * @param {!proto.base.StandardRequest} request
  3397. * @return {!Uint8Array}
  3398. */
  3399. function(request) {
  3400. return request.serializeBinary();
  3401. },
  3402. proto.base.StandardReply.deserializeBinary
  3403. );
  3404. /**
  3405. * @param {!proto.base.StandardRequest} request The
  3406. * request proto
  3407. * @param {?Object<string, string>} metadata User defined
  3408. * call metadata
  3409. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  3410. * callback The callback function(error, response)
  3411. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  3412. * The XHR Node Readable Stream
  3413. */
  3414. proto.base.ApiClient.prototype.acrossVipUserDel =
  3415. function(request, metadata, callback) {
  3416. return this.client_.rpcCall(this.hostname_ +
  3417. '/base.Api/AcrossVipUserDel',
  3418. request,
  3419. metadata || {},
  3420. methodDescriptor_Api_AcrossVipUserDel,
  3421. callback);
  3422. };
  3423. /**
  3424. * @param {!proto.base.StandardRequest} request The
  3425. * request proto
  3426. * @param {?Object<string, string>} metadata User defined
  3427. * call metadata
  3428. * @return {!Promise<!proto.base.StandardReply>}
  3429. * Promise that resolves to the response
  3430. */
  3431. proto.base.ApiPromiseClient.prototype.acrossVipUserDel =
  3432. function(request, metadata) {
  3433. return this.client_.unaryCall(this.hostname_ +
  3434. '/base.Api/AcrossVipUserDel',
  3435. request,
  3436. metadata || {},
  3437. methodDescriptor_Api_AcrossVipUserDel);
  3438. };
  3439. /**
  3440. * @const
  3441. * @type {!grpc.web.MethodDescriptor<
  3442. * !proto.base.StandardRequest,
  3443. * !proto.base.StandardReply>}
  3444. */
  3445. const methodDescriptor_Api_VipPhoneQuery = new grpc.web.MethodDescriptor(
  3446. '/base.Api/VipPhoneQuery',
  3447. grpc.web.MethodType.UNARY,
  3448. proto.base.StandardRequest,
  3449. proto.base.StandardReply,
  3450. /**
  3451. * @param {!proto.base.StandardRequest} request
  3452. * @return {!Uint8Array}
  3453. */
  3454. function(request) {
  3455. return request.serializeBinary();
  3456. },
  3457. proto.base.StandardReply.deserializeBinary
  3458. );
  3459. /**
  3460. * @const
  3461. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  3462. * !proto.base.StandardRequest,
  3463. * !proto.base.StandardReply>}
  3464. */
  3465. const methodInfo_Api_VipPhoneQuery = new grpc.web.AbstractClientBase.MethodInfo(
  3466. proto.base.StandardReply,
  3467. /**
  3468. * @param {!proto.base.StandardRequest} request
  3469. * @return {!Uint8Array}
  3470. */
  3471. function(request) {
  3472. return request.serializeBinary();
  3473. },
  3474. proto.base.StandardReply.deserializeBinary
  3475. );
  3476. /**
  3477. * @param {!proto.base.StandardRequest} request The
  3478. * request proto
  3479. * @param {?Object<string, string>} metadata User defined
  3480. * call metadata
  3481. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  3482. * callback The callback function(error, response)
  3483. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  3484. * The XHR Node Readable Stream
  3485. */
  3486. proto.base.ApiClient.prototype.vipPhoneQuery =
  3487. function(request, metadata, callback) {
  3488. return this.client_.rpcCall(this.hostname_ +
  3489. '/base.Api/VipPhoneQuery',
  3490. request,
  3491. metadata || {},
  3492. methodDescriptor_Api_VipPhoneQuery,
  3493. callback);
  3494. };
  3495. /**
  3496. * @param {!proto.base.StandardRequest} request The
  3497. * request proto
  3498. * @param {?Object<string, string>} metadata User defined
  3499. * call metadata
  3500. * @return {!Promise<!proto.base.StandardReply>}
  3501. * Promise that resolves to the response
  3502. */
  3503. proto.base.ApiPromiseClient.prototype.vipPhoneQuery =
  3504. function(request, metadata) {
  3505. return this.client_.unaryCall(this.hostname_ +
  3506. '/base.Api/VipPhoneQuery',
  3507. request,
  3508. metadata || {},
  3509. methodDescriptor_Api_VipPhoneQuery);
  3510. };
  3511. /**
  3512. * @const
  3513. * @type {!grpc.web.MethodDescriptor<
  3514. * !proto.base.StandardRequest,
  3515. * !proto.base.StandardReply>}
  3516. */
  3517. const methodDescriptor_Api_VipMainPhoneCheck = new grpc.web.MethodDescriptor(
  3518. '/base.Api/VipMainPhoneCheck',
  3519. grpc.web.MethodType.UNARY,
  3520. proto.base.StandardRequest,
  3521. proto.base.StandardReply,
  3522. /**
  3523. * @param {!proto.base.StandardRequest} request
  3524. * @return {!Uint8Array}
  3525. */
  3526. function(request) {
  3527. return request.serializeBinary();
  3528. },
  3529. proto.base.StandardReply.deserializeBinary
  3530. );
  3531. /**
  3532. * @const
  3533. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  3534. * !proto.base.StandardRequest,
  3535. * !proto.base.StandardReply>}
  3536. */
  3537. const methodInfo_Api_VipMainPhoneCheck = new grpc.web.AbstractClientBase.MethodInfo(
  3538. proto.base.StandardReply,
  3539. /**
  3540. * @param {!proto.base.StandardRequest} request
  3541. * @return {!Uint8Array}
  3542. */
  3543. function(request) {
  3544. return request.serializeBinary();
  3545. },
  3546. proto.base.StandardReply.deserializeBinary
  3547. );
  3548. /**
  3549. * @param {!proto.base.StandardRequest} request The
  3550. * request proto
  3551. * @param {?Object<string, string>} metadata User defined
  3552. * call metadata
  3553. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  3554. * callback The callback function(error, response)
  3555. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  3556. * The XHR Node Readable Stream
  3557. */
  3558. proto.base.ApiClient.prototype.vipMainPhoneCheck =
  3559. function(request, metadata, callback) {
  3560. return this.client_.rpcCall(this.hostname_ +
  3561. '/base.Api/VipMainPhoneCheck',
  3562. request,
  3563. metadata || {},
  3564. methodDescriptor_Api_VipMainPhoneCheck,
  3565. callback);
  3566. };
  3567. /**
  3568. * @param {!proto.base.StandardRequest} request The
  3569. * request proto
  3570. * @param {?Object<string, string>} metadata User defined
  3571. * call metadata
  3572. * @return {!Promise<!proto.base.StandardReply>}
  3573. * Promise that resolves to the response
  3574. */
  3575. proto.base.ApiPromiseClient.prototype.vipMainPhoneCheck =
  3576. function(request, metadata) {
  3577. return this.client_.unaryCall(this.hostname_ +
  3578. '/base.Api/VipMainPhoneCheck',
  3579. request,
  3580. metadata || {},
  3581. methodDescriptor_Api_VipMainPhoneCheck);
  3582. };
  3583. /**
  3584. * @const
  3585. * @type {!grpc.web.MethodDescriptor<
  3586. * !proto.base.StandardRequest,
  3587. * !proto.base.StandardReply>}
  3588. */
  3589. const methodDescriptor_Api_VipOtherPhoneAdd = new grpc.web.MethodDescriptor(
  3590. '/base.Api/VipOtherPhoneAdd',
  3591. grpc.web.MethodType.UNARY,
  3592. proto.base.StandardRequest,
  3593. proto.base.StandardReply,
  3594. /**
  3595. * @param {!proto.base.StandardRequest} request
  3596. * @return {!Uint8Array}
  3597. */
  3598. function(request) {
  3599. return request.serializeBinary();
  3600. },
  3601. proto.base.StandardReply.deserializeBinary
  3602. );
  3603. /**
  3604. * @const
  3605. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  3606. * !proto.base.StandardRequest,
  3607. * !proto.base.StandardReply>}
  3608. */
  3609. const methodInfo_Api_VipOtherPhoneAdd = new grpc.web.AbstractClientBase.MethodInfo(
  3610. proto.base.StandardReply,
  3611. /**
  3612. * @param {!proto.base.StandardRequest} request
  3613. * @return {!Uint8Array}
  3614. */
  3615. function(request) {
  3616. return request.serializeBinary();
  3617. },
  3618. proto.base.StandardReply.deserializeBinary
  3619. );
  3620. /**
  3621. * @param {!proto.base.StandardRequest} request The
  3622. * request proto
  3623. * @param {?Object<string, string>} metadata User defined
  3624. * call metadata
  3625. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  3626. * callback The callback function(error, response)
  3627. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  3628. * The XHR Node Readable Stream
  3629. */
  3630. proto.base.ApiClient.prototype.vipOtherPhoneAdd =
  3631. function(request, metadata, callback) {
  3632. return this.client_.rpcCall(this.hostname_ +
  3633. '/base.Api/VipOtherPhoneAdd',
  3634. request,
  3635. metadata || {},
  3636. methodDescriptor_Api_VipOtherPhoneAdd,
  3637. callback);
  3638. };
  3639. /**
  3640. * @param {!proto.base.StandardRequest} request The
  3641. * request proto
  3642. * @param {?Object<string, string>} metadata User defined
  3643. * call metadata
  3644. * @return {!Promise<!proto.base.StandardReply>}
  3645. * Promise that resolves to the response
  3646. */
  3647. proto.base.ApiPromiseClient.prototype.vipOtherPhoneAdd =
  3648. function(request, metadata) {
  3649. return this.client_.unaryCall(this.hostname_ +
  3650. '/base.Api/VipOtherPhoneAdd',
  3651. request,
  3652. metadata || {},
  3653. methodDescriptor_Api_VipOtherPhoneAdd);
  3654. };
  3655. /**
  3656. * @const
  3657. * @type {!grpc.web.MethodDescriptor<
  3658. * !proto.base.StandardRequest,
  3659. * !proto.base.StandardReply>}
  3660. */
  3661. const methodDescriptor_Api_VipOtherPhoneEdit = new grpc.web.MethodDescriptor(
  3662. '/base.Api/VipOtherPhoneEdit',
  3663. grpc.web.MethodType.UNARY,
  3664. proto.base.StandardRequest,
  3665. proto.base.StandardReply,
  3666. /**
  3667. * @param {!proto.base.StandardRequest} request
  3668. * @return {!Uint8Array}
  3669. */
  3670. function(request) {
  3671. return request.serializeBinary();
  3672. },
  3673. proto.base.StandardReply.deserializeBinary
  3674. );
  3675. /**
  3676. * @const
  3677. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  3678. * !proto.base.StandardRequest,
  3679. * !proto.base.StandardReply>}
  3680. */
  3681. const methodInfo_Api_VipOtherPhoneEdit = new grpc.web.AbstractClientBase.MethodInfo(
  3682. proto.base.StandardReply,
  3683. /**
  3684. * @param {!proto.base.StandardRequest} request
  3685. * @return {!Uint8Array}
  3686. */
  3687. function(request) {
  3688. return request.serializeBinary();
  3689. },
  3690. proto.base.StandardReply.deserializeBinary
  3691. );
  3692. /**
  3693. * @param {!proto.base.StandardRequest} request The
  3694. * request proto
  3695. * @param {?Object<string, string>} metadata User defined
  3696. * call metadata
  3697. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  3698. * callback The callback function(error, response)
  3699. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  3700. * The XHR Node Readable Stream
  3701. */
  3702. proto.base.ApiClient.prototype.vipOtherPhoneEdit =
  3703. function(request, metadata, callback) {
  3704. return this.client_.rpcCall(this.hostname_ +
  3705. '/base.Api/VipOtherPhoneEdit',
  3706. request,
  3707. metadata || {},
  3708. methodDescriptor_Api_VipOtherPhoneEdit,
  3709. callback);
  3710. };
  3711. /**
  3712. * @param {!proto.base.StandardRequest} request The
  3713. * request proto
  3714. * @param {?Object<string, string>} metadata User defined
  3715. * call metadata
  3716. * @return {!Promise<!proto.base.StandardReply>}
  3717. * Promise that resolves to the response
  3718. */
  3719. proto.base.ApiPromiseClient.prototype.vipOtherPhoneEdit =
  3720. function(request, metadata) {
  3721. return this.client_.unaryCall(this.hostname_ +
  3722. '/base.Api/VipOtherPhoneEdit',
  3723. request,
  3724. metadata || {},
  3725. methodDescriptor_Api_VipOtherPhoneEdit);
  3726. };
  3727. /**
  3728. * @const
  3729. * @type {!grpc.web.MethodDescriptor<
  3730. * !proto.base.StandardRequest,
  3731. * !proto.base.StandardReply>}
  3732. */
  3733. const methodDescriptor_Api_VipOtherPhoneStatusEdit = new grpc.web.MethodDescriptor(
  3734. '/base.Api/VipOtherPhoneStatusEdit',
  3735. grpc.web.MethodType.UNARY,
  3736. proto.base.StandardRequest,
  3737. proto.base.StandardReply,
  3738. /**
  3739. * @param {!proto.base.StandardRequest} request
  3740. * @return {!Uint8Array}
  3741. */
  3742. function(request) {
  3743. return request.serializeBinary();
  3744. },
  3745. proto.base.StandardReply.deserializeBinary
  3746. );
  3747. /**
  3748. * @const
  3749. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  3750. * !proto.base.StandardRequest,
  3751. * !proto.base.StandardReply>}
  3752. */
  3753. const methodInfo_Api_VipOtherPhoneStatusEdit = new grpc.web.AbstractClientBase.MethodInfo(
  3754. proto.base.StandardReply,
  3755. /**
  3756. * @param {!proto.base.StandardRequest} request
  3757. * @return {!Uint8Array}
  3758. */
  3759. function(request) {
  3760. return request.serializeBinary();
  3761. },
  3762. proto.base.StandardReply.deserializeBinary
  3763. );
  3764. /**
  3765. * @param {!proto.base.StandardRequest} request The
  3766. * request proto
  3767. * @param {?Object<string, string>} metadata User defined
  3768. * call metadata
  3769. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  3770. * callback The callback function(error, response)
  3771. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  3772. * The XHR Node Readable Stream
  3773. */
  3774. proto.base.ApiClient.prototype.vipOtherPhoneStatusEdit =
  3775. function(request, metadata, callback) {
  3776. return this.client_.rpcCall(this.hostname_ +
  3777. '/base.Api/VipOtherPhoneStatusEdit',
  3778. request,
  3779. metadata || {},
  3780. methodDescriptor_Api_VipOtherPhoneStatusEdit,
  3781. callback);
  3782. };
  3783. /**
  3784. * @param {!proto.base.StandardRequest} request The
  3785. * request proto
  3786. * @param {?Object<string, string>} metadata User defined
  3787. * call metadata
  3788. * @return {!Promise<!proto.base.StandardReply>}
  3789. * Promise that resolves to the response
  3790. */
  3791. proto.base.ApiPromiseClient.prototype.vipOtherPhoneStatusEdit =
  3792. function(request, metadata) {
  3793. return this.client_.unaryCall(this.hostname_ +
  3794. '/base.Api/VipOtherPhoneStatusEdit',
  3795. request,
  3796. metadata || {},
  3797. methodDescriptor_Api_VipOtherPhoneStatusEdit);
  3798. };
  3799. /**
  3800. * @const
  3801. * @type {!grpc.web.MethodDescriptor<
  3802. * !proto.base.StandardRequest,
  3803. * !proto.base.StandardReply>}
  3804. */
  3805. const methodDescriptor_Api_TempVipUserQuery = new grpc.web.MethodDescriptor(
  3806. '/base.Api/TempVipUserQuery',
  3807. grpc.web.MethodType.UNARY,
  3808. proto.base.StandardRequest,
  3809. proto.base.StandardReply,
  3810. /**
  3811. * @param {!proto.base.StandardRequest} request
  3812. * @return {!Uint8Array}
  3813. */
  3814. function(request) {
  3815. return request.serializeBinary();
  3816. },
  3817. proto.base.StandardReply.deserializeBinary
  3818. );
  3819. /**
  3820. * @const
  3821. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  3822. * !proto.base.StandardRequest,
  3823. * !proto.base.StandardReply>}
  3824. */
  3825. const methodInfo_Api_TempVipUserQuery = new grpc.web.AbstractClientBase.MethodInfo(
  3826. proto.base.StandardReply,
  3827. /**
  3828. * @param {!proto.base.StandardRequest} request
  3829. * @return {!Uint8Array}
  3830. */
  3831. function(request) {
  3832. return request.serializeBinary();
  3833. },
  3834. proto.base.StandardReply.deserializeBinary
  3835. );
  3836. /**
  3837. * @param {!proto.base.StandardRequest} request The
  3838. * request proto
  3839. * @param {?Object<string, string>} metadata User defined
  3840. * call metadata
  3841. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  3842. * callback The callback function(error, response)
  3843. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  3844. * The XHR Node Readable Stream
  3845. */
  3846. proto.base.ApiClient.prototype.tempVipUserQuery =
  3847. function(request, metadata, callback) {
  3848. return this.client_.rpcCall(this.hostname_ +
  3849. '/base.Api/TempVipUserQuery',
  3850. request,
  3851. metadata || {},
  3852. methodDescriptor_Api_TempVipUserQuery,
  3853. callback);
  3854. };
  3855. /**
  3856. * @param {!proto.base.StandardRequest} request The
  3857. * request proto
  3858. * @param {?Object<string, string>} metadata User defined
  3859. * call metadata
  3860. * @return {!Promise<!proto.base.StandardReply>}
  3861. * Promise that resolves to the response
  3862. */
  3863. proto.base.ApiPromiseClient.prototype.tempVipUserQuery =
  3864. function(request, metadata) {
  3865. return this.client_.unaryCall(this.hostname_ +
  3866. '/base.Api/TempVipUserQuery',
  3867. request,
  3868. metadata || {},
  3869. methodDescriptor_Api_TempVipUserQuery);
  3870. };
  3871. /**
  3872. * @const
  3873. * @type {!grpc.web.MethodDescriptor<
  3874. * !proto.base.StandardRequest,
  3875. * !proto.base.StandardReply>}
  3876. */
  3877. const methodDescriptor_Api_TempVipUserAdd = new grpc.web.MethodDescriptor(
  3878. '/base.Api/TempVipUserAdd',
  3879. grpc.web.MethodType.UNARY,
  3880. proto.base.StandardRequest,
  3881. proto.base.StandardReply,
  3882. /**
  3883. * @param {!proto.base.StandardRequest} request
  3884. * @return {!Uint8Array}
  3885. */
  3886. function(request) {
  3887. return request.serializeBinary();
  3888. },
  3889. proto.base.StandardReply.deserializeBinary
  3890. );
  3891. /**
  3892. * @const
  3893. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  3894. * !proto.base.StandardRequest,
  3895. * !proto.base.StandardReply>}
  3896. */
  3897. const methodInfo_Api_TempVipUserAdd = new grpc.web.AbstractClientBase.MethodInfo(
  3898. proto.base.StandardReply,
  3899. /**
  3900. * @param {!proto.base.StandardRequest} request
  3901. * @return {!Uint8Array}
  3902. */
  3903. function(request) {
  3904. return request.serializeBinary();
  3905. },
  3906. proto.base.StandardReply.deserializeBinary
  3907. );
  3908. /**
  3909. * @param {!proto.base.StandardRequest} request The
  3910. * request proto
  3911. * @param {?Object<string, string>} metadata User defined
  3912. * call metadata
  3913. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  3914. * callback The callback function(error, response)
  3915. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  3916. * The XHR Node Readable Stream
  3917. */
  3918. proto.base.ApiClient.prototype.tempVipUserAdd =
  3919. function(request, metadata, callback) {
  3920. return this.client_.rpcCall(this.hostname_ +
  3921. '/base.Api/TempVipUserAdd',
  3922. request,
  3923. metadata || {},
  3924. methodDescriptor_Api_TempVipUserAdd,
  3925. callback);
  3926. };
  3927. /**
  3928. * @param {!proto.base.StandardRequest} request The
  3929. * request proto
  3930. * @param {?Object<string, string>} metadata User defined
  3931. * call metadata
  3932. * @return {!Promise<!proto.base.StandardReply>}
  3933. * Promise that resolves to the response
  3934. */
  3935. proto.base.ApiPromiseClient.prototype.tempVipUserAdd =
  3936. function(request, metadata) {
  3937. return this.client_.unaryCall(this.hostname_ +
  3938. '/base.Api/TempVipUserAdd',
  3939. request,
  3940. metadata || {},
  3941. methodDescriptor_Api_TempVipUserAdd);
  3942. };
  3943. /**
  3944. * @const
  3945. * @type {!grpc.web.MethodDescriptor<
  3946. * !proto.base.StandardRequest,
  3947. * !proto.base.StandardReply>}
  3948. */
  3949. const methodDescriptor_Api_TempVipUserEdit = new grpc.web.MethodDescriptor(
  3950. '/base.Api/TempVipUserEdit',
  3951. grpc.web.MethodType.UNARY,
  3952. proto.base.StandardRequest,
  3953. proto.base.StandardReply,
  3954. /**
  3955. * @param {!proto.base.StandardRequest} request
  3956. * @return {!Uint8Array}
  3957. */
  3958. function(request) {
  3959. return request.serializeBinary();
  3960. },
  3961. proto.base.StandardReply.deserializeBinary
  3962. );
  3963. /**
  3964. * @const
  3965. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  3966. * !proto.base.StandardRequest,
  3967. * !proto.base.StandardReply>}
  3968. */
  3969. const methodInfo_Api_TempVipUserEdit = new grpc.web.AbstractClientBase.MethodInfo(
  3970. proto.base.StandardReply,
  3971. /**
  3972. * @param {!proto.base.StandardRequest} request
  3973. * @return {!Uint8Array}
  3974. */
  3975. function(request) {
  3976. return request.serializeBinary();
  3977. },
  3978. proto.base.StandardReply.deserializeBinary
  3979. );
  3980. /**
  3981. * @param {!proto.base.StandardRequest} request The
  3982. * request proto
  3983. * @param {?Object<string, string>} metadata User defined
  3984. * call metadata
  3985. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  3986. * callback The callback function(error, response)
  3987. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  3988. * The XHR Node Readable Stream
  3989. */
  3990. proto.base.ApiClient.prototype.tempVipUserEdit =
  3991. function(request, metadata, callback) {
  3992. return this.client_.rpcCall(this.hostname_ +
  3993. '/base.Api/TempVipUserEdit',
  3994. request,
  3995. metadata || {},
  3996. methodDescriptor_Api_TempVipUserEdit,
  3997. callback);
  3998. };
  3999. /**
  4000. * @param {!proto.base.StandardRequest} request The
  4001. * request proto
  4002. * @param {?Object<string, string>} metadata User defined
  4003. * call metadata
  4004. * @return {!Promise<!proto.base.StandardReply>}
  4005. * Promise that resolves to the response
  4006. */
  4007. proto.base.ApiPromiseClient.prototype.tempVipUserEdit =
  4008. function(request, metadata) {
  4009. return this.client_.unaryCall(this.hostname_ +
  4010. '/base.Api/TempVipUserEdit',
  4011. request,
  4012. metadata || {},
  4013. methodDescriptor_Api_TempVipUserEdit);
  4014. };
  4015. /**
  4016. * @const
  4017. * @type {!grpc.web.MethodDescriptor<
  4018. * !proto.base.StandardRequest,
  4019. * !proto.base.StandardReply>}
  4020. */
  4021. const methodDescriptor_Api_TempVipUserStatusEdit = new grpc.web.MethodDescriptor(
  4022. '/base.Api/TempVipUserStatusEdit',
  4023. grpc.web.MethodType.UNARY,
  4024. proto.base.StandardRequest,
  4025. proto.base.StandardReply,
  4026. /**
  4027. * @param {!proto.base.StandardRequest} request
  4028. * @return {!Uint8Array}
  4029. */
  4030. function(request) {
  4031. return request.serializeBinary();
  4032. },
  4033. proto.base.StandardReply.deserializeBinary
  4034. );
  4035. /**
  4036. * @const
  4037. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  4038. * !proto.base.StandardRequest,
  4039. * !proto.base.StandardReply>}
  4040. */
  4041. const methodInfo_Api_TempVipUserStatusEdit = new grpc.web.AbstractClientBase.MethodInfo(
  4042. proto.base.StandardReply,
  4043. /**
  4044. * @param {!proto.base.StandardRequest} request
  4045. * @return {!Uint8Array}
  4046. */
  4047. function(request) {
  4048. return request.serializeBinary();
  4049. },
  4050. proto.base.StandardReply.deserializeBinary
  4051. );
  4052. /**
  4053. * @param {!proto.base.StandardRequest} request The
  4054. * request proto
  4055. * @param {?Object<string, string>} metadata User defined
  4056. * call metadata
  4057. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  4058. * callback The callback function(error, response)
  4059. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  4060. * The XHR Node Readable Stream
  4061. */
  4062. proto.base.ApiClient.prototype.tempVipUserStatusEdit =
  4063. function(request, metadata, callback) {
  4064. return this.client_.rpcCall(this.hostname_ +
  4065. '/base.Api/TempVipUserStatusEdit',
  4066. request,
  4067. metadata || {},
  4068. methodDescriptor_Api_TempVipUserStatusEdit,
  4069. callback);
  4070. };
  4071. /**
  4072. * @param {!proto.base.StandardRequest} request The
  4073. * request proto
  4074. * @param {?Object<string, string>} metadata User defined
  4075. * call metadata
  4076. * @return {!Promise<!proto.base.StandardReply>}
  4077. * Promise that resolves to the response
  4078. */
  4079. proto.base.ApiPromiseClient.prototype.tempVipUserStatusEdit =
  4080. function(request, metadata) {
  4081. return this.client_.unaryCall(this.hostname_ +
  4082. '/base.Api/TempVipUserStatusEdit',
  4083. request,
  4084. metadata || {},
  4085. methodDescriptor_Api_TempVipUserStatusEdit);
  4086. };
  4087. /**
  4088. * @const
  4089. * @type {!grpc.web.MethodDescriptor<
  4090. * !proto.base.StandardRequest,
  4091. * !proto.base.StandardReply>}
  4092. */
  4093. const methodDescriptor_Api_VipHourEdit = new grpc.web.MethodDescriptor(
  4094. '/base.Api/VipHourEdit',
  4095. grpc.web.MethodType.UNARY,
  4096. proto.base.StandardRequest,
  4097. proto.base.StandardReply,
  4098. /**
  4099. * @param {!proto.base.StandardRequest} request
  4100. * @return {!Uint8Array}
  4101. */
  4102. function(request) {
  4103. return request.serializeBinary();
  4104. },
  4105. proto.base.StandardReply.deserializeBinary
  4106. );
  4107. /**
  4108. * @const
  4109. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  4110. * !proto.base.StandardRequest,
  4111. * !proto.base.StandardReply>}
  4112. */
  4113. const methodInfo_Api_VipHourEdit = new grpc.web.AbstractClientBase.MethodInfo(
  4114. proto.base.StandardReply,
  4115. /**
  4116. * @param {!proto.base.StandardRequest} request
  4117. * @return {!Uint8Array}
  4118. */
  4119. function(request) {
  4120. return request.serializeBinary();
  4121. },
  4122. proto.base.StandardReply.deserializeBinary
  4123. );
  4124. /**
  4125. * @param {!proto.base.StandardRequest} request The
  4126. * request proto
  4127. * @param {?Object<string, string>} metadata User defined
  4128. * call metadata
  4129. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  4130. * callback The callback function(error, response)
  4131. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  4132. * The XHR Node Readable Stream
  4133. */
  4134. proto.base.ApiClient.prototype.vipHourEdit =
  4135. function(request, metadata, callback) {
  4136. return this.client_.rpcCall(this.hostname_ +
  4137. '/base.Api/VipHourEdit',
  4138. request,
  4139. metadata || {},
  4140. methodDescriptor_Api_VipHourEdit,
  4141. callback);
  4142. };
  4143. /**
  4144. * @param {!proto.base.StandardRequest} request The
  4145. * request proto
  4146. * @param {?Object<string, string>} metadata User defined
  4147. * call metadata
  4148. * @return {!Promise<!proto.base.StandardReply>}
  4149. * Promise that resolves to the response
  4150. */
  4151. proto.base.ApiPromiseClient.prototype.vipHourEdit =
  4152. function(request, metadata) {
  4153. return this.client_.unaryCall(this.hostname_ +
  4154. '/base.Api/VipHourEdit',
  4155. request,
  4156. metadata || {},
  4157. methodDescriptor_Api_VipHourEdit);
  4158. };
  4159. /**
  4160. * @const
  4161. * @type {!grpc.web.MethodDescriptor<
  4162. * !proto.base.StandardRequest,
  4163. * !proto.base.StandardReply>}
  4164. */
  4165. const methodDescriptor_Api_VipConsumeListQuery = new grpc.web.MethodDescriptor(
  4166. '/base.Api/VipConsumeListQuery',
  4167. grpc.web.MethodType.UNARY,
  4168. proto.base.StandardRequest,
  4169. proto.base.StandardReply,
  4170. /**
  4171. * @param {!proto.base.StandardRequest} request
  4172. * @return {!Uint8Array}
  4173. */
  4174. function(request) {
  4175. return request.serializeBinary();
  4176. },
  4177. proto.base.StandardReply.deserializeBinary
  4178. );
  4179. /**
  4180. * @const
  4181. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  4182. * !proto.base.StandardRequest,
  4183. * !proto.base.StandardReply>}
  4184. */
  4185. const methodInfo_Api_VipConsumeListQuery = new grpc.web.AbstractClientBase.MethodInfo(
  4186. proto.base.StandardReply,
  4187. /**
  4188. * @param {!proto.base.StandardRequest} request
  4189. * @return {!Uint8Array}
  4190. */
  4191. function(request) {
  4192. return request.serializeBinary();
  4193. },
  4194. proto.base.StandardReply.deserializeBinary
  4195. );
  4196. /**
  4197. * @param {!proto.base.StandardRequest} request The
  4198. * request proto
  4199. * @param {?Object<string, string>} metadata User defined
  4200. * call metadata
  4201. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  4202. * callback The callback function(error, response)
  4203. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  4204. * The XHR Node Readable Stream
  4205. */
  4206. proto.base.ApiClient.prototype.vipConsumeListQuery =
  4207. function(request, metadata, callback) {
  4208. return this.client_.rpcCall(this.hostname_ +
  4209. '/base.Api/VipConsumeListQuery',
  4210. request,
  4211. metadata || {},
  4212. methodDescriptor_Api_VipConsumeListQuery,
  4213. callback);
  4214. };
  4215. /**
  4216. * @param {!proto.base.StandardRequest} request The
  4217. * request proto
  4218. * @param {?Object<string, string>} metadata User defined
  4219. * call metadata
  4220. * @return {!Promise<!proto.base.StandardReply>}
  4221. * Promise that resolves to the response
  4222. */
  4223. proto.base.ApiPromiseClient.prototype.vipConsumeListQuery =
  4224. function(request, metadata) {
  4225. return this.client_.unaryCall(this.hostname_ +
  4226. '/base.Api/VipConsumeListQuery',
  4227. request,
  4228. metadata || {},
  4229. methodDescriptor_Api_VipConsumeListQuery);
  4230. };
  4231. /**
  4232. * @const
  4233. * @type {!grpc.web.MethodDescriptor<
  4234. * !proto.base.StandardRequest,
  4235. * !proto.base.StandardReply>}
  4236. */
  4237. const methodDescriptor_Api_VipConsumeDetailQuery = new grpc.web.MethodDescriptor(
  4238. '/base.Api/VipConsumeDetailQuery',
  4239. grpc.web.MethodType.UNARY,
  4240. proto.base.StandardRequest,
  4241. proto.base.StandardReply,
  4242. /**
  4243. * @param {!proto.base.StandardRequest} request
  4244. * @return {!Uint8Array}
  4245. */
  4246. function(request) {
  4247. return request.serializeBinary();
  4248. },
  4249. proto.base.StandardReply.deserializeBinary
  4250. );
  4251. /**
  4252. * @const
  4253. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  4254. * !proto.base.StandardRequest,
  4255. * !proto.base.StandardReply>}
  4256. */
  4257. const methodInfo_Api_VipConsumeDetailQuery = new grpc.web.AbstractClientBase.MethodInfo(
  4258. proto.base.StandardReply,
  4259. /**
  4260. * @param {!proto.base.StandardRequest} request
  4261. * @return {!Uint8Array}
  4262. */
  4263. function(request) {
  4264. return request.serializeBinary();
  4265. },
  4266. proto.base.StandardReply.deserializeBinary
  4267. );
  4268. /**
  4269. * @param {!proto.base.StandardRequest} request The
  4270. * request proto
  4271. * @param {?Object<string, string>} metadata User defined
  4272. * call metadata
  4273. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  4274. * callback The callback function(error, response)
  4275. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  4276. * The XHR Node Readable Stream
  4277. */
  4278. proto.base.ApiClient.prototype.vipConsumeDetailQuery =
  4279. function(request, metadata, callback) {
  4280. return this.client_.rpcCall(this.hostname_ +
  4281. '/base.Api/VipConsumeDetailQuery',
  4282. request,
  4283. metadata || {},
  4284. methodDescriptor_Api_VipConsumeDetailQuery,
  4285. callback);
  4286. };
  4287. /**
  4288. * @param {!proto.base.StandardRequest} request The
  4289. * request proto
  4290. * @param {?Object<string, string>} metadata User defined
  4291. * call metadata
  4292. * @return {!Promise<!proto.base.StandardReply>}
  4293. * Promise that resolves to the response
  4294. */
  4295. proto.base.ApiPromiseClient.prototype.vipConsumeDetailQuery =
  4296. function(request, metadata) {
  4297. return this.client_.unaryCall(this.hostname_ +
  4298. '/base.Api/VipConsumeDetailQuery',
  4299. request,
  4300. metadata || {},
  4301. methodDescriptor_Api_VipConsumeDetailQuery);
  4302. };
  4303. /**
  4304. * @const
  4305. * @type {!grpc.web.MethodDescriptor<
  4306. * !proto.base.StandardRequest,
  4307. * !proto.base.StandardReply>}
  4308. */
  4309. const methodDescriptor_Api_VipClassRelationEdit = new grpc.web.MethodDescriptor(
  4310. '/base.Api/VipClassRelationEdit',
  4311. grpc.web.MethodType.UNARY,
  4312. proto.base.StandardRequest,
  4313. proto.base.StandardReply,
  4314. /**
  4315. * @param {!proto.base.StandardRequest} request
  4316. * @return {!Uint8Array}
  4317. */
  4318. function(request) {
  4319. return request.serializeBinary();
  4320. },
  4321. proto.base.StandardReply.deserializeBinary
  4322. );
  4323. /**
  4324. * @const
  4325. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  4326. * !proto.base.StandardRequest,
  4327. * !proto.base.StandardReply>}
  4328. */
  4329. const methodInfo_Api_VipClassRelationEdit = new grpc.web.AbstractClientBase.MethodInfo(
  4330. proto.base.StandardReply,
  4331. /**
  4332. * @param {!proto.base.StandardRequest} request
  4333. * @return {!Uint8Array}
  4334. */
  4335. function(request) {
  4336. return request.serializeBinary();
  4337. },
  4338. proto.base.StandardReply.deserializeBinary
  4339. );
  4340. /**
  4341. * @param {!proto.base.StandardRequest} request The
  4342. * request proto
  4343. * @param {?Object<string, string>} metadata User defined
  4344. * call metadata
  4345. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  4346. * callback The callback function(error, response)
  4347. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  4348. * The XHR Node Readable Stream
  4349. */
  4350. proto.base.ApiClient.prototype.vipClassRelationEdit =
  4351. function(request, metadata, callback) {
  4352. return this.client_.rpcCall(this.hostname_ +
  4353. '/base.Api/VipClassRelationEdit',
  4354. request,
  4355. metadata || {},
  4356. methodDescriptor_Api_VipClassRelationEdit,
  4357. callback);
  4358. };
  4359. /**
  4360. * @param {!proto.base.StandardRequest} request The
  4361. * request proto
  4362. * @param {?Object<string, string>} metadata User defined
  4363. * call metadata
  4364. * @return {!Promise<!proto.base.StandardReply>}
  4365. * Promise that resolves to the response
  4366. */
  4367. proto.base.ApiPromiseClient.prototype.vipClassRelationEdit =
  4368. function(request, metadata) {
  4369. return this.client_.unaryCall(this.hostname_ +
  4370. '/base.Api/VipClassRelationEdit',
  4371. request,
  4372. metadata || {},
  4373. methodDescriptor_Api_VipClassRelationEdit);
  4374. };
  4375. /**
  4376. * @const
  4377. * @type {!grpc.web.MethodDescriptor<
  4378. * !proto.base.StandardRequest,
  4379. * !proto.base.StandardReply>}
  4380. */
  4381. const methodDescriptor_Api_VipHourChgQuery = new grpc.web.MethodDescriptor(
  4382. '/base.Api/VipHourChgQuery',
  4383. grpc.web.MethodType.UNARY,
  4384. proto.base.StandardRequest,
  4385. proto.base.StandardReply,
  4386. /**
  4387. * @param {!proto.base.StandardRequest} request
  4388. * @return {!Uint8Array}
  4389. */
  4390. function(request) {
  4391. return request.serializeBinary();
  4392. },
  4393. proto.base.StandardReply.deserializeBinary
  4394. );
  4395. /**
  4396. * @const
  4397. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  4398. * !proto.base.StandardRequest,
  4399. * !proto.base.StandardReply>}
  4400. */
  4401. const methodInfo_Api_VipHourChgQuery = new grpc.web.AbstractClientBase.MethodInfo(
  4402. proto.base.StandardReply,
  4403. /**
  4404. * @param {!proto.base.StandardRequest} request
  4405. * @return {!Uint8Array}
  4406. */
  4407. function(request) {
  4408. return request.serializeBinary();
  4409. },
  4410. proto.base.StandardReply.deserializeBinary
  4411. );
  4412. /**
  4413. * @param {!proto.base.StandardRequest} request The
  4414. * request proto
  4415. * @param {?Object<string, string>} metadata User defined
  4416. * call metadata
  4417. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  4418. * callback The callback function(error, response)
  4419. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  4420. * The XHR Node Readable Stream
  4421. */
  4422. proto.base.ApiClient.prototype.vipHourChgQuery =
  4423. function(request, metadata, callback) {
  4424. return this.client_.rpcCall(this.hostname_ +
  4425. '/base.Api/VipHourChgQuery',
  4426. request,
  4427. metadata || {},
  4428. methodDescriptor_Api_VipHourChgQuery,
  4429. callback);
  4430. };
  4431. /**
  4432. * @param {!proto.base.StandardRequest} request The
  4433. * request proto
  4434. * @param {?Object<string, string>} metadata User defined
  4435. * call metadata
  4436. * @return {!Promise<!proto.base.StandardReply>}
  4437. * Promise that resolves to the response
  4438. */
  4439. proto.base.ApiPromiseClient.prototype.vipHourChgQuery =
  4440. function(request, metadata) {
  4441. return this.client_.unaryCall(this.hostname_ +
  4442. '/base.Api/VipHourChgQuery',
  4443. request,
  4444. metadata || {},
  4445. methodDescriptor_Api_VipHourChgQuery);
  4446. };
  4447. /**
  4448. * @const
  4449. * @type {!grpc.web.MethodDescriptor<
  4450. * !proto.base.StandardRequest,
  4451. * !proto.base.StandardReply>}
  4452. */
  4453. const methodDescriptor_Api_VipUserClassQuery = new grpc.web.MethodDescriptor(
  4454. '/base.Api/VipUserClassQuery',
  4455. grpc.web.MethodType.UNARY,
  4456. proto.base.StandardRequest,
  4457. proto.base.StandardReply,
  4458. /**
  4459. * @param {!proto.base.StandardRequest} request
  4460. * @return {!Uint8Array}
  4461. */
  4462. function(request) {
  4463. return request.serializeBinary();
  4464. },
  4465. proto.base.StandardReply.deserializeBinary
  4466. );
  4467. /**
  4468. * @const
  4469. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  4470. * !proto.base.StandardRequest,
  4471. * !proto.base.StandardReply>}
  4472. */
  4473. const methodInfo_Api_VipUserClassQuery = new grpc.web.AbstractClientBase.MethodInfo(
  4474. proto.base.StandardReply,
  4475. /**
  4476. * @param {!proto.base.StandardRequest} request
  4477. * @return {!Uint8Array}
  4478. */
  4479. function(request) {
  4480. return request.serializeBinary();
  4481. },
  4482. proto.base.StandardReply.deserializeBinary
  4483. );
  4484. /**
  4485. * @param {!proto.base.StandardRequest} request The
  4486. * request proto
  4487. * @param {?Object<string, string>} metadata User defined
  4488. * call metadata
  4489. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  4490. * callback The callback function(error, response)
  4491. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  4492. * The XHR Node Readable Stream
  4493. */
  4494. proto.base.ApiClient.prototype.vipUserClassQuery =
  4495. function(request, metadata, callback) {
  4496. return this.client_.rpcCall(this.hostname_ +
  4497. '/base.Api/VipUserClassQuery',
  4498. request,
  4499. metadata || {},
  4500. methodDescriptor_Api_VipUserClassQuery,
  4501. callback);
  4502. };
  4503. /**
  4504. * @param {!proto.base.StandardRequest} request The
  4505. * request proto
  4506. * @param {?Object<string, string>} metadata User defined
  4507. * call metadata
  4508. * @return {!Promise<!proto.base.StandardReply>}
  4509. * Promise that resolves to the response
  4510. */
  4511. proto.base.ApiPromiseClient.prototype.vipUserClassQuery =
  4512. function(request, metadata) {
  4513. return this.client_.unaryCall(this.hostname_ +
  4514. '/base.Api/VipUserClassQuery',
  4515. request,
  4516. metadata || {},
  4517. methodDescriptor_Api_VipUserClassQuery);
  4518. };
  4519. /**
  4520. * @const
  4521. * @type {!grpc.web.MethodDescriptor<
  4522. * !proto.base.GetOverlayImgRequest,
  4523. * !proto.base.QiNiuTokenReply>}
  4524. */
  4525. const methodDescriptor_Api_GetOverlayImgQiNiuToken = new grpc.web.MethodDescriptor(
  4526. '/base.Api/GetOverlayImgQiNiuToken',
  4527. grpc.web.MethodType.UNARY,
  4528. proto.base.GetOverlayImgRequest,
  4529. proto.base.QiNiuTokenReply,
  4530. /**
  4531. * @param {!proto.base.GetOverlayImgRequest} request
  4532. * @return {!Uint8Array}
  4533. */
  4534. function(request) {
  4535. return request.serializeBinary();
  4536. },
  4537. proto.base.QiNiuTokenReply.deserializeBinary
  4538. );
  4539. /**
  4540. * @const
  4541. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  4542. * !proto.base.GetOverlayImgRequest,
  4543. * !proto.base.QiNiuTokenReply>}
  4544. */
  4545. const methodInfo_Api_GetOverlayImgQiNiuToken = new grpc.web.AbstractClientBase.MethodInfo(
  4546. proto.base.QiNiuTokenReply,
  4547. /**
  4548. * @param {!proto.base.GetOverlayImgRequest} request
  4549. * @return {!Uint8Array}
  4550. */
  4551. function(request) {
  4552. return request.serializeBinary();
  4553. },
  4554. proto.base.QiNiuTokenReply.deserializeBinary
  4555. );
  4556. /**
  4557. * @param {!proto.base.GetOverlayImgRequest} request The
  4558. * request proto
  4559. * @param {?Object<string, string>} metadata User defined
  4560. * call metadata
  4561. * @param {function(?grpc.web.Error, ?proto.base.QiNiuTokenReply)}
  4562. * callback The callback function(error, response)
  4563. * @return {!grpc.web.ClientReadableStream<!proto.base.QiNiuTokenReply>|undefined}
  4564. * The XHR Node Readable Stream
  4565. */
  4566. proto.base.ApiClient.prototype.getOverlayImgQiNiuToken =
  4567. function(request, metadata, callback) {
  4568. return this.client_.rpcCall(this.hostname_ +
  4569. '/base.Api/GetOverlayImgQiNiuToken',
  4570. request,
  4571. metadata || {},
  4572. methodDescriptor_Api_GetOverlayImgQiNiuToken,
  4573. callback);
  4574. };
  4575. /**
  4576. * @param {!proto.base.GetOverlayImgRequest} request The
  4577. * request proto
  4578. * @param {?Object<string, string>} metadata User defined
  4579. * call metadata
  4580. * @return {!Promise<!proto.base.QiNiuTokenReply>}
  4581. * Promise that resolves to the response
  4582. */
  4583. proto.base.ApiPromiseClient.prototype.getOverlayImgQiNiuToken =
  4584. function(request, metadata) {
  4585. return this.client_.unaryCall(this.hostname_ +
  4586. '/base.Api/GetOverlayImgQiNiuToken',
  4587. request,
  4588. metadata || {},
  4589. methodDescriptor_Api_GetOverlayImgQiNiuToken);
  4590. };
  4591. /**
  4592. * @const
  4593. * @type {!grpc.web.MethodDescriptor<
  4594. * !proto.base.DefaultRequest,
  4595. * !proto.base.QiNiuTokenReply>}
  4596. */
  4597. const methodDescriptor_Api_GetSimpleQiNiuToken = new grpc.web.MethodDescriptor(
  4598. '/base.Api/GetSimpleQiNiuToken',
  4599. grpc.web.MethodType.UNARY,
  4600. proto.base.DefaultRequest,
  4601. proto.base.QiNiuTokenReply,
  4602. /**
  4603. * @param {!proto.base.DefaultRequest} request
  4604. * @return {!Uint8Array}
  4605. */
  4606. function(request) {
  4607. return request.serializeBinary();
  4608. },
  4609. proto.base.QiNiuTokenReply.deserializeBinary
  4610. );
  4611. /**
  4612. * @const
  4613. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  4614. * !proto.base.DefaultRequest,
  4615. * !proto.base.QiNiuTokenReply>}
  4616. */
  4617. const methodInfo_Api_GetSimpleQiNiuToken = new grpc.web.AbstractClientBase.MethodInfo(
  4618. proto.base.QiNiuTokenReply,
  4619. /**
  4620. * @param {!proto.base.DefaultRequest} request
  4621. * @return {!Uint8Array}
  4622. */
  4623. function(request) {
  4624. return request.serializeBinary();
  4625. },
  4626. proto.base.QiNiuTokenReply.deserializeBinary
  4627. );
  4628. /**
  4629. * @param {!proto.base.DefaultRequest} request The
  4630. * request proto
  4631. * @param {?Object<string, string>} metadata User defined
  4632. * call metadata
  4633. * @param {function(?grpc.web.Error, ?proto.base.QiNiuTokenReply)}
  4634. * callback The callback function(error, response)
  4635. * @return {!grpc.web.ClientReadableStream<!proto.base.QiNiuTokenReply>|undefined}
  4636. * The XHR Node Readable Stream
  4637. */
  4638. proto.base.ApiClient.prototype.getSimpleQiNiuToken =
  4639. function(request, metadata, callback) {
  4640. return this.client_.rpcCall(this.hostname_ +
  4641. '/base.Api/GetSimpleQiNiuToken',
  4642. request,
  4643. metadata || {},
  4644. methodDescriptor_Api_GetSimpleQiNiuToken,
  4645. callback);
  4646. };
  4647. /**
  4648. * @param {!proto.base.DefaultRequest} request The
  4649. * request proto
  4650. * @param {?Object<string, string>} metadata User defined
  4651. * call metadata
  4652. * @return {!Promise<!proto.base.QiNiuTokenReply>}
  4653. * Promise that resolves to the response
  4654. */
  4655. proto.base.ApiPromiseClient.prototype.getSimpleQiNiuToken =
  4656. function(request, metadata) {
  4657. return this.client_.unaryCall(this.hostname_ +
  4658. '/base.Api/GetSimpleQiNiuToken',
  4659. request,
  4660. metadata || {},
  4661. methodDescriptor_Api_GetSimpleQiNiuToken);
  4662. };
  4663. /**
  4664. * @const
  4665. * @type {!grpc.web.MethodDescriptor<
  4666. * !proto.base.StandardRequest,
  4667. * !proto.base.StandardReply>}
  4668. */
  4669. const methodDescriptor_Api_ClassQuery = new grpc.web.MethodDescriptor(
  4670. '/base.Api/ClassQuery',
  4671. grpc.web.MethodType.UNARY,
  4672. proto.base.StandardRequest,
  4673. proto.base.StandardReply,
  4674. /**
  4675. * @param {!proto.base.StandardRequest} request
  4676. * @return {!Uint8Array}
  4677. */
  4678. function(request) {
  4679. return request.serializeBinary();
  4680. },
  4681. proto.base.StandardReply.deserializeBinary
  4682. );
  4683. /**
  4684. * @const
  4685. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  4686. * !proto.base.StandardRequest,
  4687. * !proto.base.StandardReply>}
  4688. */
  4689. const methodInfo_Api_ClassQuery = new grpc.web.AbstractClientBase.MethodInfo(
  4690. proto.base.StandardReply,
  4691. /**
  4692. * @param {!proto.base.StandardRequest} request
  4693. * @return {!Uint8Array}
  4694. */
  4695. function(request) {
  4696. return request.serializeBinary();
  4697. },
  4698. proto.base.StandardReply.deserializeBinary
  4699. );
  4700. /**
  4701. * @param {!proto.base.StandardRequest} request The
  4702. * request proto
  4703. * @param {?Object<string, string>} metadata User defined
  4704. * call metadata
  4705. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  4706. * callback The callback function(error, response)
  4707. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  4708. * The XHR Node Readable Stream
  4709. */
  4710. proto.base.ApiClient.prototype.classQuery =
  4711. function(request, metadata, callback) {
  4712. return this.client_.rpcCall(this.hostname_ +
  4713. '/base.Api/ClassQuery',
  4714. request,
  4715. metadata || {},
  4716. methodDescriptor_Api_ClassQuery,
  4717. callback);
  4718. };
  4719. /**
  4720. * @param {!proto.base.StandardRequest} request The
  4721. * request proto
  4722. * @param {?Object<string, string>} metadata User defined
  4723. * call metadata
  4724. * @return {!Promise<!proto.base.StandardReply>}
  4725. * Promise that resolves to the response
  4726. */
  4727. proto.base.ApiPromiseClient.prototype.classQuery =
  4728. function(request, metadata) {
  4729. return this.client_.unaryCall(this.hostname_ +
  4730. '/base.Api/ClassQuery',
  4731. request,
  4732. metadata || {},
  4733. methodDescriptor_Api_ClassQuery);
  4734. };
  4735. /**
  4736. * @const
  4737. * @type {!grpc.web.MethodDescriptor<
  4738. * !proto.base.StandardRequest,
  4739. * !proto.base.StandardReply>}
  4740. */
  4741. const methodDescriptor_Api_ClassAdd = new grpc.web.MethodDescriptor(
  4742. '/base.Api/ClassAdd',
  4743. grpc.web.MethodType.UNARY,
  4744. proto.base.StandardRequest,
  4745. proto.base.StandardReply,
  4746. /**
  4747. * @param {!proto.base.StandardRequest} request
  4748. * @return {!Uint8Array}
  4749. */
  4750. function(request) {
  4751. return request.serializeBinary();
  4752. },
  4753. proto.base.StandardReply.deserializeBinary
  4754. );
  4755. /**
  4756. * @const
  4757. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  4758. * !proto.base.StandardRequest,
  4759. * !proto.base.StandardReply>}
  4760. */
  4761. const methodInfo_Api_ClassAdd = new grpc.web.AbstractClientBase.MethodInfo(
  4762. proto.base.StandardReply,
  4763. /**
  4764. * @param {!proto.base.StandardRequest} request
  4765. * @return {!Uint8Array}
  4766. */
  4767. function(request) {
  4768. return request.serializeBinary();
  4769. },
  4770. proto.base.StandardReply.deserializeBinary
  4771. );
  4772. /**
  4773. * @param {!proto.base.StandardRequest} request The
  4774. * request proto
  4775. * @param {?Object<string, string>} metadata User defined
  4776. * call metadata
  4777. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  4778. * callback The callback function(error, response)
  4779. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  4780. * The XHR Node Readable Stream
  4781. */
  4782. proto.base.ApiClient.prototype.classAdd =
  4783. function(request, metadata, callback) {
  4784. return this.client_.rpcCall(this.hostname_ +
  4785. '/base.Api/ClassAdd',
  4786. request,
  4787. metadata || {},
  4788. methodDescriptor_Api_ClassAdd,
  4789. callback);
  4790. };
  4791. /**
  4792. * @param {!proto.base.StandardRequest} request The
  4793. * request proto
  4794. * @param {?Object<string, string>} metadata User defined
  4795. * call metadata
  4796. * @return {!Promise<!proto.base.StandardReply>}
  4797. * Promise that resolves to the response
  4798. */
  4799. proto.base.ApiPromiseClient.prototype.classAdd =
  4800. function(request, metadata) {
  4801. return this.client_.unaryCall(this.hostname_ +
  4802. '/base.Api/ClassAdd',
  4803. request,
  4804. metadata || {},
  4805. methodDescriptor_Api_ClassAdd);
  4806. };
  4807. /**
  4808. * @const
  4809. * @type {!grpc.web.MethodDescriptor<
  4810. * !proto.base.StandardRequest,
  4811. * !proto.base.StandardReply>}
  4812. */
  4813. const methodDescriptor_Api_ClassEdit = new grpc.web.MethodDescriptor(
  4814. '/base.Api/ClassEdit',
  4815. grpc.web.MethodType.UNARY,
  4816. proto.base.StandardRequest,
  4817. proto.base.StandardReply,
  4818. /**
  4819. * @param {!proto.base.StandardRequest} request
  4820. * @return {!Uint8Array}
  4821. */
  4822. function(request) {
  4823. return request.serializeBinary();
  4824. },
  4825. proto.base.StandardReply.deserializeBinary
  4826. );
  4827. /**
  4828. * @const
  4829. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  4830. * !proto.base.StandardRequest,
  4831. * !proto.base.StandardReply>}
  4832. */
  4833. const methodInfo_Api_ClassEdit = new grpc.web.AbstractClientBase.MethodInfo(
  4834. proto.base.StandardReply,
  4835. /**
  4836. * @param {!proto.base.StandardRequest} request
  4837. * @return {!Uint8Array}
  4838. */
  4839. function(request) {
  4840. return request.serializeBinary();
  4841. },
  4842. proto.base.StandardReply.deserializeBinary
  4843. );
  4844. /**
  4845. * @param {!proto.base.StandardRequest} request The
  4846. * request proto
  4847. * @param {?Object<string, string>} metadata User defined
  4848. * call metadata
  4849. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  4850. * callback The callback function(error, response)
  4851. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  4852. * The XHR Node Readable Stream
  4853. */
  4854. proto.base.ApiClient.prototype.classEdit =
  4855. function(request, metadata, callback) {
  4856. return this.client_.rpcCall(this.hostname_ +
  4857. '/base.Api/ClassEdit',
  4858. request,
  4859. metadata || {},
  4860. methodDescriptor_Api_ClassEdit,
  4861. callback);
  4862. };
  4863. /**
  4864. * @param {!proto.base.StandardRequest} request The
  4865. * request proto
  4866. * @param {?Object<string, string>} metadata User defined
  4867. * call metadata
  4868. * @return {!Promise<!proto.base.StandardReply>}
  4869. * Promise that resolves to the response
  4870. */
  4871. proto.base.ApiPromiseClient.prototype.classEdit =
  4872. function(request, metadata) {
  4873. return this.client_.unaryCall(this.hostname_ +
  4874. '/base.Api/ClassEdit',
  4875. request,
  4876. metadata || {},
  4877. methodDescriptor_Api_ClassEdit);
  4878. };
  4879. /**
  4880. * @const
  4881. * @type {!grpc.web.MethodDescriptor<
  4882. * !proto.base.StandardRequest,
  4883. * !proto.base.StandardReply>}
  4884. */
  4885. const methodDescriptor_Api_ClassStatusEdit = new grpc.web.MethodDescriptor(
  4886. '/base.Api/ClassStatusEdit',
  4887. grpc.web.MethodType.UNARY,
  4888. proto.base.StandardRequest,
  4889. proto.base.StandardReply,
  4890. /**
  4891. * @param {!proto.base.StandardRequest} request
  4892. * @return {!Uint8Array}
  4893. */
  4894. function(request) {
  4895. return request.serializeBinary();
  4896. },
  4897. proto.base.StandardReply.deserializeBinary
  4898. );
  4899. /**
  4900. * @const
  4901. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  4902. * !proto.base.StandardRequest,
  4903. * !proto.base.StandardReply>}
  4904. */
  4905. const methodInfo_Api_ClassStatusEdit = new grpc.web.AbstractClientBase.MethodInfo(
  4906. proto.base.StandardReply,
  4907. /**
  4908. * @param {!proto.base.StandardRequest} request
  4909. * @return {!Uint8Array}
  4910. */
  4911. function(request) {
  4912. return request.serializeBinary();
  4913. },
  4914. proto.base.StandardReply.deserializeBinary
  4915. );
  4916. /**
  4917. * @param {!proto.base.StandardRequest} request The
  4918. * request proto
  4919. * @param {?Object<string, string>} metadata User defined
  4920. * call metadata
  4921. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  4922. * callback The callback function(error, response)
  4923. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  4924. * The XHR Node Readable Stream
  4925. */
  4926. proto.base.ApiClient.prototype.classStatusEdit =
  4927. function(request, metadata, callback) {
  4928. return this.client_.rpcCall(this.hostname_ +
  4929. '/base.Api/ClassStatusEdit',
  4930. request,
  4931. metadata || {},
  4932. methodDescriptor_Api_ClassStatusEdit,
  4933. callback);
  4934. };
  4935. /**
  4936. * @param {!proto.base.StandardRequest} request The
  4937. * request proto
  4938. * @param {?Object<string, string>} metadata User defined
  4939. * call metadata
  4940. * @return {!Promise<!proto.base.StandardReply>}
  4941. * Promise that resolves to the response
  4942. */
  4943. proto.base.ApiPromiseClient.prototype.classStatusEdit =
  4944. function(request, metadata) {
  4945. return this.client_.unaryCall(this.hostname_ +
  4946. '/base.Api/ClassStatusEdit',
  4947. request,
  4948. metadata || {},
  4949. methodDescriptor_Api_ClassStatusEdit);
  4950. };
  4951. /**
  4952. * @const
  4953. * @type {!grpc.web.MethodDescriptor<
  4954. * !proto.base.StandardRequest,
  4955. * !proto.base.StandardReply>}
  4956. */
  4957. const methodDescriptor_Api_ClassColorEdit = new grpc.web.MethodDescriptor(
  4958. '/base.Api/ClassColorEdit',
  4959. grpc.web.MethodType.UNARY,
  4960. proto.base.StandardRequest,
  4961. proto.base.StandardReply,
  4962. /**
  4963. * @param {!proto.base.StandardRequest} request
  4964. * @return {!Uint8Array}
  4965. */
  4966. function(request) {
  4967. return request.serializeBinary();
  4968. },
  4969. proto.base.StandardReply.deserializeBinary
  4970. );
  4971. /**
  4972. * @const
  4973. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  4974. * !proto.base.StandardRequest,
  4975. * !proto.base.StandardReply>}
  4976. */
  4977. const methodInfo_Api_ClassColorEdit = new grpc.web.AbstractClientBase.MethodInfo(
  4978. proto.base.StandardReply,
  4979. /**
  4980. * @param {!proto.base.StandardRequest} request
  4981. * @return {!Uint8Array}
  4982. */
  4983. function(request) {
  4984. return request.serializeBinary();
  4985. },
  4986. proto.base.StandardReply.deserializeBinary
  4987. );
  4988. /**
  4989. * @param {!proto.base.StandardRequest} request The
  4990. * request proto
  4991. * @param {?Object<string, string>} metadata User defined
  4992. * call metadata
  4993. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  4994. * callback The callback function(error, response)
  4995. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  4996. * The XHR Node Readable Stream
  4997. */
  4998. proto.base.ApiClient.prototype.classColorEdit =
  4999. function(request, metadata, callback) {
  5000. return this.client_.rpcCall(this.hostname_ +
  5001. '/base.Api/ClassColorEdit',
  5002. request,
  5003. metadata || {},
  5004. methodDescriptor_Api_ClassColorEdit,
  5005. callback);
  5006. };
  5007. /**
  5008. * @param {!proto.base.StandardRequest} request The
  5009. * request proto
  5010. * @param {?Object<string, string>} metadata User defined
  5011. * call metadata
  5012. * @return {!Promise<!proto.base.StandardReply>}
  5013. * Promise that resolves to the response
  5014. */
  5015. proto.base.ApiPromiseClient.prototype.classColorEdit =
  5016. function(request, metadata) {
  5017. return this.client_.unaryCall(this.hostname_ +
  5018. '/base.Api/ClassColorEdit',
  5019. request,
  5020. metadata || {},
  5021. methodDescriptor_Api_ClassColorEdit);
  5022. };
  5023. /**
  5024. * @const
  5025. * @type {!grpc.web.MethodDescriptor<
  5026. * !proto.base.StandardRequest,
  5027. * !proto.base.StandardReply>}
  5028. */
  5029. const methodDescriptor_Api_ClassWxVisibleEdit = new grpc.web.MethodDescriptor(
  5030. '/base.Api/ClassWxVisibleEdit',
  5031. grpc.web.MethodType.UNARY,
  5032. proto.base.StandardRequest,
  5033. proto.base.StandardReply,
  5034. /**
  5035. * @param {!proto.base.StandardRequest} request
  5036. * @return {!Uint8Array}
  5037. */
  5038. function(request) {
  5039. return request.serializeBinary();
  5040. },
  5041. proto.base.StandardReply.deserializeBinary
  5042. );
  5043. /**
  5044. * @const
  5045. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  5046. * !proto.base.StandardRequest,
  5047. * !proto.base.StandardReply>}
  5048. */
  5049. const methodInfo_Api_ClassWxVisibleEdit = new grpc.web.AbstractClientBase.MethodInfo(
  5050. proto.base.StandardReply,
  5051. /**
  5052. * @param {!proto.base.StandardRequest} request
  5053. * @return {!Uint8Array}
  5054. */
  5055. function(request) {
  5056. return request.serializeBinary();
  5057. },
  5058. proto.base.StandardReply.deserializeBinary
  5059. );
  5060. /**
  5061. * @param {!proto.base.StandardRequest} request The
  5062. * request proto
  5063. * @param {?Object<string, string>} metadata User defined
  5064. * call metadata
  5065. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  5066. * callback The callback function(error, response)
  5067. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  5068. * The XHR Node Readable Stream
  5069. */
  5070. proto.base.ApiClient.prototype.classWxVisibleEdit =
  5071. function(request, metadata, callback) {
  5072. return this.client_.rpcCall(this.hostname_ +
  5073. '/base.Api/ClassWxVisibleEdit',
  5074. request,
  5075. metadata || {},
  5076. methodDescriptor_Api_ClassWxVisibleEdit,
  5077. callback);
  5078. };
  5079. /**
  5080. * @param {!proto.base.StandardRequest} request The
  5081. * request proto
  5082. * @param {?Object<string, string>} metadata User defined
  5083. * call metadata
  5084. * @return {!Promise<!proto.base.StandardReply>}
  5085. * Promise that resolves to the response
  5086. */
  5087. proto.base.ApiPromiseClient.prototype.classWxVisibleEdit =
  5088. function(request, metadata) {
  5089. return this.client_.unaryCall(this.hostname_ +
  5090. '/base.Api/ClassWxVisibleEdit',
  5091. request,
  5092. metadata || {},
  5093. methodDescriptor_Api_ClassWxVisibleEdit);
  5094. };
  5095. /**
  5096. * @const
  5097. * @type {!grpc.web.MethodDescriptor<
  5098. * !proto.base.StandardRequest,
  5099. * !proto.base.StandardReply>}
  5100. */
  5101. const methodDescriptor_Api_ClassVipEdit = new grpc.web.MethodDescriptor(
  5102. '/base.Api/ClassVipEdit',
  5103. grpc.web.MethodType.UNARY,
  5104. proto.base.StandardRequest,
  5105. proto.base.StandardReply,
  5106. /**
  5107. * @param {!proto.base.StandardRequest} request
  5108. * @return {!Uint8Array}
  5109. */
  5110. function(request) {
  5111. return request.serializeBinary();
  5112. },
  5113. proto.base.StandardReply.deserializeBinary
  5114. );
  5115. /**
  5116. * @const
  5117. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  5118. * !proto.base.StandardRequest,
  5119. * !proto.base.StandardReply>}
  5120. */
  5121. const methodInfo_Api_ClassVipEdit = new grpc.web.AbstractClientBase.MethodInfo(
  5122. proto.base.StandardReply,
  5123. /**
  5124. * @param {!proto.base.StandardRequest} request
  5125. * @return {!Uint8Array}
  5126. */
  5127. function(request) {
  5128. return request.serializeBinary();
  5129. },
  5130. proto.base.StandardReply.deserializeBinary
  5131. );
  5132. /**
  5133. * @param {!proto.base.StandardRequest} request The
  5134. * request proto
  5135. * @param {?Object<string, string>} metadata User defined
  5136. * call metadata
  5137. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  5138. * callback The callback function(error, response)
  5139. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  5140. * The XHR Node Readable Stream
  5141. */
  5142. proto.base.ApiClient.prototype.classVipEdit =
  5143. function(request, metadata, callback) {
  5144. return this.client_.rpcCall(this.hostname_ +
  5145. '/base.Api/ClassVipEdit',
  5146. request,
  5147. metadata || {},
  5148. methodDescriptor_Api_ClassVipEdit,
  5149. callback);
  5150. };
  5151. /**
  5152. * @param {!proto.base.StandardRequest} request The
  5153. * request proto
  5154. * @param {?Object<string, string>} metadata User defined
  5155. * call metadata
  5156. * @return {!Promise<!proto.base.StandardReply>}
  5157. * Promise that resolves to the response
  5158. */
  5159. proto.base.ApiPromiseClient.prototype.classVipEdit =
  5160. function(request, metadata) {
  5161. return this.client_.unaryCall(this.hostname_ +
  5162. '/base.Api/ClassVipEdit',
  5163. request,
  5164. metadata || {},
  5165. methodDescriptor_Api_ClassVipEdit);
  5166. };
  5167. /**
  5168. * @const
  5169. * @type {!grpc.web.MethodDescriptor<
  5170. * !proto.base.StandardRequest,
  5171. * !proto.base.StandardReply>}
  5172. */
  5173. const methodDescriptor_Api_SttPlanBasicQuery = new grpc.web.MethodDescriptor(
  5174. '/base.Api/SttPlanBasicQuery',
  5175. grpc.web.MethodType.UNARY,
  5176. proto.base.StandardRequest,
  5177. proto.base.StandardReply,
  5178. /**
  5179. * @param {!proto.base.StandardRequest} request
  5180. * @return {!Uint8Array}
  5181. */
  5182. function(request) {
  5183. return request.serializeBinary();
  5184. },
  5185. proto.base.StandardReply.deserializeBinary
  5186. );
  5187. /**
  5188. * @const
  5189. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  5190. * !proto.base.StandardRequest,
  5191. * !proto.base.StandardReply>}
  5192. */
  5193. const methodInfo_Api_SttPlanBasicQuery = new grpc.web.AbstractClientBase.MethodInfo(
  5194. proto.base.StandardReply,
  5195. /**
  5196. * @param {!proto.base.StandardRequest} request
  5197. * @return {!Uint8Array}
  5198. */
  5199. function(request) {
  5200. return request.serializeBinary();
  5201. },
  5202. proto.base.StandardReply.deserializeBinary
  5203. );
  5204. /**
  5205. * @param {!proto.base.StandardRequest} request The
  5206. * request proto
  5207. * @param {?Object<string, string>} metadata User defined
  5208. * call metadata
  5209. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  5210. * callback The callback function(error, response)
  5211. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  5212. * The XHR Node Readable Stream
  5213. */
  5214. proto.base.ApiClient.prototype.sttPlanBasicQuery =
  5215. function(request, metadata, callback) {
  5216. return this.client_.rpcCall(this.hostname_ +
  5217. '/base.Api/SttPlanBasicQuery',
  5218. request,
  5219. metadata || {},
  5220. methodDescriptor_Api_SttPlanBasicQuery,
  5221. callback);
  5222. };
  5223. /**
  5224. * @param {!proto.base.StandardRequest} request The
  5225. * request proto
  5226. * @param {?Object<string, string>} metadata User defined
  5227. * call metadata
  5228. * @return {!Promise<!proto.base.StandardReply>}
  5229. * Promise that resolves to the response
  5230. */
  5231. proto.base.ApiPromiseClient.prototype.sttPlanBasicQuery =
  5232. function(request, metadata) {
  5233. return this.client_.unaryCall(this.hostname_ +
  5234. '/base.Api/SttPlanBasicQuery',
  5235. request,
  5236. metadata || {},
  5237. methodDescriptor_Api_SttPlanBasicQuery);
  5238. };
  5239. /**
  5240. * @const
  5241. * @type {!grpc.web.MethodDescriptor<
  5242. * !proto.base.StandardRequest,
  5243. * !proto.base.StandardReply>}
  5244. */
  5245. const methodDescriptor_Api_SttPlanBasicAdd = new grpc.web.MethodDescriptor(
  5246. '/base.Api/SttPlanBasicAdd',
  5247. grpc.web.MethodType.UNARY,
  5248. proto.base.StandardRequest,
  5249. proto.base.StandardReply,
  5250. /**
  5251. * @param {!proto.base.StandardRequest} request
  5252. * @return {!Uint8Array}
  5253. */
  5254. function(request) {
  5255. return request.serializeBinary();
  5256. },
  5257. proto.base.StandardReply.deserializeBinary
  5258. );
  5259. /**
  5260. * @const
  5261. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  5262. * !proto.base.StandardRequest,
  5263. * !proto.base.StandardReply>}
  5264. */
  5265. const methodInfo_Api_SttPlanBasicAdd = new grpc.web.AbstractClientBase.MethodInfo(
  5266. proto.base.StandardReply,
  5267. /**
  5268. * @param {!proto.base.StandardRequest} request
  5269. * @return {!Uint8Array}
  5270. */
  5271. function(request) {
  5272. return request.serializeBinary();
  5273. },
  5274. proto.base.StandardReply.deserializeBinary
  5275. );
  5276. /**
  5277. * @param {!proto.base.StandardRequest} request The
  5278. * request proto
  5279. * @param {?Object<string, string>} metadata User defined
  5280. * call metadata
  5281. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  5282. * callback The callback function(error, response)
  5283. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  5284. * The XHR Node Readable Stream
  5285. */
  5286. proto.base.ApiClient.prototype.sttPlanBasicAdd =
  5287. function(request, metadata, callback) {
  5288. return this.client_.rpcCall(this.hostname_ +
  5289. '/base.Api/SttPlanBasicAdd',
  5290. request,
  5291. metadata || {},
  5292. methodDescriptor_Api_SttPlanBasicAdd,
  5293. callback);
  5294. };
  5295. /**
  5296. * @param {!proto.base.StandardRequest} request The
  5297. * request proto
  5298. * @param {?Object<string, string>} metadata User defined
  5299. * call metadata
  5300. * @return {!Promise<!proto.base.StandardReply>}
  5301. * Promise that resolves to the response
  5302. */
  5303. proto.base.ApiPromiseClient.prototype.sttPlanBasicAdd =
  5304. function(request, metadata) {
  5305. return this.client_.unaryCall(this.hostname_ +
  5306. '/base.Api/SttPlanBasicAdd',
  5307. request,
  5308. metadata || {},
  5309. methodDescriptor_Api_SttPlanBasicAdd);
  5310. };
  5311. /**
  5312. * @const
  5313. * @type {!grpc.web.MethodDescriptor<
  5314. * !proto.base.StandardRequest,
  5315. * !proto.base.StandardReply>}
  5316. */
  5317. const methodDescriptor_Api_SttPlanBasicEdit = new grpc.web.MethodDescriptor(
  5318. '/base.Api/SttPlanBasicEdit',
  5319. grpc.web.MethodType.UNARY,
  5320. proto.base.StandardRequest,
  5321. proto.base.StandardReply,
  5322. /**
  5323. * @param {!proto.base.StandardRequest} request
  5324. * @return {!Uint8Array}
  5325. */
  5326. function(request) {
  5327. return request.serializeBinary();
  5328. },
  5329. proto.base.StandardReply.deserializeBinary
  5330. );
  5331. /**
  5332. * @const
  5333. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  5334. * !proto.base.StandardRequest,
  5335. * !proto.base.StandardReply>}
  5336. */
  5337. const methodInfo_Api_SttPlanBasicEdit = new grpc.web.AbstractClientBase.MethodInfo(
  5338. proto.base.StandardReply,
  5339. /**
  5340. * @param {!proto.base.StandardRequest} request
  5341. * @return {!Uint8Array}
  5342. */
  5343. function(request) {
  5344. return request.serializeBinary();
  5345. },
  5346. proto.base.StandardReply.deserializeBinary
  5347. );
  5348. /**
  5349. * @param {!proto.base.StandardRequest} request The
  5350. * request proto
  5351. * @param {?Object<string, string>} metadata User defined
  5352. * call metadata
  5353. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  5354. * callback The callback function(error, response)
  5355. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  5356. * The XHR Node Readable Stream
  5357. */
  5358. proto.base.ApiClient.prototype.sttPlanBasicEdit =
  5359. function(request, metadata, callback) {
  5360. return this.client_.rpcCall(this.hostname_ +
  5361. '/base.Api/SttPlanBasicEdit',
  5362. request,
  5363. metadata || {},
  5364. methodDescriptor_Api_SttPlanBasicEdit,
  5365. callback);
  5366. };
  5367. /**
  5368. * @param {!proto.base.StandardRequest} request The
  5369. * request proto
  5370. * @param {?Object<string, string>} metadata User defined
  5371. * call metadata
  5372. * @return {!Promise<!proto.base.StandardReply>}
  5373. * Promise that resolves to the response
  5374. */
  5375. proto.base.ApiPromiseClient.prototype.sttPlanBasicEdit =
  5376. function(request, metadata) {
  5377. return this.client_.unaryCall(this.hostname_ +
  5378. '/base.Api/SttPlanBasicEdit',
  5379. request,
  5380. metadata || {},
  5381. methodDescriptor_Api_SttPlanBasicEdit);
  5382. };
  5383. /**
  5384. * @const
  5385. * @type {!grpc.web.MethodDescriptor<
  5386. * !proto.base.StandardRequest,
  5387. * !proto.base.StandardReply>}
  5388. */
  5389. const methodDescriptor_Api_SttPlanBasicShopEdit = new grpc.web.MethodDescriptor(
  5390. '/base.Api/SttPlanBasicShopEdit',
  5391. grpc.web.MethodType.UNARY,
  5392. proto.base.StandardRequest,
  5393. proto.base.StandardReply,
  5394. /**
  5395. * @param {!proto.base.StandardRequest} request
  5396. * @return {!Uint8Array}
  5397. */
  5398. function(request) {
  5399. return request.serializeBinary();
  5400. },
  5401. proto.base.StandardReply.deserializeBinary
  5402. );
  5403. /**
  5404. * @const
  5405. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  5406. * !proto.base.StandardRequest,
  5407. * !proto.base.StandardReply>}
  5408. */
  5409. const methodInfo_Api_SttPlanBasicShopEdit = new grpc.web.AbstractClientBase.MethodInfo(
  5410. proto.base.StandardReply,
  5411. /**
  5412. * @param {!proto.base.StandardRequest} request
  5413. * @return {!Uint8Array}
  5414. */
  5415. function(request) {
  5416. return request.serializeBinary();
  5417. },
  5418. proto.base.StandardReply.deserializeBinary
  5419. );
  5420. /**
  5421. * @param {!proto.base.StandardRequest} request The
  5422. * request proto
  5423. * @param {?Object<string, string>} metadata User defined
  5424. * call metadata
  5425. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  5426. * callback The callback function(error, response)
  5427. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  5428. * The XHR Node Readable Stream
  5429. */
  5430. proto.base.ApiClient.prototype.sttPlanBasicShopEdit =
  5431. function(request, metadata, callback) {
  5432. return this.client_.rpcCall(this.hostname_ +
  5433. '/base.Api/SttPlanBasicShopEdit',
  5434. request,
  5435. metadata || {},
  5436. methodDescriptor_Api_SttPlanBasicShopEdit,
  5437. callback);
  5438. };
  5439. /**
  5440. * @param {!proto.base.StandardRequest} request The
  5441. * request proto
  5442. * @param {?Object<string, string>} metadata User defined
  5443. * call metadata
  5444. * @return {!Promise<!proto.base.StandardReply>}
  5445. * Promise that resolves to the response
  5446. */
  5447. proto.base.ApiPromiseClient.prototype.sttPlanBasicShopEdit =
  5448. function(request, metadata) {
  5449. return this.client_.unaryCall(this.hostname_ +
  5450. '/base.Api/SttPlanBasicShopEdit',
  5451. request,
  5452. metadata || {},
  5453. methodDescriptor_Api_SttPlanBasicShopEdit);
  5454. };
  5455. /**
  5456. * @const
  5457. * @type {!grpc.web.MethodDescriptor<
  5458. * !proto.base.StandardRequest,
  5459. * !proto.base.StandardReply>}
  5460. */
  5461. const methodDescriptor_Api_SttPlanBasicStatusEdit = new grpc.web.MethodDescriptor(
  5462. '/base.Api/SttPlanBasicStatusEdit',
  5463. grpc.web.MethodType.UNARY,
  5464. proto.base.StandardRequest,
  5465. proto.base.StandardReply,
  5466. /**
  5467. * @param {!proto.base.StandardRequest} request
  5468. * @return {!Uint8Array}
  5469. */
  5470. function(request) {
  5471. return request.serializeBinary();
  5472. },
  5473. proto.base.StandardReply.deserializeBinary
  5474. );
  5475. /**
  5476. * @const
  5477. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  5478. * !proto.base.StandardRequest,
  5479. * !proto.base.StandardReply>}
  5480. */
  5481. const methodInfo_Api_SttPlanBasicStatusEdit = new grpc.web.AbstractClientBase.MethodInfo(
  5482. proto.base.StandardReply,
  5483. /**
  5484. * @param {!proto.base.StandardRequest} request
  5485. * @return {!Uint8Array}
  5486. */
  5487. function(request) {
  5488. return request.serializeBinary();
  5489. },
  5490. proto.base.StandardReply.deserializeBinary
  5491. );
  5492. /**
  5493. * @param {!proto.base.StandardRequest} request The
  5494. * request proto
  5495. * @param {?Object<string, string>} metadata User defined
  5496. * call metadata
  5497. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  5498. * callback The callback function(error, response)
  5499. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  5500. * The XHR Node Readable Stream
  5501. */
  5502. proto.base.ApiClient.prototype.sttPlanBasicStatusEdit =
  5503. function(request, metadata, callback) {
  5504. return this.client_.rpcCall(this.hostname_ +
  5505. '/base.Api/SttPlanBasicStatusEdit',
  5506. request,
  5507. metadata || {},
  5508. methodDescriptor_Api_SttPlanBasicStatusEdit,
  5509. callback);
  5510. };
  5511. /**
  5512. * @param {!proto.base.StandardRequest} request The
  5513. * request proto
  5514. * @param {?Object<string, string>} metadata User defined
  5515. * call metadata
  5516. * @return {!Promise<!proto.base.StandardReply>}
  5517. * Promise that resolves to the response
  5518. */
  5519. proto.base.ApiPromiseClient.prototype.sttPlanBasicStatusEdit =
  5520. function(request, metadata) {
  5521. return this.client_.unaryCall(this.hostname_ +
  5522. '/base.Api/SttPlanBasicStatusEdit',
  5523. request,
  5524. metadata || {},
  5525. methodDescriptor_Api_SttPlanBasicStatusEdit);
  5526. };
  5527. /**
  5528. * @const
  5529. * @type {!grpc.web.MethodDescriptor<
  5530. * !proto.base.StandardRequest,
  5531. * !proto.base.StandardReply>}
  5532. */
  5533. const methodDescriptor_Api_SttPlanBasicPublish = new grpc.web.MethodDescriptor(
  5534. '/base.Api/SttPlanBasicPublish',
  5535. grpc.web.MethodType.UNARY,
  5536. proto.base.StandardRequest,
  5537. proto.base.StandardReply,
  5538. /**
  5539. * @param {!proto.base.StandardRequest} request
  5540. * @return {!Uint8Array}
  5541. */
  5542. function(request) {
  5543. return request.serializeBinary();
  5544. },
  5545. proto.base.StandardReply.deserializeBinary
  5546. );
  5547. /**
  5548. * @const
  5549. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  5550. * !proto.base.StandardRequest,
  5551. * !proto.base.StandardReply>}
  5552. */
  5553. const methodInfo_Api_SttPlanBasicPublish = new grpc.web.AbstractClientBase.MethodInfo(
  5554. proto.base.StandardReply,
  5555. /**
  5556. * @param {!proto.base.StandardRequest} request
  5557. * @return {!Uint8Array}
  5558. */
  5559. function(request) {
  5560. return request.serializeBinary();
  5561. },
  5562. proto.base.StandardReply.deserializeBinary
  5563. );
  5564. /**
  5565. * @param {!proto.base.StandardRequest} request The
  5566. * request proto
  5567. * @param {?Object<string, string>} metadata User defined
  5568. * call metadata
  5569. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  5570. * callback The callback function(error, response)
  5571. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  5572. * The XHR Node Readable Stream
  5573. */
  5574. proto.base.ApiClient.prototype.sttPlanBasicPublish =
  5575. function(request, metadata, callback) {
  5576. return this.client_.rpcCall(this.hostname_ +
  5577. '/base.Api/SttPlanBasicPublish',
  5578. request,
  5579. metadata || {},
  5580. methodDescriptor_Api_SttPlanBasicPublish,
  5581. callback);
  5582. };
  5583. /**
  5584. * @param {!proto.base.StandardRequest} request The
  5585. * request proto
  5586. * @param {?Object<string, string>} metadata User defined
  5587. * call metadata
  5588. * @return {!Promise<!proto.base.StandardReply>}
  5589. * Promise that resolves to the response
  5590. */
  5591. proto.base.ApiPromiseClient.prototype.sttPlanBasicPublish =
  5592. function(request, metadata) {
  5593. return this.client_.unaryCall(this.hostname_ +
  5594. '/base.Api/SttPlanBasicPublish',
  5595. request,
  5596. metadata || {},
  5597. methodDescriptor_Api_SttPlanBasicPublish);
  5598. };
  5599. /**
  5600. * @const
  5601. * @type {!grpc.web.MethodDescriptor<
  5602. * !proto.base.StandardRequest,
  5603. * !proto.base.StandardReply>}
  5604. */
  5605. const methodDescriptor_Api_SttPlanPreview = new grpc.web.MethodDescriptor(
  5606. '/base.Api/SttPlanPreview',
  5607. grpc.web.MethodType.UNARY,
  5608. proto.base.StandardRequest,
  5609. proto.base.StandardReply,
  5610. /**
  5611. * @param {!proto.base.StandardRequest} request
  5612. * @return {!Uint8Array}
  5613. */
  5614. function(request) {
  5615. return request.serializeBinary();
  5616. },
  5617. proto.base.StandardReply.deserializeBinary
  5618. );
  5619. /**
  5620. * @const
  5621. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  5622. * !proto.base.StandardRequest,
  5623. * !proto.base.StandardReply>}
  5624. */
  5625. const methodInfo_Api_SttPlanPreview = new grpc.web.AbstractClientBase.MethodInfo(
  5626. proto.base.StandardReply,
  5627. /**
  5628. * @param {!proto.base.StandardRequest} request
  5629. * @return {!Uint8Array}
  5630. */
  5631. function(request) {
  5632. return request.serializeBinary();
  5633. },
  5634. proto.base.StandardReply.deserializeBinary
  5635. );
  5636. /**
  5637. * @param {!proto.base.StandardRequest} request The
  5638. * request proto
  5639. * @param {?Object<string, string>} metadata User defined
  5640. * call metadata
  5641. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  5642. * callback The callback function(error, response)
  5643. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  5644. * The XHR Node Readable Stream
  5645. */
  5646. proto.base.ApiClient.prototype.sttPlanPreview =
  5647. function(request, metadata, callback) {
  5648. return this.client_.rpcCall(this.hostname_ +
  5649. '/base.Api/SttPlanPreview',
  5650. request,
  5651. metadata || {},
  5652. methodDescriptor_Api_SttPlanPreview,
  5653. callback);
  5654. };
  5655. /**
  5656. * @param {!proto.base.StandardRequest} request The
  5657. * request proto
  5658. * @param {?Object<string, string>} metadata User defined
  5659. * call metadata
  5660. * @return {!Promise<!proto.base.StandardReply>}
  5661. * Promise that resolves to the response
  5662. */
  5663. proto.base.ApiPromiseClient.prototype.sttPlanPreview =
  5664. function(request, metadata) {
  5665. return this.client_.unaryCall(this.hostname_ +
  5666. '/base.Api/SttPlanPreview',
  5667. request,
  5668. metadata || {},
  5669. methodDescriptor_Api_SttPlanPreview);
  5670. };
  5671. /**
  5672. * @const
  5673. * @type {!grpc.web.MethodDescriptor<
  5674. * !proto.base.StandardRequest,
  5675. * !proto.base.StandardReply>}
  5676. */
  5677. const methodDescriptor_Api_SttPlanCopy = new grpc.web.MethodDescriptor(
  5678. '/base.Api/SttPlanCopy',
  5679. grpc.web.MethodType.UNARY,
  5680. proto.base.StandardRequest,
  5681. proto.base.StandardReply,
  5682. /**
  5683. * @param {!proto.base.StandardRequest} request
  5684. * @return {!Uint8Array}
  5685. */
  5686. function(request) {
  5687. return request.serializeBinary();
  5688. },
  5689. proto.base.StandardReply.deserializeBinary
  5690. );
  5691. /**
  5692. * @const
  5693. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  5694. * !proto.base.StandardRequest,
  5695. * !proto.base.StandardReply>}
  5696. */
  5697. const methodInfo_Api_SttPlanCopy = new grpc.web.AbstractClientBase.MethodInfo(
  5698. proto.base.StandardReply,
  5699. /**
  5700. * @param {!proto.base.StandardRequest} request
  5701. * @return {!Uint8Array}
  5702. */
  5703. function(request) {
  5704. return request.serializeBinary();
  5705. },
  5706. proto.base.StandardReply.deserializeBinary
  5707. );
  5708. /**
  5709. * @param {!proto.base.StandardRequest} request The
  5710. * request proto
  5711. * @param {?Object<string, string>} metadata User defined
  5712. * call metadata
  5713. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  5714. * callback The callback function(error, response)
  5715. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  5716. * The XHR Node Readable Stream
  5717. */
  5718. proto.base.ApiClient.prototype.sttPlanCopy =
  5719. function(request, metadata, callback) {
  5720. return this.client_.rpcCall(this.hostname_ +
  5721. '/base.Api/SttPlanCopy',
  5722. request,
  5723. metadata || {},
  5724. methodDescriptor_Api_SttPlanCopy,
  5725. callback);
  5726. };
  5727. /**
  5728. * @param {!proto.base.StandardRequest} request The
  5729. * request proto
  5730. * @param {?Object<string, string>} metadata User defined
  5731. * call metadata
  5732. * @return {!Promise<!proto.base.StandardReply>}
  5733. * Promise that resolves to the response
  5734. */
  5735. proto.base.ApiPromiseClient.prototype.sttPlanCopy =
  5736. function(request, metadata) {
  5737. return this.client_.unaryCall(this.hostname_ +
  5738. '/base.Api/SttPlanCopy',
  5739. request,
  5740. metadata || {},
  5741. methodDescriptor_Api_SttPlanCopy);
  5742. };
  5743. /**
  5744. * @const
  5745. * @type {!grpc.web.MethodDescriptor<
  5746. * !proto.base.StandardRequest,
  5747. * !proto.base.StandardReply>}
  5748. */
  5749. const methodDescriptor_Api_SttPlanDetailQuery = new grpc.web.MethodDescriptor(
  5750. '/base.Api/SttPlanDetailQuery',
  5751. grpc.web.MethodType.UNARY,
  5752. proto.base.StandardRequest,
  5753. proto.base.StandardReply,
  5754. /**
  5755. * @param {!proto.base.StandardRequest} request
  5756. * @return {!Uint8Array}
  5757. */
  5758. function(request) {
  5759. return request.serializeBinary();
  5760. },
  5761. proto.base.StandardReply.deserializeBinary
  5762. );
  5763. /**
  5764. * @const
  5765. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  5766. * !proto.base.StandardRequest,
  5767. * !proto.base.StandardReply>}
  5768. */
  5769. const methodInfo_Api_SttPlanDetailQuery = new grpc.web.AbstractClientBase.MethodInfo(
  5770. proto.base.StandardReply,
  5771. /**
  5772. * @param {!proto.base.StandardRequest} request
  5773. * @return {!Uint8Array}
  5774. */
  5775. function(request) {
  5776. return request.serializeBinary();
  5777. },
  5778. proto.base.StandardReply.deserializeBinary
  5779. );
  5780. /**
  5781. * @param {!proto.base.StandardRequest} request The
  5782. * request proto
  5783. * @param {?Object<string, string>} metadata User defined
  5784. * call metadata
  5785. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  5786. * callback The callback function(error, response)
  5787. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  5788. * The XHR Node Readable Stream
  5789. */
  5790. proto.base.ApiClient.prototype.sttPlanDetailQuery =
  5791. function(request, metadata, callback) {
  5792. return this.client_.rpcCall(this.hostname_ +
  5793. '/base.Api/SttPlanDetailQuery',
  5794. request,
  5795. metadata || {},
  5796. methodDescriptor_Api_SttPlanDetailQuery,
  5797. callback);
  5798. };
  5799. /**
  5800. * @param {!proto.base.StandardRequest} request The
  5801. * request proto
  5802. * @param {?Object<string, string>} metadata User defined
  5803. * call metadata
  5804. * @return {!Promise<!proto.base.StandardReply>}
  5805. * Promise that resolves to the response
  5806. */
  5807. proto.base.ApiPromiseClient.prototype.sttPlanDetailQuery =
  5808. function(request, metadata) {
  5809. return this.client_.unaryCall(this.hostname_ +
  5810. '/base.Api/SttPlanDetailQuery',
  5811. request,
  5812. metadata || {},
  5813. methodDescriptor_Api_SttPlanDetailQuery);
  5814. };
  5815. /**
  5816. * @const
  5817. * @type {!grpc.web.MethodDescriptor<
  5818. * !proto.base.StandardRequest,
  5819. * !proto.base.StandardReply>}
  5820. */
  5821. const methodDescriptor_Api_SttPlanDetailBatchSave = new grpc.web.MethodDescriptor(
  5822. '/base.Api/SttPlanDetailBatchSave',
  5823. grpc.web.MethodType.UNARY,
  5824. proto.base.StandardRequest,
  5825. proto.base.StandardReply,
  5826. /**
  5827. * @param {!proto.base.StandardRequest} request
  5828. * @return {!Uint8Array}
  5829. */
  5830. function(request) {
  5831. return request.serializeBinary();
  5832. },
  5833. proto.base.StandardReply.deserializeBinary
  5834. );
  5835. /**
  5836. * @const
  5837. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  5838. * !proto.base.StandardRequest,
  5839. * !proto.base.StandardReply>}
  5840. */
  5841. const methodInfo_Api_SttPlanDetailBatchSave = new grpc.web.AbstractClientBase.MethodInfo(
  5842. proto.base.StandardReply,
  5843. /**
  5844. * @param {!proto.base.StandardRequest} request
  5845. * @return {!Uint8Array}
  5846. */
  5847. function(request) {
  5848. return request.serializeBinary();
  5849. },
  5850. proto.base.StandardReply.deserializeBinary
  5851. );
  5852. /**
  5853. * @param {!proto.base.StandardRequest} request The
  5854. * request proto
  5855. * @param {?Object<string, string>} metadata User defined
  5856. * call metadata
  5857. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  5858. * callback The callback function(error, response)
  5859. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  5860. * The XHR Node Readable Stream
  5861. */
  5862. proto.base.ApiClient.prototype.sttPlanDetailBatchSave =
  5863. function(request, metadata, callback) {
  5864. return this.client_.rpcCall(this.hostname_ +
  5865. '/base.Api/SttPlanDetailBatchSave',
  5866. request,
  5867. metadata || {},
  5868. methodDescriptor_Api_SttPlanDetailBatchSave,
  5869. callback);
  5870. };
  5871. /**
  5872. * @param {!proto.base.StandardRequest} request The
  5873. * request proto
  5874. * @param {?Object<string, string>} metadata User defined
  5875. * call metadata
  5876. * @return {!Promise<!proto.base.StandardReply>}
  5877. * Promise that resolves to the response
  5878. */
  5879. proto.base.ApiPromiseClient.prototype.sttPlanDetailBatchSave =
  5880. function(request, metadata) {
  5881. return this.client_.unaryCall(this.hostname_ +
  5882. '/base.Api/SttPlanDetailBatchSave',
  5883. request,
  5884. metadata || {},
  5885. methodDescriptor_Api_SttPlanDetailBatchSave);
  5886. };
  5887. /**
  5888. * @const
  5889. * @type {!grpc.web.MethodDescriptor<
  5890. * !proto.base.StandardRequest,
  5891. * !proto.base.StandardReply>}
  5892. */
  5893. const methodDescriptor_Api_STTBasicQuery = new grpc.web.MethodDescriptor(
  5894. '/base.Api/STTBasicQuery',
  5895. grpc.web.MethodType.UNARY,
  5896. proto.base.StandardRequest,
  5897. proto.base.StandardReply,
  5898. /**
  5899. * @param {!proto.base.StandardRequest} request
  5900. * @return {!Uint8Array}
  5901. */
  5902. function(request) {
  5903. return request.serializeBinary();
  5904. },
  5905. proto.base.StandardReply.deserializeBinary
  5906. );
  5907. /**
  5908. * @const
  5909. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  5910. * !proto.base.StandardRequest,
  5911. * !proto.base.StandardReply>}
  5912. */
  5913. const methodInfo_Api_STTBasicQuery = new grpc.web.AbstractClientBase.MethodInfo(
  5914. proto.base.StandardReply,
  5915. /**
  5916. * @param {!proto.base.StandardRequest} request
  5917. * @return {!Uint8Array}
  5918. */
  5919. function(request) {
  5920. return request.serializeBinary();
  5921. },
  5922. proto.base.StandardReply.deserializeBinary
  5923. );
  5924. /**
  5925. * @param {!proto.base.StandardRequest} request The
  5926. * request proto
  5927. * @param {?Object<string, string>} metadata User defined
  5928. * call metadata
  5929. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  5930. * callback The callback function(error, response)
  5931. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  5932. * The XHR Node Readable Stream
  5933. */
  5934. proto.base.ApiClient.prototype.sTTBasicQuery =
  5935. function(request, metadata, callback) {
  5936. return this.client_.rpcCall(this.hostname_ +
  5937. '/base.Api/STTBasicQuery',
  5938. request,
  5939. metadata || {},
  5940. methodDescriptor_Api_STTBasicQuery,
  5941. callback);
  5942. };
  5943. /**
  5944. * @param {!proto.base.StandardRequest} request The
  5945. * request proto
  5946. * @param {?Object<string, string>} metadata User defined
  5947. * call metadata
  5948. * @return {!Promise<!proto.base.StandardReply>}
  5949. * Promise that resolves to the response
  5950. */
  5951. proto.base.ApiPromiseClient.prototype.sTTBasicQuery =
  5952. function(request, metadata) {
  5953. return this.client_.unaryCall(this.hostname_ +
  5954. '/base.Api/STTBasicQuery',
  5955. request,
  5956. metadata || {},
  5957. methodDescriptor_Api_STTBasicQuery);
  5958. };
  5959. /**
  5960. * @const
  5961. * @type {!grpc.web.MethodDescriptor<
  5962. * !proto.base.StandardRequest,
  5963. * !proto.base.StandardReply>}
  5964. */
  5965. const methodDescriptor_Api_STTBasicAdd = new grpc.web.MethodDescriptor(
  5966. '/base.Api/STTBasicAdd',
  5967. grpc.web.MethodType.UNARY,
  5968. proto.base.StandardRequest,
  5969. proto.base.StandardReply,
  5970. /**
  5971. * @param {!proto.base.StandardRequest} request
  5972. * @return {!Uint8Array}
  5973. */
  5974. function(request) {
  5975. return request.serializeBinary();
  5976. },
  5977. proto.base.StandardReply.deserializeBinary
  5978. );
  5979. /**
  5980. * @const
  5981. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  5982. * !proto.base.StandardRequest,
  5983. * !proto.base.StandardReply>}
  5984. */
  5985. const methodInfo_Api_STTBasicAdd = new grpc.web.AbstractClientBase.MethodInfo(
  5986. proto.base.StandardReply,
  5987. /**
  5988. * @param {!proto.base.StandardRequest} request
  5989. * @return {!Uint8Array}
  5990. */
  5991. function(request) {
  5992. return request.serializeBinary();
  5993. },
  5994. proto.base.StandardReply.deserializeBinary
  5995. );
  5996. /**
  5997. * @param {!proto.base.StandardRequest} request The
  5998. * request proto
  5999. * @param {?Object<string, string>} metadata User defined
  6000. * call metadata
  6001. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  6002. * callback The callback function(error, response)
  6003. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  6004. * The XHR Node Readable Stream
  6005. */
  6006. proto.base.ApiClient.prototype.sTTBasicAdd =
  6007. function(request, metadata, callback) {
  6008. return this.client_.rpcCall(this.hostname_ +
  6009. '/base.Api/STTBasicAdd',
  6010. request,
  6011. metadata || {},
  6012. methodDescriptor_Api_STTBasicAdd,
  6013. callback);
  6014. };
  6015. /**
  6016. * @param {!proto.base.StandardRequest} request The
  6017. * request proto
  6018. * @param {?Object<string, string>} metadata User defined
  6019. * call metadata
  6020. * @return {!Promise<!proto.base.StandardReply>}
  6021. * Promise that resolves to the response
  6022. */
  6023. proto.base.ApiPromiseClient.prototype.sTTBasicAdd =
  6024. function(request, metadata) {
  6025. return this.client_.unaryCall(this.hostname_ +
  6026. '/base.Api/STTBasicAdd',
  6027. request,
  6028. metadata || {},
  6029. methodDescriptor_Api_STTBasicAdd);
  6030. };
  6031. /**
  6032. * @const
  6033. * @type {!grpc.web.MethodDescriptor<
  6034. * !proto.base.StandardRequest,
  6035. * !proto.base.StandardReply>}
  6036. */
  6037. const methodDescriptor_Api_STTBasicEdit = new grpc.web.MethodDescriptor(
  6038. '/base.Api/STTBasicEdit',
  6039. grpc.web.MethodType.UNARY,
  6040. proto.base.StandardRequest,
  6041. proto.base.StandardReply,
  6042. /**
  6043. * @param {!proto.base.StandardRequest} request
  6044. * @return {!Uint8Array}
  6045. */
  6046. function(request) {
  6047. return request.serializeBinary();
  6048. },
  6049. proto.base.StandardReply.deserializeBinary
  6050. );
  6051. /**
  6052. * @const
  6053. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  6054. * !proto.base.StandardRequest,
  6055. * !proto.base.StandardReply>}
  6056. */
  6057. const methodInfo_Api_STTBasicEdit = new grpc.web.AbstractClientBase.MethodInfo(
  6058. proto.base.StandardReply,
  6059. /**
  6060. * @param {!proto.base.StandardRequest} request
  6061. * @return {!Uint8Array}
  6062. */
  6063. function(request) {
  6064. return request.serializeBinary();
  6065. },
  6066. proto.base.StandardReply.deserializeBinary
  6067. );
  6068. /**
  6069. * @param {!proto.base.StandardRequest} request The
  6070. * request proto
  6071. * @param {?Object<string, string>} metadata User defined
  6072. * call metadata
  6073. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  6074. * callback The callback function(error, response)
  6075. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  6076. * The XHR Node Readable Stream
  6077. */
  6078. proto.base.ApiClient.prototype.sTTBasicEdit =
  6079. function(request, metadata, callback) {
  6080. return this.client_.rpcCall(this.hostname_ +
  6081. '/base.Api/STTBasicEdit',
  6082. request,
  6083. metadata || {},
  6084. methodDescriptor_Api_STTBasicEdit,
  6085. callback);
  6086. };
  6087. /**
  6088. * @param {!proto.base.StandardRequest} request The
  6089. * request proto
  6090. * @param {?Object<string, string>} metadata User defined
  6091. * call metadata
  6092. * @return {!Promise<!proto.base.StandardReply>}
  6093. * Promise that resolves to the response
  6094. */
  6095. proto.base.ApiPromiseClient.prototype.sTTBasicEdit =
  6096. function(request, metadata) {
  6097. return this.client_.unaryCall(this.hostname_ +
  6098. '/base.Api/STTBasicEdit',
  6099. request,
  6100. metadata || {},
  6101. methodDescriptor_Api_STTBasicEdit);
  6102. };
  6103. /**
  6104. * @const
  6105. * @type {!grpc.web.MethodDescriptor<
  6106. * !proto.base.StandardRequest,
  6107. * !proto.base.StandardReply>}
  6108. */
  6109. const methodDescriptor_Api_STTBasicStatusEdit = new grpc.web.MethodDescriptor(
  6110. '/base.Api/STTBasicStatusEdit',
  6111. grpc.web.MethodType.UNARY,
  6112. proto.base.StandardRequest,
  6113. proto.base.StandardReply,
  6114. /**
  6115. * @param {!proto.base.StandardRequest} request
  6116. * @return {!Uint8Array}
  6117. */
  6118. function(request) {
  6119. return request.serializeBinary();
  6120. },
  6121. proto.base.StandardReply.deserializeBinary
  6122. );
  6123. /**
  6124. * @const
  6125. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  6126. * !proto.base.StandardRequest,
  6127. * !proto.base.StandardReply>}
  6128. */
  6129. const methodInfo_Api_STTBasicStatusEdit = new grpc.web.AbstractClientBase.MethodInfo(
  6130. proto.base.StandardReply,
  6131. /**
  6132. * @param {!proto.base.StandardRequest} request
  6133. * @return {!Uint8Array}
  6134. */
  6135. function(request) {
  6136. return request.serializeBinary();
  6137. },
  6138. proto.base.StandardReply.deserializeBinary
  6139. );
  6140. /**
  6141. * @param {!proto.base.StandardRequest} request The
  6142. * request proto
  6143. * @param {?Object<string, string>} metadata User defined
  6144. * call metadata
  6145. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  6146. * callback The callback function(error, response)
  6147. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  6148. * The XHR Node Readable Stream
  6149. */
  6150. proto.base.ApiClient.prototype.sTTBasicStatusEdit =
  6151. function(request, metadata, callback) {
  6152. return this.client_.rpcCall(this.hostname_ +
  6153. '/base.Api/STTBasicStatusEdit',
  6154. request,
  6155. metadata || {},
  6156. methodDescriptor_Api_STTBasicStatusEdit,
  6157. callback);
  6158. };
  6159. /**
  6160. * @param {!proto.base.StandardRequest} request The
  6161. * request proto
  6162. * @param {?Object<string, string>} metadata User defined
  6163. * call metadata
  6164. * @return {!Promise<!proto.base.StandardReply>}
  6165. * Promise that resolves to the response
  6166. */
  6167. proto.base.ApiPromiseClient.prototype.sTTBasicStatusEdit =
  6168. function(request, metadata) {
  6169. return this.client_.unaryCall(this.hostname_ +
  6170. '/base.Api/STTBasicStatusEdit',
  6171. request,
  6172. metadata || {},
  6173. methodDescriptor_Api_STTBasicStatusEdit);
  6174. };
  6175. /**
  6176. * @const
  6177. * @type {!grpc.web.MethodDescriptor<
  6178. * !proto.base.StandardRequest,
  6179. * !proto.base.StandardReply>}
  6180. */
  6181. const methodDescriptor_Api_STTBasicPreview = new grpc.web.MethodDescriptor(
  6182. '/base.Api/STTBasicPreview',
  6183. grpc.web.MethodType.UNARY,
  6184. proto.base.StandardRequest,
  6185. proto.base.StandardReply,
  6186. /**
  6187. * @param {!proto.base.StandardRequest} request
  6188. * @return {!Uint8Array}
  6189. */
  6190. function(request) {
  6191. return request.serializeBinary();
  6192. },
  6193. proto.base.StandardReply.deserializeBinary
  6194. );
  6195. /**
  6196. * @const
  6197. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  6198. * !proto.base.StandardRequest,
  6199. * !proto.base.StandardReply>}
  6200. */
  6201. const methodInfo_Api_STTBasicPreview = new grpc.web.AbstractClientBase.MethodInfo(
  6202. proto.base.StandardReply,
  6203. /**
  6204. * @param {!proto.base.StandardRequest} request
  6205. * @return {!Uint8Array}
  6206. */
  6207. function(request) {
  6208. return request.serializeBinary();
  6209. },
  6210. proto.base.StandardReply.deserializeBinary
  6211. );
  6212. /**
  6213. * @param {!proto.base.StandardRequest} request The
  6214. * request proto
  6215. * @param {?Object<string, string>} metadata User defined
  6216. * call metadata
  6217. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  6218. * callback The callback function(error, response)
  6219. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  6220. * The XHR Node Readable Stream
  6221. */
  6222. proto.base.ApiClient.prototype.sTTBasicPreview =
  6223. function(request, metadata, callback) {
  6224. return this.client_.rpcCall(this.hostname_ +
  6225. '/base.Api/STTBasicPreview',
  6226. request,
  6227. metadata || {},
  6228. methodDescriptor_Api_STTBasicPreview,
  6229. callback);
  6230. };
  6231. /**
  6232. * @param {!proto.base.StandardRequest} request The
  6233. * request proto
  6234. * @param {?Object<string, string>} metadata User defined
  6235. * call metadata
  6236. * @return {!Promise<!proto.base.StandardReply>}
  6237. * Promise that resolves to the response
  6238. */
  6239. proto.base.ApiPromiseClient.prototype.sTTBasicPreview =
  6240. function(request, metadata) {
  6241. return this.client_.unaryCall(this.hostname_ +
  6242. '/base.Api/STTBasicPreview',
  6243. request,
  6244. metadata || {},
  6245. methodDescriptor_Api_STTBasicPreview);
  6246. };
  6247. /**
  6248. * @const
  6249. * @type {!grpc.web.MethodDescriptor<
  6250. * !proto.base.StandardRequest,
  6251. * !proto.base.StandardReply>}
  6252. */
  6253. const methodDescriptor_Api_STTBasicCopy = new grpc.web.MethodDescriptor(
  6254. '/base.Api/STTBasicCopy',
  6255. grpc.web.MethodType.UNARY,
  6256. proto.base.StandardRequest,
  6257. proto.base.StandardReply,
  6258. /**
  6259. * @param {!proto.base.StandardRequest} request
  6260. * @return {!Uint8Array}
  6261. */
  6262. function(request) {
  6263. return request.serializeBinary();
  6264. },
  6265. proto.base.StandardReply.deserializeBinary
  6266. );
  6267. /**
  6268. * @const
  6269. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  6270. * !proto.base.StandardRequest,
  6271. * !proto.base.StandardReply>}
  6272. */
  6273. const methodInfo_Api_STTBasicCopy = new grpc.web.AbstractClientBase.MethodInfo(
  6274. proto.base.StandardReply,
  6275. /**
  6276. * @param {!proto.base.StandardRequest} request
  6277. * @return {!Uint8Array}
  6278. */
  6279. function(request) {
  6280. return request.serializeBinary();
  6281. },
  6282. proto.base.StandardReply.deserializeBinary
  6283. );
  6284. /**
  6285. * @param {!proto.base.StandardRequest} request The
  6286. * request proto
  6287. * @param {?Object<string, string>} metadata User defined
  6288. * call metadata
  6289. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  6290. * callback The callback function(error, response)
  6291. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  6292. * The XHR Node Readable Stream
  6293. */
  6294. proto.base.ApiClient.prototype.sTTBasicCopy =
  6295. function(request, metadata, callback) {
  6296. return this.client_.rpcCall(this.hostname_ +
  6297. '/base.Api/STTBasicCopy',
  6298. request,
  6299. metadata || {},
  6300. methodDescriptor_Api_STTBasicCopy,
  6301. callback);
  6302. };
  6303. /**
  6304. * @param {!proto.base.StandardRequest} request The
  6305. * request proto
  6306. * @param {?Object<string, string>} metadata User defined
  6307. * call metadata
  6308. * @return {!Promise<!proto.base.StandardReply>}
  6309. * Promise that resolves to the response
  6310. */
  6311. proto.base.ApiPromiseClient.prototype.sTTBasicCopy =
  6312. function(request, metadata) {
  6313. return this.client_.unaryCall(this.hostname_ +
  6314. '/base.Api/STTBasicCopy',
  6315. request,
  6316. metadata || {},
  6317. methodDescriptor_Api_STTBasicCopy);
  6318. };
  6319. /**
  6320. * @const
  6321. * @type {!grpc.web.MethodDescriptor<
  6322. * !proto.base.StandardRequest,
  6323. * !proto.base.StandardReply>}
  6324. */
  6325. const methodDescriptor_Api_STTBasicOfflineEdit = new grpc.web.MethodDescriptor(
  6326. '/base.Api/STTBasicOfflineEdit',
  6327. grpc.web.MethodType.UNARY,
  6328. proto.base.StandardRequest,
  6329. proto.base.StandardReply,
  6330. /**
  6331. * @param {!proto.base.StandardRequest} request
  6332. * @return {!Uint8Array}
  6333. */
  6334. function(request) {
  6335. return request.serializeBinary();
  6336. },
  6337. proto.base.StandardReply.deserializeBinary
  6338. );
  6339. /**
  6340. * @const
  6341. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  6342. * !proto.base.StandardRequest,
  6343. * !proto.base.StandardReply>}
  6344. */
  6345. const methodInfo_Api_STTBasicOfflineEdit = new grpc.web.AbstractClientBase.MethodInfo(
  6346. proto.base.StandardReply,
  6347. /**
  6348. * @param {!proto.base.StandardRequest} request
  6349. * @return {!Uint8Array}
  6350. */
  6351. function(request) {
  6352. return request.serializeBinary();
  6353. },
  6354. proto.base.StandardReply.deserializeBinary
  6355. );
  6356. /**
  6357. * @param {!proto.base.StandardRequest} request The
  6358. * request proto
  6359. * @param {?Object<string, string>} metadata User defined
  6360. * call metadata
  6361. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  6362. * callback The callback function(error, response)
  6363. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  6364. * The XHR Node Readable Stream
  6365. */
  6366. proto.base.ApiClient.prototype.sTTBasicOfflineEdit =
  6367. function(request, metadata, callback) {
  6368. return this.client_.rpcCall(this.hostname_ +
  6369. '/base.Api/STTBasicOfflineEdit',
  6370. request,
  6371. metadata || {},
  6372. methodDescriptor_Api_STTBasicOfflineEdit,
  6373. callback);
  6374. };
  6375. /**
  6376. * @param {!proto.base.StandardRequest} request The
  6377. * request proto
  6378. * @param {?Object<string, string>} metadata User defined
  6379. * call metadata
  6380. * @return {!Promise<!proto.base.StandardReply>}
  6381. * Promise that resolves to the response
  6382. */
  6383. proto.base.ApiPromiseClient.prototype.sTTBasicOfflineEdit =
  6384. function(request, metadata) {
  6385. return this.client_.unaryCall(this.hostname_ +
  6386. '/base.Api/STTBasicOfflineEdit',
  6387. request,
  6388. metadata || {},
  6389. methodDescriptor_Api_STTBasicOfflineEdit);
  6390. };
  6391. /**
  6392. * @const
  6393. * @type {!grpc.web.MethodDescriptor<
  6394. * !proto.base.StandardRequest,
  6395. * !proto.base.StandardReply>}
  6396. */
  6397. const methodDescriptor_Api_STTDetailListQuery = new grpc.web.MethodDescriptor(
  6398. '/base.Api/STTDetailListQuery',
  6399. grpc.web.MethodType.UNARY,
  6400. proto.base.StandardRequest,
  6401. proto.base.StandardReply,
  6402. /**
  6403. * @param {!proto.base.StandardRequest} request
  6404. * @return {!Uint8Array}
  6405. */
  6406. function(request) {
  6407. return request.serializeBinary();
  6408. },
  6409. proto.base.StandardReply.deserializeBinary
  6410. );
  6411. /**
  6412. * @const
  6413. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  6414. * !proto.base.StandardRequest,
  6415. * !proto.base.StandardReply>}
  6416. */
  6417. const methodInfo_Api_STTDetailListQuery = new grpc.web.AbstractClientBase.MethodInfo(
  6418. proto.base.StandardReply,
  6419. /**
  6420. * @param {!proto.base.StandardRequest} request
  6421. * @return {!Uint8Array}
  6422. */
  6423. function(request) {
  6424. return request.serializeBinary();
  6425. },
  6426. proto.base.StandardReply.deserializeBinary
  6427. );
  6428. /**
  6429. * @param {!proto.base.StandardRequest} request The
  6430. * request proto
  6431. * @param {?Object<string, string>} metadata User defined
  6432. * call metadata
  6433. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  6434. * callback The callback function(error, response)
  6435. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  6436. * The XHR Node Readable Stream
  6437. */
  6438. proto.base.ApiClient.prototype.sTTDetailListQuery =
  6439. function(request, metadata, callback) {
  6440. return this.client_.rpcCall(this.hostname_ +
  6441. '/base.Api/STTDetailListQuery',
  6442. request,
  6443. metadata || {},
  6444. methodDescriptor_Api_STTDetailListQuery,
  6445. callback);
  6446. };
  6447. /**
  6448. * @param {!proto.base.StandardRequest} request The
  6449. * request proto
  6450. * @param {?Object<string, string>} metadata User defined
  6451. * call metadata
  6452. * @return {!Promise<!proto.base.StandardReply>}
  6453. * Promise that resolves to the response
  6454. */
  6455. proto.base.ApiPromiseClient.prototype.sTTDetailListQuery =
  6456. function(request, metadata) {
  6457. return this.client_.unaryCall(this.hostname_ +
  6458. '/base.Api/STTDetailListQuery',
  6459. request,
  6460. metadata || {},
  6461. methodDescriptor_Api_STTDetailListQuery);
  6462. };
  6463. /**
  6464. * @const
  6465. * @type {!grpc.web.MethodDescriptor<
  6466. * !proto.base.StandardRequest,
  6467. * !proto.base.StandardReply>}
  6468. */
  6469. const methodDescriptor_Api_STTBasicDetailBatchSave = new grpc.web.MethodDescriptor(
  6470. '/base.Api/STTBasicDetailBatchSave',
  6471. grpc.web.MethodType.UNARY,
  6472. proto.base.StandardRequest,
  6473. proto.base.StandardReply,
  6474. /**
  6475. * @param {!proto.base.StandardRequest} request
  6476. * @return {!Uint8Array}
  6477. */
  6478. function(request) {
  6479. return request.serializeBinary();
  6480. },
  6481. proto.base.StandardReply.deserializeBinary
  6482. );
  6483. /**
  6484. * @const
  6485. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  6486. * !proto.base.StandardRequest,
  6487. * !proto.base.StandardReply>}
  6488. */
  6489. const methodInfo_Api_STTBasicDetailBatchSave = new grpc.web.AbstractClientBase.MethodInfo(
  6490. proto.base.StandardReply,
  6491. /**
  6492. * @param {!proto.base.StandardRequest} request
  6493. * @return {!Uint8Array}
  6494. */
  6495. function(request) {
  6496. return request.serializeBinary();
  6497. },
  6498. proto.base.StandardReply.deserializeBinary
  6499. );
  6500. /**
  6501. * @param {!proto.base.StandardRequest} request The
  6502. * request proto
  6503. * @param {?Object<string, string>} metadata User defined
  6504. * call metadata
  6505. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  6506. * callback The callback function(error, response)
  6507. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  6508. * The XHR Node Readable Stream
  6509. */
  6510. proto.base.ApiClient.prototype.sTTBasicDetailBatchSave =
  6511. function(request, metadata, callback) {
  6512. return this.client_.rpcCall(this.hostname_ +
  6513. '/base.Api/STTBasicDetailBatchSave',
  6514. request,
  6515. metadata || {},
  6516. methodDescriptor_Api_STTBasicDetailBatchSave,
  6517. callback);
  6518. };
  6519. /**
  6520. * @param {!proto.base.StandardRequest} request The
  6521. * request proto
  6522. * @param {?Object<string, string>} metadata User defined
  6523. * call metadata
  6524. * @return {!Promise<!proto.base.StandardReply>}
  6525. * Promise that resolves to the response
  6526. */
  6527. proto.base.ApiPromiseClient.prototype.sTTBasicDetailBatchSave =
  6528. function(request, metadata) {
  6529. return this.client_.unaryCall(this.hostname_ +
  6530. '/base.Api/STTBasicDetailBatchSave',
  6531. request,
  6532. metadata || {},
  6533. methodDescriptor_Api_STTBasicDetailBatchSave);
  6534. };
  6535. /**
  6536. * @const
  6537. * @type {!grpc.web.MethodDescriptor<
  6538. * !proto.base.StandardRequest,
  6539. * !proto.base.StandardReply>}
  6540. */
  6541. const methodDescriptor_Api_STTDetailAllowDelCheck = new grpc.web.MethodDescriptor(
  6542. '/base.Api/STTDetailAllowDelCheck',
  6543. grpc.web.MethodType.UNARY,
  6544. proto.base.StandardRequest,
  6545. proto.base.StandardReply,
  6546. /**
  6547. * @param {!proto.base.StandardRequest} request
  6548. * @return {!Uint8Array}
  6549. */
  6550. function(request) {
  6551. return request.serializeBinary();
  6552. },
  6553. proto.base.StandardReply.deserializeBinary
  6554. );
  6555. /**
  6556. * @const
  6557. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  6558. * !proto.base.StandardRequest,
  6559. * !proto.base.StandardReply>}
  6560. */
  6561. const methodInfo_Api_STTDetailAllowDelCheck = new grpc.web.AbstractClientBase.MethodInfo(
  6562. proto.base.StandardReply,
  6563. /**
  6564. * @param {!proto.base.StandardRequest} request
  6565. * @return {!Uint8Array}
  6566. */
  6567. function(request) {
  6568. return request.serializeBinary();
  6569. },
  6570. proto.base.StandardReply.deserializeBinary
  6571. );
  6572. /**
  6573. * @param {!proto.base.StandardRequest} request The
  6574. * request proto
  6575. * @param {?Object<string, string>} metadata User defined
  6576. * call metadata
  6577. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  6578. * callback The callback function(error, response)
  6579. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  6580. * The XHR Node Readable Stream
  6581. */
  6582. proto.base.ApiClient.prototype.sTTDetailAllowDelCheck =
  6583. function(request, metadata, callback) {
  6584. return this.client_.rpcCall(this.hostname_ +
  6585. '/base.Api/STTDetailAllowDelCheck',
  6586. request,
  6587. metadata || {},
  6588. methodDescriptor_Api_STTDetailAllowDelCheck,
  6589. callback);
  6590. };
  6591. /**
  6592. * @param {!proto.base.StandardRequest} request The
  6593. * request proto
  6594. * @param {?Object<string, string>} metadata User defined
  6595. * call metadata
  6596. * @return {!Promise<!proto.base.StandardReply>}
  6597. * Promise that resolves to the response
  6598. */
  6599. proto.base.ApiPromiseClient.prototype.sTTDetailAllowDelCheck =
  6600. function(request, metadata) {
  6601. return this.client_.unaryCall(this.hostname_ +
  6602. '/base.Api/STTDetailAllowDelCheck',
  6603. request,
  6604. metadata || {},
  6605. methodDescriptor_Api_STTDetailAllowDelCheck);
  6606. };
  6607. /**
  6608. * @const
  6609. * @type {!grpc.web.MethodDescriptor<
  6610. * !proto.base.StandardRequest,
  6611. * !proto.base.StandardReply>}
  6612. */
  6613. const methodDescriptor_Api_CourseDetailQuery = new grpc.web.MethodDescriptor(
  6614. '/base.Api/CourseDetailQuery',
  6615. grpc.web.MethodType.UNARY,
  6616. proto.base.StandardRequest,
  6617. proto.base.StandardReply,
  6618. /**
  6619. * @param {!proto.base.StandardRequest} request
  6620. * @return {!Uint8Array}
  6621. */
  6622. function(request) {
  6623. return request.serializeBinary();
  6624. },
  6625. proto.base.StandardReply.deserializeBinary
  6626. );
  6627. /**
  6628. * @const
  6629. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  6630. * !proto.base.StandardRequest,
  6631. * !proto.base.StandardReply>}
  6632. */
  6633. const methodInfo_Api_CourseDetailQuery = new grpc.web.AbstractClientBase.MethodInfo(
  6634. proto.base.StandardReply,
  6635. /**
  6636. * @param {!proto.base.StandardRequest} request
  6637. * @return {!Uint8Array}
  6638. */
  6639. function(request) {
  6640. return request.serializeBinary();
  6641. },
  6642. proto.base.StandardReply.deserializeBinary
  6643. );
  6644. /**
  6645. * @param {!proto.base.StandardRequest} request The
  6646. * request proto
  6647. * @param {?Object<string, string>} metadata User defined
  6648. * call metadata
  6649. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  6650. * callback The callback function(error, response)
  6651. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  6652. * The XHR Node Readable Stream
  6653. */
  6654. proto.base.ApiClient.prototype.courseDetailQuery =
  6655. function(request, metadata, callback) {
  6656. return this.client_.rpcCall(this.hostname_ +
  6657. '/base.Api/CourseDetailQuery',
  6658. request,
  6659. metadata || {},
  6660. methodDescriptor_Api_CourseDetailQuery,
  6661. callback);
  6662. };
  6663. /**
  6664. * @param {!proto.base.StandardRequest} request The
  6665. * request proto
  6666. * @param {?Object<string, string>} metadata User defined
  6667. * call metadata
  6668. * @return {!Promise<!proto.base.StandardReply>}
  6669. * Promise that resolves to the response
  6670. */
  6671. proto.base.ApiPromiseClient.prototype.courseDetailQuery =
  6672. function(request, metadata) {
  6673. return this.client_.unaryCall(this.hostname_ +
  6674. '/base.Api/CourseDetailQuery',
  6675. request,
  6676. metadata || {},
  6677. methodDescriptor_Api_CourseDetailQuery);
  6678. };
  6679. /**
  6680. * @const
  6681. * @type {!grpc.web.MethodDescriptor<
  6682. * !proto.base.StandardRequest,
  6683. * !proto.base.StandardReply>}
  6684. */
  6685. const methodDescriptor_Api_ClassListByOrderDate = new grpc.web.MethodDescriptor(
  6686. '/base.Api/ClassListByOrderDate',
  6687. grpc.web.MethodType.UNARY,
  6688. proto.base.StandardRequest,
  6689. proto.base.StandardReply,
  6690. /**
  6691. * @param {!proto.base.StandardRequest} request
  6692. * @return {!Uint8Array}
  6693. */
  6694. function(request) {
  6695. return request.serializeBinary();
  6696. },
  6697. proto.base.StandardReply.deserializeBinary
  6698. );
  6699. /**
  6700. * @const
  6701. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  6702. * !proto.base.StandardRequest,
  6703. * !proto.base.StandardReply>}
  6704. */
  6705. const methodInfo_Api_ClassListByOrderDate = new grpc.web.AbstractClientBase.MethodInfo(
  6706. proto.base.StandardReply,
  6707. /**
  6708. * @param {!proto.base.StandardRequest} request
  6709. * @return {!Uint8Array}
  6710. */
  6711. function(request) {
  6712. return request.serializeBinary();
  6713. },
  6714. proto.base.StandardReply.deserializeBinary
  6715. );
  6716. /**
  6717. * @param {!proto.base.StandardRequest} request The
  6718. * request proto
  6719. * @param {?Object<string, string>} metadata User defined
  6720. * call metadata
  6721. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  6722. * callback The callback function(error, response)
  6723. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  6724. * The XHR Node Readable Stream
  6725. */
  6726. proto.base.ApiClient.prototype.classListByOrderDate =
  6727. function(request, metadata, callback) {
  6728. return this.client_.rpcCall(this.hostname_ +
  6729. '/base.Api/ClassListByOrderDate',
  6730. request,
  6731. metadata || {},
  6732. methodDescriptor_Api_ClassListByOrderDate,
  6733. callback);
  6734. };
  6735. /**
  6736. * @param {!proto.base.StandardRequest} request The
  6737. * request proto
  6738. * @param {?Object<string, string>} metadata User defined
  6739. * call metadata
  6740. * @return {!Promise<!proto.base.StandardReply>}
  6741. * Promise that resolves to the response
  6742. */
  6743. proto.base.ApiPromiseClient.prototype.classListByOrderDate =
  6744. function(request, metadata) {
  6745. return this.client_.unaryCall(this.hostname_ +
  6746. '/base.Api/ClassListByOrderDate',
  6747. request,
  6748. metadata || {},
  6749. methodDescriptor_Api_ClassListByOrderDate);
  6750. };
  6751. /**
  6752. * @const
  6753. * @type {!grpc.web.MethodDescriptor<
  6754. * !proto.base.CourseStandardRequest,
  6755. * !proto.base.StandardReply>}
  6756. */
  6757. const methodDescriptor_Api_ClassStartPrepare = new grpc.web.MethodDescriptor(
  6758. '/base.Api/ClassStartPrepare',
  6759. grpc.web.MethodType.UNARY,
  6760. proto.base.CourseStandardRequest,
  6761. proto.base.StandardReply,
  6762. /**
  6763. * @param {!proto.base.CourseStandardRequest} request
  6764. * @return {!Uint8Array}
  6765. */
  6766. function(request) {
  6767. return request.serializeBinary();
  6768. },
  6769. proto.base.StandardReply.deserializeBinary
  6770. );
  6771. /**
  6772. * @const
  6773. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  6774. * !proto.base.CourseStandardRequest,
  6775. * !proto.base.StandardReply>}
  6776. */
  6777. const methodInfo_Api_ClassStartPrepare = new grpc.web.AbstractClientBase.MethodInfo(
  6778. proto.base.StandardReply,
  6779. /**
  6780. * @param {!proto.base.CourseStandardRequest} request
  6781. * @return {!Uint8Array}
  6782. */
  6783. function(request) {
  6784. return request.serializeBinary();
  6785. },
  6786. proto.base.StandardReply.deserializeBinary
  6787. );
  6788. /**
  6789. * @param {!proto.base.CourseStandardRequest} request The
  6790. * request proto
  6791. * @param {?Object<string, string>} metadata User defined
  6792. * call metadata
  6793. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  6794. * callback The callback function(error, response)
  6795. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  6796. * The XHR Node Readable Stream
  6797. */
  6798. proto.base.ApiClient.prototype.classStartPrepare =
  6799. function(request, metadata, callback) {
  6800. return this.client_.rpcCall(this.hostname_ +
  6801. '/base.Api/ClassStartPrepare',
  6802. request,
  6803. metadata || {},
  6804. methodDescriptor_Api_ClassStartPrepare,
  6805. callback);
  6806. };
  6807. /**
  6808. * @param {!proto.base.CourseStandardRequest} request The
  6809. * request proto
  6810. * @param {?Object<string, string>} metadata User defined
  6811. * call metadata
  6812. * @return {!Promise<!proto.base.StandardReply>}
  6813. * Promise that resolves to the response
  6814. */
  6815. proto.base.ApiPromiseClient.prototype.classStartPrepare =
  6816. function(request, metadata) {
  6817. return this.client_.unaryCall(this.hostname_ +
  6818. '/base.Api/ClassStartPrepare',
  6819. request,
  6820. metadata || {},
  6821. methodDescriptor_Api_ClassStartPrepare);
  6822. };
  6823. /**
  6824. * @const
  6825. * @type {!grpc.web.MethodDescriptor<
  6826. * !proto.base.StandardRequest,
  6827. * !proto.base.StandardReply>}
  6828. */
  6829. const methodDescriptor_Api_VipClassDetailQuery = new grpc.web.MethodDescriptor(
  6830. '/base.Api/VipClassDetailQuery',
  6831. grpc.web.MethodType.UNARY,
  6832. proto.base.StandardRequest,
  6833. proto.base.StandardReply,
  6834. /**
  6835. * @param {!proto.base.StandardRequest} request
  6836. * @return {!Uint8Array}
  6837. */
  6838. function(request) {
  6839. return request.serializeBinary();
  6840. },
  6841. proto.base.StandardReply.deserializeBinary
  6842. );
  6843. /**
  6844. * @const
  6845. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  6846. * !proto.base.StandardRequest,
  6847. * !proto.base.StandardReply>}
  6848. */
  6849. const methodInfo_Api_VipClassDetailQuery = new grpc.web.AbstractClientBase.MethodInfo(
  6850. proto.base.StandardReply,
  6851. /**
  6852. * @param {!proto.base.StandardRequest} request
  6853. * @return {!Uint8Array}
  6854. */
  6855. function(request) {
  6856. return request.serializeBinary();
  6857. },
  6858. proto.base.StandardReply.deserializeBinary
  6859. );
  6860. /**
  6861. * @param {!proto.base.StandardRequest} request The
  6862. * request proto
  6863. * @param {?Object<string, string>} metadata User defined
  6864. * call metadata
  6865. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  6866. * callback The callback function(error, response)
  6867. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  6868. * The XHR Node Readable Stream
  6869. */
  6870. proto.base.ApiClient.prototype.vipClassDetailQuery =
  6871. function(request, metadata, callback) {
  6872. return this.client_.rpcCall(this.hostname_ +
  6873. '/base.Api/VipClassDetailQuery',
  6874. request,
  6875. metadata || {},
  6876. methodDescriptor_Api_VipClassDetailQuery,
  6877. callback);
  6878. };
  6879. /**
  6880. * @param {!proto.base.StandardRequest} request The
  6881. * request proto
  6882. * @param {?Object<string, string>} metadata User defined
  6883. * call metadata
  6884. * @return {!Promise<!proto.base.StandardReply>}
  6885. * Promise that resolves to the response
  6886. */
  6887. proto.base.ApiPromiseClient.prototype.vipClassDetailQuery =
  6888. function(request, metadata) {
  6889. return this.client_.unaryCall(this.hostname_ +
  6890. '/base.Api/VipClassDetailQuery',
  6891. request,
  6892. metadata || {},
  6893. methodDescriptor_Api_VipClassDetailQuery);
  6894. };
  6895. /**
  6896. * @const
  6897. * @type {!grpc.web.MethodDescriptor<
  6898. * !proto.base.CourseStandardRequest,
  6899. * !proto.base.StandardReply>}
  6900. */
  6901. const methodDescriptor_Api_VipClassDetailAdd = new grpc.web.MethodDescriptor(
  6902. '/base.Api/VipClassDetailAdd',
  6903. grpc.web.MethodType.UNARY,
  6904. proto.base.CourseStandardRequest,
  6905. proto.base.StandardReply,
  6906. /**
  6907. * @param {!proto.base.CourseStandardRequest} request
  6908. * @return {!Uint8Array}
  6909. */
  6910. function(request) {
  6911. return request.serializeBinary();
  6912. },
  6913. proto.base.StandardReply.deserializeBinary
  6914. );
  6915. /**
  6916. * @const
  6917. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  6918. * !proto.base.CourseStandardRequest,
  6919. * !proto.base.StandardReply>}
  6920. */
  6921. const methodInfo_Api_VipClassDetailAdd = new grpc.web.AbstractClientBase.MethodInfo(
  6922. proto.base.StandardReply,
  6923. /**
  6924. * @param {!proto.base.CourseStandardRequest} request
  6925. * @return {!Uint8Array}
  6926. */
  6927. function(request) {
  6928. return request.serializeBinary();
  6929. },
  6930. proto.base.StandardReply.deserializeBinary
  6931. );
  6932. /**
  6933. * @param {!proto.base.CourseStandardRequest} request The
  6934. * request proto
  6935. * @param {?Object<string, string>} metadata User defined
  6936. * call metadata
  6937. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  6938. * callback The callback function(error, response)
  6939. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  6940. * The XHR Node Readable Stream
  6941. */
  6942. proto.base.ApiClient.prototype.vipClassDetailAdd =
  6943. function(request, metadata, callback) {
  6944. return this.client_.rpcCall(this.hostname_ +
  6945. '/base.Api/VipClassDetailAdd',
  6946. request,
  6947. metadata || {},
  6948. methodDescriptor_Api_VipClassDetailAdd,
  6949. callback);
  6950. };
  6951. /**
  6952. * @param {!proto.base.CourseStandardRequest} request The
  6953. * request proto
  6954. * @param {?Object<string, string>} metadata User defined
  6955. * call metadata
  6956. * @return {!Promise<!proto.base.StandardReply>}
  6957. * Promise that resolves to the response
  6958. */
  6959. proto.base.ApiPromiseClient.prototype.vipClassDetailAdd =
  6960. function(request, metadata) {
  6961. return this.client_.unaryCall(this.hostname_ +
  6962. '/base.Api/VipClassDetailAdd',
  6963. request,
  6964. metadata || {},
  6965. methodDescriptor_Api_VipClassDetailAdd);
  6966. };
  6967. /**
  6968. * @const
  6969. * @type {!grpc.web.MethodDescriptor<
  6970. * !proto.base.CourseStandardRequest,
  6971. * !proto.base.StandardReply>}
  6972. */
  6973. const methodDescriptor_Api_VipClassDetailDel = new grpc.web.MethodDescriptor(
  6974. '/base.Api/VipClassDetailDel',
  6975. grpc.web.MethodType.UNARY,
  6976. proto.base.CourseStandardRequest,
  6977. proto.base.StandardReply,
  6978. /**
  6979. * @param {!proto.base.CourseStandardRequest} request
  6980. * @return {!Uint8Array}
  6981. */
  6982. function(request) {
  6983. return request.serializeBinary();
  6984. },
  6985. proto.base.StandardReply.deserializeBinary
  6986. );
  6987. /**
  6988. * @const
  6989. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  6990. * !proto.base.CourseStandardRequest,
  6991. * !proto.base.StandardReply>}
  6992. */
  6993. const methodInfo_Api_VipClassDetailDel = new grpc.web.AbstractClientBase.MethodInfo(
  6994. proto.base.StandardReply,
  6995. /**
  6996. * @param {!proto.base.CourseStandardRequest} request
  6997. * @return {!Uint8Array}
  6998. */
  6999. function(request) {
  7000. return request.serializeBinary();
  7001. },
  7002. proto.base.StandardReply.deserializeBinary
  7003. );
  7004. /**
  7005. * @param {!proto.base.CourseStandardRequest} request The
  7006. * request proto
  7007. * @param {?Object<string, string>} metadata User defined
  7008. * call metadata
  7009. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  7010. * callback The callback function(error, response)
  7011. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  7012. * The XHR Node Readable Stream
  7013. */
  7014. proto.base.ApiClient.prototype.vipClassDetailDel =
  7015. function(request, metadata, callback) {
  7016. return this.client_.rpcCall(this.hostname_ +
  7017. '/base.Api/VipClassDetailDel',
  7018. request,
  7019. metadata || {},
  7020. methodDescriptor_Api_VipClassDetailDel,
  7021. callback);
  7022. };
  7023. /**
  7024. * @param {!proto.base.CourseStandardRequest} request The
  7025. * request proto
  7026. * @param {?Object<string, string>} metadata User defined
  7027. * call metadata
  7028. * @return {!Promise<!proto.base.StandardReply>}
  7029. * Promise that resolves to the response
  7030. */
  7031. proto.base.ApiPromiseClient.prototype.vipClassDetailDel =
  7032. function(request, metadata) {
  7033. return this.client_.unaryCall(this.hostname_ +
  7034. '/base.Api/VipClassDetailDel',
  7035. request,
  7036. metadata || {},
  7037. methodDescriptor_Api_VipClassDetailDel);
  7038. };
  7039. /**
  7040. * @const
  7041. * @type {!grpc.web.MethodDescriptor<
  7042. * !proto.base.CourseStandardRequest,
  7043. * !proto.base.StandardReply>}
  7044. */
  7045. const methodDescriptor_Api_TmpClassDetailAdd = new grpc.web.MethodDescriptor(
  7046. '/base.Api/TmpClassDetailAdd',
  7047. grpc.web.MethodType.UNARY,
  7048. proto.base.CourseStandardRequest,
  7049. proto.base.StandardReply,
  7050. /**
  7051. * @param {!proto.base.CourseStandardRequest} request
  7052. * @return {!Uint8Array}
  7053. */
  7054. function(request) {
  7055. return request.serializeBinary();
  7056. },
  7057. proto.base.StandardReply.deserializeBinary
  7058. );
  7059. /**
  7060. * @const
  7061. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  7062. * !proto.base.CourseStandardRequest,
  7063. * !proto.base.StandardReply>}
  7064. */
  7065. const methodInfo_Api_TmpClassDetailAdd = new grpc.web.AbstractClientBase.MethodInfo(
  7066. proto.base.StandardReply,
  7067. /**
  7068. * @param {!proto.base.CourseStandardRequest} request
  7069. * @return {!Uint8Array}
  7070. */
  7071. function(request) {
  7072. return request.serializeBinary();
  7073. },
  7074. proto.base.StandardReply.deserializeBinary
  7075. );
  7076. /**
  7077. * @param {!proto.base.CourseStandardRequest} request The
  7078. * request proto
  7079. * @param {?Object<string, string>} metadata User defined
  7080. * call metadata
  7081. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  7082. * callback The callback function(error, response)
  7083. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  7084. * The XHR Node Readable Stream
  7085. */
  7086. proto.base.ApiClient.prototype.tmpClassDetailAdd =
  7087. function(request, metadata, callback) {
  7088. return this.client_.rpcCall(this.hostname_ +
  7089. '/base.Api/TmpClassDetailAdd',
  7090. request,
  7091. metadata || {},
  7092. methodDescriptor_Api_TmpClassDetailAdd,
  7093. callback);
  7094. };
  7095. /**
  7096. * @param {!proto.base.CourseStandardRequest} request The
  7097. * request proto
  7098. * @param {?Object<string, string>} metadata User defined
  7099. * call metadata
  7100. * @return {!Promise<!proto.base.StandardReply>}
  7101. * Promise that resolves to the response
  7102. */
  7103. proto.base.ApiPromiseClient.prototype.tmpClassDetailAdd =
  7104. function(request, metadata) {
  7105. return this.client_.unaryCall(this.hostname_ +
  7106. '/base.Api/TmpClassDetailAdd',
  7107. request,
  7108. metadata || {},
  7109. methodDescriptor_Api_TmpClassDetailAdd);
  7110. };
  7111. /**
  7112. * @const
  7113. * @type {!grpc.web.MethodDescriptor<
  7114. * !proto.base.CourseStandardRequest,
  7115. * !proto.base.StandardReply>}
  7116. */
  7117. const methodDescriptor_Api_TmpClassDetailDel = new grpc.web.MethodDescriptor(
  7118. '/base.Api/TmpClassDetailDel',
  7119. grpc.web.MethodType.UNARY,
  7120. proto.base.CourseStandardRequest,
  7121. proto.base.StandardReply,
  7122. /**
  7123. * @param {!proto.base.CourseStandardRequest} request
  7124. * @return {!Uint8Array}
  7125. */
  7126. function(request) {
  7127. return request.serializeBinary();
  7128. },
  7129. proto.base.StandardReply.deserializeBinary
  7130. );
  7131. /**
  7132. * @const
  7133. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  7134. * !proto.base.CourseStandardRequest,
  7135. * !proto.base.StandardReply>}
  7136. */
  7137. const methodInfo_Api_TmpClassDetailDel = new grpc.web.AbstractClientBase.MethodInfo(
  7138. proto.base.StandardReply,
  7139. /**
  7140. * @param {!proto.base.CourseStandardRequest} request
  7141. * @return {!Uint8Array}
  7142. */
  7143. function(request) {
  7144. return request.serializeBinary();
  7145. },
  7146. proto.base.StandardReply.deserializeBinary
  7147. );
  7148. /**
  7149. * @param {!proto.base.CourseStandardRequest} request The
  7150. * request proto
  7151. * @param {?Object<string, string>} metadata User defined
  7152. * call metadata
  7153. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  7154. * callback The callback function(error, response)
  7155. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  7156. * The XHR Node Readable Stream
  7157. */
  7158. proto.base.ApiClient.prototype.tmpClassDetailDel =
  7159. function(request, metadata, callback) {
  7160. return this.client_.rpcCall(this.hostname_ +
  7161. '/base.Api/TmpClassDetailDel',
  7162. request,
  7163. metadata || {},
  7164. methodDescriptor_Api_TmpClassDetailDel,
  7165. callback);
  7166. };
  7167. /**
  7168. * @param {!proto.base.CourseStandardRequest} request The
  7169. * request proto
  7170. * @param {?Object<string, string>} metadata User defined
  7171. * call metadata
  7172. * @return {!Promise<!proto.base.StandardReply>}
  7173. * Promise that resolves to the response
  7174. */
  7175. proto.base.ApiPromiseClient.prototype.tmpClassDetailDel =
  7176. function(request, metadata) {
  7177. return this.client_.unaryCall(this.hostname_ +
  7178. '/base.Api/TmpClassDetailDel',
  7179. request,
  7180. metadata || {},
  7181. methodDescriptor_Api_TmpClassDetailDel);
  7182. };
  7183. /**
  7184. * @const
  7185. * @type {!grpc.web.MethodDescriptor<
  7186. * !proto.base.CourseStandardRequest,
  7187. * !proto.base.StandardReply>}
  7188. */
  7189. const methodDescriptor_Api_VipClassDetailStatueEdit = new grpc.web.MethodDescriptor(
  7190. '/base.Api/VipClassDetailStatueEdit',
  7191. grpc.web.MethodType.UNARY,
  7192. proto.base.CourseStandardRequest,
  7193. proto.base.StandardReply,
  7194. /**
  7195. * @param {!proto.base.CourseStandardRequest} request
  7196. * @return {!Uint8Array}
  7197. */
  7198. function(request) {
  7199. return request.serializeBinary();
  7200. },
  7201. proto.base.StandardReply.deserializeBinary
  7202. );
  7203. /**
  7204. * @const
  7205. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  7206. * !proto.base.CourseStandardRequest,
  7207. * !proto.base.StandardReply>}
  7208. */
  7209. const methodInfo_Api_VipClassDetailStatueEdit = new grpc.web.AbstractClientBase.MethodInfo(
  7210. proto.base.StandardReply,
  7211. /**
  7212. * @param {!proto.base.CourseStandardRequest} request
  7213. * @return {!Uint8Array}
  7214. */
  7215. function(request) {
  7216. return request.serializeBinary();
  7217. },
  7218. proto.base.StandardReply.deserializeBinary
  7219. );
  7220. /**
  7221. * @param {!proto.base.CourseStandardRequest} request The
  7222. * request proto
  7223. * @param {?Object<string, string>} metadata User defined
  7224. * call metadata
  7225. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  7226. * callback The callback function(error, response)
  7227. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  7228. * The XHR Node Readable Stream
  7229. */
  7230. proto.base.ApiClient.prototype.vipClassDetailStatueEdit =
  7231. function(request, metadata, callback) {
  7232. return this.client_.rpcCall(this.hostname_ +
  7233. '/base.Api/VipClassDetailStatueEdit',
  7234. request,
  7235. metadata || {},
  7236. methodDescriptor_Api_VipClassDetailStatueEdit,
  7237. callback);
  7238. };
  7239. /**
  7240. * @param {!proto.base.CourseStandardRequest} request The
  7241. * request proto
  7242. * @param {?Object<string, string>} metadata User defined
  7243. * call metadata
  7244. * @return {!Promise<!proto.base.StandardReply>}
  7245. * Promise that resolves to the response
  7246. */
  7247. proto.base.ApiPromiseClient.prototype.vipClassDetailStatueEdit =
  7248. function(request, metadata) {
  7249. return this.client_.unaryCall(this.hostname_ +
  7250. '/base.Api/VipClassDetailStatueEdit',
  7251. request,
  7252. metadata || {},
  7253. methodDescriptor_Api_VipClassDetailStatueEdit);
  7254. };
  7255. /**
  7256. * @const
  7257. * @type {!grpc.web.MethodDescriptor<
  7258. * !proto.base.CourseStandardRequest,
  7259. * !proto.base.StandardReply>}
  7260. */
  7261. const methodDescriptor_Api_ClassStartConfirm = new grpc.web.MethodDescriptor(
  7262. '/base.Api/ClassStartConfirm',
  7263. grpc.web.MethodType.UNARY,
  7264. proto.base.CourseStandardRequest,
  7265. proto.base.StandardReply,
  7266. /**
  7267. * @param {!proto.base.CourseStandardRequest} request
  7268. * @return {!Uint8Array}
  7269. */
  7270. function(request) {
  7271. return request.serializeBinary();
  7272. },
  7273. proto.base.StandardReply.deserializeBinary
  7274. );
  7275. /**
  7276. * @const
  7277. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  7278. * !proto.base.CourseStandardRequest,
  7279. * !proto.base.StandardReply>}
  7280. */
  7281. const methodInfo_Api_ClassStartConfirm = new grpc.web.AbstractClientBase.MethodInfo(
  7282. proto.base.StandardReply,
  7283. /**
  7284. * @param {!proto.base.CourseStandardRequest} request
  7285. * @return {!Uint8Array}
  7286. */
  7287. function(request) {
  7288. return request.serializeBinary();
  7289. },
  7290. proto.base.StandardReply.deserializeBinary
  7291. );
  7292. /**
  7293. * @param {!proto.base.CourseStandardRequest} request The
  7294. * request proto
  7295. * @param {?Object<string, string>} metadata User defined
  7296. * call metadata
  7297. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  7298. * callback The callback function(error, response)
  7299. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  7300. * The XHR Node Readable Stream
  7301. */
  7302. proto.base.ApiClient.prototype.classStartConfirm =
  7303. function(request, metadata, callback) {
  7304. return this.client_.rpcCall(this.hostname_ +
  7305. '/base.Api/ClassStartConfirm',
  7306. request,
  7307. metadata || {},
  7308. methodDescriptor_Api_ClassStartConfirm,
  7309. callback);
  7310. };
  7311. /**
  7312. * @param {!proto.base.CourseStandardRequest} request The
  7313. * request proto
  7314. * @param {?Object<string, string>} metadata User defined
  7315. * call metadata
  7316. * @return {!Promise<!proto.base.StandardReply>}
  7317. * Promise that resolves to the response
  7318. */
  7319. proto.base.ApiPromiseClient.prototype.classStartConfirm =
  7320. function(request, metadata) {
  7321. return this.client_.unaryCall(this.hostname_ +
  7322. '/base.Api/ClassStartConfirm',
  7323. request,
  7324. metadata || {},
  7325. methodDescriptor_Api_ClassStartConfirm);
  7326. };
  7327. /**
  7328. * @const
  7329. * @type {!grpc.web.MethodDescriptor<
  7330. * !proto.base.StandardRequest,
  7331. * !proto.base.StandardReply>}
  7332. */
  7333. const methodDescriptor_Api_ClassOverConfirm = new grpc.web.MethodDescriptor(
  7334. '/base.Api/ClassOverConfirm',
  7335. grpc.web.MethodType.UNARY,
  7336. proto.base.StandardRequest,
  7337. proto.base.StandardReply,
  7338. /**
  7339. * @param {!proto.base.StandardRequest} request
  7340. * @return {!Uint8Array}
  7341. */
  7342. function(request) {
  7343. return request.serializeBinary();
  7344. },
  7345. proto.base.StandardReply.deserializeBinary
  7346. );
  7347. /**
  7348. * @const
  7349. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  7350. * !proto.base.StandardRequest,
  7351. * !proto.base.StandardReply>}
  7352. */
  7353. const methodInfo_Api_ClassOverConfirm = new grpc.web.AbstractClientBase.MethodInfo(
  7354. proto.base.StandardReply,
  7355. /**
  7356. * @param {!proto.base.StandardRequest} request
  7357. * @return {!Uint8Array}
  7358. */
  7359. function(request) {
  7360. return request.serializeBinary();
  7361. },
  7362. proto.base.StandardReply.deserializeBinary
  7363. );
  7364. /**
  7365. * @param {!proto.base.StandardRequest} request The
  7366. * request proto
  7367. * @param {?Object<string, string>} metadata User defined
  7368. * call metadata
  7369. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  7370. * callback The callback function(error, response)
  7371. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  7372. * The XHR Node Readable Stream
  7373. */
  7374. proto.base.ApiClient.prototype.classOverConfirm =
  7375. function(request, metadata, callback) {
  7376. return this.client_.rpcCall(this.hostname_ +
  7377. '/base.Api/ClassOverConfirm',
  7378. request,
  7379. metadata || {},
  7380. methodDescriptor_Api_ClassOverConfirm,
  7381. callback);
  7382. };
  7383. /**
  7384. * @param {!proto.base.StandardRequest} request The
  7385. * request proto
  7386. * @param {?Object<string, string>} metadata User defined
  7387. * call metadata
  7388. * @return {!Promise<!proto.base.StandardReply>}
  7389. * Promise that resolves to the response
  7390. */
  7391. proto.base.ApiPromiseClient.prototype.classOverConfirm =
  7392. function(request, metadata) {
  7393. return this.client_.unaryCall(this.hostname_ +
  7394. '/base.Api/ClassOverConfirm',
  7395. request,
  7396. metadata || {},
  7397. methodDescriptor_Api_ClassOverConfirm);
  7398. };
  7399. /**
  7400. * @const
  7401. * @type {!grpc.web.MethodDescriptor<
  7402. * !proto.base.CourseStandardRequest,
  7403. * !proto.base.StandardReply>}
  7404. */
  7405. const methodDescriptor_Api_ClassGiveUpConfirm = new grpc.web.MethodDescriptor(
  7406. '/base.Api/ClassGiveUpConfirm',
  7407. grpc.web.MethodType.UNARY,
  7408. proto.base.CourseStandardRequest,
  7409. proto.base.StandardReply,
  7410. /**
  7411. * @param {!proto.base.CourseStandardRequest} request
  7412. * @return {!Uint8Array}
  7413. */
  7414. function(request) {
  7415. return request.serializeBinary();
  7416. },
  7417. proto.base.StandardReply.deserializeBinary
  7418. );
  7419. /**
  7420. * @const
  7421. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  7422. * !proto.base.CourseStandardRequest,
  7423. * !proto.base.StandardReply>}
  7424. */
  7425. const methodInfo_Api_ClassGiveUpConfirm = new grpc.web.AbstractClientBase.MethodInfo(
  7426. proto.base.StandardReply,
  7427. /**
  7428. * @param {!proto.base.CourseStandardRequest} request
  7429. * @return {!Uint8Array}
  7430. */
  7431. function(request) {
  7432. return request.serializeBinary();
  7433. },
  7434. proto.base.StandardReply.deserializeBinary
  7435. );
  7436. /**
  7437. * @param {!proto.base.CourseStandardRequest} request The
  7438. * request proto
  7439. * @param {?Object<string, string>} metadata User defined
  7440. * call metadata
  7441. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  7442. * callback The callback function(error, response)
  7443. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  7444. * The XHR Node Readable Stream
  7445. */
  7446. proto.base.ApiClient.prototype.classGiveUpConfirm =
  7447. function(request, metadata, callback) {
  7448. return this.client_.rpcCall(this.hostname_ +
  7449. '/base.Api/ClassGiveUpConfirm',
  7450. request,
  7451. metadata || {},
  7452. methodDescriptor_Api_ClassGiveUpConfirm,
  7453. callback);
  7454. };
  7455. /**
  7456. * @param {!proto.base.CourseStandardRequest} request The
  7457. * request proto
  7458. * @param {?Object<string, string>} metadata User defined
  7459. * call metadata
  7460. * @return {!Promise<!proto.base.StandardReply>}
  7461. * Promise that resolves to the response
  7462. */
  7463. proto.base.ApiPromiseClient.prototype.classGiveUpConfirm =
  7464. function(request, metadata) {
  7465. return this.client_.unaryCall(this.hostname_ +
  7466. '/base.Api/ClassGiveUpConfirm',
  7467. request,
  7468. metadata || {},
  7469. methodDescriptor_Api_ClassGiveUpConfirm);
  7470. };
  7471. /**
  7472. * @const
  7473. * @type {!grpc.web.MethodDescriptor<
  7474. * !proto.base.CourseStandardRequest,
  7475. * !proto.base.StandardReply>}
  7476. */
  7477. const methodDescriptor_Api_AfterClassAddClassDetail = new grpc.web.MethodDescriptor(
  7478. '/base.Api/AfterClassAddClassDetail',
  7479. grpc.web.MethodType.UNARY,
  7480. proto.base.CourseStandardRequest,
  7481. proto.base.StandardReply,
  7482. /**
  7483. * @param {!proto.base.CourseStandardRequest} request
  7484. * @return {!Uint8Array}
  7485. */
  7486. function(request) {
  7487. return request.serializeBinary();
  7488. },
  7489. proto.base.StandardReply.deserializeBinary
  7490. );
  7491. /**
  7492. * @const
  7493. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  7494. * !proto.base.CourseStandardRequest,
  7495. * !proto.base.StandardReply>}
  7496. */
  7497. const methodInfo_Api_AfterClassAddClassDetail = new grpc.web.AbstractClientBase.MethodInfo(
  7498. proto.base.StandardReply,
  7499. /**
  7500. * @param {!proto.base.CourseStandardRequest} request
  7501. * @return {!Uint8Array}
  7502. */
  7503. function(request) {
  7504. return request.serializeBinary();
  7505. },
  7506. proto.base.StandardReply.deserializeBinary
  7507. );
  7508. /**
  7509. * @param {!proto.base.CourseStandardRequest} request The
  7510. * request proto
  7511. * @param {?Object<string, string>} metadata User defined
  7512. * call metadata
  7513. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  7514. * callback The callback function(error, response)
  7515. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  7516. * The XHR Node Readable Stream
  7517. */
  7518. proto.base.ApiClient.prototype.afterClassAddClassDetail =
  7519. function(request, metadata, callback) {
  7520. return this.client_.rpcCall(this.hostname_ +
  7521. '/base.Api/AfterClassAddClassDetail',
  7522. request,
  7523. metadata || {},
  7524. methodDescriptor_Api_AfterClassAddClassDetail,
  7525. callback);
  7526. };
  7527. /**
  7528. * @param {!proto.base.CourseStandardRequest} request The
  7529. * request proto
  7530. * @param {?Object<string, string>} metadata User defined
  7531. * call metadata
  7532. * @return {!Promise<!proto.base.StandardReply>}
  7533. * Promise that resolves to the response
  7534. */
  7535. proto.base.ApiPromiseClient.prototype.afterClassAddClassDetail =
  7536. function(request, metadata) {
  7537. return this.client_.unaryCall(this.hostname_ +
  7538. '/base.Api/AfterClassAddClassDetail',
  7539. request,
  7540. metadata || {},
  7541. methodDescriptor_Api_AfterClassAddClassDetail);
  7542. };
  7543. /**
  7544. * @const
  7545. * @type {!grpc.web.MethodDescriptor<
  7546. * !proto.base.StandardRequest,
  7547. * !proto.base.StandardReply>}
  7548. */
  7549. const methodDescriptor_Api_OrderListQuery = new grpc.web.MethodDescriptor(
  7550. '/base.Api/OrderListQuery',
  7551. grpc.web.MethodType.UNARY,
  7552. proto.base.StandardRequest,
  7553. proto.base.StandardReply,
  7554. /**
  7555. * @param {!proto.base.StandardRequest} request
  7556. * @return {!Uint8Array}
  7557. */
  7558. function(request) {
  7559. return request.serializeBinary();
  7560. },
  7561. proto.base.StandardReply.deserializeBinary
  7562. );
  7563. /**
  7564. * @const
  7565. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  7566. * !proto.base.StandardRequest,
  7567. * !proto.base.StandardReply>}
  7568. */
  7569. const methodInfo_Api_OrderListQuery = new grpc.web.AbstractClientBase.MethodInfo(
  7570. proto.base.StandardReply,
  7571. /**
  7572. * @param {!proto.base.StandardRequest} request
  7573. * @return {!Uint8Array}
  7574. */
  7575. function(request) {
  7576. return request.serializeBinary();
  7577. },
  7578. proto.base.StandardReply.deserializeBinary
  7579. );
  7580. /**
  7581. * @param {!proto.base.StandardRequest} request The
  7582. * request proto
  7583. * @param {?Object<string, string>} metadata User defined
  7584. * call metadata
  7585. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  7586. * callback The callback function(error, response)
  7587. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  7588. * The XHR Node Readable Stream
  7589. */
  7590. proto.base.ApiClient.prototype.orderListQuery =
  7591. function(request, metadata, callback) {
  7592. return this.client_.rpcCall(this.hostname_ +
  7593. '/base.Api/OrderListQuery',
  7594. request,
  7595. metadata || {},
  7596. methodDescriptor_Api_OrderListQuery,
  7597. callback);
  7598. };
  7599. /**
  7600. * @param {!proto.base.StandardRequest} request The
  7601. * request proto
  7602. * @param {?Object<string, string>} metadata User defined
  7603. * call metadata
  7604. * @return {!Promise<!proto.base.StandardReply>}
  7605. * Promise that resolves to the response
  7606. */
  7607. proto.base.ApiPromiseClient.prototype.orderListQuery =
  7608. function(request, metadata) {
  7609. return this.client_.unaryCall(this.hostname_ +
  7610. '/base.Api/OrderListQuery',
  7611. request,
  7612. metadata || {},
  7613. methodDescriptor_Api_OrderListQuery);
  7614. };
  7615. /**
  7616. * @const
  7617. * @type {!grpc.web.MethodDescriptor<
  7618. * !proto.base.StandardRequest,
  7619. * !proto.base.StandardReply>}
  7620. */
  7621. const methodDescriptor_Api_OrderAddByManager = new grpc.web.MethodDescriptor(
  7622. '/base.Api/OrderAddByManager',
  7623. grpc.web.MethodType.UNARY,
  7624. proto.base.StandardRequest,
  7625. proto.base.StandardReply,
  7626. /**
  7627. * @param {!proto.base.StandardRequest} request
  7628. * @return {!Uint8Array}
  7629. */
  7630. function(request) {
  7631. return request.serializeBinary();
  7632. },
  7633. proto.base.StandardReply.deserializeBinary
  7634. );
  7635. /**
  7636. * @const
  7637. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  7638. * !proto.base.StandardRequest,
  7639. * !proto.base.StandardReply>}
  7640. */
  7641. const methodInfo_Api_OrderAddByManager = new grpc.web.AbstractClientBase.MethodInfo(
  7642. proto.base.StandardReply,
  7643. /**
  7644. * @param {!proto.base.StandardRequest} request
  7645. * @return {!Uint8Array}
  7646. */
  7647. function(request) {
  7648. return request.serializeBinary();
  7649. },
  7650. proto.base.StandardReply.deserializeBinary
  7651. );
  7652. /**
  7653. * @param {!proto.base.StandardRequest} request The
  7654. * request proto
  7655. * @param {?Object<string, string>} metadata User defined
  7656. * call metadata
  7657. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  7658. * callback The callback function(error, response)
  7659. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  7660. * The XHR Node Readable Stream
  7661. */
  7662. proto.base.ApiClient.prototype.orderAddByManager =
  7663. function(request, metadata, callback) {
  7664. return this.client_.rpcCall(this.hostname_ +
  7665. '/base.Api/OrderAddByManager',
  7666. request,
  7667. metadata || {},
  7668. methodDescriptor_Api_OrderAddByManager,
  7669. callback);
  7670. };
  7671. /**
  7672. * @param {!proto.base.StandardRequest} request The
  7673. * request proto
  7674. * @param {?Object<string, string>} metadata User defined
  7675. * call metadata
  7676. * @return {!Promise<!proto.base.StandardReply>}
  7677. * Promise that resolves to the response
  7678. */
  7679. proto.base.ApiPromiseClient.prototype.orderAddByManager =
  7680. function(request, metadata) {
  7681. return this.client_.unaryCall(this.hostname_ +
  7682. '/base.Api/OrderAddByManager',
  7683. request,
  7684. metadata || {},
  7685. methodDescriptor_Api_OrderAddByManager);
  7686. };
  7687. /**
  7688. * @const
  7689. * @type {!grpc.web.MethodDescriptor<
  7690. * !proto.base.StandardRequest,
  7691. * !proto.base.StandardReply>}
  7692. */
  7693. const methodDescriptor_Api_OrderCancelByManager = new grpc.web.MethodDescriptor(
  7694. '/base.Api/OrderCancelByManager',
  7695. grpc.web.MethodType.UNARY,
  7696. proto.base.StandardRequest,
  7697. proto.base.StandardReply,
  7698. /**
  7699. * @param {!proto.base.StandardRequest} request
  7700. * @return {!Uint8Array}
  7701. */
  7702. function(request) {
  7703. return request.serializeBinary();
  7704. },
  7705. proto.base.StandardReply.deserializeBinary
  7706. );
  7707. /**
  7708. * @const
  7709. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  7710. * !proto.base.StandardRequest,
  7711. * !proto.base.StandardReply>}
  7712. */
  7713. const methodInfo_Api_OrderCancelByManager = new grpc.web.AbstractClientBase.MethodInfo(
  7714. proto.base.StandardReply,
  7715. /**
  7716. * @param {!proto.base.StandardRequest} request
  7717. * @return {!Uint8Array}
  7718. */
  7719. function(request) {
  7720. return request.serializeBinary();
  7721. },
  7722. proto.base.StandardReply.deserializeBinary
  7723. );
  7724. /**
  7725. * @param {!proto.base.StandardRequest} request The
  7726. * request proto
  7727. * @param {?Object<string, string>} metadata User defined
  7728. * call metadata
  7729. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  7730. * callback The callback function(error, response)
  7731. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  7732. * The XHR Node Readable Stream
  7733. */
  7734. proto.base.ApiClient.prototype.orderCancelByManager =
  7735. function(request, metadata, callback) {
  7736. return this.client_.rpcCall(this.hostname_ +
  7737. '/base.Api/OrderCancelByManager',
  7738. request,
  7739. metadata || {},
  7740. methodDescriptor_Api_OrderCancelByManager,
  7741. callback);
  7742. };
  7743. /**
  7744. * @param {!proto.base.StandardRequest} request The
  7745. * request proto
  7746. * @param {?Object<string, string>} metadata User defined
  7747. * call metadata
  7748. * @return {!Promise<!proto.base.StandardReply>}
  7749. * Promise that resolves to the response
  7750. */
  7751. proto.base.ApiPromiseClient.prototype.orderCancelByManager =
  7752. function(request, metadata) {
  7753. return this.client_.unaryCall(this.hostname_ +
  7754. '/base.Api/OrderCancelByManager',
  7755. request,
  7756. metadata || {},
  7757. methodDescriptor_Api_OrderCancelByManager);
  7758. };
  7759. /**
  7760. * @const
  7761. * @type {!grpc.web.MethodDescriptor<
  7762. * !proto.base.StandardRequest,
  7763. * !proto.base.StandardReply>}
  7764. */
  7765. const methodDescriptor_Api_OrderStatistics = new grpc.web.MethodDescriptor(
  7766. '/base.Api/OrderStatistics',
  7767. grpc.web.MethodType.UNARY,
  7768. proto.base.StandardRequest,
  7769. proto.base.StandardReply,
  7770. /**
  7771. * @param {!proto.base.StandardRequest} request
  7772. * @return {!Uint8Array}
  7773. */
  7774. function(request) {
  7775. return request.serializeBinary();
  7776. },
  7777. proto.base.StandardReply.deserializeBinary
  7778. );
  7779. /**
  7780. * @const
  7781. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  7782. * !proto.base.StandardRequest,
  7783. * !proto.base.StandardReply>}
  7784. */
  7785. const methodInfo_Api_OrderStatistics = new grpc.web.AbstractClientBase.MethodInfo(
  7786. proto.base.StandardReply,
  7787. /**
  7788. * @param {!proto.base.StandardRequest} request
  7789. * @return {!Uint8Array}
  7790. */
  7791. function(request) {
  7792. return request.serializeBinary();
  7793. },
  7794. proto.base.StandardReply.deserializeBinary
  7795. );
  7796. /**
  7797. * @param {!proto.base.StandardRequest} request The
  7798. * request proto
  7799. * @param {?Object<string, string>} metadata User defined
  7800. * call metadata
  7801. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  7802. * callback The callback function(error, response)
  7803. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  7804. * The XHR Node Readable Stream
  7805. */
  7806. proto.base.ApiClient.prototype.orderStatistics =
  7807. function(request, metadata, callback) {
  7808. return this.client_.rpcCall(this.hostname_ +
  7809. '/base.Api/OrderStatistics',
  7810. request,
  7811. metadata || {},
  7812. methodDescriptor_Api_OrderStatistics,
  7813. callback);
  7814. };
  7815. /**
  7816. * @param {!proto.base.StandardRequest} request The
  7817. * request proto
  7818. * @param {?Object<string, string>} metadata User defined
  7819. * call metadata
  7820. * @return {!Promise<!proto.base.StandardReply>}
  7821. * Promise that resolves to the response
  7822. */
  7823. proto.base.ApiPromiseClient.prototype.orderStatistics =
  7824. function(request, metadata) {
  7825. return this.client_.unaryCall(this.hostname_ +
  7826. '/base.Api/OrderStatistics',
  7827. request,
  7828. metadata || {},
  7829. methodDescriptor_Api_OrderStatistics);
  7830. };
  7831. /**
  7832. * @const
  7833. * @type {!grpc.web.MethodDescriptor<
  7834. * !proto.base.StandardRequest,
  7835. * !proto.base.StandardReply>}
  7836. */
  7837. const methodDescriptor_Api_ClassOrderQuery = new grpc.web.MethodDescriptor(
  7838. '/base.Api/ClassOrderQuery',
  7839. grpc.web.MethodType.UNARY,
  7840. proto.base.StandardRequest,
  7841. proto.base.StandardReply,
  7842. /**
  7843. * @param {!proto.base.StandardRequest} request
  7844. * @return {!Uint8Array}
  7845. */
  7846. function(request) {
  7847. return request.serializeBinary();
  7848. },
  7849. proto.base.StandardReply.deserializeBinary
  7850. );
  7851. /**
  7852. * @const
  7853. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  7854. * !proto.base.StandardRequest,
  7855. * !proto.base.StandardReply>}
  7856. */
  7857. const methodInfo_Api_ClassOrderQuery = new grpc.web.AbstractClientBase.MethodInfo(
  7858. proto.base.StandardReply,
  7859. /**
  7860. * @param {!proto.base.StandardRequest} request
  7861. * @return {!Uint8Array}
  7862. */
  7863. function(request) {
  7864. return request.serializeBinary();
  7865. },
  7866. proto.base.StandardReply.deserializeBinary
  7867. );
  7868. /**
  7869. * @param {!proto.base.StandardRequest} request The
  7870. * request proto
  7871. * @param {?Object<string, string>} metadata User defined
  7872. * call metadata
  7873. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  7874. * callback The callback function(error, response)
  7875. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  7876. * The XHR Node Readable Stream
  7877. */
  7878. proto.base.ApiClient.prototype.classOrderQuery =
  7879. function(request, metadata, callback) {
  7880. return this.client_.rpcCall(this.hostname_ +
  7881. '/base.Api/ClassOrderQuery',
  7882. request,
  7883. metadata || {},
  7884. methodDescriptor_Api_ClassOrderQuery,
  7885. callback);
  7886. };
  7887. /**
  7888. * @param {!proto.base.StandardRequest} request The
  7889. * request proto
  7890. * @param {?Object<string, string>} metadata User defined
  7891. * call metadata
  7892. * @return {!Promise<!proto.base.StandardReply>}
  7893. * Promise that resolves to the response
  7894. */
  7895. proto.base.ApiPromiseClient.prototype.classOrderQuery =
  7896. function(request, metadata) {
  7897. return this.client_.unaryCall(this.hostname_ +
  7898. '/base.Api/ClassOrderQuery',
  7899. request,
  7900. metadata || {},
  7901. methodDescriptor_Api_ClassOrderQuery);
  7902. };
  7903. /**
  7904. * @const
  7905. * @type {!grpc.web.MethodDescriptor<
  7906. * !proto.base.StandardRequest,
  7907. * !proto.base.StandardReply>}
  7908. */
  7909. const methodDescriptor_Api_VipUserOrderQuery = new grpc.web.MethodDescriptor(
  7910. '/base.Api/VipUserOrderQuery',
  7911. grpc.web.MethodType.UNARY,
  7912. proto.base.StandardRequest,
  7913. proto.base.StandardReply,
  7914. /**
  7915. * @param {!proto.base.StandardRequest} request
  7916. * @return {!Uint8Array}
  7917. */
  7918. function(request) {
  7919. return request.serializeBinary();
  7920. },
  7921. proto.base.StandardReply.deserializeBinary
  7922. );
  7923. /**
  7924. * @const
  7925. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  7926. * !proto.base.StandardRequest,
  7927. * !proto.base.StandardReply>}
  7928. */
  7929. const methodInfo_Api_VipUserOrderQuery = new grpc.web.AbstractClientBase.MethodInfo(
  7930. proto.base.StandardReply,
  7931. /**
  7932. * @param {!proto.base.StandardRequest} request
  7933. * @return {!Uint8Array}
  7934. */
  7935. function(request) {
  7936. return request.serializeBinary();
  7937. },
  7938. proto.base.StandardReply.deserializeBinary
  7939. );
  7940. /**
  7941. * @param {!proto.base.StandardRequest} request The
  7942. * request proto
  7943. * @param {?Object<string, string>} metadata User defined
  7944. * call metadata
  7945. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  7946. * callback The callback function(error, response)
  7947. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  7948. * The XHR Node Readable Stream
  7949. */
  7950. proto.base.ApiClient.prototype.vipUserOrderQuery =
  7951. function(request, metadata, callback) {
  7952. return this.client_.rpcCall(this.hostname_ +
  7953. '/base.Api/VipUserOrderQuery',
  7954. request,
  7955. metadata || {},
  7956. methodDescriptor_Api_VipUserOrderQuery,
  7957. callback);
  7958. };
  7959. /**
  7960. * @param {!proto.base.StandardRequest} request The
  7961. * request proto
  7962. * @param {?Object<string, string>} metadata User defined
  7963. * call metadata
  7964. * @return {!Promise<!proto.base.StandardReply>}
  7965. * Promise that resolves to the response
  7966. */
  7967. proto.base.ApiPromiseClient.prototype.vipUserOrderQuery =
  7968. function(request, metadata) {
  7969. return this.client_.unaryCall(this.hostname_ +
  7970. '/base.Api/VipUserOrderQuery',
  7971. request,
  7972. metadata || {},
  7973. methodDescriptor_Api_VipUserOrderQuery);
  7974. };
  7975. /**
  7976. * @const
  7977. * @type {!grpc.web.MethodDescriptor<
  7978. * !proto.base.StandardRequest,
  7979. * !proto.base.StandardReply>}
  7980. */
  7981. const methodDescriptor_Api_UserOrderQueryByStd = new grpc.web.MethodDescriptor(
  7982. '/base.Api/UserOrderQueryByStd',
  7983. grpc.web.MethodType.UNARY,
  7984. proto.base.StandardRequest,
  7985. proto.base.StandardReply,
  7986. /**
  7987. * @param {!proto.base.StandardRequest} request
  7988. * @return {!Uint8Array}
  7989. */
  7990. function(request) {
  7991. return request.serializeBinary();
  7992. },
  7993. proto.base.StandardReply.deserializeBinary
  7994. );
  7995. /**
  7996. * @const
  7997. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  7998. * !proto.base.StandardRequest,
  7999. * !proto.base.StandardReply>}
  8000. */
  8001. const methodInfo_Api_UserOrderQueryByStd = new grpc.web.AbstractClientBase.MethodInfo(
  8002. proto.base.StandardReply,
  8003. /**
  8004. * @param {!proto.base.StandardRequest} request
  8005. * @return {!Uint8Array}
  8006. */
  8007. function(request) {
  8008. return request.serializeBinary();
  8009. },
  8010. proto.base.StandardReply.deserializeBinary
  8011. );
  8012. /**
  8013. * @param {!proto.base.StandardRequest} request The
  8014. * request proto
  8015. * @param {?Object<string, string>} metadata User defined
  8016. * call metadata
  8017. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  8018. * callback The callback function(error, response)
  8019. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  8020. * The XHR Node Readable Stream
  8021. */
  8022. proto.base.ApiClient.prototype.userOrderQueryByStd =
  8023. function(request, metadata, callback) {
  8024. return this.client_.rpcCall(this.hostname_ +
  8025. '/base.Api/UserOrderQueryByStd',
  8026. request,
  8027. metadata || {},
  8028. methodDescriptor_Api_UserOrderQueryByStd,
  8029. callback);
  8030. };
  8031. /**
  8032. * @param {!proto.base.StandardRequest} request The
  8033. * request proto
  8034. * @param {?Object<string, string>} metadata User defined
  8035. * call metadata
  8036. * @return {!Promise<!proto.base.StandardReply>}
  8037. * Promise that resolves to the response
  8038. */
  8039. proto.base.ApiPromiseClient.prototype.userOrderQueryByStd =
  8040. function(request, metadata) {
  8041. return this.client_.unaryCall(this.hostname_ +
  8042. '/base.Api/UserOrderQueryByStd',
  8043. request,
  8044. metadata || {},
  8045. methodDescriptor_Api_UserOrderQueryByStd);
  8046. };
  8047. /**
  8048. * @const
  8049. * @type {!grpc.web.MethodDescriptor<
  8050. * !proto.base.StandardRequest,
  8051. * !proto.base.StandardReply>}
  8052. */
  8053. const methodDescriptor_Api_HrSensorsPublicQuery = new grpc.web.MethodDescriptor(
  8054. '/base.Api/HrSensorsPublicQuery',
  8055. grpc.web.MethodType.UNARY,
  8056. proto.base.StandardRequest,
  8057. proto.base.StandardReply,
  8058. /**
  8059. * @param {!proto.base.StandardRequest} request
  8060. * @return {!Uint8Array}
  8061. */
  8062. function(request) {
  8063. return request.serializeBinary();
  8064. },
  8065. proto.base.StandardReply.deserializeBinary
  8066. );
  8067. /**
  8068. * @const
  8069. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  8070. * !proto.base.StandardRequest,
  8071. * !proto.base.StandardReply>}
  8072. */
  8073. const methodInfo_Api_HrSensorsPublicQuery = new grpc.web.AbstractClientBase.MethodInfo(
  8074. proto.base.StandardReply,
  8075. /**
  8076. * @param {!proto.base.StandardRequest} request
  8077. * @return {!Uint8Array}
  8078. */
  8079. function(request) {
  8080. return request.serializeBinary();
  8081. },
  8082. proto.base.StandardReply.deserializeBinary
  8083. );
  8084. /**
  8085. * @param {!proto.base.StandardRequest} request The
  8086. * request proto
  8087. * @param {?Object<string, string>} metadata User defined
  8088. * call metadata
  8089. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  8090. * callback The callback function(error, response)
  8091. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  8092. * The XHR Node Readable Stream
  8093. */
  8094. proto.base.ApiClient.prototype.hrSensorsPublicQuery =
  8095. function(request, metadata, callback) {
  8096. return this.client_.rpcCall(this.hostname_ +
  8097. '/base.Api/HrSensorsPublicQuery',
  8098. request,
  8099. metadata || {},
  8100. methodDescriptor_Api_HrSensorsPublicQuery,
  8101. callback);
  8102. };
  8103. /**
  8104. * @param {!proto.base.StandardRequest} request The
  8105. * request proto
  8106. * @param {?Object<string, string>} metadata User defined
  8107. * call metadata
  8108. * @return {!Promise<!proto.base.StandardReply>}
  8109. * Promise that resolves to the response
  8110. */
  8111. proto.base.ApiPromiseClient.prototype.hrSensorsPublicQuery =
  8112. function(request, metadata) {
  8113. return this.client_.unaryCall(this.hostname_ +
  8114. '/base.Api/HrSensorsPublicQuery',
  8115. request,
  8116. metadata || {},
  8117. methodDescriptor_Api_HrSensorsPublicQuery);
  8118. };
  8119. /**
  8120. * @const
  8121. * @type {!grpc.web.MethodDescriptor<
  8122. * !proto.base.StandardRequest,
  8123. * !proto.base.StandardReply>}
  8124. */
  8125. const methodDescriptor_Api_HrSensorsPvtQuery = new grpc.web.MethodDescriptor(
  8126. '/base.Api/HrSensorsPvtQuery',
  8127. grpc.web.MethodType.UNARY,
  8128. proto.base.StandardRequest,
  8129. proto.base.StandardReply,
  8130. /**
  8131. * @param {!proto.base.StandardRequest} request
  8132. * @return {!Uint8Array}
  8133. */
  8134. function(request) {
  8135. return request.serializeBinary();
  8136. },
  8137. proto.base.StandardReply.deserializeBinary
  8138. );
  8139. /**
  8140. * @const
  8141. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  8142. * !proto.base.StandardRequest,
  8143. * !proto.base.StandardReply>}
  8144. */
  8145. const methodInfo_Api_HrSensorsPvtQuery = new grpc.web.AbstractClientBase.MethodInfo(
  8146. proto.base.StandardReply,
  8147. /**
  8148. * @param {!proto.base.StandardRequest} request
  8149. * @return {!Uint8Array}
  8150. */
  8151. function(request) {
  8152. return request.serializeBinary();
  8153. },
  8154. proto.base.StandardReply.deserializeBinary
  8155. );
  8156. /**
  8157. * @param {!proto.base.StandardRequest} request The
  8158. * request proto
  8159. * @param {?Object<string, string>} metadata User defined
  8160. * call metadata
  8161. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  8162. * callback The callback function(error, response)
  8163. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  8164. * The XHR Node Readable Stream
  8165. */
  8166. proto.base.ApiClient.prototype.hrSensorsPvtQuery =
  8167. function(request, metadata, callback) {
  8168. return this.client_.rpcCall(this.hostname_ +
  8169. '/base.Api/HrSensorsPvtQuery',
  8170. request,
  8171. metadata || {},
  8172. methodDescriptor_Api_HrSensorsPvtQuery,
  8173. callback);
  8174. };
  8175. /**
  8176. * @param {!proto.base.StandardRequest} request The
  8177. * request proto
  8178. * @param {?Object<string, string>} metadata User defined
  8179. * call metadata
  8180. * @return {!Promise<!proto.base.StandardReply>}
  8181. * Promise that resolves to the response
  8182. */
  8183. proto.base.ApiPromiseClient.prototype.hrSensorsPvtQuery =
  8184. function(request, metadata) {
  8185. return this.client_.unaryCall(this.hostname_ +
  8186. '/base.Api/HrSensorsPvtQuery',
  8187. request,
  8188. metadata || {},
  8189. methodDescriptor_Api_HrSensorsPvtQuery);
  8190. };
  8191. /**
  8192. * @const
  8193. * @type {!grpc.web.MethodDescriptor<
  8194. * !proto.base.StandardRequest,
  8195. * !proto.base.StandardReply>}
  8196. */
  8197. const methodDescriptor_Api_AddHrSensors = new grpc.web.MethodDescriptor(
  8198. '/base.Api/AddHrSensors',
  8199. grpc.web.MethodType.UNARY,
  8200. proto.base.StandardRequest,
  8201. proto.base.StandardReply,
  8202. /**
  8203. * @param {!proto.base.StandardRequest} request
  8204. * @return {!Uint8Array}
  8205. */
  8206. function(request) {
  8207. return request.serializeBinary();
  8208. },
  8209. proto.base.StandardReply.deserializeBinary
  8210. );
  8211. /**
  8212. * @const
  8213. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  8214. * !proto.base.StandardRequest,
  8215. * !proto.base.StandardReply>}
  8216. */
  8217. const methodInfo_Api_AddHrSensors = new grpc.web.AbstractClientBase.MethodInfo(
  8218. proto.base.StandardReply,
  8219. /**
  8220. * @param {!proto.base.StandardRequest} request
  8221. * @return {!Uint8Array}
  8222. */
  8223. function(request) {
  8224. return request.serializeBinary();
  8225. },
  8226. proto.base.StandardReply.deserializeBinary
  8227. );
  8228. /**
  8229. * @param {!proto.base.StandardRequest} request The
  8230. * request proto
  8231. * @param {?Object<string, string>} metadata User defined
  8232. * call metadata
  8233. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  8234. * callback The callback function(error, response)
  8235. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  8236. * The XHR Node Readable Stream
  8237. */
  8238. proto.base.ApiClient.prototype.addHrSensors =
  8239. function(request, metadata, callback) {
  8240. return this.client_.rpcCall(this.hostname_ +
  8241. '/base.Api/AddHrSensors',
  8242. request,
  8243. metadata || {},
  8244. methodDescriptor_Api_AddHrSensors,
  8245. callback);
  8246. };
  8247. /**
  8248. * @param {!proto.base.StandardRequest} request The
  8249. * request proto
  8250. * @param {?Object<string, string>} metadata User defined
  8251. * call metadata
  8252. * @return {!Promise<!proto.base.StandardReply>}
  8253. * Promise that resolves to the response
  8254. */
  8255. proto.base.ApiPromiseClient.prototype.addHrSensors =
  8256. function(request, metadata) {
  8257. return this.client_.unaryCall(this.hostname_ +
  8258. '/base.Api/AddHrSensors',
  8259. request,
  8260. metadata || {},
  8261. methodDescriptor_Api_AddHrSensors);
  8262. };
  8263. /**
  8264. * @const
  8265. * @type {!grpc.web.MethodDescriptor<
  8266. * !proto.base.StandardRequest,
  8267. * !proto.base.StandardReply>}
  8268. */
  8269. const methodDescriptor_Api_AddPvtHrSensors = new grpc.web.MethodDescriptor(
  8270. '/base.Api/AddPvtHrSensors',
  8271. grpc.web.MethodType.UNARY,
  8272. proto.base.StandardRequest,
  8273. proto.base.StandardReply,
  8274. /**
  8275. * @param {!proto.base.StandardRequest} request
  8276. * @return {!Uint8Array}
  8277. */
  8278. function(request) {
  8279. return request.serializeBinary();
  8280. },
  8281. proto.base.StandardReply.deserializeBinary
  8282. );
  8283. /**
  8284. * @const
  8285. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  8286. * !proto.base.StandardRequest,
  8287. * !proto.base.StandardReply>}
  8288. */
  8289. const methodInfo_Api_AddPvtHrSensors = new grpc.web.AbstractClientBase.MethodInfo(
  8290. proto.base.StandardReply,
  8291. /**
  8292. * @param {!proto.base.StandardRequest} request
  8293. * @return {!Uint8Array}
  8294. */
  8295. function(request) {
  8296. return request.serializeBinary();
  8297. },
  8298. proto.base.StandardReply.deserializeBinary
  8299. );
  8300. /**
  8301. * @param {!proto.base.StandardRequest} request The
  8302. * request proto
  8303. * @param {?Object<string, string>} metadata User defined
  8304. * call metadata
  8305. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  8306. * callback The callback function(error, response)
  8307. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  8308. * The XHR Node Readable Stream
  8309. */
  8310. proto.base.ApiClient.prototype.addPvtHrSensors =
  8311. function(request, metadata, callback) {
  8312. return this.client_.rpcCall(this.hostname_ +
  8313. '/base.Api/AddPvtHrSensors',
  8314. request,
  8315. metadata || {},
  8316. methodDescriptor_Api_AddPvtHrSensors,
  8317. callback);
  8318. };
  8319. /**
  8320. * @param {!proto.base.StandardRequest} request The
  8321. * request proto
  8322. * @param {?Object<string, string>} metadata User defined
  8323. * call metadata
  8324. * @return {!Promise<!proto.base.StandardReply>}
  8325. * Promise that resolves to the response
  8326. */
  8327. proto.base.ApiPromiseClient.prototype.addPvtHrSensors =
  8328. function(request, metadata) {
  8329. return this.client_.unaryCall(this.hostname_ +
  8330. '/base.Api/AddPvtHrSensors',
  8331. request,
  8332. metadata || {},
  8333. methodDescriptor_Api_AddPvtHrSensors);
  8334. };
  8335. /**
  8336. * @const
  8337. * @type {!grpc.web.MethodDescriptor<
  8338. * !proto.base.StandardRequest,
  8339. * !proto.base.StandardReply>}
  8340. */
  8341. const methodDescriptor_Api_EditHrSensors = new grpc.web.MethodDescriptor(
  8342. '/base.Api/EditHrSensors',
  8343. grpc.web.MethodType.UNARY,
  8344. proto.base.StandardRequest,
  8345. proto.base.StandardReply,
  8346. /**
  8347. * @param {!proto.base.StandardRequest} request
  8348. * @return {!Uint8Array}
  8349. */
  8350. function(request) {
  8351. return request.serializeBinary();
  8352. },
  8353. proto.base.StandardReply.deserializeBinary
  8354. );
  8355. /**
  8356. * @const
  8357. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  8358. * !proto.base.StandardRequest,
  8359. * !proto.base.StandardReply>}
  8360. */
  8361. const methodInfo_Api_EditHrSensors = new grpc.web.AbstractClientBase.MethodInfo(
  8362. proto.base.StandardReply,
  8363. /**
  8364. * @param {!proto.base.StandardRequest} request
  8365. * @return {!Uint8Array}
  8366. */
  8367. function(request) {
  8368. return request.serializeBinary();
  8369. },
  8370. proto.base.StandardReply.deserializeBinary
  8371. );
  8372. /**
  8373. * @param {!proto.base.StandardRequest} request The
  8374. * request proto
  8375. * @param {?Object<string, string>} metadata User defined
  8376. * call metadata
  8377. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  8378. * callback The callback function(error, response)
  8379. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  8380. * The XHR Node Readable Stream
  8381. */
  8382. proto.base.ApiClient.prototype.editHrSensors =
  8383. function(request, metadata, callback) {
  8384. return this.client_.rpcCall(this.hostname_ +
  8385. '/base.Api/EditHrSensors',
  8386. request,
  8387. metadata || {},
  8388. methodDescriptor_Api_EditHrSensors,
  8389. callback);
  8390. };
  8391. /**
  8392. * @param {!proto.base.StandardRequest} request The
  8393. * request proto
  8394. * @param {?Object<string, string>} metadata User defined
  8395. * call metadata
  8396. * @return {!Promise<!proto.base.StandardReply>}
  8397. * Promise that resolves to the response
  8398. */
  8399. proto.base.ApiPromiseClient.prototype.editHrSensors =
  8400. function(request, metadata) {
  8401. return this.client_.unaryCall(this.hostname_ +
  8402. '/base.Api/EditHrSensors',
  8403. request,
  8404. metadata || {},
  8405. methodDescriptor_Api_EditHrSensors);
  8406. };
  8407. /**
  8408. * @const
  8409. * @type {!grpc.web.MethodDescriptor<
  8410. * !proto.base.StandardRequest,
  8411. * !proto.base.StandardReply>}
  8412. */
  8413. const methodDescriptor_Api_HrSensorsDel = new grpc.web.MethodDescriptor(
  8414. '/base.Api/HrSensorsDel',
  8415. grpc.web.MethodType.UNARY,
  8416. proto.base.StandardRequest,
  8417. proto.base.StandardReply,
  8418. /**
  8419. * @param {!proto.base.StandardRequest} request
  8420. * @return {!Uint8Array}
  8421. */
  8422. function(request) {
  8423. return request.serializeBinary();
  8424. },
  8425. proto.base.StandardReply.deserializeBinary
  8426. );
  8427. /**
  8428. * @const
  8429. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  8430. * !proto.base.StandardRequest,
  8431. * !proto.base.StandardReply>}
  8432. */
  8433. const methodInfo_Api_HrSensorsDel = new grpc.web.AbstractClientBase.MethodInfo(
  8434. proto.base.StandardReply,
  8435. /**
  8436. * @param {!proto.base.StandardRequest} request
  8437. * @return {!Uint8Array}
  8438. */
  8439. function(request) {
  8440. return request.serializeBinary();
  8441. },
  8442. proto.base.StandardReply.deserializeBinary
  8443. );
  8444. /**
  8445. * @param {!proto.base.StandardRequest} request The
  8446. * request proto
  8447. * @param {?Object<string, string>} metadata User defined
  8448. * call metadata
  8449. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  8450. * callback The callback function(error, response)
  8451. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  8452. * The XHR Node Readable Stream
  8453. */
  8454. proto.base.ApiClient.prototype.hrSensorsDel =
  8455. function(request, metadata, callback) {
  8456. return this.client_.rpcCall(this.hostname_ +
  8457. '/base.Api/HrSensorsDel',
  8458. request,
  8459. metadata || {},
  8460. methodDescriptor_Api_HrSensorsDel,
  8461. callback);
  8462. };
  8463. /**
  8464. * @param {!proto.base.StandardRequest} request The
  8465. * request proto
  8466. * @param {?Object<string, string>} metadata User defined
  8467. * call metadata
  8468. * @return {!Promise<!proto.base.StandardReply>}
  8469. * Promise that resolves to the response
  8470. */
  8471. proto.base.ApiPromiseClient.prototype.hrSensorsDel =
  8472. function(request, metadata) {
  8473. return this.client_.unaryCall(this.hostname_ +
  8474. '/base.Api/HrSensorsDel',
  8475. request,
  8476. metadata || {},
  8477. methodDescriptor_Api_HrSensorsDel);
  8478. };
  8479. /**
  8480. * @const
  8481. * @type {!grpc.web.MethodDescriptor<
  8482. * !proto.base.StandardRequest,
  8483. * !proto.base.StandardReply>}
  8484. */
  8485. const methodDescriptor_Api_PKGroupChg = new grpc.web.MethodDescriptor(
  8486. '/base.Api/PKGroupChg',
  8487. grpc.web.MethodType.UNARY,
  8488. proto.base.StandardRequest,
  8489. proto.base.StandardReply,
  8490. /**
  8491. * @param {!proto.base.StandardRequest} request
  8492. * @return {!Uint8Array}
  8493. */
  8494. function(request) {
  8495. return request.serializeBinary();
  8496. },
  8497. proto.base.StandardReply.deserializeBinary
  8498. );
  8499. /**
  8500. * @const
  8501. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  8502. * !proto.base.StandardRequest,
  8503. * !proto.base.StandardReply>}
  8504. */
  8505. const methodInfo_Api_PKGroupChg = new grpc.web.AbstractClientBase.MethodInfo(
  8506. proto.base.StandardReply,
  8507. /**
  8508. * @param {!proto.base.StandardRequest} request
  8509. * @return {!Uint8Array}
  8510. */
  8511. function(request) {
  8512. return request.serializeBinary();
  8513. },
  8514. proto.base.StandardReply.deserializeBinary
  8515. );
  8516. /**
  8517. * @param {!proto.base.StandardRequest} request The
  8518. * request proto
  8519. * @param {?Object<string, string>} metadata User defined
  8520. * call metadata
  8521. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  8522. * callback The callback function(error, response)
  8523. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  8524. * The XHR Node Readable Stream
  8525. */
  8526. proto.base.ApiClient.prototype.pKGroupChg =
  8527. function(request, metadata, callback) {
  8528. return this.client_.rpcCall(this.hostname_ +
  8529. '/base.Api/PKGroupChg',
  8530. request,
  8531. metadata || {},
  8532. methodDescriptor_Api_PKGroupChg,
  8533. callback);
  8534. };
  8535. /**
  8536. * @param {!proto.base.StandardRequest} request The
  8537. * request proto
  8538. * @param {?Object<string, string>} metadata User defined
  8539. * call metadata
  8540. * @return {!Promise<!proto.base.StandardReply>}
  8541. * Promise that resolves to the response
  8542. */
  8543. proto.base.ApiPromiseClient.prototype.pKGroupChg =
  8544. function(request, metadata) {
  8545. return this.client_.unaryCall(this.hostname_ +
  8546. '/base.Api/PKGroupChg',
  8547. request,
  8548. metadata || {},
  8549. methodDescriptor_Api_PKGroupChg);
  8550. };
  8551. /**
  8552. * @const
  8553. * @type {!grpc.web.MethodDescriptor<
  8554. * !proto.base.StandardRequest,
  8555. * !proto.base.StandardReply>}
  8556. */
  8557. const methodDescriptor_Api_BindHrSensor = new grpc.web.MethodDescriptor(
  8558. '/base.Api/BindHrSensor',
  8559. grpc.web.MethodType.UNARY,
  8560. proto.base.StandardRequest,
  8561. proto.base.StandardReply,
  8562. /**
  8563. * @param {!proto.base.StandardRequest} request
  8564. * @return {!Uint8Array}
  8565. */
  8566. function(request) {
  8567. return request.serializeBinary();
  8568. },
  8569. proto.base.StandardReply.deserializeBinary
  8570. );
  8571. /**
  8572. * @const
  8573. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  8574. * !proto.base.StandardRequest,
  8575. * !proto.base.StandardReply>}
  8576. */
  8577. const methodInfo_Api_BindHrSensor = new grpc.web.AbstractClientBase.MethodInfo(
  8578. proto.base.StandardReply,
  8579. /**
  8580. * @param {!proto.base.StandardRequest} request
  8581. * @return {!Uint8Array}
  8582. */
  8583. function(request) {
  8584. return request.serializeBinary();
  8585. },
  8586. proto.base.StandardReply.deserializeBinary
  8587. );
  8588. /**
  8589. * @param {!proto.base.StandardRequest} request The
  8590. * request proto
  8591. * @param {?Object<string, string>} metadata User defined
  8592. * call metadata
  8593. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  8594. * callback The callback function(error, response)
  8595. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  8596. * The XHR Node Readable Stream
  8597. */
  8598. proto.base.ApiClient.prototype.bindHrSensor =
  8599. function(request, metadata, callback) {
  8600. return this.client_.rpcCall(this.hostname_ +
  8601. '/base.Api/BindHrSensor',
  8602. request,
  8603. metadata || {},
  8604. methodDescriptor_Api_BindHrSensor,
  8605. callback);
  8606. };
  8607. /**
  8608. * @param {!proto.base.StandardRequest} request The
  8609. * request proto
  8610. * @param {?Object<string, string>} metadata User defined
  8611. * call metadata
  8612. * @return {!Promise<!proto.base.StandardReply>}
  8613. * Promise that resolves to the response
  8614. */
  8615. proto.base.ApiPromiseClient.prototype.bindHrSensor =
  8616. function(request, metadata) {
  8617. return this.client_.unaryCall(this.hostname_ +
  8618. '/base.Api/BindHrSensor',
  8619. request,
  8620. metadata || {},
  8621. methodDescriptor_Api_BindHrSensor);
  8622. };
  8623. /**
  8624. * @const
  8625. * @type {!grpc.web.MethodDescriptor<
  8626. * !proto.base.StandardRequest,
  8627. * !proto.base.StandardReply>}
  8628. */
  8629. const methodDescriptor_Api_UnBindHrSensor = new grpc.web.MethodDescriptor(
  8630. '/base.Api/UnBindHrSensor',
  8631. grpc.web.MethodType.UNARY,
  8632. proto.base.StandardRequest,
  8633. proto.base.StandardReply,
  8634. /**
  8635. * @param {!proto.base.StandardRequest} request
  8636. * @return {!Uint8Array}
  8637. */
  8638. function(request) {
  8639. return request.serializeBinary();
  8640. },
  8641. proto.base.StandardReply.deserializeBinary
  8642. );
  8643. /**
  8644. * @const
  8645. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  8646. * !proto.base.StandardRequest,
  8647. * !proto.base.StandardReply>}
  8648. */
  8649. const methodInfo_Api_UnBindHrSensor = new grpc.web.AbstractClientBase.MethodInfo(
  8650. proto.base.StandardReply,
  8651. /**
  8652. * @param {!proto.base.StandardRequest} request
  8653. * @return {!Uint8Array}
  8654. */
  8655. function(request) {
  8656. return request.serializeBinary();
  8657. },
  8658. proto.base.StandardReply.deserializeBinary
  8659. );
  8660. /**
  8661. * @param {!proto.base.StandardRequest} request The
  8662. * request proto
  8663. * @param {?Object<string, string>} metadata User defined
  8664. * call metadata
  8665. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  8666. * callback The callback function(error, response)
  8667. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  8668. * The XHR Node Readable Stream
  8669. */
  8670. proto.base.ApiClient.prototype.unBindHrSensor =
  8671. function(request, metadata, callback) {
  8672. return this.client_.rpcCall(this.hostname_ +
  8673. '/base.Api/UnBindHrSensor',
  8674. request,
  8675. metadata || {},
  8676. methodDescriptor_Api_UnBindHrSensor,
  8677. callback);
  8678. };
  8679. /**
  8680. * @param {!proto.base.StandardRequest} request The
  8681. * request proto
  8682. * @param {?Object<string, string>} metadata User defined
  8683. * call metadata
  8684. * @return {!Promise<!proto.base.StandardReply>}
  8685. * Promise that resolves to the response
  8686. */
  8687. proto.base.ApiPromiseClient.prototype.unBindHrSensor =
  8688. function(request, metadata) {
  8689. return this.client_.unaryCall(this.hostname_ +
  8690. '/base.Api/UnBindHrSensor',
  8691. request,
  8692. metadata || {},
  8693. methodDescriptor_Api_UnBindHrSensor);
  8694. };
  8695. /**
  8696. * @const
  8697. * @type {!grpc.web.MethodDescriptor<
  8698. * !proto.base.StandardRequest,
  8699. * !proto.base.StandardReply>}
  8700. */
  8701. const methodDescriptor_Api_ActionQuery = new grpc.web.MethodDescriptor(
  8702. '/base.Api/ActionQuery',
  8703. grpc.web.MethodType.UNARY,
  8704. proto.base.StandardRequest,
  8705. proto.base.StandardReply,
  8706. /**
  8707. * @param {!proto.base.StandardRequest} request
  8708. * @return {!Uint8Array}
  8709. */
  8710. function(request) {
  8711. return request.serializeBinary();
  8712. },
  8713. proto.base.StandardReply.deserializeBinary
  8714. );
  8715. /**
  8716. * @const
  8717. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  8718. * !proto.base.StandardRequest,
  8719. * !proto.base.StandardReply>}
  8720. */
  8721. const methodInfo_Api_ActionQuery = new grpc.web.AbstractClientBase.MethodInfo(
  8722. proto.base.StandardReply,
  8723. /**
  8724. * @param {!proto.base.StandardRequest} request
  8725. * @return {!Uint8Array}
  8726. */
  8727. function(request) {
  8728. return request.serializeBinary();
  8729. },
  8730. proto.base.StandardReply.deserializeBinary
  8731. );
  8732. /**
  8733. * @param {!proto.base.StandardRequest} request The
  8734. * request proto
  8735. * @param {?Object<string, string>} metadata User defined
  8736. * call metadata
  8737. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  8738. * callback The callback function(error, response)
  8739. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  8740. * The XHR Node Readable Stream
  8741. */
  8742. proto.base.ApiClient.prototype.actionQuery =
  8743. function(request, metadata, callback) {
  8744. return this.client_.rpcCall(this.hostname_ +
  8745. '/base.Api/ActionQuery',
  8746. request,
  8747. metadata || {},
  8748. methodDescriptor_Api_ActionQuery,
  8749. callback);
  8750. };
  8751. /**
  8752. * @param {!proto.base.StandardRequest} request The
  8753. * request proto
  8754. * @param {?Object<string, string>} metadata User defined
  8755. * call metadata
  8756. * @return {!Promise<!proto.base.StandardReply>}
  8757. * Promise that resolves to the response
  8758. */
  8759. proto.base.ApiPromiseClient.prototype.actionQuery =
  8760. function(request, metadata) {
  8761. return this.client_.unaryCall(this.hostname_ +
  8762. '/base.Api/ActionQuery',
  8763. request,
  8764. metadata || {},
  8765. methodDescriptor_Api_ActionQuery);
  8766. };
  8767. /**
  8768. * @const
  8769. * @type {!grpc.web.MethodDescriptor<
  8770. * !proto.base.GenVerifyImageRequest,
  8771. * !proto.base.GenVerifyImageReply>}
  8772. */
  8773. const methodDescriptor_Api_GenVerifyImageByWinXin = new grpc.web.MethodDescriptor(
  8774. '/base.Api/GenVerifyImageByWinXin',
  8775. grpc.web.MethodType.UNARY,
  8776. proto.base.GenVerifyImageRequest,
  8777. proto.base.GenVerifyImageReply,
  8778. /**
  8779. * @param {!proto.base.GenVerifyImageRequest} request
  8780. * @return {!Uint8Array}
  8781. */
  8782. function(request) {
  8783. return request.serializeBinary();
  8784. },
  8785. proto.base.GenVerifyImageReply.deserializeBinary
  8786. );
  8787. /**
  8788. * @const
  8789. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  8790. * !proto.base.GenVerifyImageRequest,
  8791. * !proto.base.GenVerifyImageReply>}
  8792. */
  8793. const methodInfo_Api_GenVerifyImageByWinXin = new grpc.web.AbstractClientBase.MethodInfo(
  8794. proto.base.GenVerifyImageReply,
  8795. /**
  8796. * @param {!proto.base.GenVerifyImageRequest} request
  8797. * @return {!Uint8Array}
  8798. */
  8799. function(request) {
  8800. return request.serializeBinary();
  8801. },
  8802. proto.base.GenVerifyImageReply.deserializeBinary
  8803. );
  8804. /**
  8805. * @param {!proto.base.GenVerifyImageRequest} request The
  8806. * request proto
  8807. * @param {?Object<string, string>} metadata User defined
  8808. * call metadata
  8809. * @param {function(?grpc.web.Error, ?proto.base.GenVerifyImageReply)}
  8810. * callback The callback function(error, response)
  8811. * @return {!grpc.web.ClientReadableStream<!proto.base.GenVerifyImageReply>|undefined}
  8812. * The XHR Node Readable Stream
  8813. */
  8814. proto.base.ApiClient.prototype.genVerifyImageByWinXin =
  8815. function(request, metadata, callback) {
  8816. return this.client_.rpcCall(this.hostname_ +
  8817. '/base.Api/GenVerifyImageByWinXin',
  8818. request,
  8819. metadata || {},
  8820. methodDescriptor_Api_GenVerifyImageByWinXin,
  8821. callback);
  8822. };
  8823. /**
  8824. * @param {!proto.base.GenVerifyImageRequest} request The
  8825. * request proto
  8826. * @param {?Object<string, string>} metadata User defined
  8827. * call metadata
  8828. * @return {!Promise<!proto.base.GenVerifyImageReply>}
  8829. * Promise that resolves to the response
  8830. */
  8831. proto.base.ApiPromiseClient.prototype.genVerifyImageByWinXin =
  8832. function(request, metadata) {
  8833. return this.client_.unaryCall(this.hostname_ +
  8834. '/base.Api/GenVerifyImageByWinXin',
  8835. request,
  8836. metadata || {},
  8837. methodDescriptor_Api_GenVerifyImageByWinXin);
  8838. };
  8839. /**
  8840. * @const
  8841. * @type {!grpc.web.MethodDescriptor<
  8842. * !proto.base.GenPhoneVerifyCodeRequestWX,
  8843. * !proto.base.StandardReply>}
  8844. */
  8845. const methodDescriptor_Api_GenPhoneVerifyCodeByWeiXin = new grpc.web.MethodDescriptor(
  8846. '/base.Api/GenPhoneVerifyCodeByWeiXin',
  8847. grpc.web.MethodType.UNARY,
  8848. proto.base.GenPhoneVerifyCodeRequestWX,
  8849. proto.base.StandardReply,
  8850. /**
  8851. * @param {!proto.base.GenPhoneVerifyCodeRequestWX} request
  8852. * @return {!Uint8Array}
  8853. */
  8854. function(request) {
  8855. return request.serializeBinary();
  8856. },
  8857. proto.base.StandardReply.deserializeBinary
  8858. );
  8859. /**
  8860. * @const
  8861. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  8862. * !proto.base.GenPhoneVerifyCodeRequestWX,
  8863. * !proto.base.StandardReply>}
  8864. */
  8865. const methodInfo_Api_GenPhoneVerifyCodeByWeiXin = new grpc.web.AbstractClientBase.MethodInfo(
  8866. proto.base.StandardReply,
  8867. /**
  8868. * @param {!proto.base.GenPhoneVerifyCodeRequestWX} request
  8869. * @return {!Uint8Array}
  8870. */
  8871. function(request) {
  8872. return request.serializeBinary();
  8873. },
  8874. proto.base.StandardReply.deserializeBinary
  8875. );
  8876. /**
  8877. * @param {!proto.base.GenPhoneVerifyCodeRequestWX} request The
  8878. * request proto
  8879. * @param {?Object<string, string>} metadata User defined
  8880. * call metadata
  8881. * @param {function(?grpc.web.Error, ?proto.base.StandardReply)}
  8882. * callback The callback function(error, response)
  8883. * @return {!grpc.web.ClientReadableStream<!proto.base.StandardReply>|undefined}
  8884. * The XHR Node Readable Stream
  8885. */
  8886. proto.base.ApiClient.prototype.genPhoneVerifyCodeByWeiXin =
  8887. function(request, metadata, callback) {
  8888. return this.client_.rpcCall(this.hostname_ +
  8889. '/base.Api/GenPhoneVerifyCodeByWeiXin',
  8890. request,
  8891. metadata || {},
  8892. methodDescriptor_Api_GenPhoneVerifyCodeByWeiXin,
  8893. callback);
  8894. };
  8895. /**
  8896. * @param {!proto.base.GenPhoneVerifyCodeRequestWX} request The
  8897. * request proto
  8898. * @param {?Object<string, string>} metadata User defined
  8899. * call metadata
  8900. * @return {!Promise<!proto.base.StandardReply>}
  8901. * Promise that resolves to the response
  8902. */
  8903. proto.base.ApiPromiseClient.prototype.genPhoneVerifyCodeByWeiXin =
  8904. function(request, metadata) {
  8905. return this.client_.unaryCall(this.hostname_ +
  8906. '/base.Api/GenPhoneVerifyCodeByWeiXin',
  8907. request,
  8908. metadata || {},
  8909. methodDescriptor_Api_GenPhoneVerifyCodeByWeiXin);
  8910. };
  8911. /**
  8912. * @const
  8913. * @type {!grpc.web.MethodDescriptor<
  8914. * !proto.base.CheckVerifyCodeRequest,
  8915. * !proto.base.DefaultReply>}
  8916. */
  8917. const methodDescriptor_Api_CheckVerifyCode = new grpc.web.MethodDescriptor(
  8918. '/base.Api/CheckVerifyCode',
  8919. grpc.web.MethodType.UNARY,
  8920. proto.base.CheckVerifyCodeRequest,
  8921. proto.base.DefaultReply,
  8922. /**
  8923. * @param {!proto.base.CheckVerifyCodeRequest} request
  8924. * @return {!Uint8Array}
  8925. */
  8926. function(request) {
  8927. return request.serializeBinary();
  8928. },
  8929. proto.base.DefaultReply.deserializeBinary
  8930. );
  8931. /**
  8932. * @const
  8933. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  8934. * !proto.base.CheckVerifyCodeRequest,
  8935. * !proto.base.DefaultReply>}
  8936. */
  8937. const methodInfo_Api_CheckVerifyCode = new grpc.web.AbstractClientBase.MethodInfo(
  8938. proto.base.DefaultReply,
  8939. /**
  8940. * @param {!proto.base.CheckVerifyCodeRequest} request
  8941. * @return {!Uint8Array}
  8942. */
  8943. function(request) {
  8944. return request.serializeBinary();
  8945. },
  8946. proto.base.DefaultReply.deserializeBinary
  8947. );
  8948. /**
  8949. * @param {!proto.base.CheckVerifyCodeRequest} request The
  8950. * request proto
  8951. * @param {?Object<string, string>} metadata User defined
  8952. * call metadata
  8953. * @param {function(?grpc.web.Error, ?proto.base.DefaultReply)}
  8954. * callback The callback function(error, response)
  8955. * @return {!grpc.web.ClientReadableStream<!proto.base.DefaultReply>|undefined}
  8956. * The XHR Node Readable Stream
  8957. */
  8958. proto.base.ApiClient.prototype.checkVerifyCode =
  8959. function(request, metadata, callback) {
  8960. return this.client_.rpcCall(this.hostname_ +
  8961. '/base.Api/CheckVerifyCode',
  8962. request,
  8963. metadata || {},
  8964. methodDescriptor_Api_CheckVerifyCode,
  8965. callback);
  8966. };
  8967. /**
  8968. * @param {!proto.base.CheckVerifyCodeRequest} request The
  8969. * request proto
  8970. * @param {?Object<string, string>} metadata User defined
  8971. * call metadata
  8972. * @return {!Promise<!proto.base.DefaultReply>}
  8973. * Promise that resolves to the response
  8974. */
  8975. proto.base.ApiPromiseClient.prototype.checkVerifyCode =
  8976. function(request, metadata) {
  8977. return this.client_.unaryCall(this.hostname_ +
  8978. '/base.Api/CheckVerifyCode',
  8979. request,
  8980. metadata || {},
  8981. methodDescriptor_Api_CheckVerifyCode);
  8982. };
  8983. /**
  8984. * @const
  8985. * @type {!grpc.web.MethodDescriptor<
  8986. * !proto.base.WeiXinSignInRequest,
  8987. * !proto.base.SignInReply>}
  8988. */
  8989. const methodDescriptor_Api_WeiXinSignIn = new grpc.web.MethodDescriptor(
  8990. '/base.Api/WeiXinSignIn',
  8991. grpc.web.MethodType.UNARY,
  8992. proto.base.WeiXinSignInRequest,
  8993. proto.base.SignInReply,
  8994. /**
  8995. * @param {!proto.base.WeiXinSignInRequest} request
  8996. * @return {!Uint8Array}
  8997. */
  8998. function(request) {
  8999. return request.serializeBinary();
  9000. },
  9001. proto.base.SignInReply.deserializeBinary
  9002. );
  9003. /**
  9004. * @const
  9005. * @type {!grpc.web.AbstractClientBase.MethodInfo<
  9006. * !proto.base.WeiXinSignInRequest,
  9007. * !proto.base.SignInReply>}
  9008. */
  9009. const methodInfo_Api_WeiXinSignIn = new grpc.web.AbstractClientBase.MethodInfo(
  9010. proto.base.SignInReply,
  9011. /**
  9012. * @param {!proto.base.WeiXinSignInRequest} request
  9013. * @return {!Uint8Array}
  9014. */
  9015. function(request) {
  9016. return request.serializeBinary();
  9017. },
  9018. proto.base.SignInReply.deserializeBinary
  9019. );
  9020. /**
  9021. * @param {!proto.base.WeiXinSignInRequest} request The
  9022. * request proto
  9023. * @param {?Object<string, string>} metadata User defined
  9024. * call metadata
  9025. * @param {function(?grpc.web.Error, ?proto.base.SignInReply)}
  9026. * callback The callback function(error, response)
  9027. * @return {!grpc.web.ClientReadableStream<!proto.base.SignInReply>|undefined}
  9028. * The XHR Node Readable Stream
  9029. */
  9030. proto.base.ApiClient.prototype.weiXinSignIn =
  9031. function(request, metadata, callback) {
  9032. return this.client_.rpcCall(this.hostname_ +
  9033. '/base.Api/WeiXinSignIn',
  9034. request,
  9035. metadata || {},
  9036. methodDescriptor_Api_WeiXinSignIn,
  9037. callback);
  9038. };
  9039. /**
  9040. * @param {!proto.base.WeiXinSignInRequest} request The
  9041. * request proto
  9042. * @param {?Object<string, string>} metadata User defined
  9043. * call metadata
  9044. * @return {!Promise<!proto.base.SignInReply>}
  9045. * Promise that resolves to the response
  9046. */
  9047. proto.base.ApiPromiseClient.prototype.weiXinSignIn =
  9048. function(request, metadata) {
  9049. return this.client_.unaryCall(this.hostname_ +
  9050. '/base.Api/WeiXinSignIn',
  9051. request,
  9052. metadata || {},
  9053. methodDescriptor_Api_WeiXinSignIn);
  9054. };
  9055. module.exports = proto.base;