graph.json 120 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710
  1. {
  2. "nodes": {
  3. "95355232": {
  4. "id": "95355232",
  5. "label": "JwtModule",
  6. "parent": "-536515674",
  7. "metadata": {
  8. "type": "provider",
  9. "internal": true,
  10. "sourceModuleName": "JwtModule",
  11. "durable": false,
  12. "static": true,
  13. "scope": 0,
  14. "transient": false,
  15. "exported": false,
  16. "token": "JwtModule",
  17. "initTime": 11.272083000279963
  18. }
  19. },
  20. "101486929": {
  21. "id": "101486929",
  22. "label": "UsersAdminController",
  23. "parent": "-2003726489",
  24. "metadata": {
  25. "type": "controller",
  26. "internal": false,
  27. "sourceModuleName": "UsersModule",
  28. "durable": false,
  29. "static": true,
  30. "transient": false,
  31. "exported": false,
  32. "token": "UsersAdminController"
  33. }
  34. },
  35. "171770206": {
  36. "id": "171770206",
  37. "label": "MemberOrderRepository",
  38. "parent": "545846243",
  39. "metadata": {
  40. "type": "provider",
  41. "internal": false,
  42. "sourceModuleName": "TypeOrmModule",
  43. "durable": false,
  44. "static": true,
  45. "transient": false,
  46. "exported": true,
  47. "token": "MemberOrderRepository"
  48. }
  49. },
  50. "203550704": {
  51. "id": "203550704",
  52. "label": "ExternalContextCreator",
  53. "parent": "555176277",
  54. "metadata": {
  55. "type": "provider",
  56. "internal": true,
  57. "sourceModuleName": "InternalCoreModule",
  58. "durable": false,
  59. "static": true,
  60. "scope": 0,
  61. "transient": false,
  62. "exported": true,
  63. "token": "ExternalContextCreator"
  64. }
  65. },
  66. "211572259": {
  67. "id": "211572259",
  68. "label": "ConfigHostModule",
  69. "metadata": {
  70. "type": "module",
  71. "global": true,
  72. "dynamic": false,
  73. "internal": false
  74. }
  75. },
  76. "225063248": {
  77. "id": "225063248",
  78. "label": "InternalCoreModule",
  79. "parent": "555176277",
  80. "metadata": {
  81. "type": "provider",
  82. "internal": true,
  83. "sourceModuleName": "InternalCoreModule",
  84. "durable": false,
  85. "static": true,
  86. "scope": 0,
  87. "transient": false,
  88. "exported": false,
  89. "token": "InternalCoreModule",
  90. "initTime": 24.500282999128103
  91. }
  92. },
  93. "233936880": {
  94. "id": "233936880",
  95. "label": "AppController",
  96. "parent": "-19112576",
  97. "metadata": {
  98. "type": "controller",
  99. "internal": false,
  100. "sourceModuleName": "AppModule",
  101. "durable": false,
  102. "static": true,
  103. "transient": false,
  104. "exported": false,
  105. "token": "AppController"
  106. }
  107. },
  108. "240704417": {
  109. "id": "240704417",
  110. "label": "CONFIGURABLE_MODULE_OPTIONS[7f05ef80ce6ef3d2b4753]",
  111. "parent": "-1033621697",
  112. "metadata": {
  113. "type": "provider",
  114. "internal": false,
  115. "sourceModuleName": "DevtoolsModule",
  116. "durable": false,
  117. "static": true,
  118. "scope": 0,
  119. "transient": false,
  120. "exported": false,
  121. "token": "CONFIGURABLE_MODULE_OPTIONS[7f05ef80ce6ef3d2b4753]"
  122. }
  123. },
  124. "266839889": {
  125. "id": "266839889",
  126. "label": "EntityManager",
  127. "parent": "-1026304274",
  128. "metadata": {
  129. "type": "provider",
  130. "internal": false,
  131. "sourceModuleName": "TypeOrmCoreModule",
  132. "durable": false,
  133. "static": true,
  134. "transient": false,
  135. "exported": true,
  136. "token": "EntityManager"
  137. }
  138. },
  139. "303302557": {
  140. "id": "303302557",
  141. "label": "ModuleRef",
  142. "parent": "211572259",
  143. "metadata": {
  144. "type": "provider",
  145. "internal": true,
  146. "sourceModuleName": "ConfigHostModule",
  147. "durable": false,
  148. "static": true,
  149. "scope": 0,
  150. "transient": false,
  151. "exported": false,
  152. "token": "ModuleRef"
  153. }
  154. },
  155. "373235992": {
  156. "id": "373235992",
  157. "label": "SandboxedCodeExecutor",
  158. "parent": "-1033621697",
  159. "metadata": {
  160. "type": "provider",
  161. "internal": false,
  162. "sourceModuleName": "DevtoolsModule",
  163. "durable": false,
  164. "static": true,
  165. "transient": false,
  166. "exported": false,
  167. "token": "SandboxedCodeExecutor",
  168. "initTime": 31.35524900071323
  169. }
  170. },
  171. "385041166": {
  172. "id": "385041166",
  173. "label": "JwtStrategy",
  174. "parent": "-1134487807",
  175. "metadata": {
  176. "type": "provider",
  177. "internal": false,
  178. "sourceModuleName": "AuthModule",
  179. "durable": false,
  180. "static": true,
  181. "transient": false,
  182. "exported": false,
  183. "token": "JwtStrategy",
  184. "initTime": 20.501861999742687
  185. }
  186. },
  187. "400681591": {
  188. "id": "400681591",
  189. "label": "DiscoveryService",
  190. "parent": "-643397745",
  191. "metadata": {
  192. "type": "provider",
  193. "internal": false,
  194. "sourceModuleName": "DiscoveryModule",
  195. "durable": false,
  196. "static": true,
  197. "transient": false,
  198. "exported": true,
  199. "token": "DiscoveryService",
  200. "initTime": 28.53013399988413
  201. }
  202. },
  203. "422823200": {
  204. "id": "422823200",
  205. "label": "ApplicationConfig",
  206. "parent": "1219676411",
  207. "metadata": {
  208. "type": "provider",
  209. "internal": true,
  210. "sourceModuleName": "WeixinModule",
  211. "durable": false,
  212. "static": true,
  213. "scope": 0,
  214. "transient": false,
  215. "exported": false,
  216. "token": "ApplicationConfig"
  217. }
  218. },
  219. "457665600": {
  220. "id": "457665600",
  221. "label": "AliyunModule",
  222. "parent": "612499341",
  223. "metadata": {
  224. "type": "provider",
  225. "internal": true,
  226. "sourceModuleName": "AliyunModule",
  227. "durable": false,
  228. "static": true,
  229. "scope": 0,
  230. "transient": false,
  231. "exported": false,
  232. "token": "AliyunModule",
  233. "initTime": 18.035691999830306
  234. }
  235. },
  236. "485644527": {
  237. "id": "485644527",
  238. "label": "MembershipModule",
  239. "metadata": {
  240. "type": "module",
  241. "global": false,
  242. "dynamic": false,
  243. "internal": false
  244. }
  245. },
  246. "508013108": {
  247. "id": "508013108",
  248. "label": "MembershipController",
  249. "parent": "485644527",
  250. "metadata": {
  251. "type": "controller",
  252. "internal": false,
  253. "sourceModuleName": "MembershipModule",
  254. "durable": false,
  255. "static": true,
  256. "transient": false,
  257. "exported": false,
  258. "token": "MembershipController"
  259. }
  260. },
  261. "519735830": {
  262. "id": "519735830",
  263. "label": "ApplicationConfig",
  264. "parent": "-493958991",
  265. "metadata": {
  266. "type": "provider",
  267. "internal": true,
  268. "sourceModuleName": "ChatModule",
  269. "durable": false,
  270. "static": true,
  271. "scope": 0,
  272. "transient": false,
  273. "exported": false,
  274. "token": "ApplicationConfig"
  275. }
  276. },
  277. "545846241": {
  278. "id": "545846241",
  279. "label": "TypeOrmModule",
  280. "metadata": {
  281. "type": "module",
  282. "global": false,
  283. "dynamic": true,
  284. "internal": false
  285. }
  286. },
  287. "545846242": {
  288. "id": "545846242",
  289. "label": "TypeOrmModule",
  290. "metadata": {
  291. "type": "module",
  292. "global": false,
  293. "dynamic": true,
  294. "internal": false
  295. }
  296. },
  297. "545846243": {
  298. "id": "545846243",
  299. "label": "TypeOrmModule",
  300. "metadata": {
  301. "type": "module",
  302. "global": false,
  303. "dynamic": true,
  304. "internal": false
  305. }
  306. },
  307. "545846244": {
  308. "id": "545846244",
  309. "label": "TypeOrmModule",
  310. "metadata": {
  311. "type": "module",
  312. "global": false,
  313. "dynamic": true,
  314. "internal": false
  315. }
  316. },
  317. "545846245": {
  318. "id": "545846245",
  319. "label": "TypeOrmModule",
  320. "metadata": {
  321. "type": "module",
  322. "global": false,
  323. "dynamic": true,
  324. "internal": false
  325. }
  326. },
  327. "555176277": {
  328. "id": "555176277",
  329. "label": "InternalCoreModule",
  330. "metadata": {
  331. "type": "module",
  332. "global": true,
  333. "dynamic": true,
  334. "internal": true
  335. }
  336. },
  337. "577374825": {
  338. "id": "577374825",
  339. "label": "ModuleRef",
  340. "parent": "485644527",
  341. "metadata": {
  342. "type": "provider",
  343. "internal": true,
  344. "sourceModuleName": "MembershipModule",
  345. "durable": false,
  346. "static": true,
  347. "scope": 0,
  348. "transient": false,
  349. "exported": false,
  350. "token": "ModuleRef"
  351. }
  352. },
  353. "590446087": {
  354. "id": "590446087",
  355. "label": "ModuleRef",
  356. "parent": "612499341",
  357. "metadata": {
  358. "type": "provider",
  359. "internal": true,
  360. "sourceModuleName": "AliyunModule",
  361. "durable": false,
  362. "static": true,
  363. "scope": 0,
  364. "transient": false,
  365. "exported": false,
  366. "token": "ModuleRef"
  367. }
  368. },
  369. "603011239": {
  370. "id": "603011239",
  371. "label": "UsersService",
  372. "parent": "-2003726489",
  373. "metadata": {
  374. "type": "provider",
  375. "internal": false,
  376. "sourceModuleName": "UsersModule",
  377. "durable": false,
  378. "static": true,
  379. "transient": false,
  380. "exported": true,
  381. "token": "UsersService"
  382. }
  383. },
  384. "612499341": {
  385. "id": "612499341",
  386. "label": "AliyunModule",
  387. "metadata": {
  388. "type": "module",
  389. "global": false,
  390. "dynamic": false,
  391. "internal": false
  392. }
  393. },
  394. "671882984": {
  395. "id": "671882984",
  396. "label": "Reflector",
  397. "parent": "555176277",
  398. "metadata": {
  399. "type": "provider",
  400. "internal": true,
  401. "sourceModuleName": "InternalCoreModule",
  402. "durable": false,
  403. "static": true,
  404. "transient": false,
  405. "exported": true,
  406. "token": "Reflector",
  407. "initTime": 24.288540000095963
  408. }
  409. },
  410. "687352615": {
  411. "id": "687352615",
  412. "label": "ModuleRef",
  413. "parent": "545846241",
  414. "metadata": {
  415. "type": "provider",
  416. "internal": true,
  417. "sourceModuleName": "TypeOrmModule",
  418. "durable": false,
  419. "static": true,
  420. "scope": 0,
  421. "transient": false,
  422. "exported": false,
  423. "token": "ModuleRef"
  424. }
  425. },
  426. "687352616": {
  427. "id": "687352616",
  428. "label": "ModuleRef",
  429. "parent": "545846242",
  430. "metadata": {
  431. "type": "provider",
  432. "internal": true,
  433. "sourceModuleName": "TypeOrmModule",
  434. "durable": false,
  435. "static": true,
  436. "scope": 0,
  437. "transient": false,
  438. "exported": false,
  439. "token": "ModuleRef"
  440. }
  441. },
  442. "687352617": {
  443. "id": "687352617",
  444. "label": "ModuleRef",
  445. "parent": "545846243",
  446. "metadata": {
  447. "type": "provider",
  448. "internal": true,
  449. "sourceModuleName": "TypeOrmModule",
  450. "durable": false,
  451. "static": true,
  452. "scope": 0,
  453. "transient": false,
  454. "exported": false,
  455. "token": "ModuleRef"
  456. }
  457. },
  458. "687352618": {
  459. "id": "687352618",
  460. "label": "ModuleRef",
  461. "parent": "545846244",
  462. "metadata": {
  463. "type": "provider",
  464. "internal": true,
  465. "sourceModuleName": "TypeOrmModule",
  466. "durable": false,
  467. "static": true,
  468. "scope": 0,
  469. "transient": false,
  470. "exported": false,
  471. "token": "ModuleRef"
  472. }
  473. },
  474. "687352619": {
  475. "id": "687352619",
  476. "label": "ModuleRef",
  477. "parent": "545846245",
  478. "metadata": {
  479. "type": "provider",
  480. "internal": true,
  481. "sourceModuleName": "TypeOrmModule",
  482. "durable": false,
  483. "static": true,
  484. "scope": 0,
  485. "transient": false,
  486. "exported": false,
  487. "token": "ModuleRef"
  488. }
  489. },
  490. "712454178": {
  491. "id": "712454178",
  492. "label": "ApplicationConfig",
  493. "parent": "1482218087",
  494. "metadata": {
  495. "type": "provider",
  496. "internal": true,
  497. "sourceModuleName": "ThrottlerModule",
  498. "durable": false,
  499. "static": true,
  500. "scope": 0,
  501. "transient": false,
  502. "exported": false,
  503. "token": "ApplicationConfig"
  504. }
  505. },
  506. "731684192": {
  507. "id": "731684192",
  508. "label": "TypeOrmCoreModule",
  509. "parent": "-1026304274",
  510. "metadata": {
  511. "type": "provider",
  512. "internal": true,
  513. "sourceModuleName": "TypeOrmCoreModule",
  514. "durable": false,
  515. "static": true,
  516. "scope": 0,
  517. "transient": false,
  518. "exported": false,
  519. "token": "TypeOrmCoreModule"
  520. }
  521. },
  522. "863216333": {
  523. "id": "863216333",
  524. "label": "ConfigModule",
  525. "metadata": {
  526. "type": "module",
  527. "global": false,
  528. "dynamic": false,
  529. "internal": false
  530. }
  531. },
  532. "863216334": {
  533. "id": "863216334",
  534. "label": "ConfigModule",
  535. "metadata": {
  536. "type": "module",
  537. "global": false,
  538. "dynamic": true,
  539. "internal": false
  540. }
  541. },
  542. "863216335": {
  543. "id": "863216335",
  544. "label": "ConfigModule",
  545. "metadata": {
  546. "type": "module",
  547. "global": false,
  548. "dynamic": true,
  549. "internal": false
  550. }
  551. },
  552. "863216336": {
  553. "id": "863216336",
  554. "label": "ConfigModule",
  555. "metadata": {
  556. "type": "module",
  557. "global": false,
  558. "dynamic": true,
  559. "internal": false
  560. }
  561. },
  562. "915774976": {
  563. "id": "915774976",
  564. "label": "ApplicationConfig",
  565. "parent": "1712628187",
  566. "metadata": {
  567. "type": "provider",
  568. "internal": true,
  569. "sourceModuleName": "ConfigModule",
  570. "durable": false,
  571. "static": true,
  572. "scope": 0,
  573. "transient": false,
  574. "exported": false,
  575. "token": "ApplicationConfig"
  576. }
  577. },
  578. "930519593": {
  579. "id": "930519593",
  580. "label": "ConfigService",
  581. "parent": "211572259",
  582. "metadata": {
  583. "type": "provider",
  584. "internal": false,
  585. "sourceModuleName": "ConfigHostModule",
  586. "durable": false,
  587. "static": true,
  588. "transient": false,
  589. "exported": true,
  590. "token": "Symbol(CONFIG_SERVICE)",
  591. "initTime": 28.539897999726236
  592. }
  593. },
  594. "958198135": {
  595. "id": "958198135",
  596. "label": "MembershipAdminController",
  597. "parent": "485644527",
  598. "metadata": {
  599. "type": "controller",
  600. "internal": false,
  601. "sourceModuleName": "MembershipModule",
  602. "durable": false,
  603. "static": true,
  604. "transient": false,
  605. "exported": false,
  606. "token": "MembershipAdminController"
  607. }
  608. },
  609. "1014874916": {
  610. "id": "1014874916",
  611. "label": "TypeOrmModuleId",
  612. "parent": "-1026304274",
  613. "metadata": {
  614. "type": "provider",
  615. "internal": false,
  616. "sourceModuleName": "TypeOrmCoreModule",
  617. "durable": false,
  618. "static": true,
  619. "scope": 0,
  620. "transient": false,
  621. "exported": false,
  622. "token": "TypeOrmModuleId"
  623. }
  624. },
  625. "1063746662": {
  626. "id": "1063746662",
  627. "label": "CONFIGURATION_TOKEN",
  628. "parent": "211572259",
  629. "metadata": {
  630. "type": "provider",
  631. "internal": false,
  632. "sourceModuleName": "ConfigHostModule",
  633. "durable": false,
  634. "static": true,
  635. "transient": false,
  636. "exported": true,
  637. "token": "CONFIGURATION_TOKEN",
  638. "initTime": 20.65806500054896
  639. }
  640. },
  641. "1070370213": {
  642. "id": "1070370213",
  643. "label": "JwtService",
  644. "parent": "-536515674",
  645. "metadata": {
  646. "type": "provider",
  647. "internal": false,
  648. "sourceModuleName": "JwtModule",
  649. "durable": false,
  650. "static": true,
  651. "transient": false,
  652. "exported": true,
  653. "token": "JwtService"
  654. }
  655. },
  656. "1074192353": {
  657. "id": "1074192353",
  658. "label": "ChatService",
  659. "parent": "-493958991",
  660. "metadata": {
  661. "type": "provider",
  662. "internal": false,
  663. "sourceModuleName": "ChatModule",
  664. "durable": false,
  665. "static": true,
  666. "transient": false,
  667. "exported": false,
  668. "token": "ChatService"
  669. }
  670. },
  671. "1144875719": {
  672. "id": "1144875719",
  673. "label": "ModuleRef",
  674. "parent": "863216333",
  675. "metadata": {
  676. "type": "provider",
  677. "internal": true,
  678. "sourceModuleName": "ConfigModule",
  679. "durable": false,
  680. "static": true,
  681. "scope": 0,
  682. "transient": false,
  683. "exported": false,
  684. "token": "ModuleRef"
  685. }
  686. },
  687. "1144875720": {
  688. "id": "1144875720",
  689. "label": "ModuleRef",
  690. "parent": "863216334",
  691. "metadata": {
  692. "type": "provider",
  693. "internal": true,
  694. "sourceModuleName": "ConfigModule",
  695. "durable": false,
  696. "static": true,
  697. "scope": 0,
  698. "transient": false,
  699. "exported": false,
  700. "token": "ModuleRef"
  701. }
  702. },
  703. "1144875721": {
  704. "id": "1144875721",
  705. "label": "ModuleRef",
  706. "parent": "863216335",
  707. "metadata": {
  708. "type": "provider",
  709. "internal": true,
  710. "sourceModuleName": "ConfigModule",
  711. "durable": false,
  712. "static": true,
  713. "scope": 0,
  714. "transient": false,
  715. "exported": false,
  716. "token": "ModuleRef"
  717. }
  718. },
  719. "1144875722": {
  720. "id": "1144875722",
  721. "label": "ModuleRef",
  722. "parent": "863216336",
  723. "metadata": {
  724. "type": "provider",
  725. "internal": true,
  726. "sourceModuleName": "ConfigModule",
  727. "durable": false,
  728. "static": true,
  729. "scope": 0,
  730. "transient": false,
  731. "exported": false,
  732. "token": "ModuleRef"
  733. }
  734. },
  735. "1189153544": {
  736. "id": "1189153544",
  737. "label": "ChatModule",
  738. "parent": "-493958991",
  739. "metadata": {
  740. "type": "provider",
  741. "internal": true,
  742. "sourceModuleName": "ChatModule",
  743. "durable": false,
  744. "static": true,
  745. "scope": 0,
  746. "transient": false,
  747. "exported": false,
  748. "token": "ChatModule",
  749. "initTime": 10.607218000106514
  750. }
  751. },
  752. "1197623157": {
  753. "id": "1197623157",
  754. "label": "ModuleRef",
  755. "parent": "1219676411",
  756. "metadata": {
  757. "type": "provider",
  758. "internal": true,
  759. "sourceModuleName": "WeixinModule",
  760. "durable": false,
  761. "static": true,
  762. "scope": 0,
  763. "transient": false,
  764. "exported": false,
  765. "token": "ModuleRef"
  766. }
  767. },
  768. "1218805816": {
  769. "id": "1218805816",
  770. "label": "ChatController",
  771. "parent": "-493958991",
  772. "metadata": {
  773. "type": "controller",
  774. "internal": false,
  775. "sourceModuleName": "ChatModule",
  776. "durable": false,
  777. "static": true,
  778. "transient": false,
  779. "exported": false,
  780. "token": "ChatController"
  781. }
  782. },
  783. "1219676411": {
  784. "id": "1219676411",
  785. "label": "WeixinModule",
  786. "metadata": {
  787. "type": "module",
  788. "global": false,
  789. "dynamic": false,
  790. "internal": false
  791. }
  792. },
  793. "1259084392": {
  794. "id": "1259084392",
  795. "label": "SmsRecordRepository",
  796. "parent": "545846241",
  797. "metadata": {
  798. "type": "provider",
  799. "internal": false,
  800. "sourceModuleName": "TypeOrmModule",
  801. "durable": false,
  802. "static": true,
  803. "transient": false,
  804. "exported": true,
  805. "token": "SmsRecordRepository"
  806. }
  807. },
  808. "1310883338": {
  809. "id": "1310883338",
  810. "label": "CONFIGURATION_LOADER",
  811. "parent": "863216334",
  812. "metadata": {
  813. "type": "provider",
  814. "internal": false,
  815. "sourceModuleName": "ConfigModule",
  816. "durable": false,
  817. "static": true,
  818. "transient": false,
  819. "exported": false,
  820. "token": "CONFIGURATION_LOADER",
  821. "initTime": 26.115880999714136
  822. }
  823. },
  824. "1333473084": {
  825. "id": "1333473084",
  826. "label": "CONFIGURATION_LOADER",
  827. "parent": "863216335",
  828. "metadata": {
  829. "type": "provider",
  830. "internal": false,
  831. "sourceModuleName": "ConfigModule",
  832. "durable": false,
  833. "static": true,
  834. "transient": false,
  835. "exported": false,
  836. "token": "CONFIGURATION_LOADER",
  837. "initTime": 21.56687999982387
  838. }
  839. },
  840. "1333473085": {
  841. "id": "1333473085",
  842. "label": "CONFIGURATION_LOADER",
  843. "parent": "863216336",
  844. "metadata": {
  845. "type": "provider",
  846. "internal": false,
  847. "sourceModuleName": "ConfigModule",
  848. "durable": false,
  849. "static": true,
  850. "transient": false,
  851. "exported": false,
  852. "token": "CONFIGURATION_LOADER",
  853. "initTime": 19.56431599985808
  854. }
  855. },
  856. "1349506255": {
  857. "id": "1349506255",
  858. "label": "ModuleRef",
  859. "parent": "-1327562795",
  860. "metadata": {
  861. "type": "provider",
  862. "internal": true,
  863. "sourceModuleName": "FileModule",
  864. "durable": false,
  865. "static": true,
  866. "scope": 0,
  867. "transient": false,
  868. "exported": false,
  869. "token": "ModuleRef"
  870. }
  871. },
  872. "1376902224": {
  873. "id": "1376902224",
  874. "label": "FileModule",
  875. "parent": "-1327562795",
  876. "metadata": {
  877. "type": "provider",
  878. "internal": true,
  879. "sourceModuleName": "FileModule",
  880. "durable": false,
  881. "static": true,
  882. "scope": 0,
  883. "transient": false,
  884. "exported": false,
  885. "token": "FileModule",
  886. "initTime": 10.8944840002805
  887. }
  888. },
  889. "1398129121": {
  890. "id": "1398129121",
  891. "label": "MembershipService",
  892. "parent": "485644527",
  893. "metadata": {
  894. "type": "provider",
  895. "internal": false,
  896. "sourceModuleName": "MembershipModule",
  897. "durable": false,
  898. "static": true,
  899. "transient": false,
  900. "exported": true,
  901. "token": "MembershipService"
  902. }
  903. },
  904. "1399306624": {
  905. "id": "1399306624",
  906. "label": "ThrottlerModule",
  907. "parent": "1482218087",
  908. "metadata": {
  909. "type": "provider",
  910. "internal": true,
  911. "sourceModuleName": "ThrottlerModule",
  912. "durable": false,
  913. "static": true,
  914. "scope": 0,
  915. "transient": false,
  916. "exported": false,
  917. "token": "ThrottlerModule",
  918. "initTime": 20.549883999861777
  919. }
  920. },
  921. "1404752088": {
  922. "id": "1404752088",
  923. "label": "AuthController",
  924. "parent": "-1134487807",
  925. "metadata": {
  926. "type": "controller",
  927. "internal": false,
  928. "sourceModuleName": "AuthModule",
  929. "durable": false,
  930. "static": true,
  931. "transient": false,
  932. "exported": false,
  933. "token": "AuthController"
  934. }
  935. },
  936. "1434456218": {
  937. "id": "1434456218",
  938. "label": "Reflector",
  939. "parent": "555176277",
  940. "metadata": {
  941. "type": "provider",
  942. "internal": true,
  943. "sourceModuleName": "InternalCoreModule",
  944. "durable": false,
  945. "static": true,
  946. "scope": 0,
  947. "transient": false,
  948. "exported": true,
  949. "token": "Reflector",
  950. "initTime": 31.889836000278592
  951. }
  952. },
  953. "1475573941": {
  954. "id": "1475573941",
  955. "label": "ModuleRef",
  956. "parent": "-2135742481",
  957. "metadata": {
  958. "type": "provider",
  959. "internal": true,
  960. "sourceModuleName": "TypeOrmModule",
  961. "durable": false,
  962. "static": true,
  963. "scope": 0,
  964. "transient": false,
  965. "exported": false,
  966. "token": "ModuleRef"
  967. }
  968. },
  969. "1482218087": {
  970. "id": "1482218087",
  971. "label": "ThrottlerModule",
  972. "metadata": {
  973. "type": "module",
  974. "global": true,
  975. "dynamic": true,
  976. "internal": false
  977. }
  978. },
  979. "1489982643": {
  980. "id": "1489982643",
  981. "label": "ApplicationConfig",
  982. "parent": "-759474504",
  983. "metadata": {
  984. "type": "provider",
  985. "internal": true,
  986. "sourceModuleName": "SmsModule",
  987. "durable": false,
  988. "static": true,
  989. "scope": 0,
  990. "transient": false,
  991. "exported": false,
  992. "token": "ApplicationConfig"
  993. }
  994. },
  995. "1529900285": {
  996. "id": "1529900285",
  997. "label": "Connection",
  998. "parent": "-1026304274",
  999. "metadata": {
  1000. "type": "provider",
  1001. "internal": false,
  1002. "sourceModuleName": "TypeOrmCoreModule",
  1003. "durable": false,
  1004. "static": true,
  1005. "scope": 0,
  1006. "transient": false,
  1007. "exported": true,
  1008. "token": "Connection"
  1009. }
  1010. },
  1011. "1542581243": {
  1012. "id": "1542581243",
  1013. "label": "ModuleRef",
  1014. "parent": "-1134487807",
  1015. "metadata": {
  1016. "type": "provider",
  1017. "internal": true,
  1018. "sourceModuleName": "AuthModule",
  1019. "durable": false,
  1020. "static": true,
  1021. "scope": 0,
  1022. "transient": false,
  1023. "exported": false,
  1024. "token": "ModuleRef"
  1025. }
  1026. },
  1027. "1609867136": {
  1028. "id": "1609867136",
  1029. "label": "FileController",
  1030. "parent": "-1327562795",
  1031. "metadata": {
  1032. "type": "controller",
  1033. "internal": false,
  1034. "sourceModuleName": "FileModule",
  1035. "durable": false,
  1036. "static": true,
  1037. "transient": false,
  1038. "exported": false,
  1039. "token": "FileController",
  1040. "enhancers": [
  1041. {
  1042. "id": "-1490877393",
  1043. "methodKey": "uploadFile",
  1044. "subtype": "interceptor"
  1045. }
  1046. ]
  1047. }
  1048. },
  1049. "1617283053": {
  1050. "id": "1617283053",
  1051. "label": "JsapiTicketCacheRepository",
  1052. "parent": "545846244",
  1053. "metadata": {
  1054. "type": "provider",
  1055. "internal": false,
  1056. "sourceModuleName": "TypeOrmModule",
  1057. "durable": false,
  1058. "static": true,
  1059. "transient": false,
  1060. "exported": true,
  1061. "token": "JsapiTicketCacheRepository"
  1062. }
  1063. },
  1064. "1623724461": {
  1065. "id": "1623724461",
  1066. "label": "ModuleRef",
  1067. "parent": "1482218087",
  1068. "metadata": {
  1069. "type": "provider",
  1070. "internal": true,
  1071. "sourceModuleName": "ThrottlerModule",
  1072. "durable": false,
  1073. "static": true,
  1074. "scope": 0,
  1075. "transient": false,
  1076. "exported": false,
  1077. "token": "ModuleRef"
  1078. }
  1079. },
  1080. "1688619051": {
  1081. "id": "1688619051",
  1082. "label": "DevtoolsHttpServerHost",
  1083. "parent": "-1033621697",
  1084. "metadata": {
  1085. "type": "provider",
  1086. "internal": false,
  1087. "sourceModuleName": "DevtoolsModule",
  1088. "durable": false,
  1089. "static": true,
  1090. "transient": false,
  1091. "exported": false,
  1092. "token": "DevtoolsHttpServerHost"
  1093. }
  1094. },
  1095. "1689241498": {
  1096. "id": "1689241498",
  1097. "label": "NotifyController",
  1098. "parent": "-1312205662",
  1099. "metadata": {
  1100. "type": "controller",
  1101. "internal": false,
  1102. "sourceModuleName": "NotifyModule",
  1103. "durable": false,
  1104. "static": true,
  1105. "transient": false,
  1106. "exported": false,
  1107. "token": "NotifyController"
  1108. }
  1109. },
  1110. "1690574933": {
  1111. "id": "1690574933",
  1112. "label": "ModuleRef",
  1113. "parent": "1712628187",
  1114. "metadata": {
  1115. "type": "provider",
  1116. "internal": true,
  1117. "sourceModuleName": "ConfigModule",
  1118. "durable": false,
  1119. "static": true,
  1120. "scope": 0,
  1121. "transient": false,
  1122. "exported": false,
  1123. "token": "ModuleRef"
  1124. }
  1125. },
  1126. "1705191969": {
  1127. "id": "1705191969",
  1128. "label": "AliyunService",
  1129. "parent": "612499341",
  1130. "metadata": {
  1131. "type": "provider",
  1132. "internal": false,
  1133. "sourceModuleName": "AliyunModule",
  1134. "durable": false,
  1135. "static": true,
  1136. "transient": false,
  1137. "exported": true,
  1138. "token": "AliyunService",
  1139. "initTime": 26.85685299988836
  1140. }
  1141. },
  1142. "1712628187": {
  1143. "id": "1712628187",
  1144. "label": "ConfigModule",
  1145. "metadata": {
  1146. "type": "module",
  1147. "global": true,
  1148. "dynamic": true,
  1149. "internal": false
  1150. }
  1151. },
  1152. "1712941473": {
  1153. "id": "1712941473",
  1154. "label": "ApplicationConfig",
  1155. "parent": "-536515674",
  1156. "metadata": {
  1157. "type": "provider",
  1158. "internal": true,
  1159. "sourceModuleName": "JwtModule",
  1160. "durable": false,
  1161. "static": true,
  1162. "scope": 0,
  1163. "transient": false,
  1164. "exported": false,
  1165. "token": "ApplicationConfig"
  1166. }
  1167. },
  1168. "1769319388": {
  1169. "id": "1769319388",
  1170. "label": "ConfigModule",
  1171. "parent": "1712628187",
  1172. "metadata": {
  1173. "type": "provider",
  1174. "internal": true,
  1175. "sourceModuleName": "ConfigModule",
  1176. "durable": false,
  1177. "static": true,
  1178. "scope": 0,
  1179. "transient": false,
  1180. "exported": false,
  1181. "token": "ConfigModule",
  1182. "initTime": 21.373677000403404
  1183. }
  1184. },
  1185. "1787828844": {
  1186. "id": "1787828844",
  1187. "label": "ConfigHostModule",
  1188. "parent": "211572259",
  1189. "metadata": {
  1190. "type": "provider",
  1191. "internal": true,
  1192. "sourceModuleName": "ConfigHostModule",
  1193. "durable": false,
  1194. "static": true,
  1195. "scope": 0,
  1196. "transient": false,
  1197. "exported": false,
  1198. "token": "ConfigHostModule",
  1199. "initTime": 20.74659000057727
  1200. }
  1201. },
  1202. "1817334964": {
  1203. "id": "1817334964",
  1204. "label": "ModuleRef",
  1205. "parent": "-1026304274",
  1206. "metadata": {
  1207. "type": "provider",
  1208. "internal": true,
  1209. "sourceModuleName": "TypeOrmCoreModule",
  1210. "durable": false,
  1211. "static": true,
  1212. "scope": 0,
  1213. "transient": false,
  1214. "exported": false,
  1215. "token": "ModuleRef"
  1216. }
  1217. },
  1218. "1837744481": {
  1219. "id": "1837744481",
  1220. "label": "FileService",
  1221. "parent": "-1327562795",
  1222. "metadata": {
  1223. "type": "provider",
  1224. "internal": false,
  1225. "sourceModuleName": "FileModule",
  1226. "durable": false,
  1227. "static": true,
  1228. "transient": false,
  1229. "exported": false,
  1230. "token": "FileService"
  1231. }
  1232. },
  1233. "1864578377": {
  1234. "id": "1864578377",
  1235. "label": "SmsService",
  1236. "parent": "-759474504",
  1237. "metadata": {
  1238. "type": "provider",
  1239. "internal": false,
  1240. "sourceModuleName": "SmsModule",
  1241. "durable": false,
  1242. "static": true,
  1243. "transient": false,
  1244. "exported": true,
  1245. "token": "SmsService"
  1246. }
  1247. },
  1248. "1919157847": {
  1249. "id": "1919157847",
  1250. "label": "REQUEST",
  1251. "parent": "555176277",
  1252. "metadata": {
  1253. "type": "provider",
  1254. "internal": true,
  1255. "sourceModuleName": "InternalCoreModule",
  1256. "durable": false,
  1257. "static": false,
  1258. "scope": 2,
  1259. "transient": false,
  1260. "exported": true,
  1261. "token": "REQUEST",
  1262. "initTime": 22.107021000236273
  1263. }
  1264. },
  1265. "1934208604": {
  1266. "id": "1934208604",
  1267. "label": "RolesGuard",
  1268. "parent": "-1134487807",
  1269. "metadata": {
  1270. "type": "provider",
  1271. "internal": false,
  1272. "sourceModuleName": "AuthModule",
  1273. "durable": false,
  1274. "static": true,
  1275. "transient": false,
  1276. "exported": false,
  1277. "token": "APP_GUARD (UUID: 1201125561)",
  1278. "subtype": "guard",
  1279. "initTime": 19.036876999773085
  1280. }
  1281. },
  1282. "1989588516": {
  1283. "id": "1989588516",
  1284. "label": "ApplicationConfig",
  1285. "parent": "-1033621697",
  1286. "metadata": {
  1287. "type": "provider",
  1288. "internal": true,
  1289. "sourceModuleName": "DevtoolsModule",
  1290. "durable": false,
  1291. "static": true,
  1292. "scope": 0,
  1293. "transient": false,
  1294. "exported": false,
  1295. "token": "ApplicationConfig"
  1296. }
  1297. },
  1298. "2075644217": {
  1299. "id": "2075644217",
  1300. "label": "TypeOrmModuleOptions",
  1301. "parent": "-1026304274",
  1302. "metadata": {
  1303. "type": "provider",
  1304. "internal": false,
  1305. "sourceModuleName": "TypeOrmCoreModule",
  1306. "durable": false,
  1307. "static": true,
  1308. "transient": false,
  1309. "exported": false,
  1310. "token": "TypeOrmModuleOptions"
  1311. }
  1312. },
  1313. "2118694856": {
  1314. "id": "2118694856",
  1315. "label": "ApplicationConfig",
  1316. "parent": "211572259",
  1317. "metadata": {
  1318. "type": "provider",
  1319. "internal": true,
  1320. "sourceModuleName": "ConfigHostModule",
  1321. "durable": false,
  1322. "static": true,
  1323. "scope": 0,
  1324. "transient": false,
  1325. "exported": false,
  1326. "token": "ApplicationConfig"
  1327. }
  1328. },
  1329. "-1486320561": {
  1330. "id": "-1486320561",
  1331. "label": "ModuleRef",
  1332. "parent": "555176277",
  1333. "metadata": {
  1334. "type": "provider",
  1335. "internal": true,
  1336. "sourceModuleName": "InternalCoreModule",
  1337. "durable": false,
  1338. "static": true,
  1339. "scope": 0,
  1340. "transient": false,
  1341. "exported": false,
  1342. "token": "ModuleRef"
  1343. }
  1344. },
  1345. "-651043398": {
  1346. "id": "-651043398",
  1347. "label": "ApplicationConfig",
  1348. "parent": "555176277",
  1349. "metadata": {
  1350. "type": "provider",
  1351. "internal": true,
  1352. "sourceModuleName": "InternalCoreModule",
  1353. "durable": false,
  1354. "static": true,
  1355. "scope": 0,
  1356. "transient": false,
  1357. "exported": false,
  1358. "token": "ApplicationConfig"
  1359. }
  1360. },
  1361. "-255469305": {
  1362. "id": "-255469305",
  1363. "label": "INQUIRER",
  1364. "parent": "555176277",
  1365. "metadata": {
  1366. "type": "provider",
  1367. "internal": true,
  1368. "sourceModuleName": "InternalCoreModule",
  1369. "durable": false,
  1370. "static": true,
  1371. "scope": 1,
  1372. "transient": true,
  1373. "exported": true,
  1374. "token": "INQUIRER",
  1375. "initTime": 22.059419000521302
  1376. }
  1377. },
  1378. "-26938366": {
  1379. "id": "-26938366",
  1380. "label": "ModulesContainer",
  1381. "parent": "555176277",
  1382. "metadata": {
  1383. "type": "provider",
  1384. "internal": true,
  1385. "sourceModuleName": "InternalCoreModule",
  1386. "durable": false,
  1387. "static": true,
  1388. "scope": 0,
  1389. "transient": false,
  1390. "exported": true,
  1391. "token": "ModulesContainer"
  1392. }
  1393. },
  1394. "-326832201": {
  1395. "id": "-326832201",
  1396. "label": "HttpAdapterHost",
  1397. "parent": "555176277",
  1398. "metadata": {
  1399. "type": "provider",
  1400. "internal": true,
  1401. "sourceModuleName": "InternalCoreModule",
  1402. "durable": false,
  1403. "static": true,
  1404. "scope": 0,
  1405. "transient": false,
  1406. "exported": true,
  1407. "token": "HttpAdapterHost"
  1408. }
  1409. },
  1410. "-553129559": {
  1411. "id": "-553129559",
  1412. "label": "HttpAdapterHost",
  1413. "parent": "555176277",
  1414. "metadata": {
  1415. "type": "provider",
  1416. "internal": true,
  1417. "sourceModuleName": "InternalCoreModule",
  1418. "durable": false,
  1419. "static": true,
  1420. "scope": 0,
  1421. "transient": false,
  1422. "exported": true,
  1423. "token": "HttpAdapterHost",
  1424. "initTime": 28.550610999576747
  1425. }
  1426. },
  1427. "-702581189": {
  1428. "id": "-702581189",
  1429. "label": "LazyModuleLoader",
  1430. "parent": "555176277",
  1431. "metadata": {
  1432. "type": "provider",
  1433. "internal": true,
  1434. "sourceModuleName": "InternalCoreModule",
  1435. "durable": false,
  1436. "static": true,
  1437. "transient": false,
  1438. "exported": true,
  1439. "token": "LazyModuleLoader",
  1440. "initTime": 23.38173699937761
  1441. }
  1442. },
  1443. "-1904419534": {
  1444. "id": "-1904419534",
  1445. "label": "SerializedGraph",
  1446. "parent": "555176277",
  1447. "metadata": {
  1448. "type": "provider",
  1449. "internal": true,
  1450. "sourceModuleName": "InternalCoreModule",
  1451. "durable": false,
  1452. "static": true,
  1453. "scope": 0,
  1454. "transient": false,
  1455. "exported": true,
  1456. "token": "SerializedGraph"
  1457. }
  1458. },
  1459. "-19112576": {
  1460. "id": "-19112576",
  1461. "label": "AppModule",
  1462. "metadata": {
  1463. "type": "module",
  1464. "global": false,
  1465. "dynamic": false,
  1466. "internal": false
  1467. }
  1468. },
  1469. "-2139588960": {
  1470. "id": "-2139588960",
  1471. "label": "AppModule",
  1472. "parent": "-19112576",
  1473. "metadata": {
  1474. "type": "provider",
  1475. "internal": true,
  1476. "sourceModuleName": "AppModule",
  1477. "durable": false,
  1478. "static": true,
  1479. "scope": 0,
  1480. "transient": false,
  1481. "exported": false,
  1482. "token": "AppModule",
  1483. "initTime": 23.265798000618815
  1484. }
  1485. },
  1486. "-71302842": {
  1487. "id": "-71302842",
  1488. "label": "ModuleRef",
  1489. "parent": "-19112576",
  1490. "metadata": {
  1491. "type": "provider",
  1492. "internal": true,
  1493. "sourceModuleName": "AppModule",
  1494. "durable": false,
  1495. "static": true,
  1496. "scope": 0,
  1497. "transient": false,
  1498. "exported": false,
  1499. "token": "ModuleRef"
  1500. }
  1501. },
  1502. "-2064622725": {
  1503. "id": "-2064622725",
  1504. "label": "ApplicationConfig",
  1505. "parent": "-19112576",
  1506. "metadata": {
  1507. "type": "provider",
  1508. "internal": true,
  1509. "sourceModuleName": "AppModule",
  1510. "durable": false,
  1511. "static": true,
  1512. "scope": 0,
  1513. "transient": false,
  1514. "exported": false,
  1515. "token": "ApplicationConfig"
  1516. }
  1517. },
  1518. "-2130614055": {
  1519. "id": "-2130614055",
  1520. "label": "AppService",
  1521. "parent": "-19112576",
  1522. "metadata": {
  1523. "type": "provider",
  1524. "internal": false,
  1525. "sourceModuleName": "AppModule",
  1526. "durable": false,
  1527. "static": true,
  1528. "transient": false,
  1529. "exported": false,
  1530. "token": "AppService",
  1531. "initTime": 23.158758000470698
  1532. }
  1533. },
  1534. "-1033621697": {
  1535. "id": "-1033621697",
  1536. "label": "DevtoolsModule",
  1537. "metadata": {
  1538. "type": "module",
  1539. "global": false,
  1540. "dynamic": true,
  1541. "internal": false
  1542. }
  1543. },
  1544. "-1142553948": {
  1545. "id": "-1142553948",
  1546. "label": "DevtoolsModule",
  1547. "parent": "-1033621697",
  1548. "metadata": {
  1549. "type": "provider",
  1550. "internal": true,
  1551. "sourceModuleName": "DevtoolsModule",
  1552. "durable": false,
  1553. "static": true,
  1554. "scope": 0,
  1555. "transient": false,
  1556. "exported": false,
  1557. "token": "DevtoolsModule",
  1558. "initTime": 22.936072999611497
  1559. }
  1560. },
  1561. "-751962311": {
  1562. "id": "-751962311",
  1563. "label": "ModuleRef",
  1564. "parent": "-1033621697",
  1565. "metadata": {
  1566. "type": "provider",
  1567. "internal": true,
  1568. "sourceModuleName": "DevtoolsModule",
  1569. "durable": false,
  1570. "static": true,
  1571. "scope": 0,
  1572. "transient": false,
  1573. "exported": false,
  1574. "token": "ModuleRef"
  1575. }
  1576. },
  1577. "-643397745": {
  1578. "id": "-643397745",
  1579. "label": "DiscoveryModule",
  1580. "metadata": {
  1581. "type": "module",
  1582. "global": false,
  1583. "dynamic": false,
  1584. "internal": false
  1585. }
  1586. },
  1587. "-1048394624": {
  1588. "id": "-1048394624",
  1589. "label": "DiscoveryModule",
  1590. "parent": "-643397745",
  1591. "metadata": {
  1592. "type": "provider",
  1593. "internal": true,
  1594. "sourceModuleName": "DiscoveryModule",
  1595. "durable": false,
  1596. "static": true,
  1597. "scope": 0,
  1598. "transient": false,
  1599. "exported": false,
  1600. "token": "DiscoveryModule",
  1601. "initTime": 21.9589609997347
  1602. }
  1603. },
  1604. "-501891371": {
  1605. "id": "-501891371",
  1606. "label": "ModuleRef",
  1607. "parent": "-643397745",
  1608. "metadata": {
  1609. "type": "provider",
  1610. "internal": true,
  1611. "sourceModuleName": "DiscoveryModule",
  1612. "durable": false,
  1613. "static": true,
  1614. "scope": 0,
  1615. "transient": false,
  1616. "exported": false,
  1617. "token": "ModuleRef"
  1618. }
  1619. },
  1620. "-1413161654": {
  1621. "id": "-1413161654",
  1622. "label": "ApplicationConfig",
  1623. "parent": "-643397745",
  1624. "metadata": {
  1625. "type": "provider",
  1626. "internal": true,
  1627. "sourceModuleName": "DiscoveryModule",
  1628. "durable": false,
  1629. "static": true,
  1630. "scope": 0,
  1631. "transient": false,
  1632. "exported": false,
  1633. "token": "ApplicationConfig"
  1634. }
  1635. },
  1636. "-438112115": {
  1637. "id": "-438112115",
  1638. "label": "MetadataScanner",
  1639. "parent": "-643397745",
  1640. "metadata": {
  1641. "type": "provider",
  1642. "internal": false,
  1643. "sourceModuleName": "DiscoveryModule",
  1644. "durable": false,
  1645. "static": true,
  1646. "transient": false,
  1647. "exported": true,
  1648. "token": "MetadataScanner",
  1649. "initTime": 22.18793400004506
  1650. }
  1651. },
  1652. "-503631789": {
  1653. "id": "-503631789",
  1654. "label": "ConfigService",
  1655. "parent": "1712628187",
  1656. "metadata": {
  1657. "type": "provider",
  1658. "internal": false,
  1659. "sourceModuleName": "ConfigModule",
  1660. "durable": false,
  1661. "static": true,
  1662. "transient": false,
  1663. "exported": true,
  1664. "token": "ConfigService"
  1665. }
  1666. },
  1667. "-1952648617": {
  1668. "id": "-1952648617",
  1669. "label": "THROTTLER:MODULE_OPTIONS",
  1670. "parent": "1482218087",
  1671. "metadata": {
  1672. "type": "provider",
  1673. "internal": false,
  1674. "sourceModuleName": "ThrottlerModule",
  1675. "durable": false,
  1676. "static": true,
  1677. "transient": false,
  1678. "exported": true,
  1679. "token": "THROTTLER:MODULE_OPTIONS"
  1680. }
  1681. },
  1682. "-470986226": {
  1683. "id": "-470986226",
  1684. "label": "Symbol(ThrottlerStorage)",
  1685. "parent": "1482218087",
  1686. "metadata": {
  1687. "type": "provider",
  1688. "internal": false,
  1689. "sourceModuleName": "ThrottlerModule",
  1690. "durable": false,
  1691. "static": true,
  1692. "transient": false,
  1693. "exported": true,
  1694. "token": "Symbol(ThrottlerStorage)"
  1695. }
  1696. },
  1697. "-491114354": {
  1698. "id": "-491114354",
  1699. "label": "ConfigModule",
  1700. "parent": "863216333",
  1701. "metadata": {
  1702. "type": "provider",
  1703. "internal": true,
  1704. "sourceModuleName": "ConfigModule",
  1705. "durable": false,
  1706. "static": true,
  1707. "scope": 0,
  1708. "transient": false,
  1709. "exported": false,
  1710. "token": "ConfigModule",
  1711. "initTime": 19.25484700035304
  1712. }
  1713. },
  1714. "-408540750": {
  1715. "id": "-408540750",
  1716. "label": "ApplicationConfig",
  1717. "parent": "863216333",
  1718. "metadata": {
  1719. "type": "provider",
  1720. "internal": true,
  1721. "sourceModuleName": "ConfigModule",
  1722. "durable": false,
  1723. "static": true,
  1724. "scope": 0,
  1725. "transient": false,
  1726. "exported": false,
  1727. "token": "ApplicationConfig"
  1728. }
  1729. },
  1730. "-503631788": {
  1731. "id": "-503631788",
  1732. "label": "ConfigService",
  1733. "parent": "863216333",
  1734. "metadata": {
  1735. "type": "provider",
  1736. "internal": false,
  1737. "sourceModuleName": "ConfigModule",
  1738. "durable": false,
  1739. "static": true,
  1740. "scope": 0,
  1741. "transient": false,
  1742. "exported": true,
  1743. "token": "ConfigService"
  1744. }
  1745. },
  1746. "-2135742481": {
  1747. "id": "-2135742481",
  1748. "label": "TypeOrmModule",
  1749. "metadata": {
  1750. "type": "module",
  1751. "global": false,
  1752. "dynamic": true,
  1753. "internal": false
  1754. }
  1755. },
  1756. "-1872891520": {
  1757. "id": "-1872891520",
  1758. "label": "TypeOrmModule",
  1759. "parent": "-2135742481",
  1760. "metadata": {
  1761. "type": "provider",
  1762. "internal": true,
  1763. "sourceModuleName": "TypeOrmModule",
  1764. "durable": false,
  1765. "static": true,
  1766. "scope": 0,
  1767. "transient": false,
  1768. "exported": false,
  1769. "token": "TypeOrmModule",
  1770. "initTime": 19.093527999706566
  1771. }
  1772. },
  1773. "-1068388246": {
  1774. "id": "-1068388246",
  1775. "label": "ApplicationConfig",
  1776. "parent": "-2135742481",
  1777. "metadata": {
  1778. "type": "provider",
  1779. "internal": true,
  1780. "sourceModuleName": "TypeOrmModule",
  1781. "durable": false,
  1782. "static": true,
  1783. "scope": 0,
  1784. "transient": false,
  1785. "exported": false,
  1786. "token": "ApplicationConfig"
  1787. }
  1788. },
  1789. "-1026304274": {
  1790. "id": "-1026304274",
  1791. "label": "TypeOrmCoreModule",
  1792. "metadata": {
  1793. "type": "module",
  1794. "global": true,
  1795. "dynamic": true,
  1796. "internal": false
  1797. }
  1798. },
  1799. "-2035045911": {
  1800. "id": "-2035045911",
  1801. "label": "ApplicationConfig",
  1802. "parent": "-1026304274",
  1803. "metadata": {
  1804. "type": "provider",
  1805. "internal": true,
  1806. "sourceModuleName": "TypeOrmCoreModule",
  1807. "durable": false,
  1808. "static": true,
  1809. "scope": 0,
  1810. "transient": false,
  1811. "exported": false,
  1812. "token": "ApplicationConfig"
  1813. }
  1814. },
  1815. "-2103415210": {
  1816. "id": "-2103415210",
  1817. "label": "DataSource",
  1818. "parent": "-1026304274",
  1819. "metadata": {
  1820. "type": "provider",
  1821. "internal": false,
  1822. "sourceModuleName": "TypeOrmCoreModule",
  1823. "durable": false,
  1824. "static": true,
  1825. "transient": false,
  1826. "exported": true,
  1827. "token": "DataSource"
  1828. }
  1829. },
  1830. "-184353870": {
  1831. "id": "-184353870",
  1832. "label": "ApplicationConfig",
  1833. "parent": "612499341",
  1834. "metadata": {
  1835. "type": "provider",
  1836. "internal": true,
  1837. "sourceModuleName": "AliyunModule",
  1838. "durable": false,
  1839. "static": true,
  1840. "scope": 0,
  1841. "transient": false,
  1842. "exported": false,
  1843. "token": "ApplicationConfig"
  1844. }
  1845. },
  1846. "-491114353": {
  1847. "id": "-491114353",
  1848. "label": "ConfigModule",
  1849. "parent": "863216334",
  1850. "metadata": {
  1851. "type": "provider",
  1852. "internal": true,
  1853. "sourceModuleName": "ConfigModule",
  1854. "durable": false,
  1855. "static": true,
  1856. "scope": 0,
  1857. "transient": false,
  1858. "exported": false,
  1859. "token": "ConfigModule",
  1860. "initTime": 17.698795000091195
  1861. }
  1862. },
  1863. "-408540749": {
  1864. "id": "-408540749",
  1865. "label": "ApplicationConfig",
  1866. "parent": "863216334",
  1867. "metadata": {
  1868. "type": "provider",
  1869. "internal": true,
  1870. "sourceModuleName": "ConfigModule",
  1871. "durable": false,
  1872. "static": true,
  1873. "scope": 0,
  1874. "transient": false,
  1875. "exported": false,
  1876. "token": "ApplicationConfig"
  1877. }
  1878. },
  1879. "-503631786": {
  1880. "id": "-503631786",
  1881. "label": "ConfigService",
  1882. "parent": "863216334",
  1883. "metadata": {
  1884. "type": "provider",
  1885. "internal": false,
  1886. "sourceModuleName": "ConfigModule",
  1887. "durable": false,
  1888. "static": true,
  1889. "transient": false,
  1890. "exported": true,
  1891. "token": "ConfigService"
  1892. }
  1893. },
  1894. "-1790226991": {
  1895. "id": "-1790226991",
  1896. "label": "CONFIGURATION(aliyun)",
  1897. "parent": "863216334",
  1898. "metadata": {
  1899. "type": "provider",
  1900. "internal": false,
  1901. "sourceModuleName": "ConfigModule",
  1902. "durable": false,
  1903. "static": true,
  1904. "transient": false,
  1905. "exported": true,
  1906. "token": "CONFIGURATION(aliyun)",
  1907. "initTime": 17.89575400017202
  1908. }
  1909. },
  1910. "-759474504": {
  1911. "id": "-759474504",
  1912. "label": "SmsModule",
  1913. "metadata": {
  1914. "type": "module",
  1915. "global": false,
  1916. "dynamic": false,
  1917. "internal": false
  1918. }
  1919. },
  1920. "-648981088": {
  1921. "id": "-648981088",
  1922. "label": "SmsModule",
  1923. "parent": "-759474504",
  1924. "metadata": {
  1925. "type": "provider",
  1926. "internal": true,
  1927. "sourceModuleName": "SmsModule",
  1928. "durable": false,
  1929. "static": true,
  1930. "scope": 0,
  1931. "transient": false,
  1932. "exported": false,
  1933. "token": "SmsModule",
  1934. "initTime": 16.885621999390423
  1935. }
  1936. },
  1937. "-811664770": {
  1938. "id": "-811664770",
  1939. "label": "ModuleRef",
  1940. "parent": "-759474504",
  1941. "metadata": {
  1942. "type": "provider",
  1943. "internal": true,
  1944. "sourceModuleName": "SmsModule",
  1945. "durable": false,
  1946. "static": true,
  1947. "scope": 0,
  1948. "transient": false,
  1949. "exported": false,
  1950. "token": "ModuleRef"
  1951. }
  1952. },
  1953. "-397258000": {
  1954. "id": "-397258000",
  1955. "label": "SmsController",
  1956. "parent": "-759474504",
  1957. "metadata": {
  1958. "type": "controller",
  1959. "internal": false,
  1960. "sourceModuleName": "SmsModule",
  1961. "durable": false,
  1962. "static": true,
  1963. "transient": false,
  1964. "exported": false,
  1965. "token": "SmsController"
  1966. }
  1967. },
  1968. "-257450702": {
  1969. "id": "-257450702",
  1970. "label": "TypeOrmModule",
  1971. "parent": "545846241",
  1972. "metadata": {
  1973. "type": "provider",
  1974. "internal": true,
  1975. "sourceModuleName": "TypeOrmModule",
  1976. "durable": false,
  1977. "static": true,
  1978. "scope": 0,
  1979. "transient": false,
  1980. "exported": false,
  1981. "token": "TypeOrmModule",
  1982. "initTime": 16.24110300000757
  1983. }
  1984. },
  1985. "-223917668": {
  1986. "id": "-223917668",
  1987. "label": "ApplicationConfig",
  1988. "parent": "545846241",
  1989. "metadata": {
  1990. "type": "provider",
  1991. "internal": true,
  1992. "sourceModuleName": "TypeOrmModule",
  1993. "durable": false,
  1994. "static": true,
  1995. "scope": 0,
  1996. "transient": false,
  1997. "exported": false,
  1998. "token": "ApplicationConfig"
  1999. }
  2000. },
  2001. "-2003726489": {
  2002. "id": "-2003726489",
  2003. "label": "UsersModule",
  2004. "metadata": {
  2005. "type": "module",
  2006. "global": false,
  2007. "dynamic": false,
  2008. "internal": false
  2009. }
  2010. },
  2011. "-495603840": {
  2012. "id": "-495603840",
  2013. "label": "UsersModule",
  2014. "parent": "-2003726489",
  2015. "metadata": {
  2016. "type": "provider",
  2017. "internal": true,
  2018. "sourceModuleName": "UsersModule",
  2019. "durable": false,
  2020. "static": true,
  2021. "scope": 0,
  2022. "transient": false,
  2023. "exported": false,
  2024. "token": "UsersModule",
  2025. "initTime": 16.09657400008291
  2026. }
  2027. },
  2028. "-618964563": {
  2029. "id": "-618964563",
  2030. "label": "ModuleRef",
  2031. "parent": "-2003726489",
  2032. "metadata": {
  2033. "type": "provider",
  2034. "internal": true,
  2035. "sourceModuleName": "UsersModule",
  2036. "durable": false,
  2037. "static": true,
  2038. "scope": 0,
  2039. "transient": false,
  2040. "exported": false,
  2041. "token": "ModuleRef"
  2042. }
  2043. },
  2044. "-643958110": {
  2045. "id": "-643958110",
  2046. "label": "ApplicationConfig",
  2047. "parent": "-2003726489",
  2048. "metadata": {
  2049. "type": "provider",
  2050. "internal": true,
  2051. "sourceModuleName": "UsersModule",
  2052. "durable": false,
  2053. "static": true,
  2054. "scope": 0,
  2055. "transient": false,
  2056. "exported": false,
  2057. "token": "ApplicationConfig"
  2058. }
  2059. },
  2060. "-1629317077": {
  2061. "id": "-1629317077",
  2062. "label": "BcryptService",
  2063. "parent": "-2003726489",
  2064. "metadata": {
  2065. "type": "provider",
  2066. "internal": false,
  2067. "sourceModuleName": "UsersModule",
  2068. "durable": false,
  2069. "static": true,
  2070. "transient": false,
  2071. "exported": false,
  2072. "token": "HashingService",
  2073. "initTime": 15.976006000302732
  2074. }
  2075. },
  2076. "-1102473136": {
  2077. "id": "-1102473136",
  2078. "label": "UsersController",
  2079. "parent": "-2003726489",
  2080. "metadata": {
  2081. "type": "controller",
  2082. "internal": false,
  2083. "sourceModuleName": "UsersModule",
  2084. "durable": false,
  2085. "static": true,
  2086. "transient": false,
  2087. "exported": false,
  2088. "token": "UsersController"
  2089. }
  2090. },
  2091. "-257450701": {
  2092. "id": "-257450701",
  2093. "label": "TypeOrmModule",
  2094. "parent": "545846242",
  2095. "metadata": {
  2096. "type": "provider",
  2097. "internal": true,
  2098. "sourceModuleName": "TypeOrmModule",
  2099. "durable": false,
  2100. "static": true,
  2101. "scope": 0,
  2102. "transient": false,
  2103. "exported": false,
  2104. "token": "TypeOrmModule",
  2105. "initTime": 15.46571800019592
  2106. }
  2107. },
  2108. "-223917667": {
  2109. "id": "-223917667",
  2110. "label": "ApplicationConfig",
  2111. "parent": "545846242",
  2112. "metadata": {
  2113. "type": "provider",
  2114. "internal": true,
  2115. "sourceModuleName": "TypeOrmModule",
  2116. "durable": false,
  2117. "static": true,
  2118. "scope": 0,
  2119. "transient": false,
  2120. "exported": false,
  2121. "token": "ApplicationConfig"
  2122. }
  2123. },
  2124. "-323187286": {
  2125. "id": "-323187286",
  2126. "label": "UsersRepository",
  2127. "parent": "545846242",
  2128. "metadata": {
  2129. "type": "provider",
  2130. "internal": false,
  2131. "sourceModuleName": "TypeOrmModule",
  2132. "durable": false,
  2133. "static": true,
  2134. "transient": false,
  2135. "exported": true,
  2136. "token": "UsersRepository"
  2137. }
  2138. },
  2139. "-1168832508": {
  2140. "id": "-1168832508",
  2141. "label": "MembershipModule",
  2142. "parent": "485644527",
  2143. "metadata": {
  2144. "type": "provider",
  2145. "internal": true,
  2146. "sourceModuleName": "MembershipModule",
  2147. "durable": false,
  2148. "static": true,
  2149. "scope": 0,
  2150. "transient": false,
  2151. "exported": false,
  2152. "token": "MembershipModule",
  2153. "initTime": 15.089904999360442
  2154. }
  2155. },
  2156. "-1902200172": {
  2157. "id": "-1902200172",
  2158. "label": "ApplicationConfig",
  2159. "parent": "485644527",
  2160. "metadata": {
  2161. "type": "provider",
  2162. "internal": true,
  2163. "sourceModuleName": "MembershipModule",
  2164. "durable": false,
  2165. "static": true,
  2166. "scope": 0,
  2167. "transient": false,
  2168. "exported": false,
  2169. "token": "ApplicationConfig"
  2170. }
  2171. },
  2172. "-257450700": {
  2173. "id": "-257450700",
  2174. "label": "TypeOrmModule",
  2175. "parent": "545846243",
  2176. "metadata": {
  2177. "type": "provider",
  2178. "internal": true,
  2179. "sourceModuleName": "TypeOrmModule",
  2180. "durable": false,
  2181. "static": true,
  2182. "scope": 0,
  2183. "transient": false,
  2184. "exported": false,
  2185. "token": "TypeOrmModule",
  2186. "initTime": 14.44950900040567
  2187. }
  2188. },
  2189. "-223917666": {
  2190. "id": "-223917666",
  2191. "label": "ApplicationConfig",
  2192. "parent": "545846243",
  2193. "metadata": {
  2194. "type": "provider",
  2195. "internal": true,
  2196. "sourceModuleName": "TypeOrmModule",
  2197. "durable": false,
  2198. "static": true,
  2199. "scope": 0,
  2200. "transient": false,
  2201. "exported": false,
  2202. "token": "ApplicationConfig"
  2203. }
  2204. },
  2205. "-1427646500": {
  2206. "id": "-1427646500",
  2207. "label": "MembershipRepository",
  2208. "parent": "545846243",
  2209. "metadata": {
  2210. "type": "provider",
  2211. "internal": false,
  2212. "sourceModuleName": "TypeOrmModule",
  2213. "durable": false,
  2214. "static": true,
  2215. "transient": false,
  2216. "exported": true,
  2217. "token": "MembershipRepository"
  2218. }
  2219. },
  2220. "-1028500433": {
  2221. "id": "-1028500433",
  2222. "label": "MemberPlanRepository",
  2223. "parent": "545846243",
  2224. "metadata": {
  2225. "type": "provider",
  2226. "internal": false,
  2227. "sourceModuleName": "TypeOrmModule",
  2228. "durable": false,
  2229. "static": true,
  2230. "transient": false,
  2231. "exported": true,
  2232. "token": "MemberPlanRepository"
  2233. }
  2234. },
  2235. "-133150180": {
  2236. "id": "-133150180",
  2237. "label": "WeixinModule",
  2238. "parent": "1219676411",
  2239. "metadata": {
  2240. "type": "provider",
  2241. "internal": true,
  2242. "sourceModuleName": "WeixinModule",
  2243. "durable": false,
  2244. "static": true,
  2245. "scope": 0,
  2246. "transient": false,
  2247. "exported": false,
  2248. "token": "WeixinModule",
  2249. "initTime": 14.242802999913692
  2250. }
  2251. },
  2252. "-465670943": {
  2253. "id": "-465670943",
  2254. "label": "WeixinService",
  2255. "parent": "1219676411",
  2256. "metadata": {
  2257. "type": "provider",
  2258. "internal": false,
  2259. "sourceModuleName": "WeixinModule",
  2260. "durable": false,
  2261. "static": true,
  2262. "transient": false,
  2263. "exported": true,
  2264. "token": "WeixinService"
  2265. }
  2266. },
  2267. "-1540825524": {
  2268. "id": "-1540825524",
  2269. "label": "WeixinController",
  2270. "parent": "1219676411",
  2271. "metadata": {
  2272. "type": "controller",
  2273. "internal": false,
  2274. "sourceModuleName": "WeixinModule",
  2275. "durable": false,
  2276. "static": true,
  2277. "transient": false,
  2278. "exported": false,
  2279. "token": "WeixinController"
  2280. }
  2281. },
  2282. "-491114352": {
  2283. "id": "-491114352",
  2284. "label": "ConfigModule",
  2285. "parent": "863216335",
  2286. "metadata": {
  2287. "type": "provider",
  2288. "internal": true,
  2289. "sourceModuleName": "ConfigModule",
  2290. "durable": false,
  2291. "static": true,
  2292. "scope": 0,
  2293. "transient": false,
  2294. "exported": false,
  2295. "token": "ConfigModule",
  2296. "initTime": 13.67713600024581
  2297. }
  2298. },
  2299. "-408540748": {
  2300. "id": "-408540748",
  2301. "label": "ApplicationConfig",
  2302. "parent": "863216335",
  2303. "metadata": {
  2304. "type": "provider",
  2305. "internal": true,
  2306. "sourceModuleName": "ConfigModule",
  2307. "durable": false,
  2308. "static": true,
  2309. "scope": 0,
  2310. "transient": false,
  2311. "exported": false,
  2312. "token": "ApplicationConfig"
  2313. }
  2314. },
  2315. "-503631784": {
  2316. "id": "-503631784",
  2317. "label": "ConfigService",
  2318. "parent": "863216335",
  2319. "metadata": {
  2320. "type": "provider",
  2321. "internal": false,
  2322. "sourceModuleName": "ConfigModule",
  2323. "durable": false,
  2324. "static": true,
  2325. "transient": false,
  2326. "exported": true,
  2327. "token": "ConfigService"
  2328. }
  2329. },
  2330. "-904418141": {
  2331. "id": "-904418141",
  2332. "label": "CONFIGURATION(weixin)",
  2333. "parent": "863216335",
  2334. "metadata": {
  2335. "type": "provider",
  2336. "internal": false,
  2337. "sourceModuleName": "ConfigModule",
  2338. "durable": false,
  2339. "static": true,
  2340. "transient": false,
  2341. "exported": true,
  2342. "token": "CONFIGURATION(weixin)",
  2343. "initTime": 14.111854000017047
  2344. }
  2345. },
  2346. "-257450699": {
  2347. "id": "-257450699",
  2348. "label": "TypeOrmModule",
  2349. "parent": "545846244",
  2350. "metadata": {
  2351. "type": "provider",
  2352. "internal": true,
  2353. "sourceModuleName": "TypeOrmModule",
  2354. "durable": false,
  2355. "static": true,
  2356. "scope": 0,
  2357. "transient": false,
  2358. "exported": false,
  2359. "token": "TypeOrmModule",
  2360. "initTime": 13.077766000293195
  2361. }
  2362. },
  2363. "-223917665": {
  2364. "id": "-223917665",
  2365. "label": "ApplicationConfig",
  2366. "parent": "545846244",
  2367. "metadata": {
  2368. "type": "provider",
  2369. "internal": true,
  2370. "sourceModuleName": "TypeOrmModule",
  2371. "durable": false,
  2372. "static": true,
  2373. "scope": 0,
  2374. "transient": false,
  2375. "exported": false,
  2376. "token": "ApplicationConfig"
  2377. }
  2378. },
  2379. "-439550907": {
  2380. "id": "-439550907",
  2381. "label": "AccessTokenCacheRepository",
  2382. "parent": "545846244",
  2383. "metadata": {
  2384. "type": "provider",
  2385. "internal": false,
  2386. "sourceModuleName": "TypeOrmModule",
  2387. "durable": false,
  2388. "static": true,
  2389. "transient": false,
  2390. "exported": true,
  2391. "token": "AccessTokenCacheRepository"
  2392. }
  2393. },
  2394. "-1134487807": {
  2395. "id": "-1134487807",
  2396. "label": "AuthModule",
  2397. "metadata": {
  2398. "type": "module",
  2399. "global": false,
  2400. "dynamic": false,
  2401. "internal": false
  2402. }
  2403. },
  2404. "-1846279256": {
  2405. "id": "-1846279256",
  2406. "label": "AuthModule",
  2407. "parent": "-1134487807",
  2408. "metadata": {
  2409. "type": "provider",
  2410. "internal": true,
  2411. "sourceModuleName": "AuthModule",
  2412. "durable": false,
  2413. "static": true,
  2414. "scope": 0,
  2415. "transient": false,
  2416. "exported": false,
  2417. "token": "AuthModule",
  2418. "initTime": 12.793596000410616
  2419. }
  2420. },
  2421. "-120792986": {
  2422. "id": "-120792986",
  2423. "label": "ApplicationConfig",
  2424. "parent": "-1134487807",
  2425. "metadata": {
  2426. "type": "provider",
  2427. "internal": true,
  2428. "sourceModuleName": "AuthModule",
  2429. "durable": false,
  2430. "static": true,
  2431. "scope": 0,
  2432. "transient": false,
  2433. "exported": false,
  2434. "token": "ApplicationConfig"
  2435. }
  2436. },
  2437. "-793915935": {
  2438. "id": "-793915935",
  2439. "label": "AuthService",
  2440. "parent": "-1134487807",
  2441. "metadata": {
  2442. "type": "provider",
  2443. "internal": false,
  2444. "sourceModuleName": "AuthModule",
  2445. "durable": false,
  2446. "static": true,
  2447. "transient": false,
  2448. "exported": true,
  2449. "token": "AuthService"
  2450. }
  2451. },
  2452. "-239266870": {
  2453. "id": "-239266870",
  2454. "label": "JwtAuthGuard",
  2455. "parent": "-1134487807",
  2456. "metadata": {
  2457. "type": "provider",
  2458. "internal": false,
  2459. "sourceModuleName": "AuthModule",
  2460. "durable": false,
  2461. "static": true,
  2462. "transient": false,
  2463. "exported": false,
  2464. "token": "APP_GUARD (UUID: 1239237319)",
  2465. "subtype": "guard"
  2466. }
  2467. },
  2468. "-491114351": {
  2469. "id": "-491114351",
  2470. "label": "ConfigModule",
  2471. "parent": "863216336",
  2472. "metadata": {
  2473. "type": "provider",
  2474. "internal": true,
  2475. "sourceModuleName": "ConfigModule",
  2476. "durable": false,
  2477. "static": true,
  2478. "scope": 0,
  2479. "transient": false,
  2480. "exported": false,
  2481. "token": "ConfigModule",
  2482. "initTime": 11.847482999786735
  2483. }
  2484. },
  2485. "-408540747": {
  2486. "id": "-408540747",
  2487. "label": "ApplicationConfig",
  2488. "parent": "863216336",
  2489. "metadata": {
  2490. "type": "provider",
  2491. "internal": true,
  2492. "sourceModuleName": "ConfigModule",
  2493. "durable": false,
  2494. "static": true,
  2495. "scope": 0,
  2496. "transient": false,
  2497. "exported": false,
  2498. "token": "ApplicationConfig"
  2499. }
  2500. },
  2501. "-503631782": {
  2502. "id": "-503631782",
  2503. "label": "ConfigService",
  2504. "parent": "863216336",
  2505. "metadata": {
  2506. "type": "provider",
  2507. "internal": false,
  2508. "sourceModuleName": "ConfigModule",
  2509. "durable": false,
  2510. "static": true,
  2511. "transient": false,
  2512. "exported": true,
  2513. "token": "ConfigService"
  2514. }
  2515. },
  2516. "-1453472830": {
  2517. "id": "-1453472830",
  2518. "label": "CONFIGURATION(jwt)",
  2519. "parent": "863216336",
  2520. "metadata": {
  2521. "type": "provider",
  2522. "internal": false,
  2523. "sourceModuleName": "ConfigModule",
  2524. "durable": false,
  2525. "static": true,
  2526. "transient": false,
  2527. "exported": true,
  2528. "token": "CONFIGURATION(jwt)",
  2529. "initTime": 12.330308999866247
  2530. }
  2531. },
  2532. "-536515674": {
  2533. "id": "-536515674",
  2534. "label": "JwtModule",
  2535. "metadata": {
  2536. "type": "module",
  2537. "global": false,
  2538. "dynamic": true,
  2539. "internal": false
  2540. }
  2541. },
  2542. "-588705940": {
  2543. "id": "-588705940",
  2544. "label": "ModuleRef",
  2545. "parent": "-536515674",
  2546. "metadata": {
  2547. "type": "provider",
  2548. "internal": true,
  2549. "sourceModuleName": "JwtModule",
  2550. "durable": false,
  2551. "static": true,
  2552. "scope": 0,
  2553. "transient": false,
  2554. "exported": false,
  2555. "token": "ModuleRef"
  2556. }
  2557. },
  2558. "-1900804336": {
  2559. "id": "-1900804336",
  2560. "label": "JWT_MODULE_OPTIONS",
  2561. "parent": "-536515674",
  2562. "metadata": {
  2563. "type": "provider",
  2564. "internal": false,
  2565. "sourceModuleName": "JwtModule",
  2566. "durable": false,
  2567. "static": true,
  2568. "transient": false,
  2569. "exported": false,
  2570. "token": "JWT_MODULE_OPTIONS",
  2571. "initTime": 19.152018999680877
  2572. }
  2573. },
  2574. "-1327562795": {
  2575. "id": "-1327562795",
  2576. "label": "FileModule",
  2577. "metadata": {
  2578. "type": "module",
  2579. "global": false,
  2580. "dynamic": false,
  2581. "internal": false
  2582. }
  2583. },
  2584. "-313867974": {
  2585. "id": "-313867974",
  2586. "label": "ApplicationConfig",
  2587. "parent": "-1327562795",
  2588. "metadata": {
  2589. "type": "provider",
  2590. "internal": true,
  2591. "sourceModuleName": "FileModule",
  2592. "durable": false,
  2593. "static": true,
  2594. "scope": 0,
  2595. "transient": false,
  2596. "exported": false,
  2597. "token": "ApplicationConfig"
  2598. }
  2599. },
  2600. "-1490877393": {
  2601. "id": "-1490877393",
  2602. "label": "05ef80ce6ef3d2b47535c",
  2603. "parent": "-1327562795",
  2604. "metadata": {
  2605. "type": "injectable",
  2606. "internal": false,
  2607. "sourceModuleName": "FileModule",
  2608. "durable": false,
  2609. "static": true,
  2610. "transient": false,
  2611. "exported": false,
  2612. "token": "05ef80ce6ef3d2b47535c",
  2613. "subtype": "interceptor"
  2614. }
  2615. },
  2616. "-493958991": {
  2617. "id": "-493958991",
  2618. "label": "ChatModule",
  2619. "metadata": {
  2620. "type": "module",
  2621. "global": false,
  2622. "dynamic": false,
  2623. "internal": false
  2624. }
  2625. },
  2626. "-2111857237": {
  2627. "id": "-2111857237",
  2628. "label": "ModuleRef",
  2629. "parent": "-493958991",
  2630. "metadata": {
  2631. "type": "provider",
  2632. "internal": true,
  2633. "sourceModuleName": "ChatModule",
  2634. "durable": false,
  2635. "static": true,
  2636. "scope": 0,
  2637. "transient": false,
  2638. "exported": false,
  2639. "token": "ModuleRef"
  2640. }
  2641. },
  2642. "-257450698": {
  2643. "id": "-257450698",
  2644. "label": "TypeOrmModule",
  2645. "parent": "545846245",
  2646. "metadata": {
  2647. "type": "provider",
  2648. "internal": true,
  2649. "sourceModuleName": "TypeOrmModule",
  2650. "durable": false,
  2651. "static": true,
  2652. "scope": 0,
  2653. "transient": false,
  2654. "exported": false,
  2655. "token": "TypeOrmModule",
  2656. "initTime": 10.372324000112712
  2657. }
  2658. },
  2659. "-223917664": {
  2660. "id": "-223917664",
  2661. "label": "ApplicationConfig",
  2662. "parent": "545846245",
  2663. "metadata": {
  2664. "type": "provider",
  2665. "internal": true,
  2666. "sourceModuleName": "TypeOrmModule",
  2667. "durable": false,
  2668. "static": true,
  2669. "scope": 0,
  2670. "transient": false,
  2671. "exported": false,
  2672. "token": "ApplicationConfig"
  2673. }
  2674. },
  2675. "-1373653226": {
  2676. "id": "-1373653226",
  2677. "label": "ChatHistoryRepository",
  2678. "parent": "545846245",
  2679. "metadata": {
  2680. "type": "provider",
  2681. "internal": false,
  2682. "sourceModuleName": "TypeOrmModule",
  2683. "durable": false,
  2684. "static": true,
  2685. "transient": false,
  2686. "exported": true,
  2687. "token": "ChatHistoryRepository"
  2688. }
  2689. },
  2690. "-1312205662": {
  2691. "id": "-1312205662",
  2692. "label": "NotifyModule",
  2693. "metadata": {
  2694. "type": "module",
  2695. "global": false,
  2696. "dynamic": false,
  2697. "internal": false
  2698. }
  2699. },
  2700. "-1791090966": {
  2701. "id": "-1791090966",
  2702. "label": "NotifyModule",
  2703. "parent": "-1312205662",
  2704. "metadata": {
  2705. "type": "provider",
  2706. "internal": true,
  2707. "sourceModuleName": "NotifyModule",
  2708. "durable": false,
  2709. "static": true,
  2710. "scope": 0,
  2711. "transient": false,
  2712. "exported": false,
  2713. "token": "NotifyModule",
  2714. "initTime": 10.155640000477433
  2715. }
  2716. },
  2717. "-1334258916": {
  2718. "id": "-1334258916",
  2719. "label": "ModuleRef",
  2720. "parent": "-1312205662",
  2721. "metadata": {
  2722. "type": "provider",
  2723. "internal": true,
  2724. "sourceModuleName": "NotifyModule",
  2725. "durable": false,
  2726. "static": true,
  2727. "scope": 0,
  2728. "transient": false,
  2729. "exported": false,
  2730. "token": "ModuleRef"
  2731. }
  2732. },
  2733. "-2109058873": {
  2734. "id": "-2109058873",
  2735. "label": "ApplicationConfig",
  2736. "parent": "-1312205662",
  2737. "metadata": {
  2738. "type": "provider",
  2739. "internal": true,
  2740. "sourceModuleName": "NotifyModule",
  2741. "durable": false,
  2742. "static": true,
  2743. "scope": 0,
  2744. "transient": false,
  2745. "exported": false,
  2746. "token": "ApplicationConfig"
  2747. }
  2748. },
  2749. "-1675176895": {
  2750. "id": "-1675176895",
  2751. "label": "NotifyService",
  2752. "parent": "-1312205662",
  2753. "metadata": {
  2754. "type": "provider",
  2755. "internal": false,
  2756. "sourceModuleName": "NotifyModule",
  2757. "durable": false,
  2758. "static": true,
  2759. "transient": false,
  2760. "exported": false,
  2761. "token": "NotifyService"
  2762. }
  2763. }
  2764. },
  2765. "edges": {
  2766. "33362649": {
  2767. "source": "-1327562795",
  2768. "target": "-1026304274",
  2769. "metadata": {
  2770. "type": "module-to-module",
  2771. "sourceModuleName": "FileModule",
  2772. "targetModuleName": "TypeOrmCoreModule"
  2773. },
  2774. "id": "33362649"
  2775. },
  2776. "43962647": {
  2777. "source": "-2003726489",
  2778. "target": "-1026304274",
  2779. "metadata": {
  2780. "type": "module-to-module",
  2781. "sourceModuleName": "UsersModule",
  2782. "targetModuleName": "TypeOrmCoreModule"
  2783. },
  2784. "id": "43962647"
  2785. },
  2786. "50149515": {
  2787. "source": "863216334",
  2788. "target": "1482218087",
  2789. "metadata": {
  2790. "type": "module-to-module",
  2791. "sourceModuleName": "ConfigModule",
  2792. "targetModuleName": "ThrottlerModule"
  2793. },
  2794. "id": "50149515"
  2795. },
  2796. "175763745": {
  2797. "source": "545846241",
  2798. "target": "211572259",
  2799. "metadata": {
  2800. "type": "module-to-module",
  2801. "sourceModuleName": "TypeOrmModule",
  2802. "targetModuleName": "ConfigHostModule"
  2803. },
  2804. "id": "175763745"
  2805. },
  2806. "184060730": {
  2807. "source": "-643397745",
  2808. "target": "555176277",
  2809. "metadata": {
  2810. "type": "module-to-module",
  2811. "sourceModuleName": "DiscoveryModule",
  2812. "targetModuleName": "InternalCoreModule"
  2813. },
  2814. "id": "184060730"
  2815. },
  2816. "189694679": {
  2817. "source": "1434456218",
  2818. "target": "671882984",
  2819. "metadata": {
  2820. "type": "class-to-class",
  2821. "sourceModuleName": "InternalCoreModule",
  2822. "sourceClassName": "Reflector",
  2823. "targetClassName": "Reflector",
  2824. "sourceClassToken": "Reflector",
  2825. "targetClassToken": "Reflector",
  2826. "targetModuleName": "InternalCoreModule",
  2827. "keyOrIndex": 0,
  2828. "injectionType": "constructor",
  2829. "internal": true
  2830. },
  2831. "id": "189694679"
  2832. },
  2833. "219775656": {
  2834. "source": "-19112576",
  2835. "target": "-1134487807",
  2836. "metadata": {
  2837. "type": "module-to-module",
  2838. "sourceModuleName": "AppModule",
  2839. "targetModuleName": "AuthModule"
  2840. },
  2841. "id": "219775656"
  2842. },
  2843. "220934302": {
  2844. "source": "-493958991",
  2845. "target": "211572259",
  2846. "metadata": {
  2847. "type": "module-to-module",
  2848. "sourceModuleName": "ChatModule",
  2849. "targetModuleName": "ConfigHostModule"
  2850. },
  2851. "id": "220934302"
  2852. },
  2853. "241654674": {
  2854. "source": "-1026304274",
  2855. "target": "1712628187",
  2856. "metadata": {
  2857. "type": "module-to-module",
  2858. "sourceModuleName": "TypeOrmCoreModule",
  2859. "targetModuleName": "ConfigModule"
  2860. },
  2861. "id": "241654674"
  2862. },
  2863. "254091268": {
  2864. "source": "863216333",
  2865. "target": "-1026304274",
  2866. "metadata": {
  2867. "type": "module-to-module",
  2868. "sourceModuleName": "ConfigModule",
  2869. "targetModuleName": "TypeOrmCoreModule"
  2870. },
  2871. "id": "254091268"
  2872. },
  2873. "289403048": {
  2874. "source": "-1134487807",
  2875. "target": "-2003726489",
  2876. "metadata": {
  2877. "type": "module-to-module",
  2878. "sourceModuleName": "AuthModule",
  2879. "targetModuleName": "UsersModule"
  2880. },
  2881. "id": "289403048"
  2882. },
  2883. "309543654": {
  2884. "source": "-759474504",
  2885. "target": "1712628187",
  2886. "metadata": {
  2887. "type": "module-to-module",
  2888. "sourceModuleName": "SmsModule",
  2889. "targetModuleName": "ConfigModule"
  2890. },
  2891. "id": "309543654"
  2892. },
  2893. "317076083": {
  2894. "source": "1333473085",
  2895. "target": "-1453472830",
  2896. "metadata": {
  2897. "type": "class-to-class",
  2898. "sourceModuleName": "ConfigModule",
  2899. "sourceClassName": "CONFIGURATION_LOADER",
  2900. "targetClassName": "CONFIGURATION(jwt)",
  2901. "sourceClassToken": "CONFIGURATION_LOADER",
  2902. "targetClassToken": "CONFIGURATION(jwt)",
  2903. "targetModuleName": "ConfigModule",
  2904. "keyOrIndex": 1,
  2905. "injectionType": "constructor"
  2906. },
  2907. "id": "317076083"
  2908. },
  2909. "353572985": {
  2910. "source": "1712628187",
  2911. "target": "211572259",
  2912. "metadata": {
  2913. "type": "module-to-module",
  2914. "sourceModuleName": "ConfigModule",
  2915. "targetModuleName": "ConfigHostModule"
  2916. },
  2917. "id": "353572985"
  2918. },
  2919. "363633297": {
  2920. "source": "-1327562795",
  2921. "target": "1712628187",
  2922. "metadata": {
  2923. "type": "module-to-module",
  2924. "sourceModuleName": "FileModule",
  2925. "targetModuleName": "ConfigModule"
  2926. },
  2927. "id": "363633297"
  2928. },
  2929. "420319069": {
  2930. "source": "-2003726489",
  2931. "target": "-759474504",
  2932. "metadata": {
  2933. "type": "module-to-module",
  2934. "sourceModuleName": "UsersModule",
  2935. "targetModuleName": "SmsModule"
  2936. },
  2937. "id": "420319069"
  2938. },
  2939. "450524884": {
  2940. "source": "545846241",
  2941. "target": "1712628187",
  2942. "metadata": {
  2943. "type": "module-to-module",
  2944. "sourceModuleName": "TypeOrmModule",
  2945. "targetModuleName": "ConfigModule"
  2946. },
  2947. "id": "450524884"
  2948. },
  2949. "453731008": {
  2950. "source": "863216334",
  2951. "target": "211572259",
  2952. "metadata": {
  2953. "type": "module-to-module",
  2954. "sourceModuleName": "ConfigModule",
  2955. "targetModuleName": "ConfigHostModule"
  2956. },
  2957. "id": "453731008"
  2958. },
  2959. "453746939": {
  2960. "source": "1934208604",
  2961. "target": "671882984",
  2962. "metadata": {
  2963. "type": "class-to-class",
  2964. "sourceModuleName": "AuthModule",
  2965. "sourceClassName": "RolesGuard",
  2966. "targetClassName": "Reflector",
  2967. "sourceClassToken": "APP_GUARD (UUID: 1201125561)",
  2968. "targetClassToken": "Reflector",
  2969. "targetModuleName": "InternalCoreModule",
  2970. "keyOrIndex": 0,
  2971. "injectionType": "constructor",
  2972. "internal": true
  2973. },
  2974. "id": "453746939"
  2975. },
  2976. "459666374": {
  2977. "source": "-759474504",
  2978. "target": "-1026304274",
  2979. "metadata": {
  2980. "type": "module-to-module",
  2981. "sourceModuleName": "SmsModule",
  2982. "targetModuleName": "TypeOrmCoreModule"
  2983. },
  2984. "id": "459666374"
  2985. },
  2986. "469401997": {
  2987. "source": "-493958991",
  2988. "target": "555176277",
  2989. "metadata": {
  2990. "type": "module-to-module",
  2991. "sourceModuleName": "ChatModule",
  2992. "targetModuleName": "InternalCoreModule"
  2993. },
  2994. "id": "469401997"
  2995. },
  2996. "470770158": {
  2997. "source": "-1134487807",
  2998. "target": "863216336",
  2999. "metadata": {
  3000. "type": "module-to-module",
  3001. "sourceModuleName": "AuthModule",
  3002. "targetModuleName": "ConfigModule"
  3003. },
  3004. "id": "470770158"
  3005. },
  3006. "486066635": {
  3007. "source": "-493958991",
  3008. "target": "545846245",
  3009. "metadata": {
  3010. "type": "module-to-module",
  3011. "sourceModuleName": "ChatModule",
  3012. "targetModuleName": "TypeOrmModule"
  3013. },
  3014. "id": "486066635"
  3015. },
  3016. "508258671": {
  3017. "source": "612499341",
  3018. "target": "211572259",
  3019. "metadata": {
  3020. "type": "module-to-module",
  3021. "sourceModuleName": "AliyunModule",
  3022. "targetModuleName": "ConfigHostModule"
  3023. },
  3024. "id": "508258671"
  3025. },
  3026. "527989730": {
  3027. "source": "-759474504",
  3028. "target": "545846241",
  3029. "metadata": {
  3030. "type": "module-to-module",
  3031. "sourceModuleName": "SmsModule",
  3032. "targetModuleName": "TypeOrmModule"
  3033. },
  3034. "id": "527989730"
  3035. },
  3036. "542032284": {
  3037. "source": "-19112576",
  3038. "target": "1219676411",
  3039. "metadata": {
  3040. "type": "module-to-module",
  3041. "sourceModuleName": "AppModule",
  3042. "targetModuleName": "WeixinModule"
  3043. },
  3044. "id": "542032284"
  3045. },
  3046. "561408245": {
  3047. "source": "-1033621697",
  3048. "target": "211572259",
  3049. "metadata": {
  3050. "type": "module-to-module",
  3051. "sourceModuleName": "DevtoolsModule",
  3052. "targetModuleName": "ConfigHostModule"
  3053. },
  3054. "id": "561408245"
  3055. },
  3056. "565650659": {
  3057. "source": "-536515674",
  3058. "target": "1482218087",
  3059. "metadata": {
  3060. "type": "module-to-module",
  3061. "sourceModuleName": "JwtModule",
  3062. "targetModuleName": "ThrottlerModule"
  3063. },
  3064. "id": "565650659"
  3065. },
  3066. "584653416": {
  3067. "source": "1712628187",
  3068. "target": "555176277",
  3069. "metadata": {
  3070. "type": "module-to-module",
  3071. "sourceModuleName": "ConfigModule",
  3072. "targetModuleName": "InternalCoreModule"
  3073. },
  3074. "id": "584653416"
  3075. },
  3076. "591206582": {
  3077. "source": "545846241",
  3078. "target": "1482218087",
  3079. "metadata": {
  3080. "type": "module-to-module",
  3081. "sourceModuleName": "TypeOrmModule",
  3082. "targetModuleName": "ThrottlerModule"
  3083. },
  3084. "id": "591206582"
  3085. },
  3086. "593652447": {
  3087. "source": "545846243",
  3088. "target": "211572259",
  3089. "metadata": {
  3090. "type": "module-to-module",
  3091. "sourceModuleName": "TypeOrmModule",
  3092. "targetModuleName": "ConfigHostModule"
  3093. },
  3094. "id": "593652447"
  3095. },
  3096. "632258133": {
  3097. "source": "545846242",
  3098. "target": "1712628187",
  3099. "metadata": {
  3100. "type": "module-to-module",
  3101. "sourceModuleName": "TypeOrmModule",
  3102. "targetModuleName": "ConfigModule"
  3103. },
  3104. "id": "632258133"
  3105. },
  3106. "636494595": {
  3107. "source": "-536515674",
  3108. "target": "-1026304274",
  3109. "metadata": {
  3110. "type": "module-to-module",
  3111. "sourceModuleName": "JwtModule",
  3112. "targetModuleName": "TypeOrmCoreModule"
  3113. },
  3114. "id": "636494595"
  3115. },
  3116. "677989064": {
  3117. "source": "-643397745",
  3118. "target": "1712628187",
  3119. "metadata": {
  3120. "type": "module-to-module",
  3121. "sourceModuleName": "DiscoveryModule",
  3122. "targetModuleName": "ConfigModule"
  3123. },
  3124. "id": "677989064"
  3125. },
  3126. "770050705": {
  3127. "source": "1219676411",
  3128. "target": "1482218087",
  3129. "metadata": {
  3130. "type": "module-to-module",
  3131. "sourceModuleName": "WeixinModule",
  3132. "targetModuleName": "ThrottlerModule"
  3133. },
  3134. "id": "770050705"
  3135. },
  3136. "784525888": {
  3137. "source": "-536515674",
  3138. "target": "211572259",
  3139. "metadata": {
  3140. "type": "module-to-module",
  3141. "sourceModuleName": "JwtModule",
  3142. "targetModuleName": "ConfigHostModule"
  3143. },
  3144. "id": "784525888"
  3145. },
  3146. "790297826": {
  3147. "source": "-1312205662",
  3148. "target": "1219676411",
  3149. "metadata": {
  3150. "type": "module-to-module",
  3151. "sourceModuleName": "NotifyModule",
  3152. "targetModuleName": "WeixinModule"
  3153. },
  3154. "id": "790297826"
  3155. },
  3156. "813991382": {
  3157. "source": "545846243",
  3158. "target": "1712628187",
  3159. "metadata": {
  3160. "type": "module-to-module",
  3161. "sourceModuleName": "TypeOrmModule",
  3162. "targetModuleName": "ConfigModule"
  3163. },
  3164. "id": "813991382"
  3165. },
  3166. "844194697": {
  3167. "source": "-1312205662",
  3168. "target": "485644527",
  3169. "metadata": {
  3170. "type": "module-to-module",
  3171. "sourceModuleName": "NotifyModule",
  3172. "targetModuleName": "MembershipModule"
  3173. },
  3174. "id": "844194697"
  3175. },
  3176. "879231749": {
  3177. "source": "545846244",
  3178. "target": "-1026304274",
  3179. "metadata": {
  3180. "type": "module-to-module",
  3181. "sourceModuleName": "TypeOrmModule",
  3182. "targetModuleName": "TypeOrmCoreModule"
  3183. },
  3184. "id": "879231749"
  3185. },
  3186. "920687522": {
  3187. "source": "-1134487807",
  3188. "target": "211572259",
  3189. "metadata": {
  3190. "type": "module-to-module",
  3191. "sourceModuleName": "AuthModule",
  3192. "targetModuleName": "ConfigHostModule"
  3193. },
  3194. "id": "920687522"
  3195. },
  3196. "978356204": {
  3197. "source": "-1134487807",
  3198. "target": "-536515674",
  3199. "metadata": {
  3200. "type": "module-to-module",
  3201. "sourceModuleName": "AuthModule",
  3202. "targetModuleName": "JwtModule"
  3203. },
  3204. "id": "978356204"
  3205. },
  3206. "987755577": {
  3207. "source": "-2003726489",
  3208. "target": "555176277",
  3209. "metadata": {
  3210. "type": "module-to-module",
  3211. "sourceModuleName": "UsersModule",
  3212. "targetModuleName": "InternalCoreModule"
  3213. },
  3214. "id": "987755577"
  3215. },
  3216. "995724631": {
  3217. "source": "545846244",
  3218. "target": "1712628187",
  3219. "metadata": {
  3220. "type": "module-to-module",
  3221. "sourceModuleName": "TypeOrmModule",
  3222. "targetModuleName": "ConfigModule"
  3223. },
  3224. "id": "995724631"
  3225. },
  3226. "1009095284": {
  3227. "source": "545846243",
  3228. "target": "1482218087",
  3229. "metadata": {
  3230. "type": "module-to-module",
  3231. "sourceModuleName": "TypeOrmModule",
  3232. "targetModuleName": "ThrottlerModule"
  3233. },
  3234. "id": "1009095284"
  3235. },
  3236. "1010561902": {
  3237. "source": "545846241",
  3238. "target": "555176277",
  3239. "metadata": {
  3240. "type": "module-to-module",
  3241. "sourceModuleName": "TypeOrmModule",
  3242. "targetModuleName": "InternalCoreModule"
  3243. },
  3244. "id": "1010561902"
  3245. },
  3246. "1011541149": {
  3247. "source": "545846245",
  3248. "target": "211572259",
  3249. "metadata": {
  3250. "type": "module-to-module",
  3251. "sourceModuleName": "TypeOrmModule",
  3252. "targetModuleName": "ConfigHostModule"
  3253. },
  3254. "id": "1011541149"
  3255. },
  3256. "1028357956": {
  3257. "source": "373235992",
  3258. "target": "-438112115",
  3259. "metadata": {
  3260. "type": "class-to-class",
  3261. "sourceModuleName": "DevtoolsModule",
  3262. "sourceClassName": "SandboxedCodeExecutor",
  3263. "targetClassName": "MetadataScanner",
  3264. "sourceClassToken": "SandboxedCodeExecutor",
  3265. "targetClassToken": "MetadataScanner",
  3266. "targetModuleName": "DiscoveryModule",
  3267. "keyOrIndex": 2,
  3268. "injectionType": "constructor"
  3269. },
  3270. "id": "1028357956"
  3271. },
  3272. "1033762794": {
  3273. "source": "545846245",
  3274. "target": "555176277",
  3275. "metadata": {
  3276. "type": "module-to-module",
  3277. "sourceModuleName": "TypeOrmModule",
  3278. "targetModuleName": "InternalCoreModule"
  3279. },
  3280. "id": "1033762794"
  3281. },
  3282. "1056428433": {
  3283. "source": "-19112576",
  3284. "target": "555176277",
  3285. "metadata": {
  3286. "type": "module-to-module",
  3287. "sourceModuleName": "AppModule",
  3288. "targetModuleName": "InternalCoreModule"
  3289. },
  3290. "id": "1056428433"
  3291. },
  3292. "1134336077": {
  3293. "source": "-536515674",
  3294. "target": "555176277",
  3295. "metadata": {
  3296. "type": "module-to-module",
  3297. "sourceModuleName": "JwtModule",
  3298. "targetModuleName": "InternalCoreModule"
  3299. },
  3300. "id": "1134336077"
  3301. },
  3302. "1138009401": {
  3303. "source": "-1327562795",
  3304. "target": "555176277",
  3305. "metadata": {
  3306. "type": "module-to-module",
  3307. "sourceModuleName": "FileModule",
  3308. "targetModuleName": "InternalCoreModule"
  3309. },
  3310. "id": "1138009401"
  3311. },
  3312. "1173495886": {
  3313. "source": "-759474504",
  3314. "target": "612499341",
  3315. "metadata": {
  3316. "type": "module-to-module",
  3317. "sourceModuleName": "SmsModule",
  3318. "targetModuleName": "AliyunModule"
  3319. },
  3320. "id": "1173495886"
  3321. },
  3322. "1176615609": {
  3323. "source": "-2003726489",
  3324. "target": "1712628187",
  3325. "metadata": {
  3326. "type": "module-to-module",
  3327. "sourceModuleName": "UsersModule",
  3328. "targetModuleName": "ConfigModule"
  3329. },
  3330. "id": "1176615609"
  3331. },
  3332. "1177457880": {
  3333. "source": "545846245",
  3334. "target": "1712628187",
  3335. "metadata": {
  3336. "type": "module-to-module",
  3337. "sourceModuleName": "TypeOrmModule",
  3338. "targetModuleName": "ConfigModule"
  3339. },
  3340. "id": "1177457880"
  3341. },
  3342. "1238049473": {
  3343. "source": "-1312205662",
  3344. "target": "555176277",
  3345. "metadata": {
  3346. "type": "module-to-module",
  3347. "sourceModuleName": "NotifyModule",
  3348. "targetModuleName": "InternalCoreModule"
  3349. },
  3350. "id": "1238049473"
  3351. },
  3352. "1263570858": {
  3353. "source": "-759474504",
  3354. "target": "555176277",
  3355. "metadata": {
  3356. "type": "module-to-module",
  3357. "sourceModuleName": "SmsModule",
  3358. "targetModuleName": "InternalCoreModule"
  3359. },
  3360. "id": "1263570858"
  3361. },
  3362. "1318898112": {
  3363. "source": "-19112576",
  3364. "target": "-2135742481",
  3365. "metadata": {
  3366. "type": "module-to-module",
  3367. "sourceModuleName": "AppModule",
  3368. "targetModuleName": "TypeOrmModule"
  3369. },
  3370. "id": "1318898112"
  3371. },
  3372. "1333633315": {
  3373. "source": "863216334",
  3374. "target": "-1026304274",
  3375. "metadata": {
  3376. "type": "module-to-module",
  3377. "sourceModuleName": "ConfigModule",
  3378. "targetModuleName": "TypeOrmCoreModule"
  3379. },
  3380. "id": "1333633315"
  3381. },
  3382. "1359911797": {
  3383. "source": "-19112576",
  3384. "target": "612499341",
  3385. "metadata": {
  3386. "type": "module-to-module",
  3387. "sourceModuleName": "AppModule",
  3388. "targetModuleName": "AliyunModule"
  3389. },
  3390. "id": "1359911797"
  3391. },
  3392. "1382268280": {
  3393. "source": "485644527",
  3394. "target": "545846243",
  3395. "metadata": {
  3396. "type": "module-to-module",
  3397. "sourceModuleName": "MembershipModule",
  3398. "targetModuleName": "TypeOrmModule"
  3399. },
  3400. "id": "1382268280"
  3401. },
  3402. "1414936007": {
  3403. "source": "-536515674",
  3404. "target": "1712628187",
  3405. "metadata": {
  3406. "type": "module-to-module",
  3407. "sourceModuleName": "JwtModule",
  3408. "targetModuleName": "ConfigModule"
  3409. },
  3410. "id": "1414936007"
  3411. },
  3412. "1426983986": {
  3413. "source": "545846245",
  3414. "target": "1482218087",
  3415. "metadata": {
  3416. "type": "module-to-module",
  3417. "sourceModuleName": "TypeOrmModule",
  3418. "targetModuleName": "ThrottlerModule"
  3419. },
  3420. "id": "1426983986"
  3421. },
  3422. "1431808641": {
  3423. "source": "-1134487807",
  3424. "target": "-1026304274",
  3425. "metadata": {
  3426. "type": "module-to-module",
  3427. "sourceModuleName": "AuthModule",
  3428. "targetModuleName": "TypeOrmCoreModule"
  3429. },
  3430. "id": "1431808641"
  3431. },
  3432. "1449103117": {
  3433. "source": "863216336",
  3434. "target": "1482218087",
  3435. "metadata": {
  3436. "type": "module-to-module",
  3437. "sourceModuleName": "ConfigModule",
  3438. "targetModuleName": "ThrottlerModule"
  3439. },
  3440. "id": "1449103117"
  3441. },
  3442. "1450432242": {
  3443. "source": "1482218087",
  3444. "target": "863216333",
  3445. "metadata": {
  3446. "type": "module-to-module",
  3447. "sourceModuleName": "ThrottlerModule",
  3448. "targetModuleName": "ConfigModule"
  3449. },
  3450. "id": "1450432242"
  3451. },
  3452. "1454288893": {
  3453. "source": "-2135742481",
  3454. "target": "-1026304274",
  3455. "metadata": {
  3456. "type": "module-to-module",
  3457. "sourceModuleName": "TypeOrmModule",
  3458. "targetModuleName": "TypeOrmCoreModule"
  3459. },
  3460. "id": "1454288893"
  3461. },
  3462. "1488040101": {
  3463. "source": "211572259",
  3464. "target": "-1026304274",
  3465. "metadata": {
  3466. "type": "module-to-module",
  3467. "sourceModuleName": "ConfigHostModule",
  3468. "targetModuleName": "TypeOrmCoreModule"
  3469. },
  3470. "id": "1488040101"
  3471. },
  3472. "1498156362": {
  3473. "source": "863216333",
  3474. "target": "1482218087",
  3475. "metadata": {
  3476. "type": "module-to-module",
  3477. "sourceModuleName": "ConfigModule",
  3478. "targetModuleName": "ThrottlerModule"
  3479. },
  3480. "id": "1498156362"
  3481. },
  3482. "1564458447": {
  3483. "source": "-1312205662",
  3484. "target": "1712628187",
  3485. "metadata": {
  3486. "type": "module-to-module",
  3487. "sourceModuleName": "NotifyModule",
  3488. "targetModuleName": "ConfigModule"
  3489. },
  3490. "id": "1564458447"
  3491. },
  3492. "1571031686": {
  3493. "source": "1219676411",
  3494. "target": "211572259",
  3495. "metadata": {
  3496. "type": "module-to-module",
  3497. "sourceModuleName": "WeixinModule",
  3498. "targetModuleName": "ConfigHostModule"
  3499. },
  3500. "id": "1571031686"
  3501. },
  3502. "1635338963": {
  3503. "source": "-2135742481",
  3504. "target": "555176277",
  3505. "metadata": {
  3506. "type": "module-to-module",
  3507. "sourceModuleName": "TypeOrmModule",
  3508. "targetModuleName": "InternalCoreModule"
  3509. },
  3510. "id": "1635338963"
  3511. },
  3512. "1643502424": {
  3513. "source": "-19112576",
  3514. "target": "-1312205662",
  3515. "metadata": {
  3516. "type": "module-to-module",
  3517. "sourceModuleName": "AppModule",
  3518. "targetModuleName": "NotifyModule"
  3519. },
  3520. "id": "1643502424"
  3521. },
  3522. "1690588001": {
  3523. "source": "-1134487807",
  3524. "target": "1712628187",
  3525. "metadata": {
  3526. "type": "module-to-module",
  3527. "sourceModuleName": "AuthModule",
  3528. "targetModuleName": "ConfigModule"
  3529. },
  3530. "id": "1690588001"
  3531. },
  3532. "1720992914": {
  3533. "source": "-2003726489",
  3534. "target": "545846242",
  3535. "metadata": {
  3536. "type": "module-to-module",
  3537. "sourceModuleName": "UsersModule",
  3538. "targetModuleName": "TypeOrmModule"
  3539. },
  3540. "id": "1720992914"
  3541. },
  3542. "1733675336": {
  3543. "source": "-1033621697",
  3544. "target": "1482218087",
  3545. "metadata": {
  3546. "type": "module-to-module",
  3547. "sourceModuleName": "DevtoolsModule",
  3548. "targetModuleName": "ThrottlerModule"
  3549. },
  3550. "id": "1733675336"
  3551. },
  3552. "1733822514": {
  3553. "source": "1482218087",
  3554. "target": "-1026304274",
  3555. "metadata": {
  3556. "type": "module-to-module",
  3557. "sourceModuleName": "ThrottlerModule",
  3558. "targetModuleName": "TypeOrmCoreModule"
  3559. },
  3560. "id": "1733822514"
  3561. },
  3562. "1744123909": {
  3563. "source": "-1026304274",
  3564. "target": "211572259",
  3565. "metadata": {
  3566. "type": "module-to-module",
  3567. "sourceModuleName": "TypeOrmCoreModule",
  3568. "targetModuleName": "ConfigHostModule"
  3569. },
  3570. "id": "1744123909"
  3571. },
  3572. "1759774274": {
  3573. "source": "-643397745",
  3574. "target": "1482218087",
  3575. "metadata": {
  3576. "type": "module-to-module",
  3577. "sourceModuleName": "DiscoveryModule",
  3578. "targetModuleName": "ThrottlerModule"
  3579. },
  3580. "id": "1759774274"
  3581. },
  3582. "1773166660": {
  3583. "source": "545846243",
  3584. "target": "-1026304274",
  3585. "metadata": {
  3586. "type": "module-to-module",
  3587. "sourceModuleName": "TypeOrmModule",
  3588. "targetModuleName": "TypeOrmCoreModule"
  3589. },
  3590. "id": "1773166660"
  3591. },
  3592. "1786225585": {
  3593. "source": "1482218087",
  3594. "target": "211572259",
  3595. "metadata": {
  3596. "type": "module-to-module",
  3597. "sourceModuleName": "ThrottlerModule",
  3598. "targetModuleName": "ConfigHostModule"
  3599. },
  3600. "id": "1786225585"
  3601. },
  3602. "1852684610": {
  3603. "source": "863216336",
  3604. "target": "211572259",
  3605. "metadata": {
  3606. "type": "module-to-module",
  3607. "sourceModuleName": "ConfigModule",
  3608. "targetModuleName": "ConfigHostModule"
  3609. },
  3610. "id": "1852684610"
  3611. },
  3612. "1867382584": {
  3613. "source": "-1026304274",
  3614. "target": "1482218087",
  3615. "metadata": {
  3616. "type": "module-to-module",
  3617. "sourceModuleName": "TypeOrmCoreModule",
  3618. "targetModuleName": "ThrottlerModule"
  3619. },
  3620. "id": "1867382584"
  3621. },
  3622. "1901737855": {
  3623. "source": "863216333",
  3624. "target": "211572259",
  3625. "metadata": {
  3626. "type": "module-to-module",
  3627. "sourceModuleName": "ConfigModule",
  3628. "targetModuleName": "ConfigHostModule"
  3629. },
  3630. "id": "1901737855"
  3631. },
  3632. "1957855369": {
  3633. "source": "1219676411",
  3634. "target": "1712628187",
  3635. "metadata": {
  3636. "type": "module-to-module",
  3637. "sourceModuleName": "WeixinModule",
  3638. "targetModuleName": "ConfigModule"
  3639. },
  3640. "id": "1957855369"
  3641. },
  3642. "1964307902": {
  3643. "source": "485644527",
  3644. "target": "555176277",
  3645. "metadata": {
  3646. "type": "module-to-module",
  3647. "sourceModuleName": "MembershipModule",
  3648. "targetModuleName": "InternalCoreModule"
  3649. },
  3650. "id": "1964307902"
  3651. },
  3652. "2048098187": {
  3653. "source": "-1312205662",
  3654. "target": "1482218087",
  3655. "metadata": {
  3656. "type": "module-to-module",
  3657. "sourceModuleName": "NotifyModule",
  3658. "targetModuleName": "ThrottlerModule"
  3659. },
  3660. "id": "2048098187"
  3661. },
  3662. "2090103949": {
  3663. "source": "545846242",
  3664. "target": "555176277",
  3665. "metadata": {
  3666. "type": "module-to-module",
  3667. "sourceModuleName": "TypeOrmModule",
  3668. "targetModuleName": "InternalCoreModule"
  3669. },
  3670. "id": "2090103949"
  3671. },
  3672. "2099251801": {
  3673. "source": "211572259",
  3674. "target": "1482218087",
  3675. "metadata": {
  3676. "type": "module-to-module",
  3677. "sourceModuleName": "ConfigHostModule",
  3678. "targetModuleName": "ThrottlerModule"
  3679. },
  3680. "id": "2099251801"
  3681. },
  3682. "2107559886": {
  3683. "source": "-1033621697",
  3684. "target": "-1026304274",
  3685. "metadata": {
  3686. "type": "module-to-module",
  3687. "sourceModuleName": "DevtoolsModule",
  3688. "targetModuleName": "TypeOrmCoreModule"
  3689. },
  3690. "id": "2107559886"
  3691. },
  3692. "2109546608": {
  3693. "source": "863216333",
  3694. "target": "1712628187",
  3695. "metadata": {
  3696. "type": "module-to-module",
  3697. "sourceModuleName": "ConfigModule",
  3698. "targetModuleName": "ConfigModule"
  3699. },
  3700. "id": "2109546608"
  3701. },
  3702. "-1759625292": {
  3703. "source": "-553129559",
  3704. "target": "-326832201",
  3705. "metadata": {
  3706. "type": "class-to-class",
  3707. "sourceModuleName": "InternalCoreModule",
  3708. "sourceClassName": "HttpAdapterHost",
  3709. "targetClassName": "HttpAdapterHost",
  3710. "sourceClassToken": "HttpAdapterHost",
  3711. "targetClassToken": "HttpAdapterHost",
  3712. "targetModuleName": "InternalCoreModule",
  3713. "keyOrIndex": 0,
  3714. "injectionType": "constructor",
  3715. "internal": true
  3716. },
  3717. "id": "-1759625292"
  3718. },
  3719. "-221187751": {
  3720. "source": "400681591",
  3721. "target": "-26938366",
  3722. "metadata": {
  3723. "type": "class-to-class",
  3724. "sourceModuleName": "DiscoveryModule",
  3725. "sourceClassName": "DiscoveryService",
  3726. "targetClassName": "ModulesContainer",
  3727. "sourceClassToken": "DiscoveryService",
  3728. "targetClassToken": "ModulesContainer",
  3729. "targetModuleName": "InternalCoreModule",
  3730. "keyOrIndex": 0,
  3731. "injectionType": "constructor",
  3732. "internal": true
  3733. },
  3734. "id": "-221187751"
  3735. },
  3736. "-692061701": {
  3737. "source": "-19112576",
  3738. "target": "-1033621697",
  3739. "metadata": {
  3740. "type": "module-to-module",
  3741. "sourceModuleName": "AppModule",
  3742. "targetModuleName": "DevtoolsModule"
  3743. },
  3744. "id": "-692061701"
  3745. },
  3746. "-844262897": {
  3747. "source": "-19112576",
  3748. "target": "1712628187",
  3749. "metadata": {
  3750. "type": "module-to-module",
  3751. "sourceModuleName": "AppModule",
  3752. "targetModuleName": "ConfigModule"
  3753. },
  3754. "id": "-844262897"
  3755. },
  3756. "-1091370085": {
  3757. "source": "-19112576",
  3758. "target": "1482218087",
  3759. "metadata": {
  3760. "type": "module-to-module",
  3761. "sourceModuleName": "AppModule",
  3762. "targetModuleName": "ThrottlerModule"
  3763. },
  3764. "id": "-1091370085"
  3765. },
  3766. "-1622731513": {
  3767. "source": "-19112576",
  3768. "target": "-759474504",
  3769. "metadata": {
  3770. "type": "module-to-module",
  3771. "sourceModuleName": "AppModule",
  3772. "targetModuleName": "SmsModule"
  3773. },
  3774. "id": "-1622731513"
  3775. },
  3776. "-158970266": {
  3777. "source": "-19112576",
  3778. "target": "-2003726489",
  3779. "metadata": {
  3780. "type": "module-to-module",
  3781. "sourceModuleName": "AppModule",
  3782. "targetModuleName": "UsersModule"
  3783. },
  3784. "id": "-158970266"
  3785. },
  3786. "-789499568": {
  3787. "source": "-19112576",
  3788. "target": "-1327562795",
  3789. "metadata": {
  3790. "type": "module-to-module",
  3791. "sourceModuleName": "AppModule",
  3792. "targetModuleName": "FileModule"
  3793. },
  3794. "id": "-789499568"
  3795. },
  3796. "-192150092": {
  3797. "source": "-19112576",
  3798. "target": "-493958991",
  3799. "metadata": {
  3800. "type": "module-to-module",
  3801. "sourceModuleName": "AppModule",
  3802. "targetModuleName": "ChatModule"
  3803. },
  3804. "id": "-192150092"
  3805. },
  3806. "-773142955": {
  3807. "source": "-19112576",
  3808. "target": "485644527",
  3809. "metadata": {
  3810. "type": "module-to-module",
  3811. "sourceModuleName": "AppModule",
  3812. "targetModuleName": "MembershipModule"
  3813. },
  3814. "id": "-773142955"
  3815. },
  3816. "-815553404": {
  3817. "source": "-19112576",
  3818. "target": "211572259",
  3819. "metadata": {
  3820. "type": "module-to-module",
  3821. "sourceModuleName": "AppModule",
  3822. "targetModuleName": "ConfigHostModule"
  3823. },
  3824. "id": "-815553404"
  3825. },
  3826. "-495517505": {
  3827. "source": "-19112576",
  3828. "target": "-1026304274",
  3829. "metadata": {
  3830. "type": "module-to-module",
  3831. "sourceModuleName": "AppModule",
  3832. "targetModuleName": "TypeOrmCoreModule"
  3833. },
  3834. "id": "-495517505"
  3835. },
  3836. "-1926621316": {
  3837. "source": "-1033621697",
  3838. "target": "-643397745",
  3839. "metadata": {
  3840. "type": "module-to-module",
  3841. "sourceModuleName": "DevtoolsModule",
  3842. "targetModuleName": "DiscoveryModule"
  3843. },
  3844. "id": "-1926621316"
  3845. },
  3846. "-308574300": {
  3847. "source": "-1033621697",
  3848. "target": "555176277",
  3849. "metadata": {
  3850. "type": "module-to-module",
  3851. "sourceModuleName": "DevtoolsModule",
  3852. "targetModuleName": "InternalCoreModule"
  3853. },
  3854. "id": "-308574300"
  3855. },
  3856. "-932159694": {
  3857. "source": "-1033621697",
  3858. "target": "1712628187",
  3859. "metadata": {
  3860. "type": "module-to-module",
  3861. "sourceModuleName": "DevtoolsModule",
  3862. "targetModuleName": "ConfigModule"
  3863. },
  3864. "id": "-932159694"
  3865. },
  3866. "-1107570771": {
  3867. "source": "-643397745",
  3868. "target": "211572259",
  3869. "metadata": {
  3870. "type": "module-to-module",
  3871. "sourceModuleName": "DiscoveryModule",
  3872. "targetModuleName": "ConfigHostModule"
  3873. },
  3874. "id": "-1107570771"
  3875. },
  3876. "-1777027914": {
  3877. "source": "-643397745",
  3878. "target": "-1026304274",
  3879. "metadata": {
  3880. "type": "module-to-module",
  3881. "sourceModuleName": "DiscoveryModule",
  3882. "targetModuleName": "TypeOrmCoreModule"
  3883. },
  3884. "id": "-1777027914"
  3885. },
  3886. "-50008508": {
  3887. "source": "1712628187",
  3888. "target": "1482218087",
  3889. "metadata": {
  3890. "type": "module-to-module",
  3891. "sourceModuleName": "ConfigModule",
  3892. "targetModuleName": "ThrottlerModule"
  3893. },
  3894. "id": "-50008508"
  3895. },
  3896. "-1766726454": {
  3897. "source": "1712628187",
  3898. "target": "-1026304274",
  3899. "metadata": {
  3900. "type": "module-to-module",
  3901. "sourceModuleName": "ConfigModule",
  3902. "targetModuleName": "TypeOrmCoreModule"
  3903. },
  3904. "id": "-1766726454"
  3905. },
  3906. "-1995183955": {
  3907. "source": "211572259",
  3908. "target": "555176277",
  3909. "metadata": {
  3910. "type": "module-to-module",
  3911. "sourceModuleName": "ConfigHostModule",
  3912. "targetModuleName": "InternalCoreModule"
  3913. },
  3914. "id": "-1995183955"
  3915. },
  3916. "-60954175": {
  3917. "source": "211572259",
  3918. "target": "1712628187",
  3919. "metadata": {
  3920. "type": "module-to-module",
  3921. "sourceModuleName": "ConfigHostModule",
  3922. "targetModuleName": "ConfigModule"
  3923. },
  3924. "id": "-60954175"
  3925. },
  3926. "-2016448962": {
  3927. "source": "1482218087",
  3928. "target": "555176277",
  3929. "metadata": {
  3930. "type": "module-to-module",
  3931. "sourceModuleName": "ThrottlerModule",
  3932. "targetModuleName": "InternalCoreModule"
  3933. },
  3934. "id": "-2016448962"
  3935. },
  3936. "-1929299820": {
  3937. "source": "1482218087",
  3938. "target": "1712628187",
  3939. "metadata": {
  3940. "type": "module-to-module",
  3941. "sourceModuleName": "ThrottlerModule",
  3942. "targetModuleName": "ConfigModule"
  3943. },
  3944. "id": "-1929299820"
  3945. },
  3946. "-1982558226": {
  3947. "source": "863216333",
  3948. "target": "555176277",
  3949. "metadata": {
  3950. "type": "module-to-module",
  3951. "sourceModuleName": "ConfigModule",
  3952. "targetModuleName": "InternalCoreModule"
  3953. },
  3954. "id": "-1982558226"
  3955. },
  3956. "-1887218609": {
  3957. "source": "-2135742481",
  3958. "target": "1712628187",
  3959. "metadata": {
  3960. "type": "module-to-module",
  3961. "sourceModuleName": "TypeOrmModule",
  3962. "targetModuleName": "ConfigModule"
  3963. },
  3964. "id": "-1887218609"
  3965. },
  3966. "-645931578": {
  3967. "source": "-2135742481",
  3968. "target": "211572259",
  3969. "metadata": {
  3970. "type": "module-to-module",
  3971. "sourceModuleName": "TypeOrmModule",
  3972. "targetModuleName": "ConfigHostModule"
  3973. },
  3974. "id": "-645931578"
  3975. },
  3976. "-230488741": {
  3977. "source": "-2135742481",
  3978. "target": "1482218087",
  3979. "metadata": {
  3980. "type": "module-to-module",
  3981. "sourceModuleName": "TypeOrmModule",
  3982. "targetModuleName": "ThrottlerModule"
  3983. },
  3984. "id": "-230488741"
  3985. },
  3986. "-2027398394": {
  3987. "source": "-1026304274",
  3988. "target": "863216333",
  3989. "metadata": {
  3990. "type": "module-to-module",
  3991. "sourceModuleName": "TypeOrmCoreModule",
  3992. "targetModuleName": "ConfigModule"
  3993. },
  3994. "id": "-2027398394"
  3995. },
  3996. "-485008942": {
  3997. "source": "-1026304274",
  3998. "target": "555176277",
  3999. "metadata": {
  4000. "type": "module-to-module",
  4001. "sourceModuleName": "TypeOrmCoreModule",
  4002. "targetModuleName": "InternalCoreModule"
  4003. },
  4004. "id": "-485008942"
  4005. },
  4006. "-651417091": {
  4007. "source": "612499341",
  4008. "target": "863216334",
  4009. "metadata": {
  4010. "type": "module-to-module",
  4011. "sourceModuleName": "AliyunModule",
  4012. "targetModuleName": "ConfigModule"
  4013. },
  4014. "id": "-651417091"
  4015. },
  4016. "-1086257698": {
  4017. "source": "612499341",
  4018. "target": "555176277",
  4019. "metadata": {
  4020. "type": "module-to-module",
  4021. "sourceModuleName": "AliyunModule",
  4022. "targetModuleName": "InternalCoreModule"
  4023. },
  4024. "id": "-1086257698"
  4025. },
  4026. "-304556580": {
  4027. "source": "612499341",
  4028. "target": "1712628187",
  4029. "metadata": {
  4030. "type": "module-to-module",
  4031. "sourceModuleName": "AliyunModule",
  4032. "targetModuleName": "ConfigModule"
  4033. },
  4034. "id": "-304556580"
  4035. },
  4036. "-2117513122": {
  4037. "source": "612499341",
  4038. "target": "1482218087",
  4039. "metadata": {
  4040. "type": "module-to-module",
  4041. "sourceModuleName": "AliyunModule",
  4042. "targetModuleName": "ThrottlerModule"
  4043. },
  4044. "id": "-2117513122"
  4045. },
  4046. "-1596822380": {
  4047. "source": "612499341",
  4048. "target": "-1026304274",
  4049. "metadata": {
  4050. "type": "module-to-module",
  4051. "sourceModuleName": "AliyunModule",
  4052. "targetModuleName": "TypeOrmCoreModule"
  4053. },
  4054. "id": "-1596822380"
  4055. },
  4056. "-1947734289": {
  4057. "source": "863216334",
  4058. "target": "555176277",
  4059. "metadata": {
  4060. "type": "module-to-module",
  4061. "sourceModuleName": "ConfigModule",
  4062. "targetModuleName": "InternalCoreModule"
  4063. },
  4064. "id": "-1947734289"
  4065. },
  4066. "-2041010993": {
  4067. "source": "863216334",
  4068. "target": "1712628187",
  4069. "metadata": {
  4070. "type": "module-to-module",
  4071. "sourceModuleName": "ConfigModule",
  4072. "targetModuleName": "ConfigModule"
  4073. },
  4074. "id": "-2041010993"
  4075. },
  4076. "-355003171": {
  4077. "source": "-759474504",
  4078. "target": "211572259",
  4079. "metadata": {
  4080. "type": "module-to-module",
  4081. "sourceModuleName": "SmsModule",
  4082. "targetModuleName": "ConfigHostModule"
  4083. },
  4084. "id": "-355003171"
  4085. },
  4086. "-663679132": {
  4087. "source": "-759474504",
  4088. "target": "1482218087",
  4089. "metadata": {
  4090. "type": "module-to-module",
  4091. "sourceModuleName": "SmsModule",
  4092. "targetModuleName": "ThrottlerModule"
  4093. },
  4094. "id": "-663679132"
  4095. },
  4096. "-733930814": {
  4097. "source": "545846241",
  4098. "target": "-1026304274",
  4099. "metadata": {
  4100. "type": "module-to-module",
  4101. "sourceModuleName": "TypeOrmModule",
  4102. "targetModuleName": "TypeOrmCoreModule"
  4103. },
  4104. "id": "-733930814"
  4105. },
  4106. "-802978947": {
  4107. "source": "-2003726489",
  4108. "target": "485644527",
  4109. "metadata": {
  4110. "type": "module-to-module",
  4111. "sourceModuleName": "UsersModule",
  4112. "targetModuleName": "MembershipModule"
  4113. },
  4114. "id": "-802978947"
  4115. },
  4116. "-991562516": {
  4117. "source": "-2003726489",
  4118. "target": "211572259",
  4119. "metadata": {
  4120. "type": "module-to-module",
  4121. "sourceModuleName": "UsersModule",
  4122. "targetModuleName": "ConfigHostModule"
  4123. },
  4124. "id": "-991562516"
  4125. },
  4126. "-127805263": {
  4127. "source": "-2003726489",
  4128. "target": "1482218087",
  4129. "metadata": {
  4130. "type": "module-to-module",
  4131. "sourceModuleName": "UsersModule",
  4132. "targetModuleName": "ThrottlerModule"
  4133. },
  4134. "id": "-127805263"
  4135. },
  4136. "-1762775552": {
  4137. "source": "545846242",
  4138. "target": "211572259",
  4139. "metadata": {
  4140. "type": "module-to-module",
  4141. "sourceModuleName": "TypeOrmModule",
  4142. "targetModuleName": "ConfigHostModule"
  4143. },
  4144. "id": "-1762775552"
  4145. },
  4146. "-1347332715": {
  4147. "source": "545846242",
  4148. "target": "1482218087",
  4149. "metadata": {
  4150. "type": "module-to-module",
  4151. "sourceModuleName": "TypeOrmModule",
  4152. "targetModuleName": "ThrottlerModule"
  4153. },
  4154. "id": "-1347332715"
  4155. },
  4156. "-1627865725": {
  4157. "source": "545846242",
  4158. "target": "-1026304274",
  4159. "metadata": {
  4160. "type": "module-to-module",
  4161. "sourceModuleName": "TypeOrmModule",
  4162. "targetModuleName": "TypeOrmCoreModule"
  4163. },
  4164. "id": "-1627865725"
  4165. },
  4166. "-981031285": {
  4167. "source": "485644527",
  4168. "target": "1219676411",
  4169. "metadata": {
  4170. "type": "module-to-module",
  4171. "sourceModuleName": "MembershipModule",
  4172. "targetModuleName": "WeixinModule"
  4173. },
  4174. "id": "-981031285"
  4175. },
  4176. "-141969160": {
  4177. "source": "485644527",
  4178. "target": "1712628187",
  4179. "metadata": {
  4180. "type": "module-to-module",
  4181. "sourceModuleName": "MembershipModule",
  4182. "targetModuleName": "ConfigModule"
  4183. },
  4184. "id": "-141969160"
  4185. },
  4186. "-354989617": {
  4187. "source": "485644527",
  4188. "target": "211572259",
  4189. "metadata": {
  4190. "type": "module-to-module",
  4191. "sourceModuleName": "MembershipModule",
  4192. "targetModuleName": "ConfigHostModule"
  4193. },
  4194. "id": "-354989617"
  4195. },
  4196. "-1941513278": {
  4197. "source": "485644527",
  4198. "target": "1482218087",
  4199. "metadata": {
  4200. "type": "module-to-module",
  4201. "sourceModuleName": "MembershipModule",
  4202. "targetModuleName": "ThrottlerModule"
  4203. },
  4204. "id": "-1941513278"
  4205. },
  4206. "-2085353292": {
  4207. "source": "485644527",
  4208. "target": "-1026304274",
  4209. "metadata": {
  4210. "type": "module-to-module",
  4211. "sourceModuleName": "MembershipModule",
  4212. "targetModuleName": "TypeOrmCoreModule"
  4213. },
  4214. "id": "-2085353292"
  4215. },
  4216. "-1125321300": {
  4217. "source": "545846243",
  4218. "target": "555176277",
  4219. "metadata": {
  4220. "type": "module-to-module",
  4221. "sourceModuleName": "TypeOrmModule",
  4222. "targetModuleName": "InternalCoreModule"
  4223. },
  4224. "id": "-1125321300"
  4225. },
  4226. "-1682832333": {
  4227. "source": "1219676411",
  4228. "target": "863216335",
  4229. "metadata": {
  4230. "type": "module-to-module",
  4231. "sourceModuleName": "WeixinModule",
  4232. "targetModuleName": "ConfigModule"
  4233. },
  4234. "id": "-1682832333"
  4235. },
  4236. "-1667333918": {
  4237. "source": "1219676411",
  4238. "target": "545846244",
  4239. "metadata": {
  4240. "type": "module-to-module",
  4241. "sourceModuleName": "WeixinModule",
  4242. "targetModuleName": "TypeOrmModule"
  4243. },
  4244. "id": "-1667333918"
  4245. },
  4246. "-1963606731": {
  4247. "source": "1219676411",
  4248. "target": "555176277",
  4249. "metadata": {
  4250. "type": "module-to-module",
  4251. "sourceModuleName": "WeixinModule",
  4252. "targetModuleName": "InternalCoreModule"
  4253. },
  4254. "id": "-1963606731"
  4255. },
  4256. "-805510243": {
  4257. "source": "1219676411",
  4258. "target": "-1026304274",
  4259. "metadata": {
  4260. "type": "module-to-module",
  4261. "sourceModuleName": "WeixinModule",
  4262. "targetModuleName": "TypeOrmCoreModule"
  4263. },
  4264. "id": "-805510243"
  4265. },
  4266. "-994275839": {
  4267. "source": "863216335",
  4268. "target": "211572259",
  4269. "metadata": {
  4270. "type": "module-to-module",
  4271. "sourceModuleName": "ConfigModule",
  4272. "targetModuleName": "ConfigHostModule"
  4273. },
  4274. "id": "-994275839"
  4275. },
  4276. "-1912910352": {
  4277. "source": "863216335",
  4278. "target": "555176277",
  4279. "metadata": {
  4280. "type": "module-to-module",
  4281. "sourceModuleName": "ConfigModule",
  4282. "targetModuleName": "InternalCoreModule"
  4283. },
  4284. "id": "-1912910352"
  4285. },
  4286. "-1896601298": {
  4287. "source": "863216335",
  4288. "target": "1712628187",
  4289. "metadata": {
  4290. "type": "module-to-module",
  4291. "sourceModuleName": "ConfigModule",
  4292. "targetModuleName": "ConfigModule"
  4293. },
  4294. "id": "-1896601298"
  4295. },
  4296. "-1397857332": {
  4297. "source": "863216335",
  4298. "target": "1482218087",
  4299. "metadata": {
  4300. "type": "module-to-module",
  4301. "sourceModuleName": "ConfigModule",
  4302. "targetModuleName": "ThrottlerModule"
  4303. },
  4304. "id": "-1397857332"
  4305. },
  4306. "-1881791934": {
  4307. "source": "863216335",
  4308. "target": "-1026304274",
  4309. "metadata": {
  4310. "type": "module-to-module",
  4311. "sourceModuleName": "ConfigModule",
  4312. "targetModuleName": "TypeOrmCoreModule"
  4313. },
  4314. "id": "-1881791934"
  4315. },
  4316. "-45779253": {
  4317. "source": "545846244",
  4318. "target": "555176277",
  4319. "metadata": {
  4320. "type": "module-to-module",
  4321. "sourceModuleName": "TypeOrmModule",
  4322. "targetModuleName": "InternalCoreModule"
  4323. },
  4324. "id": "-45779253"
  4325. },
  4326. "-1344886850": {
  4327. "source": "545846244",
  4328. "target": "211572259",
  4329. "metadata": {
  4330. "type": "module-to-module",
  4331. "sourceModuleName": "TypeOrmModule",
  4332. "targetModuleName": "ConfigHostModule"
  4333. },
  4334. "id": "-1344886850"
  4335. },
  4336. "-929444013": {
  4337. "source": "545846244",
  4338. "target": "1482218087",
  4339. "metadata": {
  4340. "type": "module-to-module",
  4341. "sourceModuleName": "TypeOrmModule",
  4342. "targetModuleName": "ThrottlerModule"
  4343. },
  4344. "id": "-929444013"
  4345. },
  4346. "-1377619055": {
  4347. "source": "-1134487807",
  4348. "target": "555176277",
  4349. "metadata": {
  4350. "type": "module-to-module",
  4351. "sourceModuleName": "AuthModule",
  4352. "targetModuleName": "InternalCoreModule"
  4353. },
  4354. "id": "-1377619055"
  4355. },
  4356. "-1088610631": {
  4357. "source": "-1134487807",
  4358. "target": "1482218087",
  4359. "metadata": {
  4360. "type": "module-to-module",
  4361. "sourceModuleName": "AuthModule",
  4362. "targetModuleName": "ThrottlerModule"
  4363. },
  4364. "id": "-1088610631"
  4365. },
  4366. "-1878086415": {
  4367. "source": "863216336",
  4368. "target": "555176277",
  4369. "metadata": {
  4370. "type": "module-to-module",
  4371. "sourceModuleName": "ConfigModule",
  4372. "targetModuleName": "InternalCoreModule"
  4373. },
  4374. "id": "-1878086415"
  4375. },
  4376. "-1752191603": {
  4377. "source": "863216336",
  4378. "target": "1712628187",
  4379. "metadata": {
  4380. "type": "module-to-module",
  4381. "sourceModuleName": "ConfigModule",
  4382. "targetModuleName": "ConfigModule"
  4383. },
  4384. "id": "-1752191603"
  4385. },
  4386. "-802249887": {
  4387. "source": "863216336",
  4388. "target": "-1026304274",
  4389. "metadata": {
  4390. "type": "module-to-module",
  4391. "sourceModuleName": "ConfigModule",
  4392. "targetModuleName": "TypeOrmCoreModule"
  4393. },
  4394. "id": "-802249887"
  4395. },
  4396. "-2044600316": {
  4397. "source": "-536515674",
  4398. "target": "863216336",
  4399. "metadata": {
  4400. "type": "module-to-module",
  4401. "sourceModuleName": "JwtModule",
  4402. "targetModuleName": "ConfigModule"
  4403. },
  4404. "id": "-2044600316"
  4405. },
  4406. "-693890971": {
  4407. "source": "-1327562795",
  4408. "target": "612499341",
  4409. "metadata": {
  4410. "type": "module-to-module",
  4411. "sourceModuleName": "FileModule",
  4412. "targetModuleName": "AliyunModule"
  4413. },
  4414. "id": "-693890971"
  4415. },
  4416. "-497922230": {
  4417. "source": "-1327562795",
  4418. "target": "211572259",
  4419. "metadata": {
  4420. "type": "module-to-module",
  4421. "sourceModuleName": "FileModule",
  4422. "targetModuleName": "ConfigHostModule"
  4423. },
  4424. "id": "-497922230"
  4425. },
  4426. "-1517205111": {
  4427. "source": "-1327562795",
  4428. "target": "1482218087",
  4429. "metadata": {
  4430. "type": "module-to-module",
  4431. "sourceModuleName": "FileModule",
  4432. "targetModuleName": "ThrottlerModule"
  4433. },
  4434. "id": "-1517205111"
  4435. },
  4436. "-812063099": {
  4437. "source": "-493958991",
  4438. "target": "1712628187",
  4439. "metadata": {
  4440. "type": "module-to-module",
  4441. "sourceModuleName": "ChatModule",
  4442. "targetModuleName": "ConfigModule"
  4443. },
  4444. "id": "-812063099"
  4445. },
  4446. "-1230239467": {
  4447. "source": "-493958991",
  4448. "target": "1482218087",
  4449. "metadata": {
  4450. "type": "module-to-module",
  4451. "sourceModuleName": "ChatModule",
  4452. "targetModuleName": "ThrottlerModule"
  4453. },
  4454. "id": "-1230239467"
  4455. },
  4456. "-688338939": {
  4457. "source": "-493958991",
  4458. "target": "-1026304274",
  4459. "metadata": {
  4460. "type": "module-to-module",
  4461. "sourceModuleName": "ChatModule",
  4462. "targetModuleName": "TypeOrmCoreModule"
  4463. },
  4464. "id": "-688338939"
  4465. },
  4466. "-14703162": {
  4467. "source": "545846245",
  4468. "target": "-1026304274",
  4469. "metadata": {
  4470. "type": "module-to-module",
  4471. "sourceModuleName": "TypeOrmModule",
  4472. "targetModuleName": "TypeOrmCoreModule"
  4473. },
  4474. "id": "-14703162"
  4475. },
  4476. "-378707182": {
  4477. "source": "-1312205662",
  4478. "target": "211572259",
  4479. "metadata": {
  4480. "type": "module-to-module",
  4481. "sourceModuleName": "NotifyModule",
  4482. "targetModuleName": "ConfigHostModule"
  4483. },
  4484. "id": "-378707182"
  4485. },
  4486. "-441758383": {
  4487. "source": "-1312205662",
  4488. "target": "-1026304274",
  4489. "metadata": {
  4490. "type": "module-to-module",
  4491. "sourceModuleName": "NotifyModule",
  4492. "targetModuleName": "TypeOrmCoreModule"
  4493. },
  4494. "id": "-441758383"
  4495. },
  4496. "-175456396": {
  4497. "source": "1609867136",
  4498. "target": "-1490877393",
  4499. "metadata": {
  4500. "type": "class-to-class",
  4501. "sourceModuleName": "FileModule",
  4502. "sourceClassName": "FileController",
  4503. "targetClassName": "05ef80ce6ef3d2b47535c",
  4504. "sourceClassToken": "FileController",
  4505. "targetClassToken": "05ef80ce6ef3d2b47535c",
  4506. "targetModuleName": "FileModule",
  4507. "injectionType": "decorator"
  4508. },
  4509. "id": "-175456396"
  4510. },
  4511. "-951393523": {
  4512. "source": "930519593",
  4513. "target": "1063746662",
  4514. "metadata": {
  4515. "type": "class-to-class",
  4516. "sourceModuleName": "ConfigHostModule",
  4517. "sourceClassName": "ConfigService",
  4518. "targetClassName": "CONFIGURATION_TOKEN",
  4519. "sourceClassToken": "Symbol(CONFIG_SERVICE)",
  4520. "targetClassToken": "CONFIGURATION_TOKEN",
  4521. "targetModuleName": "ConfigHostModule",
  4522. "keyOrIndex": 0,
  4523. "injectionType": "constructor"
  4524. },
  4525. "id": "-951393523"
  4526. },
  4527. "-1597821732": {
  4528. "source": "373235992",
  4529. "target": "-1904419534",
  4530. "metadata": {
  4531. "type": "class-to-class",
  4532. "sourceModuleName": "DevtoolsModule",
  4533. "sourceClassName": "SandboxedCodeExecutor",
  4534. "targetClassName": "SerializedGraph",
  4535. "sourceClassToken": "SandboxedCodeExecutor",
  4536. "targetClassToken": "SerializedGraph",
  4537. "targetModuleName": "InternalCoreModule",
  4538. "keyOrIndex": 0,
  4539. "injectionType": "constructor",
  4540. "internal": true
  4541. },
  4542. "id": "-1597821732"
  4543. },
  4544. "-2041147046": {
  4545. "source": "373235992",
  4546. "target": "-26938366",
  4547. "metadata": {
  4548. "type": "class-to-class",
  4549. "sourceModuleName": "DevtoolsModule",
  4550. "sourceClassName": "SandboxedCodeExecutor",
  4551. "targetClassName": "ModulesContainer",
  4552. "sourceClassToken": "SandboxedCodeExecutor",
  4553. "targetClassToken": "ModulesContainer",
  4554. "targetModuleName": "InternalCoreModule",
  4555. "keyOrIndex": 1,
  4556. "injectionType": "constructor",
  4557. "internal": true
  4558. },
  4559. "id": "-2041147046"
  4560. },
  4561. "-1045206778": {
  4562. "source": "1310883338",
  4563. "target": "1063746662",
  4564. "metadata": {
  4565. "type": "class-to-class",
  4566. "sourceModuleName": "ConfigModule",
  4567. "sourceClassName": "CONFIGURATION_LOADER",
  4568. "targetClassName": "CONFIGURATION_TOKEN",
  4569. "sourceClassToken": "CONFIGURATION_LOADER",
  4570. "targetClassToken": "CONFIGURATION_TOKEN",
  4571. "targetModuleName": "ConfigHostModule",
  4572. "keyOrIndex": 0,
  4573. "injectionType": "constructor"
  4574. },
  4575. "id": "-1045206778"
  4576. },
  4577. "-481663631": {
  4578. "source": "1310883338",
  4579. "target": "-1790226991",
  4580. "metadata": {
  4581. "type": "class-to-class",
  4582. "sourceModuleName": "ConfigModule",
  4583. "sourceClassName": "CONFIGURATION_LOADER",
  4584. "targetClassName": "CONFIGURATION(aliyun)",
  4585. "sourceClassToken": "CONFIGURATION_LOADER",
  4586. "targetClassToken": "CONFIGURATION(aliyun)",
  4587. "targetModuleName": "ConfigModule",
  4588. "keyOrIndex": 1,
  4589. "injectionType": "constructor"
  4590. },
  4591. "id": "-481663631"
  4592. },
  4593. "-1782972962": {
  4594. "source": "1333473084",
  4595. "target": "1063746662",
  4596. "metadata": {
  4597. "type": "class-to-class",
  4598. "sourceModuleName": "ConfigModule",
  4599. "sourceClassName": "CONFIGURATION_LOADER",
  4600. "targetClassName": "CONFIGURATION_TOKEN",
  4601. "sourceClassToken": "CONFIGURATION_LOADER",
  4602. "targetClassToken": "CONFIGURATION_TOKEN",
  4603. "targetModuleName": "ConfigHostModule",
  4604. "keyOrIndex": 0,
  4605. "injectionType": "constructor"
  4606. },
  4607. "id": "-1782972962"
  4608. },
  4609. "-1162144091": {
  4610. "source": "1333473084",
  4611. "target": "-904418141",
  4612. "metadata": {
  4613. "type": "class-to-class",
  4614. "sourceModuleName": "ConfigModule",
  4615. "sourceClassName": "CONFIGURATION_LOADER",
  4616. "targetClassName": "CONFIGURATION(weixin)",
  4617. "sourceClassToken": "CONFIGURATION_LOADER",
  4618. "targetClassToken": "CONFIGURATION(weixin)",
  4619. "targetModuleName": "ConfigModule",
  4620. "keyOrIndex": 1,
  4621. "injectionType": "constructor"
  4622. },
  4623. "id": "-1162144091"
  4624. },
  4625. "-2011762913": {
  4626. "source": "1333473085",
  4627. "target": "1063746662",
  4628. "metadata": {
  4629. "type": "class-to-class",
  4630. "sourceModuleName": "ConfigModule",
  4631. "sourceClassName": "CONFIGURATION_LOADER",
  4632. "targetClassName": "CONFIGURATION_TOKEN",
  4633. "sourceClassToken": "CONFIGURATION_LOADER",
  4634. "targetClassToken": "CONFIGURATION_TOKEN",
  4635. "targetModuleName": "ConfigHostModule",
  4636. "keyOrIndex": 0,
  4637. "injectionType": "constructor"
  4638. },
  4639. "id": "-2011762913"
  4640. },
  4641. "-1276722459": {
  4642. "source": "1705191969",
  4643. "target": "-1790226991",
  4644. "metadata": {
  4645. "type": "class-to-class",
  4646. "sourceModuleName": "AliyunModule",
  4647. "sourceClassName": "AliyunService",
  4648. "targetClassName": "CONFIGURATION(aliyun)",
  4649. "sourceClassToken": "AliyunService",
  4650. "targetClassToken": "CONFIGURATION(aliyun)",
  4651. "targetModuleName": "ConfigModule",
  4652. "keyOrIndex": 0,
  4653. "injectionType": "constructor"
  4654. },
  4655. "id": "-1276722459"
  4656. },
  4657. "-711278315": {
  4658. "source": "-1900804336",
  4659. "target": "-1453472830",
  4660. "metadata": {
  4661. "type": "class-to-class",
  4662. "sourceModuleName": "JwtModule",
  4663. "sourceClassName": "JWT_MODULE_OPTIONS",
  4664. "targetClassName": "CONFIGURATION(jwt)",
  4665. "sourceClassToken": "JWT_MODULE_OPTIONS",
  4666. "targetClassToken": "CONFIGURATION(jwt)",
  4667. "targetModuleName": "ConfigModule",
  4668. "keyOrIndex": 0,
  4669. "injectionType": "constructor"
  4670. },
  4671. "id": "-711278315"
  4672. },
  4673. "-1717178441": {
  4674. "source": "385041166",
  4675. "target": "-1453472830",
  4676. "metadata": {
  4677. "type": "class-to-class",
  4678. "sourceModuleName": "AuthModule",
  4679. "sourceClassName": "JwtStrategy",
  4680. "targetClassName": "CONFIGURATION(jwt)",
  4681. "sourceClassToken": "JwtStrategy",
  4682. "targetClassToken": "CONFIGURATION(jwt)",
  4683. "targetModuleName": "ConfigModule",
  4684. "keyOrIndex": 0,
  4685. "injectionType": "constructor"
  4686. },
  4687. "id": "-1717178441"
  4688. }
  4689. },
  4690. "entrypoints": {},
  4691. "extras": {
  4692. "orphanedEnhancers": [],
  4693. "attachedEnhancers": []
  4694. },
  4695. "status": "partial",
  4696. "metadata": {
  4697. "cause": {
  4698. "type": "unknown-dependencies",
  4699. "context": {
  4700. "index": 0,
  4701. "dependencies": [
  4702. "Repository"
  4703. ],
  4704. "name": "Repository"
  4705. },
  4706. "moduleId": "-493958991",
  4707. "nodeId": "1074192353"
  4708. }
  4709. }
  4710. }