Skip to main content

@smol/gram@2.3.0
Built and signed on GitHub Actions

Tiny (smol) Telegram Bot API client library with TypeScript types

This package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers
This package works with Cloudflare Workers
This package works with Node.js
This package works with Deno
This package works with Bun
This package works with Browsers
JSR Score
100%
Published
2 months ago (2.3.0)
Package root>TgApi.ts
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749
// This file is auto-generated, do not edit it directly. export const TG_API_VERSION = "Bot API 7.8" as const; export interface TgApi<O = {}> { /** * Use this method to receive incoming updates using long polling (wiki). Returns an Array of Update objects. * * @see https://core.telegram.org/bots/api#getupdates */ getUpdates(params?: TgGetUpdatesParams | null | undefined, options?: O): Promise<TgUpdate[]>; /** * Use this method to specify a URL and receive incoming updates via an outgoing webhook. Whenever there is an update for the bot, we will send an HTTPS POST request to the specified URL, containing a JSON-serialized Update. In case of an unsuccessful request, we will give up after a reasonable amount of attempts. Returns True on success. * * If you'd like to make sure that the webhook was set by you, you can specify secret data in the parameter secret_token. If specified, the request will contain a header "X-Telegram-Bot-Api-Secret-Token" with the secret token as content. * * @see https://core.telegram.org/bots/api#setwebhook */ setWebhook(params: TgSetWebhookParams, options?: O): Promise<boolean>; /** * Use this method to remove webhook integration if you decide to switch back to getUpdates. Returns True on success. * * @see https://core.telegram.org/bots/api#deletewebhook */ deleteWebhook(params?: TgDeleteWebhookParams | null | undefined, options?: O): Promise<boolean>; /** * Use this method to get current webhook status. Requires no parameters. On success, returns a WebhookInfo object. If the bot is using getUpdates, will return an object with the url field empty. * * @see https://core.telegram.org/bots/api#getwebhookinfo */ getWebhookInfo(params?: null | undefined, options?: O): Promise<TgWebhookInfo>; /** * A simple method for testing your bot's authentication token. Requires no parameters. Returns basic information about the bot in form of a User object. * * @see https://core.telegram.org/bots/api#getme */ getMe(params?: null | undefined, options?: O): Promise<TgUser>; /** * Use this method to log out from the cloud Bot API server before launching the bot locally. You must log out the bot before running it locally, otherwise there is no guarantee that the bot will receive updates. After a successful call, you can immediately log in on a local server, but will not be able to log in back to the cloud Bot API server for 10 minutes. Returns True on success. Requires no parameters. * * @see https://core.telegram.org/bots/api#logout */ logOut(params?: null | undefined, options?: O): Promise<boolean>; /** * Use this method to close the bot instance before moving it from one local server to another. You need to delete the webhook before calling this method to ensure that the bot isn't launched again after server restart. The method will return error 429 in the first 10 minutes after the bot is launched. Returns True on success. Requires no parameters. * * @see https://core.telegram.org/bots/api#close */ close(params?: null | undefined, options?: O): Promise<boolean>; /** * Use this method to send text messages. On success, the sent Message is returned. * * @see https://core.telegram.org/bots/api#sendmessage */ sendMessage(params: TgSendMessageParams, options?: O): Promise<TgMessage>; /** * Use this method to forward messages of any kind. Service messages and messages with protected content can't be forwarded. On success, the sent Message is returned. * * @see https://core.telegram.org/bots/api#forwardmessage */ forwardMessage(params: TgForwardMessageParams, options?: O): Promise<TgMessage>; /** * Use this method to forward multiple messages of any kind. If some of the specified messages can't be found or forwarded, they are skipped. Service messages and messages with protected content can't be forwarded. Album grouping is kept for forwarded messages. On success, an array of MessageId of the sent messages is returned. * * @see https://core.telegram.org/bots/api#forwardmessages */ forwardMessages(params: TgForwardMessagesParams, options?: O): Promise<TgMessageId[]>; /** * Use this method to copy messages of any kind. Service messages, paid media messages, giveaway messages, giveaway winners messages, and invoice messages can't be copied. A quiz poll can be copied only if the value of the field correct_option_id is known to the bot. The method is analogous to the method forwardMessage, but the copied message doesn't have a link to the original message. Returns the MessageId of the sent message on success. * * @see https://core.telegram.org/bots/api#copymessage */ copyMessage(params: TgCopyMessageParams, options?: O): Promise<TgMessageId>; /** * Use this method to copy messages of any kind. If some of the specified messages can't be found or copied, they are skipped. Service messages, paid media messages, giveaway messages, giveaway winners messages, and invoice messages can't be copied. A quiz poll can be copied only if the value of the field correct_option_id is known to the bot. The method is analogous to the method forwardMessages, but the copied messages don't have a link to the original message. Album grouping is kept for copied messages. On success, an array of MessageId of the sent messages is returned. * * @see https://core.telegram.org/bots/api#copymessages */ copyMessages(params: TgCopyMessagesParams, options?: O): Promise<TgMessageId[]>; /** * Use this method to send photos. On success, the sent Message is returned. * * @see https://core.telegram.org/bots/api#sendphoto */ sendPhoto(params: TgSendPhotoParams, options?: O): Promise<TgMessage>; /** * Use this method to send audio files, if you want Telegram clients to display them in the music player. Your audio must be in the .MP3 or .M4A format. On success, the sent Message is returned. Bots can currently send audio files of up to 50 MB in size, this limit may be changed in the future. * * For sending voice messages, use the sendVoice method instead. * * @see https://core.telegram.org/bots/api#sendaudio */ sendAudio(params: TgSendAudioParams, options?: O): Promise<TgMessage>; /** * Use this method to send general files. On success, the sent Message is returned. Bots can currently send files of any type of up to 50 MB in size, this limit may be changed in the future. * * @see https://core.telegram.org/bots/api#senddocument */ sendDocument(params: TgSendDocumentParams, options?: O): Promise<TgMessage>; /** * Use this method to send video files, Telegram clients support MPEG4 videos (other formats may be sent as Document). On success, the sent Message is returned. Bots can currently send video files of up to 50 MB in size, this limit may be changed in the future. * * @see https://core.telegram.org/bots/api#sendvideo */ sendVideo(params: TgSendVideoParams, options?: O): Promise<TgMessage>; /** * Use this method to send animation files (GIF or H.264/MPEG-4 AVC video without sound). On success, the sent Message is returned. Bots can currently send animation files of up to 50 MB in size, this limit may be changed in the future. * * @see https://core.telegram.org/bots/api#sendanimation */ sendAnimation(params: TgSendAnimationParams, options?: O): Promise<TgMessage>; /** * Use this method to send audio files, if you want Telegram clients to display the file as a playable voice message. For this to work, your audio must be in an .OGG file encoded with OPUS, or in .MP3 format, or in .M4A format (other formats may be sent as Audio or Document). On success, the sent Message is returned. Bots can currently send voice messages of up to 50 MB in size, this limit may be changed in the future. * * @see https://core.telegram.org/bots/api#sendvoice */ sendVoice(params: TgSendVoiceParams, options?: O): Promise<TgMessage>; /** * As of v.4.0, Telegram clients support rounded square MPEG4 videos of up to 1 minute long. Use this method to send video messages. On success, the sent Message is returned. * * @see https://core.telegram.org/bots/api#sendvideonote */ sendVideoNote(params: TgSendVideoNoteParams, options?: O): Promise<TgMessage>; /** * Use this method to send paid media to channel chats. On success, the sent Message is returned. * * @see https://core.telegram.org/bots/api#sendpaidmedia */ sendPaidMedia(params: TgSendPaidMediaParams, options?: O): Promise<TgMessage>; /** * Use this method to send a group of photos, videos, documents or audios as an album. Documents and audio files can be only grouped in an album with messages of the same type. On success, an array of Messages that were sent is returned. * * @see https://core.telegram.org/bots/api#sendmediagroup */ sendMediaGroup(params: TgSendMediaGroupParams, options?: O): Promise<TgMessage[]>; /** * Use this method to send point on the map. On success, the sent Message is returned. * * @see https://core.telegram.org/bots/api#sendlocation */ sendLocation(params: TgSendLocationParams, options?: O): Promise<TgMessage>; /** * Use this method to send information about a venue. On success, the sent Message is returned. * * @see https://core.telegram.org/bots/api#sendvenue */ sendVenue(params: TgSendVenueParams, options?: O): Promise<TgMessage>; /** * Use this method to send phone contacts. On success, the sent Message is returned. * * @see https://core.telegram.org/bots/api#sendcontact */ sendContact(params: TgSendContactParams, options?: O): Promise<TgMessage>; /** * Use this method to send a native poll. On success, the sent Message is returned. * * @see https://core.telegram.org/bots/api#sendpoll */ sendPoll(params: TgSendPollParams, options?: O): Promise<TgMessage>; /** * Use this method to send an animated emoji that will display a random value. On success, the sent Message is returned. * * @see https://core.telegram.org/bots/api#senddice */ sendDice(params: TgSendDiceParams, options?: O): Promise<TgMessage>; /** * Use this method when you need to tell the user that something is happening on the bot's side. The status is set for 5 seconds or less (when a message arrives from your bot, Telegram clients clear its typing status). Returns True on success. * * We only recommend using this method when a response from the bot will take a noticeable amount of time to arrive. * * @see https://core.telegram.org/bots/api#sendchataction */ sendChatAction(params: TgSendChatActionParams, options?: O): Promise<boolean>; /** * Use this method to change the chosen reactions on a message. Service messages can't be reacted to. Automatically forwarded messages from a channel to its discussion group have the same available reactions as messages in the channel. Returns True on success. * * @see https://core.telegram.org/bots/api#setmessagereaction */ setMessageReaction(params: TgSetMessageReactionParams, options?: O): Promise<boolean>; /** * Use this method to get a list of profile pictures for a user. Returns a UserProfilePhotos object. * * @see https://core.telegram.org/bots/api#getuserprofilephotos */ getUserProfilePhotos( params: TgGetUserProfilePhotosParams, options?: O, ): Promise<TgUserProfilePhotos>; /** * Use this method to get basic information about a file and prepare it for downloading. For the moment, bots can download files of up to 20MB in size. On success, a File object is returned. The file can then be downloaded via the link https://api.telegram.org/file/bot<token>/<file_path>, where <file_path> is taken from the response. It is guaranteed that the link will be valid for at least 1 hour. When the link expires, a new one can be requested by calling getFile again. * * Note: This function may not preserve the original file name and MIME type. You should save the file's MIME type and name (if available) when the File object is received. * * @see https://core.telegram.org/bots/api#getfile */ getFile(params: TgGetFileParams, options?: O): Promise<TgFile>; /** * Use this method to ban a user in a group, a supergroup or a channel. In the case of supergroups and channels, the user will not be able to return to the chat on their own using invite links, etc., unless unbanned first. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns True on success. * * @see https://core.telegram.org/bots/api#banchatmember */ banChatMember(params: TgBanChatMemberParams, options?: O): Promise<boolean>; /** * Use this method to unban a previously banned user in a supergroup or channel. The user will not return to the group or channel automatically, but will be able to join via link, etc. The bot must be an administrator for this to work. By default, this method guarantees that after the call the user is not a member of the chat, but will be able to join it. So if the user is a member of the chat they will also be removed from the chat. If you don't want this, use the parameter only_if_banned. Returns True on success. * * @see https://core.telegram.org/bots/api#unbanchatmember */ unbanChatMember(params: TgUnbanChatMemberParams, options?: O): Promise<boolean>; /** * Use this method to restrict a user in a supergroup. The bot must be an administrator in the supergroup for this to work and must have the appropriate administrator rights. Pass True for all permissions to lift restrictions from a user. Returns True on success. * * @see https://core.telegram.org/bots/api#restrictchatmember */ restrictChatMember(params: TgRestrictChatMemberParams, options?: O): Promise<boolean>; /** * Use this method to promote or demote a user in a supergroup or a channel. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Pass False for all boolean parameters to demote a user. Returns True on success. * * @see https://core.telegram.org/bots/api#promotechatmember */ promoteChatMember(params: TgPromoteChatMemberParams, options?: O): Promise<boolean>; /** * Use this method to set a custom title for an administrator in a supergroup promoted by the bot. Returns True on success. * * @see https://core.telegram.org/bots/api#setchatadministratorcustomtitle */ setChatAdministratorCustomTitle( params: TgSetChatAdministratorCustomTitleParams, options?: O, ): Promise<boolean>; /** * Use this method to ban a channel chat in a supergroup or a channel. Until the chat is unbanned, the owner of the banned chat won't be able to send messages on behalf of any of their channels. The bot must be an administrator in the supergroup or channel for this to work and must have the appropriate administrator rights. Returns True on success. * * @see https://core.telegram.org/bots/api#banchatsenderchat */ banChatSenderChat(params: TgBanChatSenderChatParams, options?: O): Promise<boolean>; /** * Use this method to unban a previously banned channel chat in a supergroup or channel. The bot must be an administrator for this to work and must have the appropriate administrator rights. Returns True on success. * * @see https://core.telegram.org/bots/api#unbanchatsenderchat */ unbanChatSenderChat(params: TgUnbanChatSenderChatParams, options?: O): Promise<boolean>; /** * Use this method to set default chat permissions for all members. The bot must be an administrator in the group or a supergroup for this to work and must have the can_restrict_members administrator rights. Returns True on success. * * @see https://core.telegram.org/bots/api#setchatpermissions */ setChatPermissions(params: TgSetChatPermissionsParams, options?: O): Promise<boolean>; /** * Use this method to generate a new primary invite link for a chat; any previously generated primary link is revoked. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns the new invite link as String on success. * * @see https://core.telegram.org/bots/api#exportchatinvitelink */ exportChatInviteLink(params: TgExportChatInviteLinkParams, options?: O): Promise<string>; /** * Use this method to create an additional invite link for a chat. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. The link can be revoked using the method revokeChatInviteLink. Returns the new invite link as ChatInviteLink object. * * @see https://core.telegram.org/bots/api#createchatinvitelink */ createChatInviteLink( params: TgCreateChatInviteLinkParams, options?: O, ): Promise<TgChatInviteLink>; /** * Use this method to edit a non-primary invite link created by the bot. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns the edited invite link as a ChatInviteLink object. * * @see https://core.telegram.org/bots/api#editchatinvitelink */ editChatInviteLink(params: TgEditChatInviteLinkParams, options?: O): Promise<TgChatInviteLink>; /** * Use this method to revoke an invite link created by the bot. If the primary link is revoked, a new link is automatically generated. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns the revoked invite link as ChatInviteLink object. * * @see https://core.telegram.org/bots/api#revokechatinvitelink */ revokeChatInviteLink( params: TgRevokeChatInviteLinkParams, options?: O, ): Promise<TgChatInviteLink>; /** * Use this method to approve a chat join request. The bot must be an administrator in the chat for this to work and must have the can_invite_users administrator right. Returns True on success. * * @see https://core.telegram.org/bots/api#approvechatjoinrequest */ approveChatJoinRequest(params: TgApproveChatJoinRequestParams, options?: O): Promise<boolean>; /** * Use this method to decline a chat join request. The bot must be an administrator in the chat for this to work and must have the can_invite_users administrator right. Returns True on success. * * @see https://core.telegram.org/bots/api#declinechatjoinrequest */ declineChatJoinRequest(params: TgDeclineChatJoinRequestParams, options?: O): Promise<boolean>; /** * Use this method to set a new profile photo for the chat. Photos can't be changed for private chats. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns True on success. * * @see https://core.telegram.org/bots/api#setchatphoto */ setChatPhoto(params: TgSetChatPhotoParams, options?: O): Promise<boolean>; /** * Use this method to delete a chat photo. Photos can't be changed for private chats. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns True on success. * * @see https://core.telegram.org/bots/api#deletechatphoto */ deleteChatPhoto(params: TgDeleteChatPhotoParams, options?: O): Promise<boolean>; /** * Use this method to change the title of a chat. Titles can't be changed for private chats. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns True on success. * * @see https://core.telegram.org/bots/api#setchattitle */ setChatTitle(params: TgSetChatTitleParams, options?: O): Promise<boolean>; /** * Use this method to change the description of a group, a supergroup or a channel. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns True on success. * * @see https://core.telegram.org/bots/api#setchatdescription */ setChatDescription(params: TgSetChatDescriptionParams, options?: O): Promise<boolean>; /** * Use this method to add a message to the list of pinned messages in a chat. If the chat is not a private chat, the bot must be an administrator in the chat for this to work and must have the 'can_pin_messages' administrator right in a supergroup or 'can_edit_messages' administrator right in a channel. Returns True on success. * * @see https://core.telegram.org/bots/api#pinchatmessage */ pinChatMessage(params: TgPinChatMessageParams, options?: O): Promise<boolean>; /** * Use this method to remove a message from the list of pinned messages in a chat. If the chat is not a private chat, the bot must be an administrator in the chat for this to work and must have the 'can_pin_messages' administrator right in a supergroup or 'can_edit_messages' administrator right in a channel. Returns True on success. * * @see https://core.telegram.org/bots/api#unpinchatmessage */ unpinChatMessage(params: TgUnpinChatMessageParams, options?: O): Promise<boolean>; /** * Use this method to clear the list of pinned messages in a chat. If the chat is not a private chat, the bot must be an administrator in the chat for this to work and must have the 'can_pin_messages' administrator right in a supergroup or 'can_edit_messages' administrator right in a channel. Returns True on success. * * @see https://core.telegram.org/bots/api#unpinallchatmessages */ unpinAllChatMessages(params: TgUnpinAllChatMessagesParams, options?: O): Promise<boolean>; /** * Use this method for your bot to leave a group, supergroup or channel. Returns True on success. * * @see https://core.telegram.org/bots/api#leavechat */ leaveChat(params: TgLeaveChatParams, options?: O): Promise<boolean>; /** * Use this method to get up-to-date information about the chat. Returns a ChatFullInfo object on success. * * @see https://core.telegram.org/bots/api#getchat */ getChat(params: TgGetChatParams, options?: O): Promise<TgChatFullInfo>; /** * Use this method to get a list of administrators in a chat, which aren't bots. Returns an Array of ChatMember objects. * * @see https://core.telegram.org/bots/api#getchatadministrators */ getChatAdministrators( params: TgGetChatAdministratorsParams, options?: O, ): Promise<TgChatMember[]>; /** * Use this method to get the number of members in a chat. Returns Int on success. * * @see https://core.telegram.org/bots/api#getchatmembercount */ getChatMemberCount(params: TgGetChatMemberCountParams, options?: O): Promise<number>; /** * Use this method to get information about a member of a chat. The method is only guaranteed to work for other users if the bot is an administrator in the chat. Returns a ChatMember object on success. * * @see https://core.telegram.org/bots/api#getchatmember */ getChatMember(params: TgGetChatMemberParams, options?: O): Promise<TgChatMember>; /** * Use this method to set a new group sticker set for a supergroup. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Use the field can_set_sticker_set optionally returned in getChat requests to check if the bot can use this method. Returns True on success. * * @see https://core.telegram.org/bots/api#setchatstickerset */ setChatStickerSet(params: TgSetChatStickerSetParams, options?: O): Promise<boolean>; /** * Use this method to delete a group sticker set from a supergroup. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Use the field can_set_sticker_set optionally returned in getChat requests to check if the bot can use this method. Returns True on success. * * @see https://core.telegram.org/bots/api#deletechatstickerset */ deleteChatStickerSet(params: TgDeleteChatStickerSetParams, options?: O): Promise<boolean>; /** * Use this method to get custom emoji stickers, which can be used as a forum topic icon by any user. Requires no parameters. Returns an Array of Sticker objects. * * @see https://core.telegram.org/bots/api#getforumtopiciconstickers */ getForumTopicIconStickers(params?: null | undefined, options?: O): Promise<TgSticker[]>; /** * Use this method to create a topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_manage_topics administrator rights. Returns information about the created topic as a ForumTopic object. * * @see https://core.telegram.org/bots/api#createforumtopic */ createForumTopic(params: TgCreateForumTopicParams, options?: O): Promise<TgForumTopic>; /** * Use this method to edit name and icon of a topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have can_manage_topics administrator rights, unless it is the creator of the topic. Returns True on success. * * @see https://core.telegram.org/bots/api#editforumtopic */ editForumTopic(params: TgEditForumTopicParams, options?: O): Promise<boolean>; /** * Use this method to close an open topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_manage_topics administrator rights, unless it is the creator of the topic. Returns True on success. * * @see https://core.telegram.org/bots/api#closeforumtopic */ closeForumTopic(params: TgCloseForumTopicParams, options?: O): Promise<boolean>; /** * Use this method to reopen a closed topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_manage_topics administrator rights, unless it is the creator of the topic. Returns True on success. * * @see https://core.telegram.org/bots/api#reopenforumtopic */ reopenForumTopic(params: TgReopenForumTopicParams, options?: O): Promise<boolean>; /** * Use this method to delete a forum topic along with all its messages in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_delete_messages administrator rights. Returns True on success. * * @see https://core.telegram.org/bots/api#deleteforumtopic */ deleteForumTopic(params: TgDeleteForumTopicParams, options?: O): Promise<boolean>; /** * Use this method to clear the list of pinned messages in a forum topic. The bot must be an administrator in the chat for this to work and must have the can_pin_messages administrator right in the supergroup. Returns True on success. * * @see https://core.telegram.org/bots/api#unpinallforumtopicmessages */ unpinAllForumTopicMessages( params: TgUnpinAllForumTopicMessagesParams, options?: O, ): Promise<boolean>; /** * Use this method to edit the name of the 'General' topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have can_manage_topics administrator rights. Returns True on success. * * @see https://core.telegram.org/bots/api#editgeneralforumtopic */ editGeneralForumTopic(params: TgEditGeneralForumTopicParams, options?: O): Promise<boolean>; /** * Use this method to close an open 'General' topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_manage_topics administrator rights. Returns True on success. * * @see https://core.telegram.org/bots/api#closegeneralforumtopic */ closeGeneralForumTopic(params: TgCloseGeneralForumTopicParams, options?: O): Promise<boolean>; /** * Use this method to reopen a closed 'General' topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_manage_topics administrator rights. The topic will be automatically unhidden if it was hidden. Returns True on success. * * @see https://core.telegram.org/bots/api#reopengeneralforumtopic */ reopenGeneralForumTopic(params: TgReopenGeneralForumTopicParams, options?: O): Promise<boolean>; /** * Use this method to hide the 'General' topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_manage_topics administrator rights. The topic will be automatically closed if it was open. Returns True on success. * * @see https://core.telegram.org/bots/api#hidegeneralforumtopic */ hideGeneralForumTopic(params: TgHideGeneralForumTopicParams, options?: O): Promise<boolean>; /** * Use this method to unhide the 'General' topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_manage_topics administrator rights. Returns True on success. * * @see https://core.telegram.org/bots/api#unhidegeneralforumtopic */ unhideGeneralForumTopic(params: TgUnhideGeneralForumTopicParams, options?: O): Promise<boolean>; /** * Use this method to clear the list of pinned messages in a General forum topic. The bot must be an administrator in the chat for this to work and must have the can_pin_messages administrator right in the supergroup. Returns True on success. * * @see https://core.telegram.org/bots/api#unpinallgeneralforumtopicmessages */ unpinAllGeneralForumTopicMessages( params: TgUnpinAllGeneralForumTopicMessagesParams, options?: O, ): Promise<boolean>; /** * Use this method to send answers to callback queries sent from inline keyboards. The answer will be displayed to the user as a notification at the top of the chat screen or as an alert. On success, True is returned. * * @see https://core.telegram.org/bots/api#answercallbackquery */ answerCallbackQuery(params: TgAnswerCallbackQueryParams, options?: O): Promise<boolean>; /** * Use this method to get the list of boosts added to a chat by a user. Requires administrator rights in the chat. Returns a UserChatBoosts object. * * @see https://core.telegram.org/bots/api#getuserchatboosts */ getUserChatBoosts(params: TgGetUserChatBoostsParams, options?: O): Promise<TgUserChatBoosts>; /** * Use this method to get information about the connection of the bot with a business account. Returns a BusinessConnection object on success. * * @see https://core.telegram.org/bots/api#getbusinessconnection */ getBusinessConnection( params: TgGetBusinessConnectionParams, options?: O, ): Promise<TgBusinessConnection>; /** * Use this method to change the list of the bot's commands. See this manual for more details about bot commands. Returns True on success. * * @see https://core.telegram.org/bots/api#setmycommands */ setMyCommands(params: TgSetMyCommandsParams, options?: O): Promise<boolean>; /** * Use this method to delete the list of the bot's commands for the given scope and user language. After deletion, higher level commands will be shown to affected users. Returns True on success. * * @see https://core.telegram.org/bots/api#deletemycommands */ deleteMyCommands( params?: TgDeleteMyCommandsParams | null | undefined, options?: O, ): Promise<boolean>; /** * Use this method to get the current list of the bot's commands for the given scope and user language. Returns an Array of BotCommand objects. If commands aren't set, an empty list is returned. * * @see https://core.telegram.org/bots/api#getmycommands */ getMyCommands( params?: TgGetMyCommandsParams | null | undefined, options?: O, ): Promise<TgBotCommand[]>; /** * Use this method to change the bot's name. Returns True on success. * * @see https://core.telegram.org/bots/api#setmyname */ setMyName(params?: TgSetMyNameParams | null | undefined, options?: O): Promise<boolean>; /** * Use this method to get the current bot name for the given user language. Returns BotName on success. * * @see https://core.telegram.org/bots/api#getmyname */ getMyName(params?: TgGetMyNameParams | null | undefined, options?: O): Promise<TgBotName>; /** * Use this method to change the bot's description, which is shown in the chat with the bot if the chat is empty. Returns True on success. * * @see https://core.telegram.org/bots/api#setmydescription */ setMyDescription( params?: TgSetMyDescriptionParams | null | undefined, options?: O, ): Promise<boolean>; /** * Use this method to get the current bot description for the given user language. Returns BotDescription on success. * * @see https://core.telegram.org/bots/api#getmydescription */ getMyDescription( params?: TgGetMyDescriptionParams | null | undefined, options?: O, ): Promise<TgBotDescription>; /** * Use this method to change the bot's short description, which is shown on the bot's profile page and is sent together with the link when users share the bot. Returns True on success. * * @see https://core.telegram.org/bots/api#setmyshortdescription */ setMyShortDescription( params?: TgSetMyShortDescriptionParams | null | undefined, options?: O, ): Promise<boolean>; /** * Use this method to get the current bot short description for the given user language. Returns BotShortDescription on success. * * @see https://core.telegram.org/bots/api#getmyshortdescription */ getMyShortDescription( params?: TgGetMyShortDescriptionParams | null | undefined, options?: O, ): Promise<TgBotShortDescription>; /** * Use this method to change the bot's menu button in a private chat, or the default menu button. Returns True on success. * * @see https://core.telegram.org/bots/api#setchatmenubutton */ setChatMenuButton( params?: TgSetChatMenuButtonParams | null | undefined, options?: O, ): Promise<boolean>; /** * Use this method to get the current value of the bot's menu button in a private chat, or the default menu button. Returns MenuButton on success. * * @see https://core.telegram.org/bots/api#getchatmenubutton */ getChatMenuButton( params?: TgGetChatMenuButtonParams | null | undefined, options?: O, ): Promise<TgMenuButton>; /** * Use this method to change the default administrator rights requested by the bot when it's added as an administrator to groups or channels. These rights will be suggested to users, but they are free to modify the list before adding the bot. Returns True on success. * * @see https://core.telegram.org/bots/api#setmydefaultadministratorrights */ setMyDefaultAdministratorRights( params?: TgSetMyDefaultAdministratorRightsParams | null | undefined, options?: O, ): Promise<boolean>; /** * Use this method to get the current default administrator rights of the bot. Returns ChatAdministratorRights on success. * * @see https://core.telegram.org/bots/api#getmydefaultadministratorrights */ getMyDefaultAdministratorRights( params?: TgGetMyDefaultAdministratorRightsParams | null | undefined, options?: O, ): Promise<TgChatAdministratorRights>; /** * Use this method to edit text and game messages. On success, if the edited message is not an inline message, the edited Message is returned, otherwise True is returned. Note that business messages that were not sent by the bot and do not contain an inline keyboard can only be edited within 48 hours from the time they were sent. * * @see https://core.telegram.org/bots/api#editmessagetext */ editMessageText(params: TgEditMessageTextParams, options?: O): Promise<TgMessage | boolean>; /** * Use this method to edit captions of messages. On success, if the edited message is not an inline message, the edited Message is returned, otherwise True is returned. Note that business messages that were not sent by the bot and do not contain an inline keyboard can only be edited within 48 hours from the time they were sent. * * @see https://core.telegram.org/bots/api#editmessagecaption */ editMessageCaption( params?: TgEditMessageCaptionParams | null | undefined, options?: O, ): Promise<TgMessage | boolean>; /** * Use this method to edit animation, audio, document, photo, or video messages. If a message is part of a message album, then it can be edited only to an audio for audio albums, only to a document for document albums and to a photo or a video otherwise. When an inline message is edited, a new file can't be uploaded; use a previously uploaded file via its file_id or specify a URL. On success, if the edited message is not an inline message, the edited Message is returned, otherwise True is returned. Note that business messages that were not sent by the bot and do not contain an inline keyboard can only be edited within 48 hours from the time they were sent. * * @see https://core.telegram.org/bots/api#editmessagemedia */ editMessageMedia(params: TgEditMessageMediaParams, options?: O): Promise<TgMessage | boolean>; /** * Use this method to edit live location messages. A location can be edited until its live_period expires or editing is explicitly disabled by a call to stopMessageLiveLocation. On success, if the edited message is not an inline message, the edited Message is returned, otherwise True is returned. * * @see https://core.telegram.org/bots/api#editmessagelivelocation */ editMessageLiveLocation( params: TgEditMessageLiveLocationParams, options?: O, ): Promise<TgMessage | boolean>; /** * Use this method to stop updating a live location message before live_period expires. On success, if the message is not an inline message, the edited Message is returned, otherwise True is returned. * * @see https://core.telegram.org/bots/api#stopmessagelivelocation */ stopMessageLiveLocation( params?: TgStopMessageLiveLocationParams | null | undefined, options?: O, ): Promise<TgMessage | boolean>; /** * Use this method to edit only the reply markup of messages. On success, if the edited message is not an inline message, the edited Message is returned, otherwise True is returned. Note that business messages that were not sent by the bot and do not contain an inline keyboard can only be edited within 48 hours from the time they were sent. * * @see https://core.telegram.org/bots/api#editmessagereplymarkup */ editMessageReplyMarkup( params?: TgEditMessageReplyMarkupParams | null | undefined, options?: O, ): Promise<TgMessage | boolean>; /** * Use this method to stop a poll which was sent by the bot. On success, the stopped Poll is returned. * * @see https://core.telegram.org/bots/api#stoppoll */ stopPoll(params: TgStopPollParams, options?: O): Promise<TgPoll>; /** * Use this method to delete a message, including service messages, with the following limitations: * * - A message can only be deleted if it was sent less than 48 hours ago. * * - Service messages about a supergroup, channel, or forum topic creation can't be deleted. * * - A dice message in a private chat can only be deleted if it was sent more than 24 hours ago. * * - Bots can delete outgoing messages in private chats, groups, and supergroups. * * - Bots can delete incoming messages in private chats. * * - Bots granted can_post_messages permissions can delete outgoing messages in channels. * * - If the bot is an administrator of a group, it can delete any message there. * * - If the bot has can_delete_messages permission in a supergroup or a channel, it can delete any message there. * * Returns True on success. * * @see https://core.telegram.org/bots/api#deletemessage */ deleteMessage(params: TgDeleteMessageParams, options?: O): Promise<boolean>; /** * Use this method to delete multiple messages simultaneously. If some of the specified messages can't be found, they are skipped. Returns True on success. * * @see https://core.telegram.org/bots/api#deletemessages */ deleteMessages(params: TgDeleteMessagesParams, options?: O): Promise<boolean>; /** * Use this method to send static .WEBP, animated .TGS, or video .WEBM stickers. On success, the sent Message is returned. * * @see https://core.telegram.org/bots/api#sendsticker */ sendSticker(params: TgSendStickerParams, options?: O): Promise<TgMessage>; /** * Use this method to get a sticker set. On success, a StickerSet object is returned. * * @see https://core.telegram.org/bots/api#getstickerset */ getStickerSet(params: TgGetStickerSetParams, options?: O): Promise<TgStickerSet>; /** * Use this method to get information about custom emoji stickers by their identifiers. Returns an Array of Sticker objects. * * @see https://core.telegram.org/bots/api#getcustomemojistickers */ getCustomEmojiStickers(params: TgGetCustomEmojiStickersParams, options?: O): Promise<TgSticker[]>; /** * Use this method to upload a file with a sticker for later use in the createNewStickerSet, addStickerToSet, or replaceStickerInSet methods (the file can be used multiple times). Returns the uploaded File on success. * * @see https://core.telegram.org/bots/api#uploadstickerfile */ uploadStickerFile(params: TgUploadStickerFileParams, options?: O): Promise<TgFile>; /** * Use this method to create a new sticker set owned by a user. The bot will be able to edit the sticker set thus created. Returns True on success. * * @see https://core.telegram.org/bots/api#createnewstickerset */ createNewStickerSet(params: TgCreateNewStickerSetParams, options?: O): Promise<boolean>; /** * Use this method to add a new sticker to a set created by the bot. Emoji sticker sets can have up to 200 stickers. Other sticker sets can have up to 120 stickers. Returns True on success. * * @see https://core.telegram.org/bots/api#addstickertoset */ addStickerToSet(params: TgAddStickerToSetParams, options?: O): Promise<boolean>; /** * Use this method to move a sticker in a set created by the bot to a specific position. Returns True on success. * * @see https://core.telegram.org/bots/api#setstickerpositioninset */ setStickerPositionInSet(params: TgSetStickerPositionInSetParams, options?: O): Promise<boolean>; /** * Use this method to delete a sticker from a set created by the bot. Returns True on success. * * @see https://core.telegram.org/bots/api#deletestickerfromset */ deleteStickerFromSet(params: TgDeleteStickerFromSetParams, options?: O): Promise<boolean>; /** * Use this method to replace an existing sticker in a sticker set with a new one. The method is equivalent to calling deleteStickerFromSet, then addStickerToSet, then setStickerPositionInSet. Returns True on success. * * @see https://core.telegram.org/bots/api#replacestickerinset */ replaceStickerInSet(params: TgReplaceStickerInSetParams, options?: O): Promise<boolean>; /** * Use this method to change the list of emoji assigned to a regular or custom emoji sticker. The sticker must belong to a sticker set created by the bot. Returns True on success. * * @see https://core.telegram.org/bots/api#setstickeremojilist */ setStickerEmojiList(params: TgSetStickerEmojiListParams, options?: O): Promise<boolean>; /** * Use this method to change search keywords assigned to a regular or custom emoji sticker. The sticker must belong to a sticker set created by the bot. Returns True on success. * * @see https://core.telegram.org/bots/api#setstickerkeywords */ setStickerKeywords(params: TgSetStickerKeywordsParams, options?: O): Promise<boolean>; /** * Use this method to change the mask position of a mask sticker. The sticker must belong to a sticker set that was created by the bot. Returns True on success. * * @see https://core.telegram.org/bots/api#setstickermaskposition */ setStickerMaskPosition(params: TgSetStickerMaskPositionParams, options?: O): Promise<boolean>; /** * Use this method to set the title of a created sticker set. Returns True on success. * * @see https://core.telegram.org/bots/api#setstickersettitle */ setStickerSetTitle(params: TgSetStickerSetTitleParams, options?: O): Promise<boolean>; /** * Use this method to set the thumbnail of a regular or mask sticker set. The format of the thumbnail file must match the format of the stickers in the set. Returns True on success. * * @see https://core.telegram.org/bots/api#setstickersetthumbnail */ setStickerSetThumbnail(params: TgSetStickerSetThumbnailParams, options?: O): Promise<boolean>; /** * Use this method to set the thumbnail of a custom emoji sticker set. Returns True on success. * * @see https://core.telegram.org/bots/api#setcustomemojistickersetthumbnail */ setCustomEmojiStickerSetThumbnail( params: TgSetCustomEmojiStickerSetThumbnailParams, options?: O, ): Promise<boolean>; /** * Use this method to delete a sticker set that was created by the bot. Returns True on success. * * @see https://core.telegram.org/bots/api#deletestickerset */ deleteStickerSet(params: TgDeleteStickerSetParams, options?: O): Promise<boolean>; /** * Use this method to send answers to an inline query. On success, True is returned. * * No more than 50 results per query are allowed. * * @see https://core.telegram.org/bots/api#answerinlinequery */ answerInlineQuery(params: TgAnswerInlineQueryParams, options?: O): Promise<boolean>; /** * Use this method to set the result of an interaction with a Web App and send a corresponding message on behalf of the user to the chat from which the query originated. On success, a SentWebAppMessage object is returned. * * @see https://core.telegram.org/bots/api#answerwebappquery */ answerWebAppQuery(params: TgAnswerWebAppQueryParams, options?: O): Promise<TgSentWebAppMessage>; /** * Use this method to send invoices. On success, the sent Message is returned. * * @see https://core.telegram.org/bots/api#sendinvoice */ sendInvoice(params: TgSendInvoiceParams, options?: O): Promise<TgMessage>; /** * Use this method to create a link for an invoice. Returns the created invoice link as String on success. * * @see https://core.telegram.org/bots/api#createinvoicelink */ createInvoiceLink(params: TgCreateInvoiceLinkParams, options?: O): Promise<string>; /** * If you sent an invoice requesting a shipping address and the parameter is_flexible was specified, the Bot API will send an Update with a shipping_query field to the bot. Use this method to reply to shipping queries. On success, True is returned. * * @see https://core.telegram.org/bots/api#answershippingquery */ answerShippingQuery(params: TgAnswerShippingQueryParams, options?: O): Promise<boolean>; /** * Once the user has confirmed their payment and shipping details, the Bot API sends the final confirmation in the form of an Update with the field pre_checkout_query. Use this method to respond to such pre-checkout queries. On success, True is returned. Note: The Bot API must receive an answer within 10 seconds after the pre-checkout query was sent. * * @see https://core.telegram.org/bots/api#answerprecheckoutquery */ answerPreCheckoutQuery(params: TgAnswerPreCheckoutQueryParams, options?: O): Promise<boolean>; /** * Returns the bot's Telegram Star transactions in chronological order. On success, returns a StarTransactions object. * * @see https://core.telegram.org/bots/api#getstartransactions */ getStarTransactions( params?: TgGetStarTransactionsParams | null | undefined, options?: O, ): Promise<TgStarTransactions>; /** * Refunds a successful payment in Telegram Stars. Returns True on success. * * @see https://core.telegram.org/bots/api#refundstarpayment */ refundStarPayment(params: TgRefundStarPaymentParams, options?: O): Promise<boolean>; /** * Informs a user that some of the Telegram Passport elements they provided contains errors. The user will not be able to re-submit their Passport to you until the errors are fixed (the contents of the field for which you returned the error must change). Returns True on success. * * Use this if the data submitted by the user doesn't satisfy the standards your service requires for any reason. For example, if a birthday date seems invalid, a submitted document is blurry, a scan shows evidence of tampering, etc. Supply some details in the error message to make sure the user knows how to correct the issues. * * @see https://core.telegram.org/bots/api#setpassportdataerrors */ setPassportDataErrors(params: TgSetPassportDataErrorsParams, options?: O): Promise<boolean>; /** * Use this method to send a game. On success, the sent Message is returned. * * @see https://core.telegram.org/bots/api#sendgame */ sendGame(params: TgSendGameParams, options?: O): Promise<TgMessage>; /** * Use this method to set the score of the specified user in a game message. On success, if the message is not an inline message, the Message is returned, otherwise True is returned. Returns an error, if the new score is not greater than the user's current score in the chat and force is False. * * @see https://core.telegram.org/bots/api#setgamescore */ setGameScore(params: TgSetGameScoreParams, options?: O): Promise<TgMessage | boolean>; /** * Use this method to get data for high score tables. Will return the score of the specified user and several of their neighbors in a game. Returns an Array of GameHighScore objects. * * @see https://core.telegram.org/bots/api#getgamehighscores */ getGameHighScores(params: TgGetGameHighScoresParams, options?: O): Promise<TgGameHighScore[]>; } /** * Parameters of {@link TgApi.getUpdates} method. * * @see https://core.telegram.org/bots/api#getupdates */ export type TgGetUpdatesParams = { /** * Identifier of the first update to be returned. Must be greater by one than the highest among the identifiers of previously received updates. By default, updates starting with the earliest unconfirmed update are returned. An update is considered confirmed as soon as getUpdates is called with an offset higher than its update_id. The negative offset can be specified to retrieve updates starting from -offset update from the end of the updates queue. All previous updates will be forgotten. */ offset?: number; /** * Limits the number of updates to be retrieved. Values between 1-100 are accepted. Defaults to 100. */ limit?: number; /** * Timeout in seconds for long polling. Defaults to 0, i.e. usual short polling. Should be positive, short polling should be used for testing purposes only. */ timeout?: number; /** * A JSON-serialized list of the update types you want your bot to receive. For example, specify ["message", "edited_channel_post", "callback_query"] to only receive updates of these types. See Update for a complete list of available update types. Specify an empty list to receive all update types except chat_member, message_reaction, and message_reaction_count (default). If not specified, the previous setting will be used. Please note that this parameter doesn't affect updates created before the call to the getUpdates, so unwanted updates may be received for a short period of time. */ allowed_updates?: Exclude<keyof TgUpdate, "update_id">[]; }; /** * Parameters of {@link TgApi.setWebhook} method. * * @see https://core.telegram.org/bots/api#setwebhook */ export type TgSetWebhookParams = { /** * HTTPS URL to send updates to. Use an empty string to remove webhook integration */ url: string; /** * Upload your public key certificate so that the root certificate in use can be checked. See our self-signed guide for details. */ certificate?: TgInputFile; /** * The fixed IP address which will be used to send webhook requests instead of the IP address resolved through DNS */ ip_address?: string; /** * The maximum allowed number of simultaneous HTTPS connections to the webhook for update delivery, 1-100. Defaults to 40. Use lower values to limit the load on your bot's server, and higher values to increase your bot's throughput. */ max_connections?: number; /** * A JSON-serialized list of the update types you want your bot to receive. For example, specify ["message", "edited_channel_post", "callback_query"] to only receive updates of these types. See Update for a complete list of available update types. Specify an empty list to receive all update types except chat_member, message_reaction, and message_reaction_count (default). If not specified, the previous setting will be used. Please note that this parameter doesn't affect updates created before the call to the setWebhook, so unwanted updates may be received for a short period of time. */ allowed_updates?: Exclude<keyof TgUpdate, "update_id">[]; /** * Pass True to drop all pending updates */ drop_pending_updates?: boolean; /** * A secret token to be sent in a header "X-Telegram-Bot-Api-Secret-Token" in every webhook request, 1-256 characters. Only characters A-Z, a-z, 0-9, _ and - are allowed. The header is useful to ensure that the request comes from a webhook set by you. */ secret_token?: string; }; /** * Parameters of {@link TgApi.deleteWebhook} method. * * @see https://core.telegram.org/bots/api#deletewebhook */ export type TgDeleteWebhookParams = { /** * Pass True to drop all pending updates */ drop_pending_updates?: boolean; }; /** * Parameters of {@link TgApi.sendMessage} method. * * @see https://core.telegram.org/bots/api#sendmessage */ export type TgSendMessageParams = { /** * Unique identifier of the business connection on behalf of which the message will be sent */ business_connection_id?: string; /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** * Text of the message to be sent, 1-4096 characters after entities parsing */ text: string; /** * Mode for parsing entities in the message text. See formatting options for more details. */ parse_mode?: undefined | "HTML" | "Markdown" | "MarkdownV2"; /** * A JSON-serialized list of special entities that appear in message text, which can be specified instead of parse_mode */ entities?: TgMessageEntity[]; /** * Link preview generation options for the message */ link_preview_options?: TgLinkPreviewOptions; /** * Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** * Protects the contents of the sent message from forwarding and saving */ protect_content?: boolean; /** * Unique identifier of the message effect to be added to the message; for private chats only */ message_effect_id?: string; /** * Description of the message to reply to */ reply_parameters?: TgReplyParameters; /** * Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user */ reply_markup?: | TgInlineKeyboardMarkup | TgReplyKeyboardMarkup | TgReplyKeyboardRemove | TgForceReply; }; /** * Parameters of {@link TgApi.forwardMessage} method. * * @see https://core.telegram.org/bots/api#forwardmessage */ export type TgForwardMessageParams = { /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** * Unique identifier for the chat where the original message was sent (or channel username in the format @channelusername) */ from_chat_id: number | string; /** * Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** * Protects the contents of the forwarded message from forwarding and saving */ protect_content?: boolean; /** * Message identifier in the chat specified in from_chat_id */ message_id: number; }; /** * Parameters of {@link TgApi.forwardMessages} method. * * @see https://core.telegram.org/bots/api#forwardmessages */ export type TgForwardMessagesParams = { /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** * Unique identifier for the chat where the original messages were sent (or channel username in the format @channelusername) */ from_chat_id: number | string; /** * A JSON-serialized list of 1-100 identifiers of messages in the chat from_chat_id to forward. The identifiers must be specified in a strictly increasing order. */ message_ids: number[]; /** * Sends the messages silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** * Protects the contents of the forwarded messages from forwarding and saving */ protect_content?: boolean; }; /** * Parameters of {@link TgApi.copyMessage} method. * * @see https://core.telegram.org/bots/api#copymessage */ export type TgCopyMessageParams = { /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** * Unique identifier for the chat where the original message was sent (or channel username in the format @channelusername) */ from_chat_id: number | string; /** * Message identifier in the chat specified in from_chat_id */ message_id: number; /** * New caption for media, 0-1024 characters after entities parsing. If not specified, the original caption is kept */ caption?: string; /** * Mode for parsing entities in the new caption. See formatting options for more details. */ parse_mode?: undefined | "HTML" | "Markdown" | "MarkdownV2"; /** * A JSON-serialized list of special entities that appear in the new caption, which can be specified instead of parse_mode */ caption_entities?: TgMessageEntity[]; /** * Pass True, if the caption must be shown above the message media. Ignored if a new caption isn't specified. */ show_caption_above_media?: boolean; /** * Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** * Protects the contents of the sent message from forwarding and saving */ protect_content?: boolean; /** * Description of the message to reply to */ reply_parameters?: TgReplyParameters; /** * Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user */ reply_markup?: | TgInlineKeyboardMarkup | TgReplyKeyboardMarkup | TgReplyKeyboardRemove | TgForceReply; }; /** * Parameters of {@link TgApi.copyMessages} method. * * @see https://core.telegram.org/bots/api#copymessages */ export type TgCopyMessagesParams = { /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** * Unique identifier for the chat where the original messages were sent (or channel username in the format @channelusername) */ from_chat_id: number | string; /** * A JSON-serialized list of 1-100 identifiers of messages in the chat from_chat_id to copy. The identifiers must be specified in a strictly increasing order. */ message_ids: number[]; /** * Sends the messages silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** * Protects the contents of the sent messages from forwarding and saving */ protect_content?: boolean; /** * Pass True to copy the messages without their captions */ remove_caption?: boolean; }; /** * Parameters of {@link TgApi.sendPhoto} method. * * @see https://core.telegram.org/bots/api#sendphoto */ export type TgSendPhotoParams = { /** * Unique identifier of the business connection on behalf of which the message will be sent */ business_connection_id?: string; /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** * Photo to send. Pass a file_id as String to send a photo that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a photo from the Internet, or upload a new photo using multipart/form-data. The photo must be at most 10 MB in size. The photo's width and height must not exceed 10000 in total. Width and height ratio must be at most 20. More information on Sending Files: https://core.telegram.org/bots/api#sending-files */ photo: TgInputFile | string; /** * Photo caption (may also be used when resending photos by file_id), 0-1024 characters after entities parsing */ caption?: string; /** * Mode for parsing entities in the photo caption. See formatting options for more details. */ parse_mode?: undefined | "HTML" | "Markdown" | "MarkdownV2"; /** * A JSON-serialized list of special entities that appear in the caption, which can be specified instead of parse_mode */ caption_entities?: TgMessageEntity[]; /** * Pass True, if the caption must be shown above the message media */ show_caption_above_media?: boolean; /** * Pass True if the photo needs to be covered with a spoiler animation */ has_spoiler?: boolean; /** * Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** * Protects the contents of the sent message from forwarding and saving */ protect_content?: boolean; /** * Unique identifier of the message effect to be added to the message; for private chats only */ message_effect_id?: string; /** * Description of the message to reply to */ reply_parameters?: TgReplyParameters; /** * Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user */ reply_markup?: | TgInlineKeyboardMarkup | TgReplyKeyboardMarkup | TgReplyKeyboardRemove | TgForceReply; }; /** * Parameters of {@link TgApi.sendAudio} method. * * @see https://core.telegram.org/bots/api#sendaudio */ export type TgSendAudioParams = { /** * Unique identifier of the business connection on behalf of which the message will be sent */ business_connection_id?: string; /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** * Audio file to send. Pass a file_id as String to send an audio file that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get an audio file from the Internet, or upload a new one using multipart/form-data. More information on Sending Files: https://core.telegram.org/bots/api#sending-files */ audio: TgInputFile | string; /** * Audio caption, 0-1024 characters after entities parsing */ caption?: string; /** * Mode for parsing entities in the audio caption. See formatting options for more details. */ parse_mode?: undefined | "HTML" | "Markdown" | "MarkdownV2"; /** * A JSON-serialized list of special entities that appear in the caption, which can be specified instead of parse_mode */ caption_entities?: TgMessageEntity[]; /** * Duration of the audio in seconds */ duration?: number; /** * Performer */ performer?: string; /** * Track name */ title?: string; /** * Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass "attach://<file_attach_name>" if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. More information on Sending Files: https://core.telegram.org/bots/api#sending-files */ thumbnail?: TgInputFile | string; /** * Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** * Protects the contents of the sent message from forwarding and saving */ protect_content?: boolean; /** * Unique identifier of the message effect to be added to the message; for private chats only */ message_effect_id?: string; /** * Description of the message to reply to */ reply_parameters?: TgReplyParameters; /** * Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user */ reply_markup?: | TgInlineKeyboardMarkup | TgReplyKeyboardMarkup | TgReplyKeyboardRemove | TgForceReply; }; /** * Parameters of {@link TgApi.sendDocument} method. * * @see https://core.telegram.org/bots/api#senddocument */ export type TgSendDocumentParams = { /** * Unique identifier of the business connection on behalf of which the message will be sent */ business_connection_id?: string; /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** * File to send. Pass a file_id as String to send a file that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a file from the Internet, or upload a new one using multipart/form-data. More information on Sending Files: https://core.telegram.org/bots/api#sending-files */ document: TgInputFile | string; /** * Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass "attach://<file_attach_name>" if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. More information on Sending Files: https://core.telegram.org/bots/api#sending-files */ thumbnail?: TgInputFile | string; /** * Document caption (may also be used when resending documents by file_id), 0-1024 characters after entities parsing */ caption?: string; /** * Mode for parsing entities in the document caption. See formatting options for more details. */ parse_mode?: undefined | "HTML" | "Markdown" | "MarkdownV2"; /** * A JSON-serialized list of special entities that appear in the caption, which can be specified instead of parse_mode */ caption_entities?: TgMessageEntity[]; /** * Disables automatic server-side content type detection for files uploaded using multipart/form-data */ disable_content_type_detection?: boolean; /** * Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** * Protects the contents of the sent message from forwarding and saving */ protect_content?: boolean; /** * Unique identifier of the message effect to be added to the message; for private chats only */ message_effect_id?: string; /** * Description of the message to reply to */ reply_parameters?: TgReplyParameters; /** * Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user */ reply_markup?: | TgInlineKeyboardMarkup | TgReplyKeyboardMarkup | TgReplyKeyboardRemove | TgForceReply; }; /** * Parameters of {@link TgApi.sendVideo} method. * * @see https://core.telegram.org/bots/api#sendvideo */ export type TgSendVideoParams = { /** * Unique identifier of the business connection on behalf of which the message will be sent */ business_connection_id?: string; /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** * Video to send. Pass a file_id as String to send a video that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a video from the Internet, or upload a new video using multipart/form-data. More information on Sending Files: https://core.telegram.org/bots/api#sending-files */ video: TgInputFile | string; /** * Duration of sent video in seconds */ duration?: number; /** * Video width */ width?: number; /** * Video height */ height?: number; /** * Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass "attach://<file_attach_name>" if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. More information on Sending Files: https://core.telegram.org/bots/api#sending-files */ thumbnail?: TgInputFile | string; /** * Video caption (may also be used when resending videos by file_id), 0-1024 characters after entities parsing */ caption?: string; /** * Mode for parsing entities in the video caption. See formatting options for more details. */ parse_mode?: undefined | "HTML" | "Markdown" | "MarkdownV2"; /** * A JSON-serialized list of special entities that appear in the caption, which can be specified instead of parse_mode */ caption_entities?: TgMessageEntity[]; /** * Pass True, if the caption must be shown above the message media */ show_caption_above_media?: boolean; /** * Pass True if the video needs to be covered with a spoiler animation */ has_spoiler?: boolean; /** * Pass True if the uploaded video is suitable for streaming */ supports_streaming?: boolean; /** * Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** * Protects the contents of the sent message from forwarding and saving */ protect_content?: boolean; /** * Unique identifier of the message effect to be added to the message; for private chats only */ message_effect_id?: string; /** * Description of the message to reply to */ reply_parameters?: TgReplyParameters; /** * Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user */ reply_markup?: | TgInlineKeyboardMarkup | TgReplyKeyboardMarkup | TgReplyKeyboardRemove | TgForceReply; }; /** * Parameters of {@link TgApi.sendAnimation} method. * * @see https://core.telegram.org/bots/api#sendanimation */ export type TgSendAnimationParams = { /** * Unique identifier of the business connection on behalf of which the message will be sent */ business_connection_id?: string; /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** * Animation to send. Pass a file_id as String to send an animation that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get an animation from the Internet, or upload a new animation using multipart/form-data. More information on Sending Files: https://core.telegram.org/bots/api#sending-files */ animation: TgInputFile | string; /** * Duration of sent animation in seconds */ duration?: number; /** * Animation width */ width?: number; /** * Animation height */ height?: number; /** * Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass "attach://<file_attach_name>" if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. More information on Sending Files: https://core.telegram.org/bots/api#sending-files */ thumbnail?: TgInputFile | string; /** * Animation caption (may also be used when resending animation by file_id), 0-1024 characters after entities parsing */ caption?: string; /** * Mode for parsing entities in the animation caption. See formatting options for more details. */ parse_mode?: undefined | "HTML" | "Markdown" | "MarkdownV2"; /** * A JSON-serialized list of special entities that appear in the caption, which can be specified instead of parse_mode */ caption_entities?: TgMessageEntity[]; /** * Pass True, if the caption must be shown above the message media */ show_caption_above_media?: boolean; /** * Pass True if the animation needs to be covered with a spoiler animation */ has_spoiler?: boolean; /** * Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** * Protects the contents of the sent message from forwarding and saving */ protect_content?: boolean; /** * Unique identifier of the message effect to be added to the message; for private chats only */ message_effect_id?: string; /** * Description of the message to reply to */ reply_parameters?: TgReplyParameters; /** * Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user */ reply_markup?: | TgInlineKeyboardMarkup | TgReplyKeyboardMarkup | TgReplyKeyboardRemove | TgForceReply; }; /** * Parameters of {@link TgApi.sendVoice} method. * * @see https://core.telegram.org/bots/api#sendvoice */ export type TgSendVoiceParams = { /** * Unique identifier of the business connection on behalf of which the message will be sent */ business_connection_id?: string; /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** * Audio file to send. Pass a file_id as String to send a file that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a file from the Internet, or upload a new one using multipart/form-data. More information on Sending Files: https://core.telegram.org/bots/api#sending-files */ voice: TgInputFile | string; /** * Voice message caption, 0-1024 characters after entities parsing */ caption?: string; /** * Mode for parsing entities in the voice message caption. See formatting options for more details. */ parse_mode?: undefined | "HTML" | "Markdown" | "MarkdownV2"; /** * A JSON-serialized list of special entities that appear in the caption, which can be specified instead of parse_mode */ caption_entities?: TgMessageEntity[]; /** * Duration of the voice message in seconds */ duration?: number; /** * Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** * Protects the contents of the sent message from forwarding and saving */ protect_content?: boolean; /** * Unique identifier of the message effect to be added to the message; for private chats only */ message_effect_id?: string; /** * Description of the message to reply to */ reply_parameters?: TgReplyParameters; /** * Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user */ reply_markup?: | TgInlineKeyboardMarkup | TgReplyKeyboardMarkup | TgReplyKeyboardRemove | TgForceReply; }; /** * Parameters of {@link TgApi.sendVideoNote} method. * * @see https://core.telegram.org/bots/api#sendvideonote */ export type TgSendVideoNoteParams = { /** * Unique identifier of the business connection on behalf of which the message will be sent */ business_connection_id?: string; /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** * Video note to send. Pass a file_id as String to send a video note that exists on the Telegram servers (recommended) or upload a new video using multipart/form-data. More information on Sending Files: https://core.telegram.org/bots/api#sending-files. Sending video notes by a URL is currently unsupported */ video_note: TgInputFile | string; /** * Duration of sent video in seconds */ duration?: number; /** * Video width and height, i.e. diameter of the video message */ length?: number; /** * Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass "attach://<file_attach_name>" if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. More information on Sending Files: https://core.telegram.org/bots/api#sending-files */ thumbnail?: TgInputFile | string; /** * Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** * Protects the contents of the sent message from forwarding and saving */ protect_content?: boolean; /** * Unique identifier of the message effect to be added to the message; for private chats only */ message_effect_id?: string; /** * Description of the message to reply to */ reply_parameters?: TgReplyParameters; /** * Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user */ reply_markup?: | TgInlineKeyboardMarkup | TgReplyKeyboardMarkup | TgReplyKeyboardRemove | TgForceReply; }; /** * Parameters of {@link TgApi.sendPaidMedia} method. * * @see https://core.telegram.org/bots/api#sendpaidmedia */ export type TgSendPaidMediaParams = { /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * The number of Telegram Stars that must be paid to buy access to the media */ star_count: number; /** * A JSON-serialized array describing the media to be sent; up to 10 items */ media: TgInputPaidMedia[]; /** * Media caption, 0-1024 characters after entities parsing */ caption?: string; /** * Mode for parsing entities in the media caption. See formatting options for more details. */ parse_mode?: undefined | "HTML" | "Markdown" | "MarkdownV2"; /** * A JSON-serialized list of special entities that appear in the caption, which can be specified instead of parse_mode */ caption_entities?: TgMessageEntity[]; /** * Pass True, if the caption must be shown above the message media */ show_caption_above_media?: boolean; /** * Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** * Protects the contents of the sent message from forwarding and saving */ protect_content?: boolean; /** * Description of the message to reply to */ reply_parameters?: TgReplyParameters; /** * Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user */ reply_markup?: | TgInlineKeyboardMarkup | TgReplyKeyboardMarkup | TgReplyKeyboardRemove | TgForceReply; }; /** * Parameters of {@link TgApi.sendMediaGroup} method. * * @see https://core.telegram.org/bots/api#sendmediagroup */ export type TgSendMediaGroupParams = { /** * Unique identifier of the business connection on behalf of which the message will be sent */ business_connection_id?: string; /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** * A JSON-serialized array describing messages to be sent, must include 2-10 items */ media: (TgInputMediaAudio | TgInputMediaDocument | TgInputMediaPhoto | TgInputMediaVideo)[]; /** * Sends messages silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** * Protects the contents of the sent messages from forwarding and saving */ protect_content?: boolean; /** * Unique identifier of the message effect to be added to the message; for private chats only */ message_effect_id?: string; /** * Description of the message to reply to */ reply_parameters?: TgReplyParameters; }; /** * Parameters of {@link TgApi.sendLocation} method. * * @see https://core.telegram.org/bots/api#sendlocation */ export type TgSendLocationParams = { /** * Unique identifier of the business connection on behalf of which the message will be sent */ business_connection_id?: string; /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** * Latitude of the location */ latitude: number; /** * Longitude of the location */ longitude: number; /** * The radius of uncertainty for the location, measured in meters; 0-1500 */ horizontal_accuracy?: number; /** * Period in seconds during which the location will be updated (see Live Locations, should be between 60 and 86400, or 0x7FFFFFFF for live locations that can be edited indefinitely. */ live_period?: number; /** * For live locations, a direction in which the user is moving, in degrees. Must be between 1 and 360 if specified. */ heading?: number; /** * For live locations, a maximum distance for proximity alerts about approaching another chat member, in meters. Must be between 1 and 100000 if specified. */ proximity_alert_radius?: number; /** * Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** * Protects the contents of the sent message from forwarding and saving */ protect_content?: boolean; /** * Unique identifier of the message effect to be added to the message; for private chats only */ message_effect_id?: string; /** * Description of the message to reply to */ reply_parameters?: TgReplyParameters; /** * Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user */ reply_markup?: | TgInlineKeyboardMarkup | TgReplyKeyboardMarkup | TgReplyKeyboardRemove | TgForceReply; }; /** * Parameters of {@link TgApi.sendVenue} method. * * @see https://core.telegram.org/bots/api#sendvenue */ export type TgSendVenueParams = { /** * Unique identifier of the business connection on behalf of which the message will be sent */ business_connection_id?: string; /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** * Latitude of the venue */ latitude: number; /** * Longitude of the venue */ longitude: number; /** * Name of the venue */ title: string; /** * Address of the venue */ address: string; /** * Foursquare identifier of the venue */ foursquare_id?: string; /** * Foursquare type of the venue, if known. (For example, "arts_entertainment/default", "arts_entertainment/aquarium" or "food/icecream".) */ foursquare_type?: string; /** * Google Places identifier of the venue */ google_place_id?: string; /** * Google Places type of the venue. (See supported types.) */ google_place_type?: string; /** * Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** * Protects the contents of the sent message from forwarding and saving */ protect_content?: boolean; /** * Unique identifier of the message effect to be added to the message; for private chats only */ message_effect_id?: string; /** * Description of the message to reply to */ reply_parameters?: TgReplyParameters; /** * Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user */ reply_markup?: | TgInlineKeyboardMarkup | TgReplyKeyboardMarkup | TgReplyKeyboardRemove | TgForceReply; }; /** * Parameters of {@link TgApi.sendContact} method. * * @see https://core.telegram.org/bots/api#sendcontact */ export type TgSendContactParams = { /** * Unique identifier of the business connection on behalf of which the message will be sent */ business_connection_id?: string; /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** * Contact's phone number */ phone_number: string; /** * Contact's first name */ first_name: string; /** * Contact's last name */ last_name?: string; /** * Additional data about the contact in the form of a vCard, 0-2048 bytes */ vcard?: string; /** * Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** * Protects the contents of the sent message from forwarding and saving */ protect_content?: boolean; /** * Unique identifier of the message effect to be added to the message; for private chats only */ message_effect_id?: string; /** * Description of the message to reply to */ reply_parameters?: TgReplyParameters; /** * Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user */ reply_markup?: | TgInlineKeyboardMarkup | TgReplyKeyboardMarkup | TgReplyKeyboardRemove | TgForceReply; }; /** * Parameters of {@link TgApi.sendPoll} method. * * @see https://core.telegram.org/bots/api#sendpoll */ export type TgSendPollParams = { /** * Unique identifier of the business connection on behalf of which the message will be sent */ business_connection_id?: string; /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** * Poll question, 1-300 characters */ question: string; /** * Mode for parsing entities in the question. See formatting options for more details. Currently, only custom emoji entities are allowed */ question_parse_mode?: undefined | "HTML" | "Markdown" | "MarkdownV2"; /** * A JSON-serialized list of special entities that appear in the poll question. It can be specified instead of question_parse_mode */ question_entities?: TgMessageEntity[]; /** * A JSON-serialized list of 2-10 answer options */ options: TgInputPollOption[]; /** * True, if the poll needs to be anonymous, defaults to True */ is_anonymous?: boolean; /** * Poll type, "quiz" or "regular", defaults to "regular" */ type?: string; /** * True, if the poll allows multiple answers, ignored for polls in quiz mode, defaults to False */ allows_multiple_answers?: boolean; /** * 0-based identifier of the correct answer option, required for polls in quiz mode */ correct_option_id?: number; /** * Text that is shown when a user chooses an incorrect answer or taps on the lamp icon in a quiz-style poll, 0-200 characters with at most 2 line feeds after entities parsing */ explanation?: string; /** * Mode for parsing entities in the explanation. See formatting options for more details. */ explanation_parse_mode?: undefined | "HTML" | "Markdown" | "MarkdownV2"; /** * A JSON-serialized list of special entities that appear in the poll explanation. It can be specified instead of explanation_parse_mode */ explanation_entities?: TgMessageEntity[]; /** * Amount of time in seconds the poll will be active after creation, 5-600. Can't be used together with close_date. */ open_period?: number; /** * Point in time (Unix timestamp) when the poll will be automatically closed. Must be at least 5 and no more than 600 seconds in the future. Can't be used together with open_period. */ close_date?: number; /** * Pass True if the poll needs to be immediately closed. This can be useful for poll preview. */ is_closed?: boolean; /** * Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** * Protects the contents of the sent message from forwarding and saving */ protect_content?: boolean; /** * Unique identifier of the message effect to be added to the message; for private chats only */ message_effect_id?: string; /** * Description of the message to reply to */ reply_parameters?: TgReplyParameters; /** * Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user */ reply_markup?: | TgInlineKeyboardMarkup | TgReplyKeyboardMarkup | TgReplyKeyboardRemove | TgForceReply; }; /** * Parameters of {@link TgApi.sendDice} method. * * @see https://core.telegram.org/bots/api#senddice */ export type TgSendDiceParams = { /** * Unique identifier of the business connection on behalf of which the message will be sent */ business_connection_id?: string; /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** * Emoji on which the dice throw animation is based. Currently, must be one of "🎲", "🎯", "🏀", "⚽", "🎳", or "🎰". Dice can have values 1-6 for "🎲", "🎯" and "🎳", values 1-5 for "🏀" and "⚽", and values 1-64 for "🎰". Defaults to "🎲" */ emoji?: | "\uD83C\uDFB2" | "\uD83C\uDFAF" | "\uD83C\uDFC0" | "\u26BD" | "\uD83C\uDFB3" | "\uD83C\uDFB0"; /** * Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** * Protects the contents of the sent message from forwarding */ protect_content?: boolean; /** * Unique identifier of the message effect to be added to the message; for private chats only */ message_effect_id?: string; /** * Description of the message to reply to */ reply_parameters?: TgReplyParameters; /** * Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user */ reply_markup?: | TgInlineKeyboardMarkup | TgReplyKeyboardMarkup | TgReplyKeyboardRemove | TgForceReply; }; /** * Parameters of {@link TgApi.sendChatAction} method. * * @see https://core.telegram.org/bots/api#sendchataction */ export type TgSendChatActionParams = { /** * Unique identifier of the business connection on behalf of which the action will be sent */ business_connection_id?: string; /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Unique identifier for the target message thread; for supergroups only */ message_thread_id?: number; /** * Type of action to broadcast. Choose one, depending on what the user is about to receive: typing for text messages, upload_photo for photos, record_video or upload_video for videos, record_voice or upload_voice for voice notes, upload_document for general files, choose_sticker for stickers, find_location for location data, record_video_note or upload_video_note for video notes. */ action: string; }; /** * Parameters of {@link TgApi.setMessageReaction} method. * * @see https://core.telegram.org/bots/api#setmessagereaction */ export type TgSetMessageReactionParams = { /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Identifier of the target message. If the message belongs to a media group, the reaction is set to the first non-deleted message in the group instead. */ message_id: number; /** * A JSON-serialized list of reaction types to set on the message. Currently, as non-premium users, bots can set up to one reaction per message. A custom emoji reaction can be used if it is either already present on the message or explicitly allowed by chat administrators. */ reaction?: TgReactionType[]; /** * Pass True to set the reaction with a big animation */ is_big?: boolean; }; /** * Parameters of {@link TgApi.getUserProfilePhotos} method. * * @see https://core.telegram.org/bots/api#getuserprofilephotos */ export type TgGetUserProfilePhotosParams = { /** * Unique identifier of the target user */ user_id: number; /** * Sequential number of the first photo to be returned. By default, all photos are returned. */ offset?: number; /** * Limits the number of photos to be retrieved. Values between 1-100 are accepted. Defaults to 100. */ limit?: number; }; /** * Parameters of {@link TgApi.getFile} method. * * @see https://core.telegram.org/bots/api#getfile */ export type TgGetFileParams = { /** * File identifier to get information about */ file_id: string; }; /** * Parameters of {@link TgApi.banChatMember} method. * * @see https://core.telegram.org/bots/api#banchatmember */ export type TgBanChatMemberParams = { /** * Unique identifier for the target group or username of the target supergroup or channel (in the format @channelusername) */ chat_id: number | string; /** * Unique identifier of the target user */ user_id: number; /** * Date when the user will be unbanned; Unix time. If user is banned for more than 366 days or less than 30 seconds from the current time they are considered to be banned forever. Applied for supergroups and channels only. */ until_date?: number; /** * Pass True to delete all messages from the chat for the user that is being removed. If False, the user will be able to see messages in the group that were sent before the user was removed. Always True for supergroups and channels. */ revoke_messages?: boolean; }; /** * Parameters of {@link TgApi.unbanChatMember} method. * * @see https://core.telegram.org/bots/api#unbanchatmember */ export type TgUnbanChatMemberParams = { /** * Unique identifier for the target group or username of the target supergroup or channel (in the format @channelusername) */ chat_id: number | string; /** * Unique identifier of the target user */ user_id: number; /** * Do nothing if the user is not banned */ only_if_banned?: boolean; }; /** * Parameters of {@link TgApi.restrictChatMember} method. * * @see https://core.telegram.org/bots/api#restrictchatmember */ export type TgRestrictChatMemberParams = { /** * Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername) */ chat_id: number | string; /** * Unique identifier of the target user */ user_id: number; /** * A JSON-serialized object for new user permissions */ permissions: TgChatPermissions; /** * Pass True if chat permissions are set independently. Otherwise, the can_send_other_messages and can_add_web_page_previews permissions will imply the can_send_messages, can_send_audios, can_send_documents, can_send_photos, can_send_videos, can_send_video_notes, and can_send_voice_notes permissions; the can_send_polls permission will imply the can_send_messages permission. */ use_independent_chat_permissions?: boolean; /** * Date when restrictions will be lifted for the user; Unix time. If user is restricted for more than 366 days or less than 30 seconds from the current time, they are considered to be restricted forever */ until_date?: number; }; /** * Parameters of {@link TgApi.promoteChatMember} method. * * @see https://core.telegram.org/bots/api#promotechatmember */ export type TgPromoteChatMemberParams = { /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Unique identifier of the target user */ user_id: number; /** * Pass True if the administrator's presence in the chat is hidden */ is_anonymous?: boolean; /** * Pass True if the administrator can access the chat event log, get boost list, see hidden supergroup and channel members, report spam messages and ignore slow mode. Implied by any other administrator privilege. */ can_manage_chat?: boolean; /** * Pass True if the administrator can delete messages of other users */ can_delete_messages?: boolean; /** * Pass True if the administrator can manage video chats */ can_manage_video_chats?: boolean; /** * Pass True if the administrator can restrict, ban or unban chat members, or access supergroup statistics */ can_restrict_members?: boolean; /** * Pass True if the administrator can add new administrators with a subset of their own privileges or demote administrators that they have promoted, directly or indirectly (promoted by administrators that were appointed by him) */ can_promote_members?: boolean; /** * Pass True if the administrator can change chat title, photo and other settings */ can_change_info?: boolean; /** * Pass True if the administrator can invite new users to the chat */ can_invite_users?: boolean; /** * Pass True if the administrator can post stories to the chat */ can_post_stories?: boolean; /** * Pass True if the administrator can edit stories posted by other users, post stories to the chat page, pin chat stories, and access the chat's story archive */ can_edit_stories?: boolean; /** * Pass True if the administrator can delete stories posted by other users */ can_delete_stories?: boolean; /** * Pass True if the administrator can post messages in the channel, or access channel statistics; for channels only */ can_post_messages?: boolean; /** * Pass True if the administrator can edit messages of other users and can pin messages; for channels only */ can_edit_messages?: boolean; /** * Pass True if the administrator can pin messages; for supergroups only */ can_pin_messages?: boolean; /** * Pass True if the user is allowed to create, rename, close, and reopen forum topics; for supergroups only */ can_manage_topics?: boolean; }; /** * Parameters of {@link TgApi.setChatAdministratorCustomTitle} method. * * @see https://core.telegram.org/bots/api#setchatadministratorcustomtitle */ export type TgSetChatAdministratorCustomTitleParams = { /** * Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername) */ chat_id: number | string; /** * Unique identifier of the target user */ user_id: number; /** * New custom title for the administrator; 0-16 characters, emoji are not allowed */ custom_title: string; }; /** * Parameters of {@link TgApi.banChatSenderChat} method. * * @see https://core.telegram.org/bots/api#banchatsenderchat */ export type TgBanChatSenderChatParams = { /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Unique identifier of the target sender chat */ sender_chat_id: number; }; /** * Parameters of {@link TgApi.unbanChatSenderChat} method. * * @see https://core.telegram.org/bots/api#unbanchatsenderchat */ export type TgUnbanChatSenderChatParams = { /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Unique identifier of the target sender chat */ sender_chat_id: number; }; /** * Parameters of {@link TgApi.setChatPermissions} method. * * @see https://core.telegram.org/bots/api#setchatpermissions */ export type TgSetChatPermissionsParams = { /** * Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername) */ chat_id: number | string; /** * A JSON-serialized object for new default chat permissions */ permissions: TgChatPermissions; /** * Pass True if chat permissions are set independently. Otherwise, the can_send_other_messages and can_add_web_page_previews permissions will imply the can_send_messages, can_send_audios, can_send_documents, can_send_photos, can_send_videos, can_send_video_notes, and can_send_voice_notes permissions; the can_send_polls permission will imply the can_send_messages permission. */ use_independent_chat_permissions?: boolean; }; /** * Parameters of {@link TgApi.exportChatInviteLink} method. * * @see https://core.telegram.org/bots/api#exportchatinvitelink */ export type TgExportChatInviteLinkParams = { /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; }; /** * Parameters of {@link TgApi.createChatInviteLink} method. * * @see https://core.telegram.org/bots/api#createchatinvitelink */ export type TgCreateChatInviteLinkParams = { /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Invite link name; 0-32 characters */ name?: string; /** * Point in time (Unix timestamp) when the link will expire */ expire_date?: number; /** * The maximum number of users that can be members of the chat simultaneously after joining the chat via this invite link; 1-99999 */ member_limit?: number; /** * True, if users joining the chat via the link need to be approved by chat administrators. If True, member_limit can't be specified */ creates_join_request?: boolean; }; /** * Parameters of {@link TgApi.editChatInviteLink} method. * * @see https://core.telegram.org/bots/api#editchatinvitelink */ export type TgEditChatInviteLinkParams = { /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * The invite link to edit */ invite_link: string; /** * Invite link name; 0-32 characters */ name?: string; /** * Point in time (Unix timestamp) when the link will expire */ expire_date?: number; /** * The maximum number of users that can be members of the chat simultaneously after joining the chat via this invite link; 1-99999 */ member_limit?: number; /** * True, if users joining the chat via the link need to be approved by chat administrators. If True, member_limit can't be specified */ creates_join_request?: boolean; }; /** * Parameters of {@link TgApi.revokeChatInviteLink} method. * * @see https://core.telegram.org/bots/api#revokechatinvitelink */ export type TgRevokeChatInviteLinkParams = { /** * Unique identifier of the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * The invite link to revoke */ invite_link: string; }; /** * Parameters of {@link TgApi.approveChatJoinRequest} method. * * @see https://core.telegram.org/bots/api#approvechatjoinrequest */ export type TgApproveChatJoinRequestParams = { /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Unique identifier of the target user */ user_id: number; }; /** * Parameters of {@link TgApi.declineChatJoinRequest} method. * * @see https://core.telegram.org/bots/api#declinechatjoinrequest */ export type TgDeclineChatJoinRequestParams = { /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Unique identifier of the target user */ user_id: number; }; /** * Parameters of {@link TgApi.setChatPhoto} method. * * @see https://core.telegram.org/bots/api#setchatphoto */ export type TgSetChatPhotoParams = { /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * New chat photo, uploaded using multipart/form-data */ photo: TgInputFile; }; /** * Parameters of {@link TgApi.deleteChatPhoto} method. * * @see https://core.telegram.org/bots/api#deletechatphoto */ export type TgDeleteChatPhotoParams = { /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; }; /** * Parameters of {@link TgApi.setChatTitle} method. * * @see https://core.telegram.org/bots/api#setchattitle */ export type TgSetChatTitleParams = { /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * New chat title, 1-128 characters */ title: string; }; /** * Parameters of {@link TgApi.setChatDescription} method. * * @see https://core.telegram.org/bots/api#setchatdescription */ export type TgSetChatDescriptionParams = { /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * New chat description, 0-255 characters */ description?: string; }; /** * Parameters of {@link TgApi.pinChatMessage} method. * * @see https://core.telegram.org/bots/api#pinchatmessage */ export type TgPinChatMessageParams = { /** * Unique identifier of the business connection on behalf of which the message will be pinned */ business_connection_id?: string; /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Identifier of a message to pin */ message_id: number; /** * Pass True if it is not necessary to send a notification to all chat members about the new pinned message. Notifications are always disabled in channels and private chats. */ disable_notification?: boolean; }; /** * Parameters of {@link TgApi.unpinChatMessage} method. * * @see https://core.telegram.org/bots/api#unpinchatmessage */ export type TgUnpinChatMessageParams = { /** * Unique identifier of the business connection on behalf of which the message will be unpinned */ business_connection_id?: string; /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Identifier of the message to unpin. Required if business_connection_id is specified. If not specified, the most recent pinned message (by sending date) will be unpinned. */ message_id?: number; }; /** * Parameters of {@link TgApi.unpinAllChatMessages} method. * * @see https://core.telegram.org/bots/api#unpinallchatmessages */ export type TgUnpinAllChatMessagesParams = { /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; }; /** * Parameters of {@link TgApi.leaveChat} method. * * @see https://core.telegram.org/bots/api#leavechat */ export type TgLeaveChatParams = { /** * Unique identifier for the target chat or username of the target supergroup or channel (in the format @channelusername) */ chat_id: number | string; }; /** * Parameters of {@link TgApi.getChat} method. * * @see https://core.telegram.org/bots/api#getchat */ export type TgGetChatParams = { /** * Unique identifier for the target chat or username of the target supergroup or channel (in the format @channelusername) */ chat_id: number | string; }; /** * Parameters of {@link TgApi.getChatAdministrators} method. * * @see https://core.telegram.org/bots/api#getchatadministrators */ export type TgGetChatAdministratorsParams = { /** * Unique identifier for the target chat or username of the target supergroup or channel (in the format @channelusername) */ chat_id: number | string; }; /** * Parameters of {@link TgApi.getChatMemberCount} method. * * @see https://core.telegram.org/bots/api#getchatmembercount */ export type TgGetChatMemberCountParams = { /** * Unique identifier for the target chat or username of the target supergroup or channel (in the format @channelusername) */ chat_id: number | string; }; /** * Parameters of {@link TgApi.getChatMember} method. * * @see https://core.telegram.org/bots/api#getchatmember */ export type TgGetChatMemberParams = { /** * Unique identifier for the target chat or username of the target supergroup or channel (in the format @channelusername) */ chat_id: number | string; /** * Unique identifier of the target user */ user_id: number; }; /** * Parameters of {@link TgApi.setChatStickerSet} method. * * @see https://core.telegram.org/bots/api#setchatstickerset */ export type TgSetChatStickerSetParams = { /** * Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername) */ chat_id: number | string; /** * Name of the sticker set to be set as the group sticker set */ sticker_set_name: string; }; /** * Parameters of {@link TgApi.deleteChatStickerSet} method. * * @see https://core.telegram.org/bots/api#deletechatstickerset */ export type TgDeleteChatStickerSetParams = { /** * Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername) */ chat_id: number | string; }; /** * Parameters of {@link TgApi.createForumTopic} method. * * @see https://core.telegram.org/bots/api#createforumtopic */ export type TgCreateForumTopicParams = { /** * Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername) */ chat_id: number | string; /** * Topic name, 1-128 characters */ name: string; /** * Color of the topic icon in RGB format. Currently, must be one of 7322096 (0x6FB9F0), 16766590 (0xFFD67E), 13338331 (0xCB86DB), 9367192 (0x8EEE98), 16749490 (0xFF93B2), or 16478047 (0xFB6F5F) */ icon_color?: number; /** * Unique identifier of the custom emoji shown as the topic icon. Use getForumTopicIconStickers to get all allowed custom emoji identifiers. */ icon_custom_emoji_id?: string; }; /** * Parameters of {@link TgApi.editForumTopic} method. * * @see https://core.telegram.org/bots/api#editforumtopic */ export type TgEditForumTopicParams = { /** * Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername) */ chat_id: number | string; /** * Unique identifier for the target message thread of the forum topic */ message_thread_id: number; /** * New topic name, 0-128 characters. If not specified or empty, the current name of the topic will be kept */ name?: string; /** * New unique identifier of the custom emoji shown as the topic icon. Use getForumTopicIconStickers to get all allowed custom emoji identifiers. Pass an empty string to remove the icon. If not specified, the current icon will be kept */ icon_custom_emoji_id?: string; }; /** * Parameters of {@link TgApi.closeForumTopic} method. * * @see https://core.telegram.org/bots/api#closeforumtopic */ export type TgCloseForumTopicParams = { /** * Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername) */ chat_id: number | string; /** * Unique identifier for the target message thread of the forum topic */ message_thread_id: number; }; /** * Parameters of {@link TgApi.reopenForumTopic} method. * * @see https://core.telegram.org/bots/api#reopenforumtopic */ export type TgReopenForumTopicParams = { /** * Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername) */ chat_id: number | string; /** * Unique identifier for the target message thread of the forum topic */ message_thread_id: number; }; /** * Parameters of {@link TgApi.deleteForumTopic} method. * * @see https://core.telegram.org/bots/api#deleteforumtopic */ export type TgDeleteForumTopicParams = { /** * Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername) */ chat_id: number | string; /** * Unique identifier for the target message thread of the forum topic */ message_thread_id: number; }; /** * Parameters of {@link TgApi.unpinAllForumTopicMessages} method. * * @see https://core.telegram.org/bots/api#unpinallforumtopicmessages */ export type TgUnpinAllForumTopicMessagesParams = { /** * Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername) */ chat_id: number | string; /** * Unique identifier for the target message thread of the forum topic */ message_thread_id: number; }; /** * Parameters of {@link TgApi.editGeneralForumTopic} method. * * @see https://core.telegram.org/bots/api#editgeneralforumtopic */ export type TgEditGeneralForumTopicParams = { /** * Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername) */ chat_id: number | string; /** * New topic name, 1-128 characters */ name: string; }; /** * Parameters of {@link TgApi.closeGeneralForumTopic} method. * * @see https://core.telegram.org/bots/api#closegeneralforumtopic */ export type TgCloseGeneralForumTopicParams = { /** * Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername) */ chat_id: number | string; }; /** * Parameters of {@link TgApi.reopenGeneralForumTopic} method. * * @see https://core.telegram.org/bots/api#reopengeneralforumtopic */ export type TgReopenGeneralForumTopicParams = { /** * Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername) */ chat_id: number | string; }; /** * Parameters of {@link TgApi.hideGeneralForumTopic} method. * * @see https://core.telegram.org/bots/api#hidegeneralforumtopic */ export type TgHideGeneralForumTopicParams = { /** * Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername) */ chat_id: number | string; }; /** * Parameters of {@link TgApi.unhideGeneralForumTopic} method. * * @see https://core.telegram.org/bots/api#unhidegeneralforumtopic */ export type TgUnhideGeneralForumTopicParams = { /** * Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername) */ chat_id: number | string; }; /** * Parameters of {@link TgApi.unpinAllGeneralForumTopicMessages} method. * * @see https://core.telegram.org/bots/api#unpinallgeneralforumtopicmessages */ export type TgUnpinAllGeneralForumTopicMessagesParams = { /** * Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername) */ chat_id: number | string; }; /** * Parameters of {@link TgApi.answerCallbackQuery} method. * * @see https://core.telegram.org/bots/api#answercallbackquery */ export type TgAnswerCallbackQueryParams = { /** * Unique identifier for the query to be answered */ callback_query_id: string; /** * Text of the notification. If not specified, nothing will be shown to the user, 0-200 characters */ text?: string; /** * If True, an alert will be shown by the client instead of a notification at the top of the chat screen. Defaults to false. */ show_alert?: boolean; /** * URL that will be opened by the user's client. If you have created a Game and accepted the conditions via @BotFather, specify the URL that opens your game - note that this will only work if the query comes from a callback_game button. Otherwise, you may use links like t.me/your_bot?start=XXXX that open your bot with a parameter. */ url?: string; /** * The maximum amount of time in seconds that the result of the callback query may be cached client-side. Telegram apps will support caching starting in version 3.14. Defaults to 0. */ cache_time?: number; }; /** * Parameters of {@link TgApi.getUserChatBoosts} method. * * @see https://core.telegram.org/bots/api#getuserchatboosts */ export type TgGetUserChatBoostsParams = { /** * Unique identifier for the chat or username of the channel (in the format @channelusername) */ chat_id: number | string; /** * Unique identifier of the target user */ user_id: number; }; /** * Parameters of {@link TgApi.getBusinessConnection} method. * * @see https://core.telegram.org/bots/api#getbusinessconnection */ export type TgGetBusinessConnectionParams = { /** * Unique identifier of the business connection */ business_connection_id: string; }; /** * Parameters of {@link TgApi.setMyCommands} method. * * @see https://core.telegram.org/bots/api#setmycommands */ export type TgSetMyCommandsParams = { /** * A JSON-serialized list of bot commands to be set as the list of the bot's commands. At most 100 commands can be specified. */ commands: TgBotCommand[]; /** * A JSON-serialized object, describing scope of users for which the commands are relevant. Defaults to BotCommandScopeDefault. */ scope?: TgBotCommandScope; /** * A two-letter ISO 639-1 language code. If empty, commands will be applied to all users from the given scope, for whose language there are no dedicated commands */ language_code?: string; }; /** * Parameters of {@link TgApi.deleteMyCommands} method. * * @see https://core.telegram.org/bots/api#deletemycommands */ export type TgDeleteMyCommandsParams = { /** * A JSON-serialized object, describing scope of users for which the commands are relevant. Defaults to BotCommandScopeDefault. */ scope?: TgBotCommandScope; /** * A two-letter ISO 639-1 language code. If empty, commands will be applied to all users from the given scope, for whose language there are no dedicated commands */ language_code?: string; }; /** * Parameters of {@link TgApi.getMyCommands} method. * * @see https://core.telegram.org/bots/api#getmycommands */ export type TgGetMyCommandsParams = { /** * A JSON-serialized object, describing scope of users. Defaults to BotCommandScopeDefault. */ scope?: TgBotCommandScope; /** * A two-letter ISO 639-1 language code or an empty string */ language_code?: string; }; /** * Parameters of {@link TgApi.setMyName} method. * * @see https://core.telegram.org/bots/api#setmyname */ export type TgSetMyNameParams = { /** * New bot name; 0-64 characters. Pass an empty string to remove the dedicated name for the given language. */ name?: string; /** * A two-letter ISO 639-1 language code. If empty, the name will be shown to all users for whose language there is no dedicated name. */ language_code?: string; }; /** * Parameters of {@link TgApi.getMyName} method. * * @see https://core.telegram.org/bots/api#getmyname */ export type TgGetMyNameParams = { /** * A two-letter ISO 639-1 language code or an empty string */ language_code?: string; }; /** * Parameters of {@link TgApi.setMyDescription} method. * * @see https://core.telegram.org/bots/api#setmydescription */ export type TgSetMyDescriptionParams = { /** * New bot description; 0-512 characters. Pass an empty string to remove the dedicated description for the given language. */ description?: string; /** * A two-letter ISO 639-1 language code. If empty, the description will be applied to all users for whose language there is no dedicated description. */ language_code?: string; }; /** * Parameters of {@link TgApi.getMyDescription} method. * * @see https://core.telegram.org/bots/api#getmydescription */ export type TgGetMyDescriptionParams = { /** * A two-letter ISO 639-1 language code or an empty string */ language_code?: string; }; /** * Parameters of {@link TgApi.setMyShortDescription} method. * * @see https://core.telegram.org/bots/api#setmyshortdescription */ export type TgSetMyShortDescriptionParams = { /** * New short description for the bot; 0-120 characters. Pass an empty string to remove the dedicated short description for the given language. */ short_description?: string; /** * A two-letter ISO 639-1 language code. If empty, the short description will be applied to all users for whose language there is no dedicated short description. */ language_code?: string; }; /** * Parameters of {@link TgApi.getMyShortDescription} method. * * @see https://core.telegram.org/bots/api#getmyshortdescription */ export type TgGetMyShortDescriptionParams = { /** * A two-letter ISO 639-1 language code or an empty string */ language_code?: string; }; /** * Parameters of {@link TgApi.setChatMenuButton} method. * * @see https://core.telegram.org/bots/api#setchatmenubutton */ export type TgSetChatMenuButtonParams = { /** * Unique identifier for the target private chat. If not specified, default bot's menu button will be changed */ chat_id?: number; /** * A JSON-serialized object for the bot's new menu button. Defaults to MenuButtonDefault */ menu_button?: TgMenuButton; }; /** * Parameters of {@link TgApi.getChatMenuButton} method. * * @see https://core.telegram.org/bots/api#getchatmenubutton */ export type TgGetChatMenuButtonParams = { /** * Unique identifier for the target private chat. If not specified, default bot's menu button will be returned */ chat_id?: number; }; /** * Parameters of {@link TgApi.setMyDefaultAdministratorRights} method. * * @see https://core.telegram.org/bots/api#setmydefaultadministratorrights */ export type TgSetMyDefaultAdministratorRightsParams = { /** * A JSON-serialized object describing new default administrator rights. If not specified, the default administrator rights will be cleared. */ rights?: TgChatAdministratorRights; /** * Pass True to change the default administrator rights of the bot in channels. Otherwise, the default administrator rights of the bot for groups and supergroups will be changed. */ for_channels?: boolean; }; /** * Parameters of {@link TgApi.getMyDefaultAdministratorRights} method. * * @see https://core.telegram.org/bots/api#getmydefaultadministratorrights */ export type TgGetMyDefaultAdministratorRightsParams = { /** * Pass True to get default administrator rights of the bot in channels. Otherwise, default administrator rights of the bot for groups and supergroups will be returned. */ for_channels?: boolean; }; /** * Parameters of {@link TgApi.editMessageText} method. * * @see https://core.telegram.org/bots/api#editmessagetext */ export type TgEditMessageTextParams = { /** * Unique identifier of the business connection on behalf of which the message to be edited was sent */ business_connection_id?: string; /** * Required if inline_message_id is not specified. Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id?: number | string; /** * Required if inline_message_id is not specified. Identifier of the message to edit */ message_id?: number; /** * Required if chat_id and message_id are not specified. Identifier of the inline message */ inline_message_id?: string; /** * New text of the message, 1-4096 characters after entities parsing */ text: string; /** * Mode for parsing entities in the message text. See formatting options for more details. */ parse_mode?: undefined | "HTML" | "Markdown" | "MarkdownV2"; /** * A JSON-serialized list of special entities that appear in message text, which can be specified instead of parse_mode */ entities?: TgMessageEntity[]; /** * Link preview generation options for the message */ link_preview_options?: TgLinkPreviewOptions; /** * A JSON-serialized object for an inline keyboard. */ reply_markup?: TgInlineKeyboardMarkup; }; /** * Parameters of {@link TgApi.editMessageCaption} method. * * @see https://core.telegram.org/bots/api#editmessagecaption */ export type TgEditMessageCaptionParams = { /** * Unique identifier of the business connection on behalf of which the message to be edited was sent */ business_connection_id?: string; /** * Required if inline_message_id is not specified. Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id?: number | string; /** * Required if inline_message_id is not specified. Identifier of the message to edit */ message_id?: number; /** * Required if chat_id and message_id are not specified. Identifier of the inline message */ inline_message_id?: string; /** * New caption of the message, 0-1024 characters after entities parsing */ caption?: string; /** * Mode for parsing entities in the message caption. See formatting options for more details. */ parse_mode?: undefined | "HTML" | "Markdown" | "MarkdownV2"; /** * A JSON-serialized list of special entities that appear in the caption, which can be specified instead of parse_mode */ caption_entities?: TgMessageEntity[]; /** * Pass True, if the caption must be shown above the message media. Supported only for animation, photo and video messages. */ show_caption_above_media?: boolean; /** * A JSON-serialized object for an inline keyboard. */ reply_markup?: TgInlineKeyboardMarkup; }; /** * Parameters of {@link TgApi.editMessageMedia} method. * * @see https://core.telegram.org/bots/api#editmessagemedia */ export type TgEditMessageMediaParams = { /** * Unique identifier of the business connection on behalf of which the message to be edited was sent */ business_connection_id?: string; /** * Required if inline_message_id is not specified. Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id?: number | string; /** * Required if inline_message_id is not specified. Identifier of the message to edit */ message_id?: number; /** * Required if chat_id and message_id are not specified. Identifier of the inline message */ inline_message_id?: string; /** * A JSON-serialized object for a new media content of the message */ media: TgInputMedia; /** * A JSON-serialized object for a new inline keyboard. */ reply_markup?: TgInlineKeyboardMarkup; }; /** * Parameters of {@link TgApi.editMessageLiveLocation} method. * * @see https://core.telegram.org/bots/api#editmessagelivelocation */ export type TgEditMessageLiveLocationParams = { /** * Unique identifier of the business connection on behalf of which the message to be edited was sent */ business_connection_id?: string; /** * Required if inline_message_id is not specified. Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id?: number | string; /** * Required if inline_message_id is not specified. Identifier of the message to edit */ message_id?: number; /** * Required if chat_id and message_id are not specified. Identifier of the inline message */ inline_message_id?: string; /** * Latitude of new location */ latitude: number; /** * Longitude of new location */ longitude: number; /** * New period in seconds during which the location can be updated, starting from the message send date. If 0x7FFFFFFF is specified, then the location can be updated forever. Otherwise, the new value must not exceed the current live_period by more than a day, and the live location expiration date must remain within the next 90 days. If not specified, then live_period remains unchanged */ live_period?: number; /** * The radius of uncertainty for the location, measured in meters; 0-1500 */ horizontal_accuracy?: number; /** * Direction in which the user is moving, in degrees. Must be between 1 and 360 if specified. */ heading?: number; /** * The maximum distance for proximity alerts about approaching another chat member, in meters. Must be between 1 and 100000 if specified. */ proximity_alert_radius?: number; /** * A JSON-serialized object for a new inline keyboard. */ reply_markup?: TgInlineKeyboardMarkup; }; /** * Parameters of {@link TgApi.stopMessageLiveLocation} method. * * @see https://core.telegram.org/bots/api#stopmessagelivelocation */ export type TgStopMessageLiveLocationParams = { /** * Unique identifier of the business connection on behalf of which the message to be edited was sent */ business_connection_id?: string; /** * Required if inline_message_id is not specified. Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id?: number | string; /** * Required if inline_message_id is not specified. Identifier of the message with live location to stop */ message_id?: number; /** * Required if chat_id and message_id are not specified. Identifier of the inline message */ inline_message_id?: string; /** * A JSON-serialized object for a new inline keyboard. */ reply_markup?: TgInlineKeyboardMarkup; }; /** * Parameters of {@link TgApi.editMessageReplyMarkup} method. * * @see https://core.telegram.org/bots/api#editmessagereplymarkup */ export type TgEditMessageReplyMarkupParams = { /** * Unique identifier of the business connection on behalf of which the message to be edited was sent */ business_connection_id?: string; /** * Required if inline_message_id is not specified. Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id?: number | string; /** * Required if inline_message_id is not specified. Identifier of the message to edit */ message_id?: number; /** * Required if chat_id and message_id are not specified. Identifier of the inline message */ inline_message_id?: string; /** * A JSON-serialized object for an inline keyboard. */ reply_markup?: TgInlineKeyboardMarkup; }; /** * Parameters of {@link TgApi.stopPoll} method. * * @see https://core.telegram.org/bots/api#stoppoll */ export type TgStopPollParams = { /** * Unique identifier of the business connection on behalf of which the message to be edited was sent */ business_connection_id?: string; /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Identifier of the original message with the poll */ message_id: number; /** * A JSON-serialized object for a new message inline keyboard. */ reply_markup?: TgInlineKeyboardMarkup; }; /** * Parameters of {@link TgApi.deleteMessage} method. * * @see https://core.telegram.org/bots/api#deletemessage */ export type TgDeleteMessageParams = { /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Identifier of the message to delete */ message_id: number; }; /** * Parameters of {@link TgApi.deleteMessages} method. * * @see https://core.telegram.org/bots/api#deletemessages */ export type TgDeleteMessagesParams = { /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * A JSON-serialized list of 1-100 identifiers of messages to delete. See deleteMessage for limitations on which messages can be deleted */ message_ids: number[]; }; /** * Parameters of {@link TgApi.sendSticker} method. * * @see https://core.telegram.org/bots/api#sendsticker */ export type TgSendStickerParams = { /** * Unique identifier of the business connection on behalf of which the message will be sent */ business_connection_id?: string; /** * Unique identifier for the target chat or username of the target channel (in the format @channelusername) */ chat_id: number | string; /** * Unique identifier for the target message thread (topic) of the forum; for forum supergroups only */ message_thread_id?: number; /** * Sticker to send. Pass a file_id as String to send a file that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a .WEBP sticker from the Internet, or upload a new .WEBP, .TGS, or .WEBM sticker using multipart/form-data. More information on Sending Files: https://core.telegram.org/bots/api#sending-files. Video and animated stickers can't be sent via an HTTP URL. */ sticker: TgInputFile | string; /** * Emoji associated with the sticker; only for just uploaded stickers */ emoji?: string; /** * Sends the message silently. Users will receive a notification with no sound. */ disable_notification?: boolean; /** * Protects the contents of the sent message from forwarding and saving */ protect_content?: boolean; /** * Unique identifier of the message effect to be added to the message; for private chats only */ message_effect_id?: string; /** * Description of the message to reply to */ reply_parameters?: TgReplyParameters; /** * Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user */ reply_markup?: | TgInlineKeyboardMarkup | TgReplyKeyboardMarkup | TgReplyKeyboardRemove | TgForceReply; }; /** * Parameters of {@link TgApi.getStickerSet} method. * * @see https://core.telegram.org/bots/api#getstickerset */ export type TgGetStickerSetParams = { /** * Name of the sticker set */ name: string; }; /** * Parameters of {@link TgApi.getCustomEmojiStickers} method. * * @see https://core.telegram.org/bots/api#getcustomemojistickers */ export type TgGetCustomEmojiStickersParams = { /** * A JSON-serialized list of custom emoji identifiers. At most 200 custom emoji identifiers can be specified. */ custom_emoji_ids: string[]; }; /** * Parameters of {@link TgApi.uploadStickerFile} method. * * @see https://core.telegram.org/bots/api#uploadstickerfile */ export type TgUploadStickerFileParams = { /**